## Warning: package 'dplyr' was built under R version 4.0.5
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
## Warning: package 'tidytext' was built under R version 4.0.3
## Warning: package 'tidyverse' was built under R version 4.0.5
## -- Attaching packages --------------------------------------- tidyverse 1.3.1 --
## v ggplot2 3.3.5     v purrr   0.3.4
## v tibble  3.1.5     v stringr 1.4.0
## v tidyr   1.1.4     v forcats 0.5.1
## v readr   2.0.2
## Warning: package 'ggplot2' was built under R version 4.0.5
## Warning: package 'tibble' was built under R version 4.0.5
## Warning: package 'tidyr' was built under R version 4.0.5
## Warning: package 'readr' was built under R version 4.0.5
## Warning: package 'forcats' was built under R version 4.0.5
## -- Conflicts ------------------------------------------ tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
## 
## Attaching package: 'igraph'
## The following objects are masked from 'package:purrr':
## 
##     compose, simplify
## The following object is masked from 'package:tidyr':
## 
##     crossing
## The following object is masked from 'package:tibble':
## 
##     as_data_frame
## The following objects are masked from 'package:dplyr':
## 
##     as_data_frame, groups, union
## The following objects are masked from 'package:stats':
## 
##     decompose, spectrum
## The following object is masked from 'package:base':
## 
##     union
## Warning: package 'ggraph' was built under R version 4.0.3
## 
## Attaching package: 'scales'
## The following object is masked from 'package:purrr':
## 
##     discard
## The following object is masked from 'package:readr':
## 
##     col_factor
## Warning: package 'plotly' was built under R version 4.0.5
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:igraph':
## 
##     groups
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
## Warning: package 'sf' was built under R version 4.0.5
## Linking to GEOS 3.9.1, GDAL 3.2.1, PROJ 7.2.1
## Warning: package 'mapview' was built under R version 4.0.5
## Warning: package 'maps' was built under R version 4.0.5
## 
## Attaching package: 'maps'
## The following object is masked from 'package:purrr':
## 
##     map
## Warning: package 'ggmap' was built under R version 4.0.5
## Google's Terms of Service: https://cloud.google.com/maps-platform/terms/.
## Please cite ggmap if you use it! See citation("ggmap") for details.
## 
## Attaching package: 'ggmap'
## The following object is masked from 'package:plotly':
## 
##     wind

Introduction

For this project, I am continuing with my Airplane Crash Data Since 1908 dataset. I am really excited to begin this project as I know I will be able to accomplish the analysis that I did not get to explore last time. That being said, I plan to explore the Operator data to see the operators with the most crashes, the Summary data to see what were the top crash explanations, and the Long and Lat data to see exactly where these crashes occurred.

The Dataset

crashes <- read.csv("../data/airplanesData.csv")
head(crashes)
##   ï..ID       Date  Time                           Location      Lat       Long
## 1     1  9/17/1908 17:18                Fort Myer, Virginia 38.88243  -77.08075
## 2     2   9/7/1909                  Juvisy-sur-Orge, France 43.97303 -111.27814
## 3     3  7/12/1912  6:30          Atlantic City, New Jersey 39.36287  -74.42637
## 4     4   8/6/1913       Victoria, British Columbia, Canada 48.42855 -123.36445
## 5     5   9/9/1913 18:30                 Over the North Sea 40.93082  -72.41700
## 6     6 10/17/1913 10:30              Johannisthal, Germany 34.89593  -83.46655
##                 Operator Flight..         Route                AC.Type
## 1   Military - U.S. Army          Demonstration       Wright Flyer III
## 2                                      Air show         Wright Byplane
## 3   Military - U.S. Navy            Test flight              Dirigible
## 4                Private                              Curtiss seaplane
## 5 Military - German Navy                        Zeppelin L-1 (airship)
## 6 Military - German Navy                        Zeppelin L-2 (airship)
##   Registration cn.ln Aboard Aboard.Passangers Aboard.Crew Fatalities
## 1                  1      2                 1           1          1
## 2          SC1            1                 0           1          1
## 3                         5                 0           5          5
## 4                         1                 0           1          1
## 5                        20                NA          NA         14
## 6                        30                NA          NA         30
##   Fatalities.Passangers Fatalities.Crew Ground
## 1                     1               0      0
## 2                     0               0      0
## 3                     0               5      0
## 4                     0               1      0
## 5                    NA              NA      0
## 6                    NA              NA      0
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Summary
## 1 During a demonstration flight, a U.S. Army flyer flown by Orville Wright nose-dived into the ground from a height of approximately 75 feet, killing Lt. Thomas E. Selfridge, 26, who was a passenger. This was the first recorded airplane fatality in history.  One of two propellers separated in flight, tearing loose the wires bracing the rudder and causing the loss of control of the aircraft.  Orville Wright suffered broken ribs, pelvis and a leg.  Selfridge suffered a crushed skull and died a short time later.
## 2                                                                                                                                                                                                                                                                                                                                                                                                 Eugene Lefebvre was the first pilot to ever be killed in an air accident, after his controls jambed while flying in an air show.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                              First U.S. dirigible Akron exploded just offshore at an altitude of 1,000 ft. during a test flight.
## 4                                                                                                                                                                                                                                                                                                                                                                                                   The first fatal airplane accident in Canada occurred when American barnstormer, John M. Bryant, California aviator was killed.
## 5                                                                                                                                                                                                                                                                                                             The airship flew into a thunderstorm and encountered a severe downdraft crashing 20 miles north of Helgoland Island into the sea. The ship broke in two and the control car immediately sank drowning its occupants.
## 6                                                                                                                                                                                                                                                                                                                                                                                         Hydrogen gas which was being vented was sucked into the forward engine and ignited causing the airship to explode and burn at 3,000 ft..

Data Wrangling and Exploration

summary(crashes)
##      ï..ID          Date               Time             Location        
##  Min.   :   1   Length:4967        Length:4967        Length:4967       
##  1st Qu.:1242   Class :character   Class :character   Class :character  
##  Median :2484   Mode  :character   Mode  :character   Mode  :character  
##  Mean   :2484                                                           
##  3rd Qu.:3726                                                           
##  Max.   :4967                                                           
##                                                                         
##       Lat                Long           Operator           Flight..        
##  Min.   :     -16   Min.   :-176.66   Length:4967        Length:4967       
##  1st Qu.:      19   1st Qu.: -98.61   Class :character   Class :character  
##  Median :      35   Median : -85.00   Mode  :character   Mode  :character  
##  Mean   :   10222   Mean   : -76.64                                        
##  3rd Qu.:      41   3rd Qu.: -73.70                                        
##  Max.   :50626552   Max.   : 174.12                                        
##                                                                            
##     Route             AC.Type          Registration          cn.ln          
##  Length:4967        Length:4967        Length:4967        Length:4967       
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##      Aboard       Aboard.Passangers  Aboard.Crew      Fatalities    
##  Min.   :  0.00   Min.   :  0.0     Min.   : 0.00   Min.   :  0.00  
##  1st Qu.:  7.00   1st Qu.:  3.0     1st Qu.: 2.00   1st Qu.:  4.00  
##  Median : 16.00   Median : 12.0     Median : 4.00   Median : 11.00  
##  Mean   : 31.09   Mean   : 26.9     Mean   : 4.48   Mean   : 22.34  
##  3rd Qu.: 35.00   3rd Qu.: 30.0     3rd Qu.: 6.00   3rd Qu.: 25.00  
##  Max.   :644.00   Max.   :614.0     Max.   :61.00   Max.   :583.00  
##  NA's   :18       NA's   :229       NA's   :226     NA's   :8       
##  Fatalities.Passangers Fatalities.Crew      Ground           Summary         
##  Min.   :  0.00        Min.   : 0.000   Min.   :   0.000   Length:4967       
##  1st Qu.:  1.00        1st Qu.: 2.000   1st Qu.:   0.000   Class :character  
##  Median :  8.00        Median : 3.000   Median :   0.000   Mode  :character  
##  Mean   : 19.02        Mean   : 3.579   Mean   :   1.728                     
##  3rd Qu.: 21.00        3rd Qu.: 5.000   3rd Qu.:   0.000                     
##  Max.   :560.00        Max.   :46.000   Max.   :2750.000                     
##  NA's   :242           NA's   :241      NA's   :41
crashes <- separate(data = crashes,col = Date, into = c("Month", "Day", "Year"), sep = "\\/")
crashes <- separate(data = crashes, col = Location, into = c("City", "Region", "Country"), sep = "\\, ")
## Warning: Expected 3 pieces. Additional pieces discarded in 9 rows [150, 663,
## 1722, 2369, 2601, 2849, 3139, 3707, 4848].
## Warning: Expected 3 pieces. Missing pieces filled with `NA` in 4611 rows [1, 2,
## 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, ...].

Operator Data Analysis

The below code was used for the Crashes Per Operator Per State graph.

small_DF <- crashes %>% 
  group_by(Operator) %>% 
  count(Operator) %>% 
  arrange(desc(n)) %>% 
  filter(n > 50)
operatorData <- crashes %>%
  group_by(Operator, Year) %>% 
  count(Operator) %>% 
  arrange(desc(n)) %>% 
  filter(n > 0)

operatorData
## # A tibble: 4,080 x 3
## # Groups:   Operator, Year [4,080]
##    Operator                        Year      n
##    <chr>                           <chr> <int>
##  1 Aeroflot                        1973     17
##  2 Military - U.S. Army Air Forces 1945     14
##  3 US Aerial Mail Service          1920     12
##  4 Military - U.S. Air Force       1952     11
##  5 Aeroflot                        1962     10
##  6 Aeroflot                        1969     10
##  7 Aeroflot                        1970     10
##  8 Deutsche Lufthansa              1944     10
##  9 Military - U.S. Army Air Forces 1944     10
## 10 Aeroflot                        1976      9
## # ... with 4,070 more rows
df <- operatorData %>%
  filter(Operator %in% small_DF$Operator) %>%
  group_by(Year)

df
## # A tibble: 160 x 3
## # Groups:   Year [78]
##    Operator                  Year      n
##    <chr>                     <chr> <int>
##  1 Aeroflot                  1973     17
##  2 Military - U.S. Air Force 1952     11
##  3 Aeroflot                  1962     10
##  4 Aeroflot                  1969     10
##  5 Aeroflot                  1970     10
##  6 Deutsche Lufthansa        1944     10
##  7 Aeroflot                  1976      9
##  8 Aeroflot                  1979      9
##  9 Military - U.S. Air Force 1950      9
## 10 Aeroflot                  1960      8
## # ... with 150 more rows

Crash Count Per State Data Analysis

The below code was used for the Crash Count Per State graph.

my_sf <- st_as_sf(filter(crashes, Long<0, Lat>0), coords = c('Long', 'Lat'))
state_map_data <- map('state', fill = TRUE, plot = FALSE) %>% st_as_sf()
my_sf<-st_set_crs(my_sf, st_crs(state_map_data))
sf::sf_use_s2(FALSE)
## Spherical geometry (s2) switched off
state_map_data$crash_count <- lengths(st_intersects(state_map_data,my_sf))
## although coordinates are longitude/latitude, st_intersects assumes that they are planar

Crashes Location Data Analysis

The below code was used for the Crash Location graph.

df_geom <- crashes %>%
  group_by(Year) %>% 
  filter(Region %in% c("Alabama", "Arizona", "Arkansas", "California", "Colardo", "Connecticut", "Delaware", "Florida", "Georgia", "Idaho", "Illinois", "Indiana", "Iowa", "Kansas", "Kentucy", "Lousiana", "Maine", "Maryland", "Massachettusetts", "Michigan", "Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada", "New Hampshire", "New Jersey", "New Mexico", "New York", "North Carolina", "North Dakota", "Ohio", "Oklahoma", "Oregon", "Pennsylvania", "Rhode Island", "South Carolina", "South Dakota", "Tennessee", "Texas", "Utah", "Vermont", "Virginia", "Washington", "West Virginia", "Wisconsin", "Wyoming")) %>%
 select(Year, Region, Long, Lat)
my_sf2 <- st_as_sf(filter(df_geom, Long<0, Lat>24), coords = c('Long', 'Lat'))
state_map_data2 <- map('state', fill = TRUE, plot = FALSE) %>% st_as_sf()
my_sf2 <- st_set_crs(my_sf2, st_crs(state_map_data))
sf::sf_use_s2(FALSE)
state_map_data$crash_count <- lengths(st_intersects(state_map_data,my_sf2))
## although coordinates are longitude/latitude, st_intersects assumes that they are planar

Bigram Data Analysis

The below code was used for the Crash Summary Bigram graph.

bigramData <- crashes %>% 
  select(Summary)

bigramData
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Summary
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 During a demonstration flight, a U.S. Army flyer flown by Orville Wright nose-dived into the ground from a height of approximately 75 feet, killing Lt. Thomas E. Selfridge, 26, who was a passenger. This was the first recorded airplane fatality in history.  One of two propellers separated in flight, tearing loose the wires bracing the rudder and causing the loss of control of the aircraft.  Orville Wright suffered broken ribs, pelvis and a leg.  Selfridge suffered a crushed skull and died a short time later.
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Eugene Lefebvre was the first pilot to ever be killed in an air accident, after his controls jambed while flying in an air show.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              First U.S. dirigible Akron exploded just offshore at an altitude of 1,000 ft. during a test flight.
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The first fatal airplane accident in Canada occurred when American barnstormer, John M. Bryant, California aviator was killed.
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The airship flew into a thunderstorm and encountered a severe downdraft crashing 20 miles north of Helgoland Island into the sea. The ship broke in two and the control car immediately sank drowning its occupants.
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hydrogen gas which was being vented was sucked into the forward engine and ignited causing the airship to explode and burn at 3,000 ft..
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into trees while attempting to land after being shot down by British and French aircraft.
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Exploded and burned near Neuwerk Island,  when hydrogen gas, being vented, was ignited by lightning.
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed near the Black Sea, cause unknown.
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shot down by British aircraft crashing in flames.
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down in flames by the British 39th Home Defence Squadron.
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in a storm.
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shot down by British anti-aircraft fire and aircraft and crashed into the North Sea.
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Caught fire and crashed.
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck by lightning and crashed into the Baltic Sea.
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the sea from an altitude of 3,000 ft. after being hit by British aircraft fire.
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by British aircraft.
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shot down by aircraft.
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by British aircraft.
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Shot down by French anti-aircraft fire.
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Exploded and crashed into the sea off the southern coast of Italy.
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shot down by British aircraft crashing from a height of 17,000 ft.
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by british aircraft.
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Carl Smith was killed when his mail plane feet 500 feet while attempting to land. He tried to reposition the aircraft after the wind shifted and lost control of the plane and dived into the ground.
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Caught fire in midair. The pilot leaped from the plane to his death as the plane began to go into a dive.
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The mail plane crashed under unknown circumstances.
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The dirigible, cruising at 1,200 ft. caught fire and crashed into the Illinois Trust and Savings Building in Chicago. The was transporting people from Grant Park to the White City amusement park.[1] One crew member, two passengers, and ten bank employees were killed
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As the plane was passing over Verona the wings began to flutter and then collapsed and crashed. Sources differ as to the number of deaths with some reporting 15 or 17.
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The pilot was performing a mail flight to Baltimore. While on final approach, in fog, the aircraft hit tree tops and crashed into the woods.
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the sea while attempting to land in fog.
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on a mail flight to New York the pilot encountered bad weather conditions and reduced his altitude to maintain a visual contact with the ground. Eventually, he decided to make an emergency landing in Long Valley, west of Newark. Aircraft hit the ground and crashed.
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed in a field while attemptting to land.
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While on a a mail flight, the aircraft hit trees in fog and crashed in a wooded area.
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              George Sherlock was killed when his mail plane crashed into a chimney while attempting to land at Heller Field in poor visibility.
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After a fire erupted in flight the pilot decided to make an emergency landing but the aircraft crashed.
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed while on approach for unknown reasons.
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In worsening weather conditions, the pilot lost his sense of orientation and crashed in a field.
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft suffered engine failure and crashed shortly after taking off.
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed while taking off after engine failure. Engine failure due to fuel exhaustion.
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed during a cargo flight under unknown circumstances.
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While approaching in poor visibility to land, the plane hit a radio mast and crashed in flames.
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While en route, the mail plane went out of control and crashed after experiencing an in flight fire.
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The pilot crashed after attempting to make an emergency landing after the engine caught fire.
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane struck power lines and crashed in flames after flying at a low altitude in poor visibility.
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the Mediterranean while on a mail flight.
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on a mail flight the plane crashed while attempting to land.
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While attempting to land in fog the aircraft hit an obstruction and crashed.
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into a mountain in poor weather condtions.
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane failed to gain altitude after taking off from Criclklewood and crashed into a tree and a house. Pilot error in taking off towards a hill in unfavorable wind conditions and fog.The first commercial air disaster to result in passenger fatalities during a regularly scheduled service..
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft stalled and crashed when an engine failed.
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shortly after takeoff from Minneapolis-World Chamberlain Field the engine failed. The aircraft lost altitude and crashed  in a field.
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed for unknown reasons. Both pilots and the mechanic were killed.
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The mail fligh encountered poor weather conditions and crashed into the ocean while on approach to Gibraltar. The bodies of the crew were never recovered.
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shortly after taking off, the aircraft stalled and crashed .
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shortly after taking off on a training flight, the aircraft dove into the ground and exploded in flames.
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After taking off the aircraft stalled and crashed.
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed in a field, short of the runway, a few minutes before its scheduled arrival in Cleveland. The weather was poor with fog.
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed while attempting to land.
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed due to structural failure followed by two explosions and a fire. Attributed to faulty design.
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed while making an approach to Le Bourget Airport in Paris. Pilot aborted the landing due to another aircraft on the runway.
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     On approach to Geraldton the plane crashed near the Murchinson River. Considered the first commercial flight in Australila.
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed at Le Bourget field.
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed from a height of 500 ft. after experiencing control problems cause by malfunctioning controls.
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane ditched into the ocean about 40 miles East of Florida after a propeller blade broke. Only the pilot survived, being picked up over 2 days later. The flying boat was named Miss Miami.
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A midair collision occurred at 400 ft. in poor visibility approximately 18 miles north of Beauvais, France. The pilots of both planes were using the road as a route marker in bad weather and poor visibility. This was the  first commercial midair collision in aviation history. Two killed on the de Havilland, five on the Faman F-60.
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Aboard were all workers taking part in a flight test. All seventeen aboard were Chinese nationals.
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Went down into the English Channel while en route.
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The passenger/mail plane lost it's engine while taking off and crashed into trees. Actress Fern Andra survived the accident but her director, Georg Bluen did not. The pilot, Lothar von Richthofen, was also killed. He was a World War I ace and brother of Manfred von Richthofen (The Red Baron).
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lost an engine and could not make an emergency landing because of gusty winds. Stalled while making a turn and crashed.
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While attempting to make an emergency landing due to engine problems, the aircraft hit telephone lines and crashed.
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane stalled shortly after takeoff and crashed.
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shortly after taking off the plane crashed into the sea and sank.
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed under unknown circumstances.
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While flying in foggy conditions the pilot reduced altitude and crashed into a hill.
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed mid-air due to a structural failure of the tail.
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a mountain during a snowstorm.
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed during a mail flight.
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The pilot lost control of the aircraft  while on approach in poor weather conditions.
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Broke-up in mid air after suffering structural failure at 3,000 ft. after a onboard fire weakened the plane's structure losing a wing. Possibly started by a passenger discarding a match after lighting a cigarette.
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft lost an engine about 45 minutes into the flight. As the plane was incapable of maintaining level flight with only one engine operating, the pilot decided to make an emergency landing. He asked the mechanic to ask two passengers to move towards the rear of the aircraft. This instruction was apparently misunderstood by the passengers, as four of them moved towards the rear of the aircraft. This affected the center of gravity of the aircraft, which then entered into a spin and crashed.
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while on approach to Bucharesst.
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed during an emergency landing attempt.
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while attempting a forced landing after encountering heavy rain.
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed during a training flight.
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed under unknown circumstances.
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed while on a flight from Toulon, France to Algiers, Algeria.  The last known radio contact reported the ship nearly out of fuel and battling strong winds.  Struck by lightning.
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a montain in poor weather conditions.
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed during a snowstorm.
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft disappeared over the North Sea. The plane and passengers were never found.
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stalled after taking off and crashed into houses..
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The pliot made a low pass in honor of another pilot who had died, stalled and cashed.
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While en route the pilot encountered thunderstorms, lost control and crashed.
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lost in a snowstorm, the pilot decided to bail out of the plane but was killed.
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shortly after taking off, witnesses observed a puff of white smoke after which the plane nose-dived into the ground. Crashed due to an unknown mechanical failure and subsiquent stall. Captain Stewart and seven passengers were killed in an attempted forced landing.
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shortly after take off the plane went out of control and crashed in flames.
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shortly after takeoff, while flying at a low altitude, in poor visibility, the, aircraft hit a lightning rod, stalled and crashed.
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While in a turn in bad weather, the right wing struck trees and the plane crashed. Failure of an aileron in flight.
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While attempting to land the seaplane hit a lightning mast and crashed.
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in unknown circumstance.
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while attempting to land 10 km from the airport
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Shenandoah was flying over Southern Ohio when she abruptly encountered violent atmospheric conditions (thunderstorms). Powerful air currents buffeted her so severely that her crew was unable to maintain control. Rising rapidly above her pressure height, then falling and rising again, her hull structure was overstressed amidships, breaking the airship in two. Shenandoah's external control car and two engine cars fell free, carrying the dirigible's commanding officer and several other men to their deaths. The stern section came down nearby, while several men were able to fly the bow section to ground as a free balloon.
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a wooded area on Mt. Nittany in fog and low visibility.
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The pilot suffered sunstroke lost control of the plane and crashed.
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While the mail plane was flying at a low altitude, the  aircraft hit trees and crashed in a wooded area.
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While in a training filight the aircraft stalled and crashed while attempting to land.
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The mail plane crashed into the English Channel and was never found.
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed while en route into a mountain in adverse weather conditions. The pilot was flying at too low of an altitude.
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the ground while descending in poor weather.
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed under weather related.circumstances.
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane made a forced landing at Romney Marsh  in heavy fog.  Engine failure. The pilot initally survived but died a day later.
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Too much weight caused the landing gear to collapse as the plane took off for Paris on the first trans-Atlantic passenger flight.
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After an engine fire, the pilot attempts to make an emergency landing at Penshurst Airfield but crashed..
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Weather related.
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane was on a flight from London to Paris when power was lost to the starboard engine. The aircraft began to lose altitude until it eventually ditched into the sea about 18 miles from the English coast. The plane stayed afloat long enough for the fishing boat Invicta, piloted by Captain Marshall, to rescue all aboard. The plane was named Prince Henry.
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While en route and cruising along the shore, the mail plane's engine failed. The crew made an emergency landing on a beach near Cape Bojador. After the landing, crew was attacked by Maures tribesmen and killed while the aircraft was set on fire and destroyed.
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The postal plane crashed into a mountain slope in foggy conditions.
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The flight crew encountered poor weather conditions and made an emergency landing. The aircraft landed in a field badly damaged and written off.
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Unknown.
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While attempting to land, the engine failed, the aircraft stalled and crashed.
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed after an unsuccessful attempt at fly into strong headwinds. The engine quit and the plane nosedived into the ground.
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed following engine failure.
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a field during a snow storm.
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The three engine seaplane stalled and crashed into the sea shortly after taking off.
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed after experiencing engine failure and attempting to make a forced landing.
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A broken wire led to the partial loss of the the rudder and a crash landing which resulted in the aircraft striking a tree, killing the flight engineer.
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The postal plane crashed for unknown reasons.
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sightseeing plane took off and rose to 400 ft. when the engine failed.  The plane stalled and plunged to the ground in an apple orchard. Engine failure. The pilot was not familiar with the type of aircraft.
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While flying 1,000 km east of the Canadian coast, the crew sent a mayday message and the aircraft crashed into the ocean two minutes later. The plane was owned by William Randolph Hearst who financed this nonstop transatlantic flight.
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             From an altitude of 500 ft. the plane went out of control and crashed  due to a broken wing strut.
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane crashed while attempting to land at Dakar.
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Went into a tailspin and crashed into a corn field about 10 km from the airport.
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The mail plane crashed shortly after taking off.
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed in the gulf of Finland and never found.
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The postal plane crashed at night in poor weather.
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A fire erupted aboard the mail plane while en route and crashed.
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Suffered structural failure at an altitude of 1,000 ft.
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Became lost in dense fog and flew into trees in the Mohawk Valley while proceeding to Buffalo..
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The wing on the mail plane detached from the aircraft and crashed into the sea.
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed after experiencing mechanical difficulties.
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in unknown circumstances.
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After experiencing turbulence the pilot's seat belt broke and ejecting the pilot.
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The air mail plane crashed into a grove of cottonwood trees and burned. Businessman F.H. Craig was killed and pilot Frank Yegar injured. The pilot descended in altitude due to air pockets.The plane then ran into an air pocket that brought the plane down into the grove of trees.
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the sea while delivering mail in poor weather.
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Spatial disorientation after entering a snowstorm.
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a field after getting lost in fog.
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             An in flight fire caused he pilot to lose control and crash in a field after which a fire erupted.
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed on it’s inaugural flight. The pilot tried to become airborne without sufficient speed.
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After taking off and encountering fog, the pilot decided to  to make a precautionary landing in a field but t hit a cow, crashed and burned. Pilot error.
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The "Viper" crashed for unknown reasons.
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The mail plane flew into tornado like winds and crashed in a field.
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed under unknown circumstances
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After the aircraft had climbed to 800 feet it disappeared from view of the airport in a south-west direction. The aircraft crashed into a market garden near Leigh Cottage on Woodcote Road, it was seen by residents flying low over the roof tops with the engine evidently in difficulties. The aircraft crashed into a potato field, the pilot in an open cockpit clambered clear and helped one of the passengers from the enclosed cabin free. The aircraft burst into flames and it was not possible to rescue the other passengers.
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane became airborne in a stalled condition, hit a shipsmast and crashed into the Waalhaven.
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into Puget Sound in dense fog 12 miles off Port Townsend.  Considered the first Canadian air disaster.
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After taking off the engine failed, the plane stalled and crashed.
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Following the conclusion of an aerial tour carrying Sir John Salmond, the aircraft departed Adelaide piloted by C. W. A. Scott with an engineer as passenger. Control was lost in the cloud during an attempt to cross the Adelaide Hills; the aircraft encounted bad weather, crashed and caught fire.
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While flying low and circling six times for a landing, the mail plane went into a nose dive when the pilot headed into the wind and crashed to the ground, rolling over several times.
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed due to engine failure.
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Encountered fog and crashed into a mountain slope near the monastery of Sant Pere de Rodes, south of Llancà,
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The mail plane crashed into a hill and burned during the night during poor weather conditons.
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The pilot attempted an emergency landing in a muddy field and crashed.
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The sea plane stuck a lightning mast and crashed into houses. Pilot error.
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The mail plane crashed in a heavy snow storm.
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The mail plane crashed in a heavy snow storm
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The mail plane crashed in a snow storm.
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed and burned while en route. Flames were seen aboard the plane before it crashed. The plane was on a delivery flight.
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The seaplane took off form the bay and narrowly avoided a collision with another plane and in the process veered sharply and so abruptly that one of the wings was strained beyond its elastic limits. The pilot then lost control of the aircraft and it fell, tail spinning 300 feet into the water where one of the engines exploded on impact. It sunk immediately.
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed while attempting to land in fog.
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After a fuel line broke in flight, the pilot was forced to make an emergency landing in an open field. On landing, the aircraft crashed, overturned and came to rest in flames.
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The mail plane crashed into an apple tree during a snow storm after the pilot experienced spatial disorientation.
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed onto a roof and garage on takeoff and burst into flames. The motor may have not been warmed- up properly.
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into high ground in fog.
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Struck a mountain slope  in poor weather.
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While attempting to make an emergency landing on the Minam river the mail plane hit a bolder killing the pilot.
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The passenger plane diverted off Kerkira in the Ionian Sea due to poor weather conditions and thunderstoms and sank in rough seas.
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While cruising along the coast, the mail plane crashed into the Atlantic Ocean for unknown reasons.
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land, the aircraft overran the runway and hit the perimeter fence.
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane was making the last of a number of sightseeing flights when two of it's three engines failed. The plane stalled and went out of control at an altitude of 200 ft. and crashed into a railroad freight car. Engine failure followed by a stall during an emergency landing attempt.
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into a high mountain ridge, exploding on impact. Investigators speculated that upon encountering fog and winds in the treacherous mountain pass, the pilot may have turned the airliner around and was heading back to the airport when the crash occurred.
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A midair collision occurred  with a US Air Force Boeing PW-9D at 2,000 ft.  Five killed on the Tri-motor, one on the Boeing. Army pilot Lieutenant Howard Keefer, while flying above the airliner, was stunting and performed a steep banking turn downward, in an attempt to pass in front of the airliner. Instead, he misjudged the speed of the Maddux aircraft and his diving plane struck the cockpit of the Ford Tri-motor.  He was found criminally negligent.
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               An engine failed, the plane stalled and crashed.
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A wing separated in flight and the plane crashed.
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane collided with a submerged object while taking off.
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while taking off. The muddy field prevented the aircraft from gaining altitude. The plane hit telephone wires and crashed. The plane was named "Christopher Columbus".
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Took off, lost power and altitude and crashed into a telegraph tower.
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane was over the English Channel, approximately 3 miles offshore, when an engine failed. The pilot attempted to return to the airport but the plane ditched into the English Channel. Failure of a connecting rod on a cylinder due to fatigue.The plane was named "City of Ottawa."
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All three engines failed shortly after takeoff causing the plane to stall and crash near Indian Mounds park.
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The seaplane crashed into lake Constance while attempting to landing. The landing was hard and the plane broke in two and sank.
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The mail plane crashed into an antenna mast in fog and low visibility and burned.
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The just manufactured aircraft was on its way to be delivered to its new owner with  four employees of Lockheed,  two pilots and two engineers when it crashed under unknown circumstances.
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed under unknown circumstances.
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aorcraft hit a hill in fog and poor visibility.
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed after going into a tail spin in a thunderstorm. The mechanic was able to parachute to safety.
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shortly after departing the aircraft crashed into a Mt Taylor after encountering a thunderstorm and turbulence. The plane was named "The City of San Francisco."
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          At night, the aircraft crashed short of the runway in low visibility.
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed at sea, 30 miles from Larache, Morocco for unknown reasons.
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft went out of control and crashed for unknown reasons.
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The mail plane crashed into Mt. Lamentation in fog and burst into flames.
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the Mediterranean for unknown reasons.
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The mail plane crashed into a hillside in the desert while attempting to make an emergency landing during a storm.
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft ditched in the ocean after encountering gale force winds. Sank while in tow. The plane was named "City of Rome."
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The mail plane crashed into a grove of trees 8 miles southwest of Mount Vernon in foggy conditons.
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The air taxi crashed into Puget Sound as it attempted to take off.
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The mail plane crashed in dense fog.
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After the plane's antenna wire struck the ground and was partially torn off, the pilot attempted to return to land but hit tree tops and crashed in rain and fog.
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While flying along the Corsican coast, the aircraft crashed into the Mediterranean in fog. No trace of the plane was ever found.
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed due to  an optical phenomenon caused by calm waters and an erroneous height assessment.
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The mail plane crashed into a fog bound tower of the interstate bridge spanning the Columbia River.
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The mail plane crashed en route during a storm.
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In fog, the pilot lost his bearing in fog and crashed 60 km from the airport.
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed onto a golf course  while on approach during a demonstration flight.
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The airmail plane crash landed and burst into flames on a farm in fog and snow while attempting to make an emergency landing.
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crrashed moments after taking off from Port-Francqui.
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route to Los Angeles, the pilot, flying a low altitude due to poor weather conditions tried to turn back. While in a left turn his left wing struck a hill, crashed and burned. Adverse weather conditions. The plane flew into a sudden squall which cause the pilot to lose control.
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ran into thunderstorms and crashed into the sea.
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While preparing to land, the plane side slipped and dived into the ground from a height of 500 ft. and caught fire. As quickly as the bodies were removed, a hastily mustered crew of pilots and mechanics from Universal Airlines  and Central Airlines, began removing all evidence of the accident, savagely fighting off reporters and photographers as they worked.
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While attempting to land the plane struck a building and fell into the Connecticut river.
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land in snow, the plane rose up, stalled and crashed. Fatigue of the upper front strut of the right tail which failed in flight, causing the spar to fail as well.
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into power lines 150 feet above the ground in fog.
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While flying in foggy conditions at night, the captain lowered his altitude, hit a wave and fiipped over.
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Boston Harbor after losing the right  engine on takeoff.
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The flying boat landed in a storm in the open ocean due to engine failure. After three hours, the plane was  capsized by a large wave while under tow.
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft exploded in the air at an altitude of 4,000 feet shortly after taking off. The plane was flying in an area of fog and thunderstorms.
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed about 10 miles from it's destination. Possible buffeting or irregular ocillation of the horizontal stabilizer leading to separation of the left stabilizer.
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed when the pilot made a sharp turn to avoid a chimney and lost control of the aircraft.
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane caught on file shortly after taking off from Croydon.
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The air mail plane crashed in fog  while attempting to land in fog.
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The airship was on its inaugural flight from Cardington, England to Karachi, (Pakistan). During a storm on the first night, it suddenly nosedived, leveled briefly, then dived again crashing and burning. Preparations had been rushed for political reasons and there had been no full-speed test flight. In the wind and rain, the outer cover split open at the front so that the two forward gasbags ruptured simultaneously. Dropping ballast raised the nose, but only because there was also dynamic lift, which was promptly lost as speed was reduced, presumably to save the remaining gasbags.
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into hill while attempting to land after running into a strong gust of wind..
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The french postal plane crashed into mountains.
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fflying over the Darling Range, aircraft went out of control and dove into a hilly terrain,
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while taking off.
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into high ground in fog after losing an engine. The plane was named "City of Washington."
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After developing engine trouble the pilot tried to parachute out of the plane but the parachute got caught on the plane and the pilot was dragged to his death.
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the sea.
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a mountainside at an altitude of 4,500  feet during a snowstorm.
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The lower right wing of the aircraft hit the mast of  a river boat and the plane flipped over on its back and  crashed onto a river bank. The aircraft was named "Shanghai".
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After deciding to return to his base because of fog, the pilot of the mail plane  lowered his altitude and struck the ground.
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The mail plane flew into Bluff Mountain in dense fog.
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While droping a mail bag the plane stalled and crashed.
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane carrying mail, crashed into a field, turned over and burst into flames. There was heavy fog in the area of the accident.
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed due to fuel exhaustion after encountering strong headwinds and getting lost.
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed in the Snowy Mountains in poor weather conditions. Wreckage found 10/26/1958.
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after taking off from Kansas City, one of the aircraft's wing's separated in flight after penetrating a thunderstorm and experiencing strong turbulence and icing. The plane crashed into a wheat field. Wing-aileron flutter, brought about by moisture leaking into the wing's interior, weakening the glue that bonded the wooden spars. Notre Dame football coach, Knute Rockne, 43, killed.
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fuselage failure. Four were seriously injured and both the pilot and radio operator were killed.
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The mail plane crashed into Las Tunas Canyon while attempting to land at  Burbank Airport in dense fog.
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hit trees in fog and cashed into the jungle.
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into a mountain and burned in poor visibility and icing conditions.
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a trees and fell into a river 50 km south of Sandoway after experiencing engine trouble while attempting to land at Sandoway in poor visibility and monsoon conditions.
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A wing buckled as the plane was attempting to land and the plane crashed.
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After circling in fog for half an hour, the plane rose to about 300 ft. and nose dived into the ground and burst into flames. Engine failure.
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Engine quit while taking off. The plane crashed from a height of 700 feet. The pilot tried to return to the airport  by banking to the right but did not have sufficient altitude to recover.
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft caught fire in mid air and crashed.
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed from a height of 500 feet on the banks of Little Miami River shortly after taking off.  Engine failure due to a broken hub on the right engine which led to the detachment of the motor from the aircraft.
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed in a severe rainstorm while attempting to land.
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in low overcast and darkness while en route.
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into San Francisco Bay shortly after taking off from Oakland airport.
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the sea while en route.
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed  onto a golf course and burst into flames after circling the airport twice to land.
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Flew into a thunderstorm over mountains, lost a wing and crashed.
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The mail plane crashed 8 miles west of Salt Lake airport. It is believed the plane overturned while attempting to land in the dark and in a snowstorm.
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into Chingshan mountain range 10 miles south of Tsinan in fog.
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed in fog while attempting to land.
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed attempting to land at an alternate airfield in a sleet storm. The plane struck the roof of a barn adjacent to the airfield and was destroyed. Icing.
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Take off  was made with the  emergency hatch in cockpit roof open. This spoiled the lift and aircraft didn't become airborne.  At the end of the field, the aircraft crashed into a dam.
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The crew crashed into the sea after a hydraulic failure and fire.
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Under orders from his supervisor, the pilot took off in extremely poor weather conditions. After encountering fog he attempted to turn back to the airport but a wing tip struck a knoll and the plane crashed.
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The pilot lost his directions in heavy fog. He decided to bail out and abandoned the aircraft. While doing so, he hit the horizontal stabilizer and was killed. The aircraft then crashed into a residential area,
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a canyon, in mountains, during a blizzard. Wreckage found a week later.
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Disappeared while en route on a 45 minute flight.
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Struck an irrigation ditch and caught fire during landing.
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The mail plane crashed in a snowstorm.
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the ocean after flying into a thunderstorm.
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a skeleton of an old windmill, 500 yards from the edge of the field while practicing night landings.
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The crew reduced altitude in foggy conditions to maintain visual contact with the ground. Crashed into an apple orchard after striking power lines. One survivor died the next day.
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The mail plane pilot drowned when his parachute tangled in the fuselage and he was dragged into the Ohio River after his plane crashed.
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into the ground during a sand storm.
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed in a storm.
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed while in final approach.
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed and burned  in fog while attempting to land at Burbank Airport.
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed in a river after the engine exploded.
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed in a severe snowstorm in the Andes Mountains.  The wreckage was buried by ice and snow and wasn’t found until March 22, 1934.
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crrashed and sunk while landing in Beyrough harbor.
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The crew radioed they had problems with engine 3. The crew lowered their altitude and attempted an emergency landing. In low visibility and at night they hit a chimney and crashed.
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The mail plane struck a mountain and burned after encountering poor weather conditions.
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On approach to Croydon in fog and reduced visibility the plane crashed in a hotel parking lot.
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The left wing and rudder detached in strong winds and turbulence after the pilot made a sharp left turn.
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed shortly afer taking off.
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Former American army flyer Donald Duke was killed when his plane carrying Bolivian army supplies crashed.
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The mail plane ditched into the English Channel after encountering 60 mile-an-hour gale force winds.
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into mountainous terrain in the Spessart mountains in fog, after a wing separated from the aircraft due to overstressing..
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Became lost and circled  until the plane struck an oak tree and crashed onto a island in the bayou.
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The mail plane crashed in a snowstorm. The pilot died two days later from his injuries.
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Struck a mountain when the pilot reduced altitude to maintain contact with the ground.
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The pilot lost control and crashed after attempting an aerobatic maneuver.
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              On the second attempt at taking off, the float plane struck waves and overturned.
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Went into a vertical bank and crashed and burned.
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into a mountainside.
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The pilot of the mail plane lost his bearings and crashed into the hillside in poor visibility.
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The mail plane crashed while taking off.
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed and burned.
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed into tops of two houses and smashed into a third, bursting into flames in heavy rain.  An unusual and unforeseen condition of the weather developed its intensity in the immediate locality of the accident.  The ceiling suddenly dropped as the plane approached its destination.
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The airliner was crusing at about 4,000 feet when fire was observed coming out of its tail section. The pilot tried to make an emergency landing but the fuselage split in two causing the aircraft to crash and burn. Although never proven, this is thought to be the first airline disaster caused by an act of satotage. The fire was thought to have been started by a passenger, Dr. Voss,  in an attempt to commit suicide. The plane was named Cit y of Liverpool.
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed under unknown circumstances.
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While cruising at 1,600 feet off New Jersey, strong air currents droped the ship to 700 feet before leveling off.  Before it could regain a safe height, it plummeted into the Atlantic Ocean. Decision by the commander to fly into a storm despite the presence of lightning.
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into a mountain after encountering a mountain wave..
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed on a test flight before delivery to Eurasia in China.
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed after being forced down to the ground by strong downdrafts.
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The mail plane had engine faiure and crashed into a ravine.
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After attempting to land in lake Michigan the pilot encounter rough water and aborted the landing. While taking off the right wing separated from the plane due to the previous rough landing,
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The float plane was forced to ditch in gale force winds. No trace of the plane or those onboard were ever found.
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into a mountain slope  during a storm while attempting to make an emergency landing.
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed on the grounds of an insane asylum after losing an engine on takeoff.
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While en route to Chicago, the aircraft was destroyed by an explosive device placed in the cargo hold, consisting of nitro-glycerin and attached to a timing device. Eyewitnesses on the ground reported hearing an explosion shortly after 9 p.m., and told of seeing the plane in flames at an altitude of about 1,000 feet. A second explosion followed after the plane crashed.This was the first proven case of sabotage in the history of commercial aviation.
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in a thickly wooded area upon taking off after the pilot became lost in fog.
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The pilot bailed out after the engine caught fire. He was not injured.
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the Chingshan mountain range in fog.
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed due to structural failure during a test flight.
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed under unknown circumstances.
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed after striking an obstacle while landing in poor visibility and snow.
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in poor weather conditions while enroute.
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed  into a field in desnse fog after hitting a radio antenna tower which tore off a wing.
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed while en route in a severe snowstorm.  Icing. The aircraft was named "Emeraude."
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed on top of Parley's Canyon, 20 miles from Salt Lake City shortly after taking off for Cheyenne. Pilot error. The crew failed to gain sufficient altitude to clear rapidly rising terrain.
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into a snow drift due to icing in a blizzard.
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Scadta was a Pan Am subsidiary.  It was operating a domestic flight, which crashed in the Colombian jungle, which was called "Green Hell." Five Goigira Indians, who were canoeing up the Uribe River, found pieces of clothing, and then dead bodies of five people from the crash, and the wreckage of the aircraft.  They also found a man who was alive, but dazed, exhausted, half crazy and unable to speak.  They carried him for seven days through the jungle to civilization.  He later recovered, and his name was Newton C. Marshall, General Manager of South American Gold & Platinum Company.  He was the only survivor.
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed on take off due to engine failure.
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into the English Channel and sunk immedately in fog.
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane struck an aerial mast and crashed into houses while attempting to take off.
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into Last Chance Hill in the Catskill Mountains at an altitude of 2,000 feet in fog and thunderstorms while en route. Pilot deviated from the prescribed course and flew over hazardous terrain.
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into Mar Chiquita Lagoon during a heavy rainstorm. The aircraft was named "San Pedro."
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Weather related.
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while en route to pick up passengers. The plane crashed near a fire station in heavy fog and burst into flames killing the pilot.
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Failed to gain altitude and struck a grove of trees while attempting to take off. The plane came to rest in a watermelon patch.
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed during a violent storm near the Swiss - Germany border. The plane fell from a height of 3,000 feet, bursting into flames. Failure of the right wing caused by fractures in the structure which occurred because of  oscillations in the wing.
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The crew lost control of the aircraft and crashed while taking off from Bahia while on a mail flight.
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed about 11 miles from St. Joseph in heavy fog. Pilot error in taking off in dangerous weather conditions and turning too close the the ground in a fog-bound area. Inaccurate weather conditions reported to the pilot.
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While overflying The Channel, the pilot encountered poor weather conditions with light rain and fog. He decided to return but due to low visibility and while cruising VFR, he was unable to distinguish the water surface and eventually lost control of the aircraft that crashed into the sea some five km off Folkestone. The pilot"s lack of skill and knowledge in matters of navigation .
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed after in-flight loss of control, possibly stalled at low altitude in dusty low-visibility conditions.
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed 10 miles off the coast under unknown circumstances
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      On final approach to Kaiapit, the aircraft was too low and hit a house short of runway and caught fir. The aircraft was named "Canberra."
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft suddenly went out of control and crashed to the ground on its delivery flight from England to Brisbane. Improper loading of parts resulting in an aft center of gravity.
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While flying at night in marginal weather conditions, the pilot flew too close to the ground  hit trees and crashed in flames in a wooded area.  The pilot committed an error in judgment in turning too close to the ground in a fog bound area.
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed under unknown circumstances
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The mail plane crashed to the ground from a low altitude. Icing.
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a mountain in poor weater condtions and low visiblity while en route.
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While flying over the Iraqi Desert at night, the crew encountered poor weather conditions and decided to divert to Rutbah Wells. On approach, the aircraft impacted the ground and exploded.16 km from Rutbah Wells airfield. The aircraft was named "Uiver" (Dutch word for stork).
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into Big Pilot mountain, 50 feet from the top of the summit, four miles from Sunbright, in poor visibility. The battery-generator system failed, thus causing an error in the ship's compass and probably affecting other essential navigation instruments.
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed under unknown circumstances.
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a column of soldiers during training. The crew survived with injuries but 15 soldiers were killed and 11 injured. Later the pilot was court-martialled and dismissed.
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The mail plane crashed and burned soon after taking off in a blinding snowstorm.
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed full speed into a hill, 450 feet high in rain and fog. Icing.
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fuselage failure forced an emergency landing in a field.
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After flying over the airport into a strong headwind, in an attempt to land, one of the aircraft's two engines failed.  While attempting to return to the airport the pilot headed into the strong wind and lost airspeed until he stalled and crashed from a height  of 100 - 130 feet.
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The crew,(3 student pilots and 2 instructors were performing a training flight over Baltic Sea when the  aircraft crashed into the sea for reasons unknown.
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after departure, the captain decided to return to Paris because of low visibility. The aircraft hit a tree and crashed in an open field. The chief pilot of Air France, Robert Bajac, 36, was killed. Blame was placed on the aircraft which was found to be unstable in flight.
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed after the pilot tried to maintain visual contact with the ground in heavy fog and snow. The plane was named "Leeuwerik." The pilot was unable to distinguish the ground from the surroundings and to establish his real position to continue then flight in a safely manner.
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed at Rattlesnake Butte after the plane lost engine power. James Montijo, 40, the man who taught Amelia Earhart to fly, killed. The accidental collision with the ground while doing low flying in violation of the Air Commerce Regulations.
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed while en route from Albuquerque to Kansas City. After encountering fog and poor visibility, the plane was diverted to Kirksville where witnesses reported the low flying aircraft made contact with the ground and crashed. Whether the plane struck the ground while the pilot was attempting to make an emergency landing or because the available fuel supply had been exhausted, or for other reasons, could not be determined. New Mexico Senator Bronson M. Cutting, 46, killed. Improper clearance of the airplane from Albuquerque by the company's ground personnel when the plane's two-way radio was not functioning properly.
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision with an I-5 fighter at 2,300 ft. The fighter was performing aerobatics trying to loop around the Tupolev. The plane crashed into a residental neighborhood and was on its maiden flight. The plane was nicknamed "Maxim Gorky."  Pilot error. Forty-nine killed on the Tupolev, one on the I-5
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on a sightseeing trip, the plane ran out of fuel and crashed. Carelessness and negligence on the part of the pilot for not replenishing his fuel supply before it got dangerously low and poor judgment on his part for attempting to return to the airport when there was open terrain ahead of him. Many passengers did not use their seatbelts nor were they instructed in their use.
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While flying in poor weather conditions, the pilot decided to reduce his altitude to maintain a visual contact with the ground and crashed into a hill. The accidental collision with the ground while flying low due to severe local weather conditions.
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into the ground on a farm  after the pilot made an abrupt turn to avoid trees, striking the wing on the ground. The unintentional collision with the ground while flying at too low altitude at night.
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into the Ulua River.
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A collision occurred between the two Ford Tri-Motors as one was barely off the ground and one was still on the ground at Olaya Herrera Airfield. The accident was officially attributed to wind sheer or the one aircraft being blown into the other aircraft as it took off. Rivalry among the two pilots may have played a part in the accident as one pilot had buzzed the other four days before the accident..  Actor, singer, Carlos Gardel, 44, and his lyricist Alfredo Le Pera, 35, among those killed.
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane lost altitude while attempting an emergency landing after taking off and losing two engines. The wing hit a dyke and the plane burst into flames.
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane deviated from its course and flew 20 miles off shore and crashed.  Cause unknown.
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a mountain near St. Bernard Pass in Switzerland. Mountains obscured by clouds. The crew flew through the wrong valley which ended in a dead end. Icing condtions,.
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shortly after taking from Cardiff Airport, and climbing, the twin engine aircraft stalled and crashed in a field. The plane was named  "Saint Clements Bay ."
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While en route,, the crew encountered engine trouble, lost control of the aircraft and crashed  near the Rio Magdalena.
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ten minutes after taking off an explosion occurred aboard and the aircraft crashed in the dessert, 8 km south of the airport. The cause of the explosion was undetermined.
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Destoryed in a storm.
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed 3 miles south of Gilmer. The outboard engine separated from the aircraft after a propeller blade broke off resulting in an imbalanced condition which led to loss of control of the aircraft.
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dense fog caused the pilot to make a forced landing about 15 miles south of Point Barrow.  After some mechanical repairs, the plane took off, rose to about 50 feet and then crashed into shallow water. Loss of control of the aircraft at a low altitude after sudden engine failure due to the extreme nose-heaviness of the aircraft. Adventurer, Wiley Post, 37, and humorist, Will Rogers, 56, killed. Most experts believe that a combination of miscalculations in the design and operation of the heavily customized aircraft resulted in the uncontrollable spin that occurred right after takeoff.
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane flew into a mountain 43 miles West of Glendo in heavy fog.  Against advice to the contrary, the pilot decided to fly a direct route to Denver rather than go around, following the valleys and airways used by other pilots. The direct route took him across some of the most dangerous flying country in the west.
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A few minutes after take off from Burbank Airport, while climbing to a height of 1,000 feet in foggy conditions, the aircraft went out of control, stalled, hit power lines and crashed in flames in a field.
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed and burned in mountainous terrain in  adverse weather conditions.
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed in the Bass Strait. Went in to an uncontrollable spin following an engine failure.
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While flying in a normal, slightly descending path, the aircraft  first collided with the ground just a few feet  below the top of a small knoll tearing out both engines and engine nacelles. It then rebounded and continued through the air for a distance of 1,120 feet, where it came to rest.  Error on the part of the pilot in executing an abrupt maneuver with insufficient altitude for safety and failure of the pilot to maintain proper control of the aircraft during this maneuver.
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the sea in the dense fog and low visibility.
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane lost the left engine shortly after taking off. The pilot tried to make an emergency landing but was caught in a downdraft and the plane crashed.
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into a hill in poor weather conditions 5 miles south of Cheyenne. Test flight. Poor judgment by the pilot for executing an abrupt maneuver with insufficient altitude for safety and  failure of the pilot to maintain proper control of the aircraft during this maneuver.
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The postal plane crashed at Atalaya Beach in unknown circumstances.
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Plunged to the ground thirty minutes after leaving Fort Worth. Tried to return to Dallas airport due to inclement weather.
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While preparing for departure a fire broke out. The fire erupted while fueling.
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed whille flying in the vicinity of a thunderstorm.
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On final approach, the aircraft was too low and hit a tree with it's right wing. It stalled and crashed in a garden short of the runway.
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While flying low, the aircraft hit tree tops, stalled and crashed in flames into a wooded area 13 km short of the runway, The pilot did not request bearings from the airport and tried to navigate on his own.
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed under unknown circumstances
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft ran out of fuel and crashed off Alexandria. The plane was named "The City of Khartoum."
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The float plane crashed after experiencing unknown technical difficulties while attempting to land.
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into trees and disintegrated. The cause of the crash could not be determined.  Possible causes include, passenger interference, one fuel tank running dry, flying too low and the co-pilot alone at the controls.
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a mountain near the village of Tapacari, 23 miles from Chochabanba.
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Vanished off the coast of Corsica after sending a distress call that the engine had failed.
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a clump of trees while attempting a landing in a snowstorm.
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Disappeared over the Atlantic ocean during a storm. The aircraft was never found. The aircraft was named "Ville de Buenos Aires."
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The mail plane disappeared while en route.
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crash landed in mountains during a snowstorm.
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Went out of control while taking off and crashed in a rivine.
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While making a turn at low speed, the aircraft stalled and crashed into mountains and caught fire.  The plane was carrying mainly German tourists. Possibly caught in a down draft when flying too low to the ground.
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The mail plane explosion in mid-air before crashing to the ground in a snowstorm.
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into Chestnut Ridge in fog. The poor  judgment on the part of the pilot for flying by visual ground observation methods after having descended through the clouds and overcast in mountainous terrain at a point unknown to him. Because of clouds and poor visibility, this required flying close to the ground whereas the safest method under such circumstances was to climb into or above the overcast to a safe altitude and determine the location of the plane by instruments and radio.
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed  while taking off after the plane hit a boat . The aircraft was shipped to Miami and repaired. One of the injured passengers was Jose Iturbi, well known conductor and  pianist.
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed on the slopes of Mount Basso, 20 miles from Turin.
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Deviated from the prescribed course and hit a mountain in poor weather conditions. Navigation error by the crew.
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Following taking off the cargo plane went out of control and crashed near Le Bourget Airport.
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed into Mt. Rigi at night in poor weather conditons.
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft hit telephone wires and a chimney before crashing in flames into a house.
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All four motors of the aircraft quit while taking off. The pilot attempted to land but crashed into a house. First fatal aviation accident in Sweden.The captain mistakenly opened the throttles instead of selecting the propeller pitch handles while the engines were in weak mixture, causing all four to stall out.
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The pilot attempted an emergency landing in a field after the engine failured. The aircraft was named "Puma."
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While cruising, the aircraft crashed into the south face of Mt. Lyhesten in fog.
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shortly after taking off in fog the aircraft went out of control and crashed into a field.
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The landing gear failed on landing. The aircraft veered off the runway and burst into flames.
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ditched at sea. Loss of all engines necessitating a ditching at sea.
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The mail plane crashed into mountains 50 miles from Toulouse in fog.
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while delivering mail.
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while attempting to take off from Lambert Field.  The making of a turn at an extremely low altitude, for reasons unknown, in which the wing of the airplane unintentionally contacted the ground.
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The float plane crashed under unknown circumstances.
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The mail plane crashed at night under unknown circumstances.
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While attempting to land, the plane hit high waves and broke up. Strong lateral winds while landing on rough sea.
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lost all three engines after the fuel supply was cut off. Possibly a passenger shut off the fuel supply by accident with the heel of her shoe. One 17 year old girl survived.
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed under unknown circumstances while delivering mail.
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed in a snowstorm after the pilot cut the motor and the plane crashed into a hill.
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Suffered engine failue on the approach,struck the mast of a ship and burst into flames.
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A half-hour after taking off, the engine failed and the plane crashed into a fence and burst into flames  while making a forced landing.
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The mail plane crashed for reasons unknown.
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The mail plane crashed under unknown circumstances.
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While encountering heavy fog the aircraft was flying too low and hit tree tops before crashing into flames in a wooded area. It was believed that the pilot had ‘lost his bearings’ while flying in a heavy fog, resulting in either a controlled impact with the terrain or an uncontrolled descent into the ground.
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On approach to Nuremberg Airport in foggy conditions, the aircraft deviated from the prescribed course and was too low when it hit tree tops and crashed in a wooded area. Pilot error.
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The mail plane attempted to land in strong winds and poor weather conditons. Pilot error.
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the French Alps  in high winds. The plane was named "Rudolf Windisch."
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed short of the runway while attempting to land.
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The last message from the aviator was "we have switched off the rear engine." The plane and crew of four were never found. Aviator Jean Mermoz killed.
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed into houses while attempting to take off in heavy fog. A stewardess and the radio operator survived. Aircraft designer Juan de la Cierva killed. Pilot error. Piilot did not maintain directional control of the aircraft and abort the takeoff
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into Lone Peak while attempting to land at Salt Lake. Inability of the pilots to identify the south leg of the Salt Lake radio range due to a local static condition which rendered both range receivers in the airplane inoperative.
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The mail plane crashed into Early Creek Ridge, 15 miles south of Kellogg, in a blizzard. Pilot error in not following the radio range course upon leaving Missoula and failing to ascent to a safe altitude over the course pursued from Elk River.
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into trees in poor weather while attempting to land at Newark. Error on the part of the pilot for attempting to get down under the overcast without first definitely proving his position.  Improper dispatching for clearing the flight into an area of predicted bad weather, particularly when the area cleared through did not permit a safe return, and static conditions encountered which rendered reception of the radio range signals over the airplane's range receivers unintelligible.
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After an attempted go-around the right engine failed and the plane crashed and burst into flames into a corn field..
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While on approach to Burbank Airport, the airliner crashed into Rice Canyon, just south of Newhall.  It was raining with poor visibility. The aircraft flew into a hill loosing its wings, continued without wings across Rice Canyon and struck against a rocky wall of a bluff and dropped over a hundred feet to the bottom of the canyon.  Error on the part of the pilot in attempting to fly through the Newhall pass at an altitude lower than the surrounding mountains without first determining by radio, the existing weather.
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After starting a descent, the aircraft crashed into Playa Vincente in adverse weather.
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into Pinetos Peak, 4 miles southeast of Newhall while attempting to land at Burbank Airport in fog and rain. The pilot descended to a dangerously low altitude without positive knowledge of his position. African explorer, Martin Johnson, 52, killed. Johnson suffered a fractured skull in the crash and died the next day in a hospital.
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land the aircraft went out of control and crashed.
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed into San Francisco Bay, approximately 2 miles offshore, while on approach. The accidental jamming of the elevator controls as the result of the co-pilot's microphone being inadvertently dropped and lodged between the elevator control column and the seat rail in such a way that the crew was unable to prevent rapid descent of the airplane. First accident involving a DC-3.
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flying low to maintain visual contact with the ground the plane ran into downdrafts that exceeded its ability to climb. The plane crashed and burned.
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The German mail plane crashed into a swamp. The plane was named 'Rostock."
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into trees on a mountainside in a snowstorm.
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While attempting to land the aircraft banked left and crashed short of the runway. Heavy icing which rendered the plane uncontrollable.
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Engine failure led to a crash landing in a field.
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The airship Hindenburg caught fire and burned while being moored at Lakehurst, New Jersey.  Possible causes were static discharge which ignited leaking hydrogen or sabotage. It has been theorized that a sudden turn just before landing caused a steel cable to snap which punctured one of the hydrogen airbags. Thereafter, when mooring ropes were dropped to the ground, the cage was discharged setting up a static discharge between the Hindenburg's outer skin and frame causing the hydrogen to ignite.
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stalled and crashed on takeoff.
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On final approach at night, the crew elected to make a go around for unknown reasons. The aircraft stalled and crashed short of runway.
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane disappeared while en route from  Lae to Howland Island. The aircraft had to be flown higher than expected due to storms which used extra fuel.  In addition, strong head winds were encountered.  The aircraft most likely ran out of fuel and ditched into the ocean 50 to 100 miles northwest of Howland Island. Amelia Earhart, 40, and navigator Fred Noonan, killed.
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed  into a potato field after possibly being struck by lightning and after an in-flight fire.
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a building on takeoff. The accident happened after the crew abandoned the approach and attempt an overshoot maneuver,
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The flying boat plunged into the ocean 20 miles off of Cristobal. The plane probably struck the water at high speed and was destroyed by an immediate explosion and fire.
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While en route, the plane caught fire and crashed. A passenger lit a cigarette in the rear toilet and ignited accumulated vapors.
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Forced to ditch into the sea due to bad weather. One wing broke off due to high waves and 8 passengers hung on to the remaining wing until rescued. The aircraft was named Chekiang.
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane struck a power pole while taking off from Daytona and crashed to the ground 600 feet from the first point of impact. The absence of reasonable notice to those operating and navigating the aircraft that an object had been erected which constituted a hazard to the aircraft taking off.
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane crashed and burned in a field while en route after entering dense fog.
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After taking off in foggy condition, the cargo plane lost altitude and crashed into a house.
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed as it landed in Phaleron Bay. Two passengers drowned. Poor visibility was blamed for the accident.
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While in initial climb, the left engine failed. The crew decided to return for a safe landing but the aircraft hit  tree tops, stalled and crashed. Bronislaw Hubermann, celibrated Polish violinist was sightly injured.
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed into the side of a mountain (Humpy Ridge)  in level flight at 10,000 ft. under adverse weather conditions. Static conditions encountered in the last portion of the flight which rendered the reception of radio range signals unintelligible. The continuation of the flight into mountainous country at an altitude below of higher mountains without the aid of ground visibility or radio signals to definitely identify position. A change in the weather caused by the approach of an unpredicted cold front.
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Disappeared after sending a distress call while en route.
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On final approach at night and in poor visibility due to fog, the pilot flew too low, hit power lines and crashed in a field.
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hit the ground prematurely while attempting to land in fog.
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft was flying from Cologne to London and should have made a scheduled stop at Brussel's Haren airport.  However, Brussels was shrouded in fog and the pilot was advised to fly on to Ostend. Weather conditions were poor in Ostend as well and the aircraft hit a factory chimney while flying on approach to Ostend Stene airport.  All on board were killed including the Grand Duke and Duchess of Hesse who were traveling to London for a minor royal wedding. An airport employee was blamed for not guiding the pilot down in conditions of poor visibility.
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Engine failure on takeoff caused the cargo plane to stall and crash into a hanger.
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a hill while on approach in low visibility.
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stalled during takeoff and crashed into the sea. Wrong flap setting for takeoff, causing the aircraft to stall.
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The flying boat crashed while attempting to take off. The aircraft was named Cygnus.
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed in poor weather conditions while flying too low hitting Pas de la Motte peak.
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane was 10 minutes from landing at Vienna when it was told to change course by the Prague airport controller. The change took the plane into mountainous terrain in snowy conditions. The plane impacted Hutska Hora mountain at an alitiude of 3,300 feet. The cause was never determined. Possibly a naviational error or for political reasons.
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed short of the runway while attempting to land in snow and icing conditions.
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed 12 miles northeast of Bozeman after experiencing structural failure of the tail. There was severe turbulence reported in the area at the time of the accident. The structural failure of the upper vertical fins and rudders due to flutter "natural resonance, or period of vibration" which resulted in the separation of the rudder and fins and loss of control of the aircraft.
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft exploded in mid-air as the crew attempted to dump fuel for an emergency landing at Pago Pago. Neither the plane or seven crew members were ever found. The aircraft was named "Samoan Clipper."  Pan American's first and chief pilot, Captain Edwin C. Musick, killed.
## 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed in rugged terrain while en route.
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The two aircraft crashed in mid-air in heavy rain and darkness and crashed into the sea.
## 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The airship crashed while on a trial flight in preparation of rescuing  Russian scientists on an ice floe in Greenland. The airship crashed into the side of a mountain.
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed on a second test flight.
## 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The flying boat struck the breakwater in fog at 60 miles an hour and burst into flames while attempting to take off.
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disappeared over the Mediterranean Sea while flying in a storm.
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The mail plane crashed in fog within a few miles of it's destination near Bourget Airport.
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the high Sierra after encountering a severe weather front while en route. The pilot radioed that ice was forming on the DC-2's wings as it neared the Tehachapi Mountains near Bakersfield and that he was turning back towards the north to land at Fresno. The aircraft sheared off the tops of pine trees and crashed 200 feet below a summit. The wreckage was not found until 6/12/38.
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed and burst into flames shortly after taking off from Dum Dum.
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The pilot made a sharp turn, lost control of the aircraft and chrashed.
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The mail plane crashed into Cinq Croix peak in  the Pyrenees mountains while en route.
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Struck cloud obscured Mount Maranola.
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stalled and crashed on takeoff.
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After experiencing engine failure while taking off, the plane crashed into trees and exploded in flames.
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Struck Stroh peak at 3,300 feet in Mint Canyon, 27 minutes after taking off from Burbank Airport. The aircraft struck a ridge, bounded over a ravine and struck a second ridge, broke up and burst into flames. The crew did not follow the prescribed procedures and was cruising at an unsafe altitude to overfly the mountainous region.
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shortly after taking the plane stalled and crashed into Santos estuary.
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                An uncontrollable fire developed in the right engine and the pilot decided to make an emergency landing rather than try to reach Cleveland Airport. The plane struck trees in level flight 8.5 miles east of Cleveland Airport. A fire in the right engine accessory section which resulted from the failure of a cylinder barrel and was fed from the right engine oil supply.
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a wooded area after hitting trees
## 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed on Langeoog Island.
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed about 50 miles from Singida.
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An hour after leaving Santiago, radio contact with the flight was lost, as it had crashed in the high Andes.  It was not found until February 1941, by indians, who plundered the aircraft and the dead passengers looking for valuables.
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While taking off from Billings, the airplane left the ground in a stalled condition from which the pilot attempted to recover by use of full emergency power. Emergency power was not available because of improper adjustment of the stop which had been placed on the quadrant of the propeller pitch control levers, preventing the levers from going to the full low pitch position. As a result of the stalled condition, the airplane fell off on the right wing and crashed at a point 1,100 feet beyond the NE runway, the pilot having cut the switch just prior to the impact.
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The flying boat crashed into the Tyrrhenian Sea after the collapse of a wing.
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disappeared over the Andes mountains. Wreckage found Feb 1941at Mt. Mercedario.
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in strong turbulence and after being struck by lightning .
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Flew into a hillside soon after takeoff from Kisumu. The ship was named "Amalthea."
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed into the ocean while en route between Guam and Manilla. The last known position was 12.27 N, 130.40 W or 582 nm east southeast of Manila at 04:00 GCT. Cause unknown. The plane may have been hijacked by the Japanese and flown to Truk Island where the crew and passengers were murdered. The aircraft was named "Hawaii Clipper."
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in a field after penetrating a thunderstorm. The plane was carrying Hungarian journalists.
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crash landed off Chichijima island.
## 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a mountain in heavy rain in an area being affected by a hurricane.
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the Black Forest mountains in poor weather conditions. One stewardess survived but died a day later..
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Flew into a mountain wave after taking off, went into a dive and crashed into Guanabara Bay.
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Caught fire after a ground looping.
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sea plane crashed shortly after taking off on a test flight and sank.
## 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While en route from Hong Kong to Chungking, the aircraft was shot down by Japanese military fighters. The aircraft was named Kweilin. The plane was rebuilt to fly again only to be shot down again by Japanese military.
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Midair collision between the airliner and a small plane. The wreckage fell on the suburbs of Tokyo.  Three killed on the airliner, two in the trainer and 53 on the ground.
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The mail /passenger transport crashed in a field 10 miles south of Tucumcari after penetrating a strong storm. Excessive vibration and loss of power, due to malfunctioning of left engine, consulting in insufficient speed to sustain the aircraft in flight.
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a cane field short of the runwa while attempting to land when the pilot swerved to avoid a tractor.
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Disappeared over the Atlantic ocean.
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While flying over the Alps, the aircraft disappeared. A search was unsuccessful and  no trace of the aircraft nor the occupant was found. A mountain guide found debris 14 years later, on the slope of the Pizzo Cengalo on the border with Switzerland. Some mail bags were recovered and sent to the local post office.
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft broke-up in midair and crashed to the ground.  A propeller may have broken, tearing loose an engine.
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into Mt. Daodenong in heavy fog while en route. Procedural errors by the pilot.
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Caught fire and crashed into a field two minutes after taking off. A farm worker was crushed to death when the wreckage landed on him. The pilot allowed the plane to fall into a side-slip while climbing through a low overcast and at an insufficient altitude for him to regain contol.
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft flew into the ground during approach in poor visibility. The first officer was commander of the military flying school Soesterberg. Pilot descended below a safe height during the approach.
## 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The mail plane crashed several minutes after taking off from Regina
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                During takeoff the aircraft hit a palm tree and burst into flames due to double engine failure.
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The flying boat crashed on Lake Ramadi at night in a sandstorm.
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft ran out of fuel and ditched into the ocean a little less than a mile offshore. Failure of the pilot to definitely establish the position of the aircraft through standard orientation procedures within a reasonable time after intersecting a leg of the Oakland radio range and of Company flight dispatchers, charged with the responsibilities of directing the operation of the trip, to properly safeguard the flight, resulting in forced landing of the aircraft at sea due to exhausted fuel supply.
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed and burned on a hill while taking off in foggy conditions. The pilot did not have authorization to take off during poor visibility.
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the East China Sea after experiencing engine failure.
## 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whle taking off the aircraft stalled and struck a dyke near Schiphol Airport and caught fire.
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shot down by Japanese aircraft. Owned by Imperial Airways and operated by Qantas.
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed onto a field losing both wings while attempting to land in low overcast.
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In reduced visibility and strong winds, the seaplane crashed into the side of Mt. Chambe while attempting to land at Rio de Janerio.
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed 2,650 feet past the runway boundry after taking off. A fire of considerable intensity developed, prior to the crash, in the cockpit of the aircraft, in the immediate vicinity of the gasoline cross-feed valve. It  was not possible to determine the exact origin and source of the fire.
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The mail plane failed to gain height after taking off, stalled and crashed into the Katherine River during a storm.
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While en route, the aircraft ditched, broke in two  and sank in the Atlantic Ocean, 285 miles SE of Long Island New York. Complete loss of power to the two inner engines and partial loss of power to the two outer engines due to carburetor icing. The aircraft was named "Cavalier."
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The air taxi encountered low visibility and snow and crashed on Grand Island. The wreckage was found 1 month later
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While cruising in bad weather conditions, aircraft hit a mountain near Roubion, in the National Park of Mercantour, 50 km north of Nice. Engine trouble may have factored in the accident, which occurred in adverse weather conditions, with fog and falling snow in the area.
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane stalled and crashed into a field short of the runway.
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed after the tail broke off. Dutch engineer A.G. von Baumhauer among those killed.  He was a famous helicopter pioneer who first came up with the tail rotor/main rotor configuration which is in use today. Strructural failure of the wings and horizontal tail surfaces due t o the imposition of loads thereon in excess of those for which they were designed, the failure occurring in an abrupt pull-out from a dive following recovery from an inadvertent spin.
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         An explosion in an engine, just after takeoff blew the two halves of the cowl open creating excessive drag and causing the left wing to drop. The captain tried to circle back, but the wing impacted an embankment along a section line road and crashed about 100 yards inside the boundary. Either the hot metal of the engines or some other source ignited the fuel spilling out of the ruptured tank and the cabin was quickly engulfed in flames. The initial cause of the explosion was a cylinder blow out which was a problem with that particular engine and had caused problems in two other aircraft, a TWA and United DC-2, both of which landed safely.
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain.
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After an aborted landing the plane hit the water and came to rest off Ilha de Mocambique island.
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed and burned in a mountainous area due to icing.
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While performing aerobatics, the aircraft lost control and crashed into numerous building near a college.
## 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 During  a training flight with one engine out,  the crew hit an obstacle and then a sentry-box with 9 soldiers inside. One soldier  died and 3 others were wounded. The aircraft was repaired.
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The crew  made a steep turn over a beach at too low a speed, stalled and crashed. Two student pilots.were flying the plane.
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft hit the slope of Mt Dora's Seat when flying too low.
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While attempting to land the aircraft crashed after an engine fire caused a loss in air speed and a stall.
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in the Llaveria mountains in heavy fog and caught fire. The plane hit the highest peak of the mountains.
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane lost power from the left engine, yawed to the left, and started a descending turn in the same direction. The plane continued to lose altitude and turn at a sharper and steeper angle until it struck a caisson anchored at right angles to a small island in the harbor immediately adjacent to its landing approach path.   Loss of power from the left engine during the landing approach, necessitating an attempted landing under extremely hazardous conditions.
## 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the sea after a fire aboard. Leakage of fuel from the overflow boxes, which resulted from overfilling of the fuel tanks.
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed en route for unknown reasons.
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed while taking off from Hanover. Visibility was poor because of low fog covering the runway. The pilot was searching for the proper flight path when the plane veered towards a building while still 40 meters above the ground. The pilot tried to raise the plane while trying to turn left at the same time but lost control and crashed and the plane caught fire.The passengers were pilots of Lufthansa.
## 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              One Swedish passenger was killed when the plane was attacked by a German fighter. The plane was able to land safely in Amsterdam.
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while en route.
## 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Collided with the mooring of a ballon.went out of control and crashed.
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shot down by a British RAF fighter. Crashed 6 miles south of Europa Point.
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ditched into the sea, 300 miles NW of Alexandria, Egypt. A ship rescued six survivers.
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into a mountain  60 km southeast of Mogadorin in  a storm while attempting to make a forced landing.
## 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the sea shortly after take-off. Cause unknown
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed and burned on a hill side in fog. Prior to crashing the crew reported ice on the wings.
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane hit a mountain in the Andes  near Tona, northeast of Bucaramanga after the crew lost their bearings in fog.
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed in the Persian Gulf while en route with out a trace. The aircraft was named "Hannibal."
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed into Stromboli Volcano. The cause was possibly bad weather or some electromagnetic phenomena.
## 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Struck a mountain after being off course 10 miles to the west in reduced visibility.
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed and burned during a government test flight
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane was en route when it was shot down by two Soviet Tupolev SB-2 bombers. The aircraft  crashed 2-3 nm offshore of Prangli Island near Keri Lighthouse. The aircraft was named "Kaleva."
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Inadvertently shot down by French anti-aircraft fire.
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shot down by a Japanese military fighter.
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No cause was described except it being pilot error.
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was seen circling Canberra Aerodrome after which it headed west to make the final approach for landing. The aircraft momentarily disappeared behind one of the hills that surround the airport, then reappeared. There was the sound of engines being gunned, then the aircraft disappeared again. An explosion and sight  of a large plume of black smoke followed. All on board the Hudson were killed including several high ranking Australian military leaders. A witness later said the aircraft appeared to drop its left wing and then dip its nose steeply, classic symptoms of a stall, too close to the ground for recovery.
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hit a mountain slope while en route.
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While approaching Cluj-Napoca from the west, the aircraft was not on the assigned track and hit the slope of Mt Gaina during a hail and thunderstorm.
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was flying through a thunderstorm in turbulence when the it nosed over and plunged to earth near Short Hill Mountain.  Disabling of the pilots by a severe lightning discharge in the immediate neighborhood of the airplane, with resulting loss of control. With limited accident investigation tools at the time, the most likely cause was the plane flying into windshear.  U.S. Senator Ernest Lundeen from Minnesota killed.
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while attempting to land.
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shot down by Japanese military fighters. The plane ran into 5 Japanese fighters and made an emergency landing at a remote field only to be machine-gunned while trying to escape.
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hit the ground short of the runway in reduced visibility.
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashe in a storm while en route. Wreckage found 15 months later.
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into Bountiful Peak in the Wasatch Mountains, during a snowstorm, 3 nm NE of Centerville. The failure of the communications operators at Tintic, Plymouth, and Salt Lake City, Utah, whose duty it was to monitor the range, to detect its malfunctioning and immediately notify those concerned and the failure of the pilot to follow to the fullest extent established radio range technique in accordance with the requirements of the procedure established by United and approved by the Civil Aeronautics Administration.
## 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Midair collision with a private plane.  After the collision, both aircraft crashed into the Botafogo Bay. Seventeen killed on the Junkers, 1 on the private plane.
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while en route in poor weather condtions . Icing.
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shot down by Italian aircraft.
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed while attempting to land at Chicago. The failure of the pilot to exercise that degree of caution and skill required to avert a stall while approaching for a landing on the short northwest runway. A substantial contributing factor to the accident was the error in judgment of the pilot in choosing that short runway for his landing. An accumulation of ice on the wings may have increased the stalling speed of the plane.
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While en route, the aircraft was shot down by the pilot of a RAF fighter and crashed into the sea some 40 miles southwest of the Capri Island.
## 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the Mediterranian sea while en route without a trace.
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed near the Equator after the crew had lost an engine. Three hours after taking off, an SOS was transmitted. No trace of the plane was ever found.
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   An engine stalled during the initial climb and the plane crashed and burned,
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into a mountain during a thunderstorm and reduced visibility.
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shortly after passing over the west boundary of the airport, the pilot started a left turn. While in the turn, the plane contracted trees 113 feet above the level of the airport.  Full power was applied to the engines in an attempt to pull up but other trees were struck and the pilot lost control. The aircraft crashed to the ground at a point approximately one-fourth of a mile southwest of the airport boundary. The action of the pilot in attempting a landing under adverse weather conditions in disregard of the minimums prescribed by the Civil Aeronautics Administration and in maneuvering for such a landing at a dangerously low altitude.
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed after the right wing struck a tree as the pilot was attempting to land in adverse weather. Struck several other trees and landed inverted in a swamp.
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into a hill in pine woods, near Chandler Field, while attempting to make an instrument landing approach in rain and fog. The failure of the captain in charge of the flight to exercise the proper degree of fare by not checking his altimeters to determine whether both were correctly set and properly functioning before commencing his landing approach. A substantial contributing factor was the absence of an established uniform cockpit procedure on Eastern Air Lines by which both the captain and co-pilot are required to make a complete check of the controls and instruments during landing operations. Captain Edward Rickenbacker, President of Eastern Air Lines, survived the crash.
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The seaplane crashed while attemping to land and sunk.
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a mountain near Elands Bay in inclement weather.
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shot down by a He-111 German military aircraft 20 minutes after takeoff..
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Stalled and crashed during takeoff.
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while en route. Cause unknown.
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After an engine failed the crew decided to return but encountered turbulence and crashed.
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a mountain ridge in rain, low visibility and overcast conditions. Navigational error.
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed and burned on takeoff at Heathfield airfield, after veered off the runway and striking a small building and then an embankment.
## 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After a goaround the plane diverted from its prescribed course and crashed into a mountain.
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On approach the left wing broke off and the aircraft crashed in a field.
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a hillside.
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into lake Bolomon after engine failure during takeoff in windy conditions.
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Following the approach, the aircraft contacted the water in an unduly nose-low attitude while moving sideways relative to the water.  Almost immediately after first contact with the water, the aircraft swerved violently to the right and broke into several major sections. The failure of the captain to exercise requisite caution and skill in landing. A contributing factor was the smooth surface of the water, which rendered difficult, the captain's depth perception as well as the exact determination of any lateral movement of the aircraft.
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on the Greek/Hungarian border. Cause unknown,
## 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in fog and mist due to icing on the wings. The pilot, Clarence Bates, was thrown clear of the wreckage and was the lone survivor. Accumulation of ice on the wings and other surfaces of the airplane, increasing the stalling speed and the drag of the airplane on the power required to maintain flight. Action of the captain in descending to attempt a landing at Fargo with known icing conditions and critical ceiling conditions instead of proceeding to an available alternate.
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft, on a flight from New York to Chicago, circled a wooded area 3 or 4 times looking for a landing spot before stalling and diving into a plowed field. Cause unknown.
## 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       During the initial climb at night, the pilot in command suffered a spatial disorientation stalled the plane and crashed.
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The crew decided to takeoff in below-minima weather conditions with low clouds, fog, turbulences and severe icing. While attempting to return to the airport the aircraft lost altitude and crashed into a field.
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While taking off the plane hit debris in the water and broke up.
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into Mt. Potosi (Double Up Peak, Table Spring Mountain, Olcott Mountain), 32 miles SW of Las Vegas, NV, 15 minutes after taking off from the Western Airlines terminal building at Las Vegas. The aircraft clipped a rocky ledge, cartwheeled into the face of a cliff and exploded, scattering wreckage at the bottom of a ravine. Actress Carole Lombard, 33, her mother, and press agent  were killed in the crash. Her mother did not want to fly and a coin was tossed to see whether the trip would be made by train or plane. The actress was returning from a war-bond promotion.  The flight was 6.7 miles off course for unknown reasons.  Failure of the captain to follow a proper course and make use of navigation facilities available to him. A contributing factor was the blackout of beacons in the area made necessary because of the war emergency.
## 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shortly after taking off the left engine caught fire, the plane stalled and crashed.
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shot down by Japanese military aircraft.
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down by Japanese military aircraft. Owned by British Overseas Airways.
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down in error by two Royal Air Force Spitfire fighters..
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed under unknown circumstances.
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed shortly after takeoff from Archerfield Airfiield  into a hillside. Suffered structural failure while flying in adverse weather conditons of wind and low overcast.
## 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shot down by Japanese military aircraft about 150 miles from Java.
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shot down by Japanese military aircraft.
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shot down shortly after taking off by a Japanese fighter.
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed 2 km from the Kunming Airdome shortly after takeoff.  Possible causes include engine failure,  overloading, sabotage and temporary blinding by a bright light.
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft was on a government charter carrying US teletype operators from a course they'd completed in Brisbane. They departed Archerfield (Brisbane) at 0622 EST and refuelled at Charleville, Cloncurry, and Daily Waters, departing from Daily Waters at 1655 Central Standard time. From there a chain of events happened and they remained lost in scattered thunderstorms and drizzle and the blacked out North, being told by Darwin D/F that they were over a hundred miles north of where they really were, due to the inadequacies of the equipment at that time of day, the storms and long distance. In an attempt to force land before running out of fuel, they probably had an engine failure from fuel starvation in the lower engine as they oozed around in a slow turn where the captain would have been peering forward out of an open window, trying to locate a lighter (more grassy) spot in the bush to put down in rain. They probably would have been very slow so as to descend rapidly when a likely spot was sighted and on increasing power on the remaining engine the Electra flipped into a vertical bank and struck a ridge top. The wreckage was found on 6/22/1943.   We feel that they would have been very slow so as to descend rapidly when a likely spot was sighted and on increasing power on the remaining engine the Electra flipped into a vertical bank and struck a ridge top as one wing was undamaged and removed from the site when it was found.  Lockheed 14s were renown as nasty buggers at low speed on one engine.
## 637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After taking off from Salt Lake, the aircraft proceeded in the wrong direction and crashed into the side of a hill 3.8 miles northeast of the Salt Lake City Airport. The point of impact was at an elevation of 5,053 feet above sea level and about 830 feet above the airport. A deviation from the proper course, for reasons undetermined.
## 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane hit an obstruction at the end of the runway, overran the runway boundry and crashed. The failure of the captain to complete the landing run in time to avoid the obstruction at the end of the runway, for reasons undetermined, and his action in attempting to take off after striking the obstruction.
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Stalled, struck trees, crashed and burned immediately after takeoff.
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Flew into a thunderstorm and was observed in a near vertical dive before crashing to the ground.  Icing, possible overloading.
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While approaching Amberley at night, the crew became lost and continued south. After running out of fuel, the aircraft crashed into the sea some 3 km off Broken Head and sunk.
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft went out of control while flying in thunderstorm activity and may have been struck by lightning.
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Attacked by Royal Air Force fighters.  Crashed in the water while attempting to land and sank.
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lufthansa chairman, Von Gablenz killed.
## 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after taking off all radio contact was lost with the aircraft. Next day, the wreckage was found near the airport. The cause was never determined. Possible encounter with a severe thunderstorm.
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed while on a flight to Iceland during WWII. The aircraft was part of the 228th Squadron RAF.  The plane hit high ground at Eagle Rock in the Scottish Highlands in poor visibility. Possible navigational error but exact cause unknown.  Prince George, Duke of Kent was among the dead.
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Possible catastrophic in-flight fire possibly related to the design of its fuel-intake system, 90 minutes after departure.
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed during takeoff after an in-flight failure of a wing.
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a mountain, 5 miles from its destination in adverse weather.
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while attempting to land after losing oil pressure on one engine.
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft made a wide descending turn with engines running roughly and crashed into a hill in poor visibility.
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While attempting to takeoff, aircraft porpoised, attained a height of 35 ft. and then crashed into the water and broke up. Inadvertent actuation of the wing flaps to the full 35 degrees position during the take-off run, thereby rendering the aircraft excessively nose-heavy and uncontrollable.
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while on final approach. Icing. Incorrect weather conditions supplied to crew.
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft struck the north slope of Mt. Fruka Gora. Improper weather information provided to the crew.
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Midair collision between an Army bomber and airliner over Chino Canyon near Palm Springs at 9,000 feet destroying the rudder of the DC-3.  All 12 aboard the DC-3 were killed. The Lockheed B-34 landed safely with minor damage. The reckless and irresponsible conduct of the bomber pilot, William Wilson, in deliberately maneuvering a bomber in dangerous proximity to an airliner in an unjustifiable attempt to attract the attention of the first officer, his friend aboard the airliner. Composer and song writer Ralph Rainger, 41, killed.
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Struck a mouintian 8km from La Esperanza.
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After a flight of ten hours, while overflying the south part of Norway, the bomber was shot down by enemy fire and crashed.
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stalled immediately after becoming airborne and crashed. Icing.
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While attempting to land, the attitude of the plane became almost vertical after which it dove into the ground and exploded. It was reported that after the captain left his seat a passenger disengaged the autopilot and assumed control of the plane.
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed after performing a violent maneuver.  Failure of the left, or possibly both wing tips and of the horizontal  tail  surfaces as a result of a sever pull-up which caused unusual and  abnormally high air loads. The reason the pull-up maneuver was not determined.
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed 2 km from the airport  while attempting to land at Vienna to refuel.
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into the slopes of M.t Cheam at 7,000 feet. Possible complete electrical failure resulting in the deviation from the prescribed route.
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into the River Tagus after a fire broke out aboard the plane. While attempting an emergency landing the ship porpoised and slamed back down and broke up. The separation of a cylinder may have thrown out oil and started the blaze.
## 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Exploded in mid-air and crashed along the coast of South American while en route to Africa.
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Disappeared while en route. Life boats with dead bodies found 100 km away.
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Flew into a 2,500 ft. mountain while circling in bad weather, after being unable to land in darkness and deciding whether to divert to San Diego. Clipped trees, struck the ground and broke up.  Failure of the captain to determine his position accurately before descending to a dangerously low altitude under extremely poor weather conditions during the hours of darkness. The aircraft was named Philippine Clipper.
## 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into the Mt. Chaparra in the Andes mountains while en route.  Action of the pilot in continuing the flight on instruments in the overcast, contrary to company flight procedure of which, according to the evidence, the pilot was aware.
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ran out of fuel.
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lost altitude, struck power lines and crashed into a packing house after encountering an engine fire on a test flight.
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the Tagus River in poor weather while attempting to land. Inadvertent contact of the left wing tip of the aircraft with the water while making a descending turn preparatory to landing. The aircraft was named the Yankee Clipper.  Novelist Ben Robertson and singer, actress Tamara Drasin, 34, among those killed. Actress Jane Froman seriously injured. She later divorced her husband and married the co-pilot, who had saved her life despite his own serious injury, but they too divorced.
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane was caught in a downdraft in a mountain pass en route and crashed.
## 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disappeared over the Himalayas.
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft, taking off in darkness and poor visibility, crashed in heavy timber and caught fire.
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down  by German fighters, 30 miles from Skagen, Denmark
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Stalled and crashed in poor weather into the water during an emergency landing on the open sea. Broke up in heavy seas.
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shot down by the German Air Force over the Bay of Biscay. The last message received from the plane was it was being attacked by an enemy aircraft. The aircraft had a Dutch crew. British actor Leslie Howard, 42, killed. It has been speculated that the plane was attacked because the Germans believed that British Prime Minister Winston Churchill was aboard. Other theories suggest the plane was targeted because several passengers, including Howard, were British spies.
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed in thunderstorm activity while attempting to land.
## 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              During the initial climb one engine failed. While attempting an emergency landing, the plane stalled and crashed.
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft took off into ground fog and leveled off at an altitude of about 300 feet. The plane stalled and crashed and exploded.
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The flight, bound for London, crashed into the Mediterranean shortly after takeoff. Wladyslaw Sikorski, prime minister of the Polish government in exile, killed.
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The wing struck the side of a mountain as the crew descended from overcast conditions. Pilot error. The captain descended without obtaining bearings from the ground to determine his position accurately.
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed into trees while attempting to land in strong turbulence and violent downdrafts. There was evidence that most of the occupants in the cabin were victims of suffocation or fire, or both, because of their inability to effect an exit from the aircraft. Loss of control of the aircraft due to unusually severe turbulence and violent downdraft caused by a thunderstorm of unknown and unpredictable intensity.
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into a women's prison after being hit by anti-aircraft fire while on a bombing run.
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Twenty minutes after taking off the aircraft crashed into Cleveland Bay several miles offshore.
## 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane was shot down by Japanese fighters.
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While taking off the aircraft lost control and crashed offshore.
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Struck a Naval Academy building while attemptin to take off in heavy fog.  The plane then broke in two and fell into the harbor. The plane was named "City of Rio de Janiero."
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shot down by German military aircraft and crashed 70 km west of Hirsthals, Denmark.
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Midair collision over the Gulf of Mexico while flying in formation. Eleven killed on each plane.
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a wooded area after nearly colliding with a glider being towed by another aircraft.  The evasive maneuver caused the aircraft to stall and crash.
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cashed into trees shortly after taking off.
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft struck the ground nose-first in a vertical attitude while en route and was completely demolished by the impact. Inability of the aircraft to gain or maintain altitude due to carburetor ice, propeller ice or wing ice or some combination of these icing conditions, while over terrain and in weather unsuitable for an emergency landing. Weather conditions which, had their nature been anticipated, should have precluded the dispatch of the flight in an aircraft not equipped with wing or propeller deicing equipment.
## 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed in a snowstorm, on a cliff near the summit of Black Mountain, 60 miles north of its destination, Montreal. The wreckage was located three years later.
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down by a Ju88, German military aircraft. While attempting to ditch the plane the aircraft hit a cliff.
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Stalled when it was making a descending turn during a parachute exercise.
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed after an In-flight fire started behind one of the engines.
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a village.
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed short of the runway in poor weather conditions.
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A navigational error caused the cargo plane to strike a mountain.
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flew into a hill shortly after talking off from Ward's Strip operated by Qantas for Allied Directorate of Air Transport.
## 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Went out of control from cruising altiude and crashed into the sea. Icing.
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane struck a mountain while attempting a go-around.
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed and exploded while en route.
## 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A midair collision occurred while on a cross-country flight flying in formation. Twelve kiled aboard 4207183 and thirteen aboard 42-7408. Faulty flying technique displayed by the pilot of 42-7183.
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While approaching to land the aircraft was too low and hit a hill located 16 km east of the Belgrade-Zemun Airport.
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into a river and sank ,18 miles southwest of Memphis, in a snowstorm, while en route from Little Rock. Cause undetermined.
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed and burned while taking off.
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane flew into a mountain
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After radioing they were returning , the plane went missing and was never found.
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disappeared while en route on a non-combat mission. Wreckage found 39 years later on 4/30/1983.
## 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after takeoff in a snow storm. Failure of the pilot to recognize his proximity to the ground due to heavy snow which entirely covered the terrain.
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by allied fighters.
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed  50 miles from its destination after a signal flare started an onboard fire causing the plane to ditch.
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a row of houses shortly after taking off from Dorval Airport.
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While enroute the crew got lost and crashed into 22,000 foot mountain in Tibet. Bad weather prevented the pilot from getting a bearing on any radio station.
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed at sea in poor weather conditions.
## 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by anti-aircraft fire during the Normandy invasion.
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by anti-aircraft fire during the Normandy invasion.
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by anti-aircraft fire during the Normandy invasion.
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane discintigrated in mid-aid. The jack pad had been removed from the right wing root. This left 4 large holes directly under the fuel tanks and directly in line with the exhaust. When the throttles were cut to descend, the flame only went as far back as the holes. There the flames went up around the fuel tank, igniting the fumes and blew the wing off.
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diverted to Kweilin after Chunking was below minimums. After holding over Kweilin for 3 hours, the aircraft ran out of gas, hit mountain and was demolished.
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While on approach the aircraft crashed into the river Guiaba
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Smoke and fire was seen coming out of one engine before the aircraft crashed. A wing hit the ground and the plane cartwheeled into the Redbank trailer park.
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane disappeared on a flight from Australia to Los Negros Island. Last known position transmitted by radio placed the aircraft due south of Port Moresby at 11-degrees South, about 60-minutes flying time. Hit the slope of a mountain in the Owen Stanley range. Wreckage finally found in 1970. Other sources report the accident happened in the region of Cairns.
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Disappeared while en route from Iceland to Newfoundland.
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As the aircraft approached land, it began a climb but was not able to gain sufficient altitude to clear a cloud shrouded cliff.
## 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While taking off in the dark, the aircraft's wingtip collided with the jackpole mast of an anchored liberty ship which had slipped anchor and drifted, unlighted, into the seaplane area.  The aircraft then spun out of control, and crashed into the ocean and sank.
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed in a severe thunderstorm after possibly being hit by lightning and losing both engines.
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed during the third attempt to lift from the water and sank into the ocean. Loss of control due to the captain's inexperience in handling the particular type of aircraft. The aircraft was named "Hong Kong Clipper."
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Navy lieutenant Joseph P. Kennedy Jr., 29, brother of President John F. Kennedy, was killed while on a flying mission over England during World War II.  Kennedy volunteered for operation Aphrodite after completing two full combat tours and was killed when the explosive-laden PB4Y he was flying blew up in air.  He was intending to aim the ship and bail out, leaving another aircraft to guide the PB4Y via remote control to a German submarine pen on the French coast; it apparently exploded when he armed the switches.  The photographic chase plane had President Franklin Roosevelt's son, Elliot Roosevelt, on board.
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The bomber crashed into a school and a cafe while attempting to land at Warton Air Depot in poor weather. The crash occurred during a thunderstorm with heavy rain and winds. Windshear.
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a roof of a residence in poor visiblility while attemping to land after a trans-Atlantic flilght.
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While cruising at night, the aircraft crashed into the slopes of Mt. Kinnekulle after diverting towards Gothenburg due to radio problems.
## 736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed in fog, short of the runway, while attempting to land at Congonhas Airport.
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by allied fighters.
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane went missing while en route from Merauke to Cairns. The last radio contact was 15 minutes before ETA.  A scientific expedition found the wreckage in January 1989, 65 km northwest from Cairns at a height of 1,200 meters.
## 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The bomber crashed into a farmhouse.
## 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck the side of a mountain while in full flight. Cause unknown but weather conditions suspected.
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While en route, the right engine failed, forcing the crew to reduce their altitude in an attempt to make an emergency landing. Eventually, the aircraft went out of control and crashed.
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Missing on a flight from France to Spain. Shot down by an American Bristol Beau allied night fighter.
## 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Both wing of the cargo plane separated from the fuselage after the aircraft penetrated a thunderstorm.
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On final approach with one engine shut-down, stalled 10 ft above the water and hull ruptured on impact.
## 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While landing on the water the plane broke up and sank. One passenger drowned.
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into Mt Skorvefjell in poor weather conditions.
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shot down by British Mosquito fighters.
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Broke-up in flight either due to an explosion or catastrophic structural failure of the aircraft.
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The wing separated from the aircraft after entering a thunderstorm and encountering severe turbulence. The failure of the airplane's structure as a result of severe turbulence, an important contributing cause was the fact that the airplane was undoubtedly in an abnormal attitude of flight,  i.e., inverted, at the instant of structural failure. The cause of the airplane becoming inverted was not determined.
## 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Colllided with a Navy Goodyear FG-1A Corsair airship.
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while attempting to land.
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flying in low overcast, the aircraft struck a hill, exploded and burned.
## 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed in the Aberdare Mountains, 50 miles from it's destination after entering a thunderstorm. The wreckage was not located for a month.
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while en route. Failure of a wing probably having been weakened by viabration turbulence and constant operation on rough fields.
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shot down by a German patrol boat.
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane flew into Digboi Mountain after losing both engines.
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane crashed and burned 6.5 miles west northwest of the Bubank Airport in dense fog. The pilot's deviation from the standard instrument approach procedure and descent below the established safe minimum altitude. A contributing factor was the company's failure to enforce adherence to company procedures.
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in a revine in fog. Wrong decision on part of the crew to reduce their altitude and flying in minima weather conditions.
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disappeared over the English Channel en route from Bedford England to Paris, France. Band leader and musician Glenn Miller, 40, killed along with flight officer John Morgan and Lt. Colonel Norman Baessell. It has been theorized the plane may have been hit by bombs being jettisoned over the English Channel by RAF bombers on their way home from an unsuccessful raid. Wreckage and bodies were never found. The most accepted explanation is the pilot was not instrument rated and flew into worsening weather conditions and possibly carburetor icing caused an engine failure causing the plane to crash into the English Channel.
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed in strong winds
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed 1.25 miles short of the intended landing area in a nose-down attitude at too great a speed and broke up in the water. The first officer's failure to realize his proximity to the water and to correct his attitude for a normal landing and the lack of adequate supervision by the captain during the landing, resulting in the inadvertent flight into the water in excess of normal landing speed and in a nose-down attitude. The aircraft was named China Clipper.
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft, lost in fog, crashed into the Verdugo Mountains,  while attempting to reach Palmdale Airport, its alternate landing site, after being unable to land at Burbank Airport. The company ground personnel failed to obtain and transmit important weather to the pilot. Improperly executed missed approach by the pilot. Actress Donna Reed was returning from Juarez where she obtained a divorce from her husband but was bumped from the flight just prior to takeoff  to make room for a military officer holding a wartime-travel priority pass.
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane struck a mountain.
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while en route from Melbourne to Broken Hill. Believed caused by metal fatigue in the outer port wing which broke off during severe turbulence.
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a mountain after encountering a fog bank and not climbing in sufficient time to avoid the terrain.
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Struck a mountain while flying in low clouds and poor visibility.
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into San Francisco bay shortly after taking off. The right wing struck to water as the plane made a wide turn. Malfunction of the gyro.
## 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while en route.
## 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in the Snezka mountains during an ice storm.
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft flew into the summit of Glade mountain at 3,900 ft., in heavy rain and turbulence  while en route. The pilot's failure to properly  plan the flight and remain at a safe instrument altitude under existing conditions. A contributing cause of the accident was the company's laxity in dispatching and supervising the flight.
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared en route.
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane struck a mountain in the Himalayas under poor weather conditions.
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed against the slope of Cheat Mountain at 2,100 ft., 7 miles east northeast of Morgantown. The action of the pilot in continuing flight over mountainous terrain under instrument conditions, below the minimum authorized instrument altitude.
## 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Failed to gain altitude while taking off. The transport crashed into a hillside as it took off in heavy fog at Guildford Airport.
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Broke-up after entering an area of thunderstorms. Initial structural failure involved the elevator followed by the entire aircraft.
## 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Missing on an evacuation flight from Berlin to Munich. Shot down by Soviet forces south of Berlin.
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shot down by Allied forces 50 miles from its destination.
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While cruising at an altitude of 2,000 feet, the aircraft hit the slope of Mt North Barrule located 2 miles south of Ramsey.
## 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lost an engine during takeoff, settled back on the runway, overran the runway, rolled to the right and crashed into a drainage ditch and burned. Engine failure during a critical point in the take-off followed by the pilot executing an emergency landing under unfavorable conditions. Contributing factors were the strong gusts and ground turbulence which prevailed at the time and the presence of a deep ditch near the runway.
## 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a wooded area shortly after taking off from Sorido airstrip at night. Cause unknown.
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Flying low because of poor visiblity, the aircraft struck a radar tower, lost its right wing, crashed and burned. Pilot error. Flying VFR in IFR conditions.
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft went in to a spin and crashed in a wooded area and caught fire.
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain at 7,000 feet. Three passengers rescued two weeks later. All occupants were members of the women's military corps of the US Army.
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Disappeared off the Atlantic coast after sending a distress message. A witness observed the plane hit the water at a 45 degree angle. No wreckage or bodies were ever found.
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into a mountain in the Carstenz Range at an altitude of 14,200 ft. The wreckage was discovered in December 1970.
## 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The takeoff appeared normal but the aircraft did not climb and turned back for a landing. It flew hangars at about 300 feet then made a steep turn to port, followed by a wide low circuit back to the runway with port wing low. When just inside the airport, it dropped heavily on the starboard main undercarriage, bounced, contacted the ground with the tail wheel and bounced again. Striking the ground for the third time, on the port main wheel, as it bounced higher, engine power was applied but the aircraft swung to the left, banking steeply until the left wings were torn off by ground contact. The aircraft cartwheeled and hit the ground nose-first.
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed and burned on a hillside after experiencing engine failure.
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a village exploding and destoying several houses.
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Disappeared on a trans-Atlantic flight from Montreal to England.
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed  on an island  located in Winam Bay shortly after take off Kismu.
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After deviating off course 8 miles to avoid military traffic, the two planes collided at 3,000 ft. The commercial pilot landed the plane in a corn field.  Two occupants of the A-26 (33-35553) were killed and one parachuted safely. One infant was killed on the DC-3.  Lack of vigilance on the part  of the pilots of both aircraft, resulting in the failure of each pilot to see the other aircraft in time to  avoid a collision.
## 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A U.S. Army Air Force plane crashed into the 79th floor of the Empire State Building in heavy fog.  Lt. Col. William Franklin Smith Jr., the pilot, became disoriented while trying to land at Newark Airport.  Lt. Smith was told he had a 3 hour wait to land at Newark. Impatient to get his plane on the ground, he falsely declared he had official business at La Guardia Airport with the intention of diverting to Newark as soon as he was cleared. The 12 ton plane smashed a 20 ft. hole in the building. Fuel from the ruptured gas tanks poured out and set two floors ablaze killing 10 people. One engine exited the south side of the building and plunged into a penthouse below.  The second engine entered an elevator shaft and severed the cables plunging the car and the elevator operator 1,000 feet into a sub basement. Despite suffering a broken back, pelvis and legs, she survived.
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into mountainous terrain after encountering engine failure..
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed while landing at Fort de France. The plane sank and 4 passengers drowned. The attempt by the pilot to land the aircraft in conditions of water surface not suitable for landing of a flying boat.
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed in Ixtaccihuatl mountain 40 miles east-sout-east of Mexico City. Navigational error as the crew's last message stated they were in an entirely different area.
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fire was discovered on board the aircraft after having passed Florence. The fire originated in the general area of the right side of the rear cargo compartment and lavatory. The aircraft descended to a lower altitude while returning to Florence, struck two large  trees and crashed.  A fire of undetermined origin in the rear cargo compartment or lavatory which resulted in the inability of the pilot to maintain altitude long enough to effect an emergency landing.
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Left Milne Bay on routine flight  to Dobodura at 10:15. Crashed into sea near Milne Bay.
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Failed to gain altitude while taking off, struck trees, lost both wings, exploded and burned. Engine failure.
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A month later the wreckage was found  on the slope of a mountain located near Mt Puncak Jaya, southwest of Mulia, 100 feet from the summit. It
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crash 32 km southeast of Chinkiang under unknown circumstances.
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a lake while attempting to execute a missed approach. The faulty execution of a missed approach procedure resulting in settling of the aircraft into a water area beyond the landing runway.
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cashed and burned shortly after takeoff after experiencing an engine fire in the No. 2 engine.
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lost altitude while in a turn and attempting to land and crashed and burned short of the runway.
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft failed to gain speed or altitude and struck a hill at the end of the runway.
## 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a radio transmission tower while on approach for landing at Nanyman field after encountering low clouds and poor visibility.
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into a mountain while en route, flying at a low altitude in adverse meteorological conditions.
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared en route.
## 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Penetrated a thunderstorm and broke-up.
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The engine failed on takeoff and the plane stalled and crashed.
## 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed on takeoff.
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed and burned on takeoff striking a hill.  Possible engine failure or overloading.
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The crew descended through low overcast to obtain their position.  Followed an river and crashed into wooded mountainside.  Navigator error in not informing the pilot of high terrain.
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the Himalaysas and burned while en route. Wreckage found a month later.
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After refueling in Alberquerque, the plane, carrying magazins to the west coast, crashed and burned after encountering snow and strong winds. The flight engineer survived.
## 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft expierence a midair collision over Corpus Christi Bay while on a training flight.
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The pilot radioed he was lost, shortly before impacting the ground while attempting to land in poor visibility.
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While taking off the aircraft experienced an engine fire, stalled and crashed and burned.
## 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a mountain ridge 200 ft. short of the summit, bounced over the top and crashed down the other side while  en route.
## 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane disappeared after the pilot radioed he was exeriencing heavy icing and asked to divert to Rome.  The plane was found 5 months later on Mt. Meta.
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the sea afte an aborted landing at the island of Leyte. The plane touched down hard, pulled up, circled and crashed into the sea. Pilot error. Decision to land in unfavorable weather.
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a 7,598 ft. mountain in the region of Wide Bay, 150 feet below the ridge, shortly after taking off. There were Australian and Indian soldiers on board.
## 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed into a hill shortly after takeoff after and  making a turn, before reaching the prescribed altitude.
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed in severe turbulence in thunderstorms after losing the right wing and breaking up.
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The five aircraft, (23307) (73209) (46325) (46094) (45714), flying out of the U.S. Naval Air Station at Fort Lauderdale, on a training mission,  became lost, ran out of fuel and crashed into the Atlantic Ocean.  No trace of the planes were ever found. This was the incident that began the "Bermuda Triangle" legend.
## 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a field after hitting trees while attempting to land in a snowstorm.
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Flew into the side of a hill after icing caused loss of power while attempting to land.
## 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft went out of control and crashed in a wooded area located about 60 km west of Bangui Airport.
## 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed 50 miles northwest of Norilsk after catching fire in the air.
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot, in the belief that he was encountering engine trouble, attempted a landing despite a landing approach which was too high and too fast. Initial contact with the runway was made at a point which provided insufficient room for a landing roll and at an airspeed considerable in excess of normal. The pilot was unable to bring the aircraft to a stop in time to avoid overshooting the runway. The decision of the pilot in attempting a landing from an approach which was too high and too fast.
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In worsening weather conditions, the plane landed fast and high while making an instrument approach to Birmingham, overran the runway, crashed through the barrier fence and into a creek. The action of the pilot in committing himself to a landing from an approach which was too high and too fast.
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Experienced severe icing resulting in buffeting and structural failure.
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into a mountainside in a snowstorm.
## 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft lost control and spiraled into the ground after the No. 1 engine caught on fire and the left wing separated from the aircraft. The fire, caused by the failure of a fuel line or fuel line connection, led to failure of the left wing.
## 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Collided with Mt. Ptolemy while en route.
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed into Elk Mountain after the crew made an unauthorized deviation from the prescribed route at an altitude insufficient to assure adequate clearance over Elk Mountain. Flight had originally filed for 13,000 ft.  But later amended the flight plan to 11,000 ft. Elk Mountain is 11,152 ft. MSL.
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into mountainous terrain while en route.
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while attempting to land. Icing.
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While on approach to San Diego, the aircraft flew into Tierra Blanca Mountain at an altitude of 4,500 feet in fog, exploded and burned. The crew descended into instrument conditions to an altitude below that required to maintain clearance over Thing Mountain. The reason for the descent was not determined.
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed and burned while approaching Ruzyne Aerodome to land after experiencing engine problems.
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed 10 mins after takeoff from Hobart. Inadvertent engagement of the autopilot instead of the fuel crossfeed.
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into mountainous terrain in low visibility while en route.
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Disappeared while en route. Plane never located.
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft lost its right wing and disintegrated over Donner Summit for reasons unknown.
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared between Ceylon and the Cocos Islands while en route. Aircraft owned by BOAC and operated by both airlines on Sydney-London services (BOAC crews operated London-Karachi and Qantas crews Karachi-Sydney).
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed 5 miles north northeast of belfast while attempting to land in advese weather. Pilot error. The pilot failed to maintain a course necessary to avoid higher terrain.
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Wellington was engaged in exercises with a Spitfire fighter. The fighter was using the Wellington as a dummy target and the Wellington was to take evasive action. When the bomber was between 4,000 and 5,000 feet altitude, it turned to port and started diving at 20 degrees. It kept on loosing altitude till it crashed into houses in the center of Rabat. No distress signal was transmitted to either the fighter pilot or ground control.  The probable cause of the accident was leakage of hydraulic fluid which somehow heated and released fumes in the cockpit rendering the crew unconcious.
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed on takeoff.
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Broke up in midair and crashed.
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Collided in midair while a fighter made practice diving maneuvers on the formation.
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Engine trouble after takeoff forced the crew to return to Richmond. While the crew was attempting to land a second time, an engine was shut down because it was running rough. The pilot apparently shut down the wrong engine. The plane stalled and crashed to earth, nose first. Inability of the crew to maintain adequate control of the aircraft to effect an emergency single-engine instrument approach under adverse weather conditions.
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into Oslo Fjord shortly after takeoff. Engine trouble forced the plane back but it stalled and crashed into trees and a house.
## 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A fire of undetermined origin erupted in the cockpit. The crew  was unable to control the smoke and flames, lost control and the aircraft and crashed. Eight aboard parachuted to safety.
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a summit after flying below the prescribed altitude.
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flying low to avoid poor weather, the aircraft crashed while en route from Kano to Ikeja.
## 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Disappeared.
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo  plane struck power lines and crashed while attempting to take off.
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Struck a slope on Mt. Tom during an approach to land at Westover Field.
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The flight crashed due to an in-flight fire caused by failure of a generator lead-through stud installation in the baggage compartment causing intense heat due to electrical arching, ignition of fuselage insulation and  creation of smoke rendering the crew incapable of controlling the aircraft. The plane crashed into powerlines and trees and burst into flames. The accident led to a 30-day grounding of all L-049s. The plane was named Star of Lisbon. Training flight.
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed 1 mile from the airfield shortly after takeoff due to engine failure.
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Overshot the runway. The pilot was unable to regain altitude and the plane crashed into a hill and burst into flames.
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a field during a thunder and lightning storm.
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The two aircraft collided in midair, 20 miles north of the Panamanian island of Coiba while searching for a missing plane. Ten died aboard each aircraft.
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a swamp soon after taking off after suffering structural failure of the left wing in adverse weather conditions.
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returned to the airport after suffering engine failure, the plane crashed 40 miles southeast of Jalapa.
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flew into trees on Mistberget mountain at 2,000ft. while on approach to Oslo. Pilot error. Descended too early.  Inexperience in radio range flying and inadequate equipment.
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed and burned while attempting to glide in for an emergency landing at Lakhurst Field.
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The port engine and, later, the starboard engine failed as the result of fuel starvation. Circumstantial evidence suggests strongly that this was caused by the inadvertent selection of the auxiliary fuel tanks which at that time contained only a small amount of fuel.
## 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Descended through clouds and crashed. Premature descent by the crew without establishing their position.  Training flight.
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While the aircraft was flying near Moline, the No. 1 engine failed. The prop was feathered and a descent initiated for an emergency landing.The aircraft overshot the landing and a  go-around was executed. A left turn was made with the gear and flaps extended. The left wing touched the ground and the aircraft cartwheeled. The engine failure was caused by a No. 5 cylinder fracture.
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed and caught fire.
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed in Chatham Sound while preparing to land in heavy fog.
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shortly after takeoff, the aircraft crashed into a field 40 miles south of Copenhagen, exploding and bursting into flames. One of the engines had caught fire prior to the crash resulting from a fuel leak.
## 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lost altitude after losing an engine on takeoff  and crashed into a factory yard.
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft lost contact with the ground in fog and crashed into a hillside while attempting to land at Elko Airport. A two-year-old boy was the only survivor. The pilot continued the approach after losing visual contact with the airport due to fog. Unfamiliarity of the pilot with the terrain. Insufficent fuel aboard to proceed to an alternate landing site.
## 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed shortly after takeoff after a loss of control by  the captain.  Loss of control by the captain for unknown reasons with mishandling of the controls the most likely explanation. The aircraft was named "Star Leader."
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane went off course and struck a fog covered mountain as it circled to land.
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The pilot lost control of the aircraft after attempting a go-around maneuver.
## 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         During its climb the plane rolled and crashed into hangers. Loss of airspeed for undetermined reasons.
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed 24 mi SW of the runway at Gander. Improper approach procedures by the pilot in poor weather.
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed after possibly being hit by lightning.
## 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a 15,000 ft. mountain shortly after taking off from Sichang.
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft departed Hong Kong, Runway 31, climbing to a height of 700-800 feet. At that point the airplane lost control and crashed. The Dakota possibly stalled after encountering turbulence from the foothills.
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a hill in low overcast weather. Navigation error.
## 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a mountainside north of Rio de Janerio after being possibly struck by lightning.
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Took off from Gander and flew in a straight line into a mountain ridge 71 miles from the airport. The aircraft was named "Flagship New England."  It can be concluded that the captain was not alert to the procedure necessary for a safe climb from the runway. The action of the pilot in maintaining the direction of take-off toward higher terrain over which adequate clearance could not be gained.
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in the Strait of Malacca while en route.
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The pilot of the single engine fighter made an unauthorized flight to Apeldoorn and began flying low to attract attention. The aircraft lost altitude during a maneuver and crashed into a high school killing 22 on the ground.
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After two landing attempts, the pilot tried to land on a different runway.  The wing struck the ground and the plane skidded 800 ft.  A loss of altitude during a turn preparatory to a final approach while the pilot was manoeuvring in an attempt to land. The aircraft was named "Mainliner Lake Michigan."
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain while en route. Navigation error.
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed during a snowstorm into prairie lands while attempting to land at Laramie.  Weather conditions were deteriorating rapidly and worse than predicted. The action of the pilot in maneuvering the aircraft at a dangerously low altitude under extremely adverse weather conditions in an attempt to land.  A contributing factor was the negligence of the pilot in planning a flight into an area in which adverse weather conditions were forecast without making adequate provisions for a suitable alternate airport.
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Struck an 11,000 ft. mountain.
## 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed into a hill after attempting to make a forced landing after running out of fuel.
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into mountains while en route. The pilot descended to lower altitiude to rid the plane of ice.
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Stalled after a overshoot  in heavy fog. Crew error.
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck power lines and trees and crashed 500 feet short of the runway. The error of the pilot in establishing an approach toward an area not cleared for landing as a result of having mistaken the end markers of Runway 23 for those of Runway 31. A contributing factor was the failure of the pilot to abandon his attempt to land at Cleveland Airport when confronted with weather conditions below the minimums prescribed for that airport.
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into White Mountain at an elevation of  6,000 feet, in rain and 70 mph winds after being blown off course while on a heading from Palmdale to Newhall. Possible downdraft. The action of the pilot in making an instrument letdown without previously establishing a positive radio fix. This action was aggravated by conditions of severe static, wind in excess of anticipated velocities, preoccupation with an unusual amount of radio conversation, and the inoperative Newhall radio range.
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into an 11,000 ft. mountain obscured by clouds.
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The flight crashed during a third landing attempt in inclement weather. The pilot, not lined up with the runway, made a sharp left turn. The wing hit the ground and the aircraft exploded in flames.
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Made a 360 degree turn and dove into the sea, 15 miles off Iwo Jima .
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Struck Cedrel mountain while making an approach to San Jose.
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Following engine failure, the captain lost control and crashed while trying to land.
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after takeoff from Meshed airport.
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed 3 miles southwest of Itami Air Base shortly after taking off.  Loss of engine power for reasons unknown.
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The crew reported picking up ice before disappearing without a trace while en route. The last reported positon was 30 miles south of Toledo, Washington. Found 11 months later at Mt. Rainer.
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into tree tops on Mt. Banahaur. The pilot and 1 passenger survived.
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Disappeared en route. Never found.
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Poor weather at the destination airport forced the crew to divert to Rio de Janeiro. While approaching to land the aircraft flew into a mountain, 14 miles from the airport.
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed east slope of Cuyapaipe Mountain at 6,120 ft. in San Diego County in poor weather conditions. The conduct of the flight at an altitude which would not clear obstructions, due to an error by the pilot in determining his position with respect to Laguna Mountain.
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed after a failed landing attempt at Kiangwan Airport in rain fog and overcast. The plan overshot the runway and crashed into a residential area.
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While attempting to land in rain and fog, the aircraft ran out of fuel, stalled and crashed at Lunghwa field.
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In heavy fog, the aircraft struck the roof of a nearby building and cartwheeled into a neighborhood 1 mile from Lunghwa Airport killing some on the ground.
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane crashed after both engines failed. Fuel exhaustion.
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed 1 mile from the airport on an island situated on the Fergus River. Inaccurate altimeter reading caused by the reversal of the primary and static source lines which resulted in the pilot making his approach at too low an altitude. Also, restriction of vision from the cockpit because of fogging of an unheated windshield. The plane was named Cairo Skychief.
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed after loosing power in both engines due to fuel starvation. The accumulation of carburetor ice following the loss of power in both engines as a result of fuel starvation. The reason for fuel starvation could not be determined.
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the Solimoes River, an extension of the Amazon river.
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into  a mountain while on approach in low overcast.
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft diverted from Washington to Millville because of heavy traffic in the Washington area.  Near fuel exhaustion forced the crew to carry out an emergency landing. While maneuvering to find a suitable location during heavy snow, the aircraft struck trees and crashed. Failure of the Weather Bureau  to anticipate below minimum conditions north and south of Washington. Failure of CAA to transmit the flight plan to Millville in sufficient time to alert that station to the arrival of the flight.
## 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ran out of fuel and crashed after not being able to land at Bordeaux or Paris and attempting to land at Lympne.  Poor planning and operation by the crew. Poor weather conditions encountered throughout the flight. Crew unfamilar with route.
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane ditched into the Pacific Ocean 80 miles west of Laoaq after a fire broke out in the No. 2 engine.
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft flew into the ground at an altitude of 2,500 ft., 63 miles northwest of Winston-Salem. The pilot took an unapproved route and let down without having positively determined the position of the aircraft.  A contributing factor was the erroneous navigation of the pilot which on at least two occasions led him to believe that he was farther south than he actually was.
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed and burned moments after takeoff. Failure of the right engine.
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in the jungles of the Magdalena river valley. Wreckage found a week later.
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Just after becoming airborne, the plane never gained altitude, overran the runway and crashed into a Ceskoslovenske Dakota. Twelve killed on the Spencer Airways none on the Ceskoslovenske. Loss of control by the captain of the Spencer Airways plane, who, when attempting to take-off a heavily loaded aircraft in poor visibility allowed it to become airborne in a semi-stalled condition.
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into mountains 120 miles south of Chunking.
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane struck Mt. Parker on approach.
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  During takeoff from Kobenhavn-Kastrup Airport, ,the aircraft rose to a height of 150 feet and then crashed to the ground in a fireball. Failure to remove the elevator locking pins prior to takeoff. Singer Grace Moore, 48, and Swedish crown prince, Gustav Adolf, 41, among those killed.
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed while en route about 30 minutes after takeoff. A four-year-old boy survived. Fire in the left wing leading to separation of the wing.
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into Cintra mountain while on approach in poor weather condtions.
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane diverted to Harrington after a No. 2 engine rpm reduction. The plane approached downwind, overshot and struck some trees. Fuel contamination.
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed in Gredos mountain range about 100 miles west of Madrid while en route and in adverse weather conditions.  The plane was named "Ruta de Colon."
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Cargo flight. The momentary loss of control or overcontrol by the pilot at a critically low altitude in the final stages of an ILS approach. A contributing factor was the failure of the safety pilot to remain alert to the altitude of the aircraft.
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane crashed into Mt. El Tabalazo at 10,500 feet in fog while en route. Pilot error. Conducting the flight below a safe altitude and off the designated airway.
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Disappeared and crashed into the ocean just off the coast of Terracina in clear weather. On board were an Egyptian Princess and her court. The cause remains unknown although sabotage is a possibility.
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed while attempting to land. Ran into heavy icing. One wing broke off.
## 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Disappeared while en route. Never found.
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in the Cacasus mountains,Nizhnesvanetsky Range, while en route. Pilot error. Pilot in command changed the route of flight
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Due to low visibility, the crew did not realize they were off course when the aircraft hit the slope of Mt Epomeo on Ischia Island.
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed in the Cordillera mountain range shortly after taking off and climbing.
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flew into 4,000 foot Mt. Moucherolles, 25 miles south of Grenoble in poor weather. The crash started an avalanche which buried most of the wreckage. Naviation error.
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed shortly after taking off. Hit the slope of Cerro del Padre Amaya located 12 km northwest of the airport.
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Failed engine on takeoff. Could not maintain altitude, lost control, struck trees and crashed.
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed 40 miles east of Caracas while en route.
## 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane crashed while making a third landing attempt. Unwise decision to try a third landing attempt. No approach lights. No radio facilities.
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A private plane landed on top of the DC-3 while it was taking off.  After rising to a height of 150 ft., the tail of the DC-3 was forced down and both planes crashed in flames. All 9 killed aboard the DC-3 and one aboard the private plane were killed.  The failure of the pilot in the BT-13 to fly a standard left hand pattern in his approach to the airport and to keep a diligent lookout for other traffic.
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft disappeared while en route from Lethbridge, Alberta to Vancouver, British Columbia. The last known position was over Vancouver Airport. The wreckage was discovered and identified in September 1994 in a remote area, 10 miles north of Vancouver near Mt. Seymour.
## 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed 100 miles west of San Jose. Possible act of sabotage on one of the engines.
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Went into a turn and lost control, spiraled into the ground. Loss of control of the aircraft for reasons undetermined.
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane was attempting to land in poor visibility, below weather minimumns the plane hit a broadcast radio mast, crashed and burned. Crew error, ATC error.
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft overran the runway during an attempted takeoff, crashed and caught fire. Either the failure of the pilot to release the gust lock before take-off or his decision to discontinue the take-off because of apprehension resulting from rapid use of a short runway under a possible calm wind condition.
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Turned the wrong way while attempting to land and slammed into a mountain, bursting into flames.
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed on the north coast of Iceland in poor weather. the aircraft hit the slope of Mt Hestfjall located on the west coast of Héðinsfjörður Bay.
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While on approach to Baltimore at 4,000 ft., the plane suddenly went into a nose dive, inverted and crashed.  Possible problems with the elevator. The official cause was never determined.
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane struck high ground while en route.
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Veered off runway, struck a building while landing.
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into a ridge at Lookout Rock, 8 miles SE of Charles Town, WV during a rainstorm. The action of the pilot in descending below the minimum en route altitude under conditions of weather which prevented adquate visual reference to the ground.  A contributing cause was the faulty clearance given by ATC.
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While on a flight originating in New York and making its inaugural westbound flight of round-the-world service, the aircraft's No. 1 engine failed half-way on a leg from Karachi to Istanbul. Due to closed airports and inadequate repair facilities, the pilot chose to continue to its destination. Several hours later, the remaining engines overheated and the No.2 engine caught fire causing the plane to crash. Gene Roddenberry (creator of Star Trek) was a deadheading Pan Am pilot aboard, who helped rescue many of the passengers.  The crash was blamed on Pan Am's failure to replace the No. 2 engine which had experienced several problems earlier.  A fire which resulted from an attempt to feather the No. 2 propeller after the failure of the No. 2 engine thrust bearing. The aircraft was named Clipper Eclipse.
## 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane ditched in the Black Sea. Engine failure due to disconnection of traction altitude corrector.
## 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the slope of a mountain while en route in reduced visibility.
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft, on a charter flight from New York to San Juan, Puerto Rico, crashed into a swamp while attempting to make an emergency landing. Loss of an engine due to a fuel flow problem led to loss of altitude and a crash landing. Six spark plugs in the right engine were found to be defective. A defect found in the carburetor may have contributed to excessive fuel loss. Crew fatigue contributed to the accident.
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lost control while landing and crashed.
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   During a fourth landing attempt the plane touched down, power was applied but the plane crashed in a wooded area beyond the runway. An error on the part of the pilot in continuing the flight in unsuitable weather conditions coupled with lack of cooperation by the ATC.
## 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Struck a truck while attempting to land.
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed in a mountainous area.
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crash in the Andes mountains in poor weather while flying from Mendoza, Argentina to Santiago, Chile. The plane was found on the south slope of Tupungato peak at the 18,000 ft. level on January 19, 2000, 53 years later. Possibly icing or possibly the aircraft, being capable of flying over 20,000 feet, encountered strong head winds and began a descent thinking they were over their destination when they were not. The plane was named "Star Dust." The radio operator transmitted an enigmatic coded message ("STENDEC") before the plane disappeared.
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Disappeared while en route. The last message from the aircraft was it was 150 miles from its destination and battling strong head winds.
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cargo flight. Lost an engine on takeoff and decided to return to the airport. Following an attempted landing, a miss approach procedure was attempted for a second landing without sufficient air speed for single engine operation.
## 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane overran the runway and crashed into high ground.
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane entered a thunderstorm and struck Blue Bell Knoll Mountain. The continuation of the flight into instrument weather conditions over mountainous terrain at an altitude too low to clear the mountains en route.
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Heavy water landing. The captain misjudged the approach and allowed the aircraft to touchdown heavily, short of the flarepath. He then failed to maintain control during the bounce and the aircraft struck the water in a nose-down attitude.
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into 13,000 foot mountain. Navigational error by the crew.
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While cruising at 8,000 ft. in clear weather, the aircraft went into steep dive which the co-pilot was able to pull out of at 350 feet from the ground.  As a prank, a captain riding in the jump seat, engaged the gust lock in flight. The command pilot, not knowing the gust lock was engaged, rolled the elevator trim tab with no response. When the jump seat captain disengaged the gust lock,the aircraft went into a steep dive, executed part of an outside roll and become inverted. Neither the command nor jump seat captain had seat belts on and they accidentally feathered No. 1, 2 and 4 engines when they hit the controls with their heads.  No one realized it at the time but the feathering reduced power and allowed the co-pilot, who was strapped in, to pull out of the dive.
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane was 5,000 pounds over its certified weight and had to land at sea when it ran out of fuel in severe headwinds.  Over the next following 25 hours all occupants were rescued by the US Coast Guard ship Bibb using rafts and small boats and the plane was then sunk as a hazard to shipping.
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the sea following engine failure. The mechanic and a passenger survived.
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane struck a mountain en route.
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fire was reported on board the aircraft before it crashed.  An almost identical accident with the same cause occurred on 11/11/47. The flight crew transferred fuel either intentionally or inadvertently from the No. 4 alternate tanks to the No. 3 alternate tanks and failed to stop the transfer process in time to avoid overflowing the No. 3 alternate tank. Gasoline flowed through the No. 3 alternate vent line, out the vent, and was carried back by the slip stream, entering the cabin heater combustion air intake scoop. When the cabin heater came on an explosion and fire  occurred. The fire was fueled by magnesium flares strored in the cabin heater compartment. Caused by a design flaw in the aircraft which allowed vented fuel to be carried back into the cabin heater air intake.
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into Mt. Hymettus while on approach to Hassani Airport in a severe rainstorm. The captain, John Douglas, probably tried to force the landing due to the weather conditions, when the belly of the aircraft hit the summit, resulting in loss of control, crash and fire. The pilot did not properly follow IFR procedures. The wreckage was found the next morning with the corpses of the victims plundered (the victim's pockets were found to be turned inside-out). The aircraft was named "Sunnan."
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into Tamgas Mountain after abandoning an approach to Annette Island because of extreme turbulence and radioing its intentions to proceed to Juneau. Possible severe turbulence or icing. Official cause unknown. The aircraft was named Clipper Talisman II.
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Took off and went missing. The wreckage was located in June 1980 in the Pir Panjal hills near Srinagar.
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed into the ocean.
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was on a flight from San Francisco to Chicago when fire was reported on board. The aircraft crashed landed but there were no fatalities. An almost identical accident with the same cause occurred on 10/24/47. The flight crew transferred fuel either intentionally or inadvertently from the No. 4 alternate tanks to the No. 3 alternate tanks and failed to stop the transfer process in time to avoid overflowing the No. 3 alternate tank. Gasoline flowed through the No. 3 alternate vent line, out the vent, and was carried back by the slipstream, entering the cabin heater combustion air intake scoop. When the cabin heater came on, an explosion and fire  occurred. Caused by a design flaw in the aircraft design which allowed vented fuel to be suck into the fresh air inlet.
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane struck a mountain en route.
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed short of the runway and burst into flames. The inadvertent landing of the aircraft short of the runway. Inadequate air speed, improper use of power, and the adoption of an incorrect glide path.
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Strayed off course, stuck tree tops and then crashed into Mt. Santa Maria del Monte. Pilot's failure to realize the plane strayed off course and was in mountainous territory.
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed and burned on 2,000 ft. Tabor Peak in fog. The crew became lost after radio failure.
## 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane was shot down by communist anti -aircraft fire.
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into trees while on approach to Yakutat. Failure to follow the approved instrument approach procedures while making an initial approach at an altitude insufficient to clear trees along the flight path.
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed and burned 2 miles from Titograd airport while attempting to land in a snowstorm.
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Drifting 30 miles off the prescribed course, the aircraft crashed into snow covered mountains. The wreckage was discovered 8 months later.
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane attempted to land at Seattle-Tacoma Airport  but aborted the landing because of low ceiling and visibility. During a second landing attempt, the aircraft touched down 2,748 feet beyond the approach end of Runway 20, ran past the end of the runway, hit an automobile killing one person, crashed into a ditch and burst into flames. Caused by the landing of the airplane too far from the approach end of a wet runway and at a speed too great to accomplish a full stop on the runway.
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed and burned in a wooded area shortly after taking off from Goose Bay. Snow falling at the time of the accident was a factor.
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After preparing to land, the aircraft went into a right-hand spiral and crashed  for reasons unknown.
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crash landed due to engine failure after an attempted go-around.
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft lost control and crashed just after taking off. The captain losing control in conditions of poor visibility, resulted in the aircraft flying into the ground. The loss of control was most likely caused by  inadequate illumination of the flying instruments due to faults in the lighting system.  Decision to take off in poor weather conditions and faulty lighting system.
## 1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed near the Leon public square and destroyed 3 homes. Lost an engine while taking off. Attempting to return to the airport.
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into trees a few hundred yards away from the runway while attempting to land at Le Bourget Airport. Both weather and pilot error were considered as causative factors in the accident.
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After two or three failed approaches, the plane struck trees and crashed into a field. Poor judgment on the part of the pilot attempting to land in VFR conditions in limited visibility and poor weather conditions and not diverting to another airport.
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After both engines stopped in flight and attempts to restart them failed, the aircraft banked sharply, stalled and crashed 10 miles east northeast of Savannah. The fuel selector valves were positioned so that both engines were supplied fuel from only one of the auxilliary tanks until the fuel was exhausted and control of the plane was lost.
## 1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a mountainside 50 miles south of Algiers after an engine failed.
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed in mountainous terrain about 15 miles north northwest of Santo Domingo. Unable to land in darkness and unlighted airport of its intended destination the plane turned back when it struck the mountain. Weather and navigational error were considered factors in the accident.
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed during approach, 5.2 miles short of the runway, in poor weather conditions. Failure of the crew to follow prescribed  procedures and maintain a safe altitude during an ILS approach.
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The heavily loaded plane rose 50 ft. into the air, nosed down and crashed in a snowstorm
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The crew took the wrong plane which was scheduled for maintenance.  An in-flight fire caused the engine and then wing to separate from the aircraft and crash out of control. Tests showed a fuel pump was broken in the left engine and would spray gasoline out where it could be ignited by the exhaust. The failure of the left wing in flight as a result of damage by fire which had its source in a defective left engine driven fuel pump.The crash became the impetus for the Woody Guthrie song "Deportee."
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft ran out of fuel and crashed into the Atlantic Ocean, 340 miles from Bermuda, after running into strong headwinds and being blown off course while flying the leg from  the Azores to Bermuda. Official cause unknown. The aircraft was named "Star Tiger."
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The No. 3 propeller failed and penetrated the fuselage killing a purser.The failure of a propeller blade due to high stresses induced by accumulative engine malfunctioning.
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed and burned on the island of Java. The crew reported they lost an engine. While trying to return the plane crashed and exploded.
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In marginal weather conditions, the crew informed ground that an engine failed and was forced to make an emergency landing as they were unable to maintain a safe altitude. The aircraft crash landed in a field located in Ulrichstein, about 70 km northeast of Frankfurt Airport.
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The pilot chose to fly the short distance between Florence and  Rome below the cloud base. The weather suddenly became worse and the plane entered clouds at low level, drifted off course and struck a hill.
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft was seen at Ste. Mere l'Eglise where it passed very low in poor weather and snow showers before crashing into the English Channel, 50 miles west of La Harvre. It had turned back after encountering adverse weather conditions.
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed  5 minutes after taking off from Mati.
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane struck trees while attempting to land.The continuation of an instrument approach below an altitude sufficient to clear the terrain en route.
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane, carrying Brazilian service personnel and their dependents crashed and burned after stalling short of the runway while attempting to land.
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo flight crashed into the Gulf of Lion
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed during a ground control approach in poor weather conditions. Misjudgement by the pilot when attempting to land at night in conditions of low visibility. Last DC-3 built.
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a slope of Mt Skalafell located near Hellisheioi in poor weather condtions.
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   During takeoff, the aircraft went into a near vertical climb to an altitude of 500 - 800 feet, stalled and crashed.  Loss of longitudinal control of the airplane for reasons undetermined.
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On a charter flight from Lunghwa Airport, Shanghai to La Guardia Airport, New York the plane crashed into the western slope of Mt. Sanford at an altitude of 11,000 feet after taking off from Anchorage, Alaska. Pilot's failure to see Mt. Sanford due to obscuring clouds or aurora borealis while flying a course off the airway.
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Struck a mountain peak in the Sierra Cristais.
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the slope of Alto El Arrastradero mountain located 50 miles from Bogota.
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into a 7,800 ft. mountain obscured by clouds while en route.
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft was circling Gatow in preparation for landing when the DC-3 collided head on with the Russian Air Force Yakovlev 3 fighter, which was performing aerobatics. A total of 14 killed on the Vickers Viking and one on the YAK fighter. The collision was caused by the action of the Yak fighter's pilot, which was in disregard of the accepted rules of flying.
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While executing a second instrument approach at Shannon Airport, the aircraft struck the ground 2,380 feet from the approach end of the intended runway, broke apart and burned. Continuation of an instrument approach to an altitude insufficient to clear the terrain. The failure of a fluorescent light may have been a contributing cause. The plane was named "Clipper Empress of the Skies."
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft climbed to 500 ft. when its left engine failed, whereupon the plane plunged nose first into the ground on an island on the Markham River. Poor technique by the pilot during an emergency situation.
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed in an icy river, 20 miles from its destination. The flight crew who had been drinking the previous night, diverted from the correct route and had been flying at an altitude of about 300 ft. when they crashed.
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed in a storm.  Kathleen Kennedy Cavendish, 28, sister of  President John F. Kennedy, killed.
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While cruising, the aircraft penetrated a very turbulent line of clouds, lost height and crashed into a forest. The aircraft apparently flew into a tornado at low altitude.
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into Spitzkop mountain after drifting off course in poor weather. The aircraft was named "Miss France."
## 1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Cargo flight. The in-flight failure of the fuselage carry-in structure beneath the fin, due to extreme turbulence.
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cargo flight. While maneuvering at night under the base of low cloud prepatory to landing, the aircraft lost height and struck the ground. The cause of the accident was not determined.
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft collided with the western slope of  Marchekanskoy  hill, 70 m from the top. ATC error.
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on takeoff during a training flight after hitting a private aircraft.
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a hill near Port Erin while attempting to land. The plane had failed to maintain both the proper course to the homing beacon and suffiecient altitude to clear the terrain.
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed after an in-flight fire in cargo hold. The crew discharged carbon dioxide extinguishers into the cargo hold in response to the fire warning. When the plane's nose was lowered for an emergency descent, the carbon dioxide, being heavier than air, accumulated in the cockpit and asphyxiated the crew.  The aircraft crashed through high voltage lines and exploded on a hillside. After the crashes of 10/24/47 and 11/11/47, were a design flaw allowed vented fuel to enter the intake for the cabin heating system, the CAA also ordered carbon dioxide extinguishers installed. Earl Carroll,  U.S. theatrical impresario killed. Douglas aircraft company knew of the carbon dioxide danger after two of its test pilots were almost overcome during test flights. They suppressed reports to the CAA which resulted in only a warning being added to the flight manual. The aircraft was named Mainliner Utah.
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A Catalina seaplane was hijacked by a group attempting to rob the passengers; following a struggle in the cockpit, the plane crashed killing all on board except one passenger who was later identified as the lead hijacker. This is the earliest known airliner hijacking.
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed during a landing attempt.
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed after overrunning the runway in heavy rain.
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A midair collision occurred between a SAS DC-6 and a Royal Air Force Avro York MW248. Twenty-five passengers and 7 crew on the DC-6,  one passenger and six crew on the York. The accident was caused by human fallibility on the part of both ground and flilght personnel.
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into mountains 50 miles southwest of Da Lat in adverse meteriological conditions and absence of adequate ground facililities.
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane lost control and crashed shortly after leaving the runway. The pilot did not apply the procedure recommended by the airline and attempted to make a turn after takeoff below the specified altitude of 100 meters.
## 1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed after being hijacked. While trying to take control of the aircraft, one of the passengers tried to stop the hijackers, In response, one of the hijackers shot wildly striking and killing both pilots The plane went out of control and crashed. One of the hijackers survived by jumping out of the rear exit before the plane hit the water.  He was held in Macao prison for three years and released in 1951.First commercial aircraft to be hijacked.
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft hit a mountain top at Cap-des-Rosiers, 12 miles from its destination in fog and burned.
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while attempting to take off. Went into a spin after taking off and plunged into the ground from about 300 ft.
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed and sank near the shore of the River Plate while attempting to land in fog. Pilot error. Attempting to land atop water in conditions of fog and poor visibility which were below the prescribed minima.
## 1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Cargo flight. An error in judgement on the part of the pilot in allowing the aircraft to stall while coming in to land. The contributory causes were probably overload, badly loaded with CG too far aft, movement of load due to it not being secured.
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Disappeared in the Atlantic on a flight from Fort. de France, Martinique to Port Etienne, Mauritania. The United States Coast Guard cutter Campbell reported finding debris on August 4 with no survivors.
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo fllight hit the slope of a mountain located in Rununder Point, near Port Underwood, 32 km northeast of Blenheim in poor weather.
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane disappeared en route  over the Caribbean Sea.
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed following the separation of the left wing after the aircraft entered a thunderstorm. Loss of the outer panel of the left wing which separated as a result of a fatigue crack which was induced by a faulty design of a wing flange, aggravated by severe turbulence of the thunderstorm.
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed en route. Reasons undetermined.
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Strayed off course and struck Square Peak Mountain at an altitude of 4,600 feet.
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A few minutes after takeoff, while climbing, the aircraft flew into clouds and control was lost. The aircraft banked right and lost altitude crashing in an isolated area located about 39 km northwest of Balkhash
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in Hommelvika Bay  while attempting to land in crosswinds and high seas.
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed after turning back towards its point of departure afer encounteing low clouds, rain and icing conditions as well as poor navigational difficulties due to poor reception of radio beacons.
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft was on a flight from Amsterdam to New York with a stopover at Prestwick Scotland. The aircraft attempted to land on Runway 32 but the crew choose to go-around due to strong cross winds and asked to land on Runway 26.  While circling to line up with the runway, the aircraft ran into a heavy fog bank and crashed into high voltage power lines at an elevation of 400 feet and burst into flames. The crashed occurred 5 miles east-northeast of the airport. Improper flight procedures by the crew. Lack of information supplied to the crew by the tower. The aircraft was named "Nijmegen" after the old Dutch town close to the West German border.
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed 700 feet from the summit of a mountain while en route in low visibility. Lack of navigational aids in the area contributed to the accident cause.
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed in the Caucasus Mountains in adverse weather while en route. The crew deviated from its prescribed course. Poor flight planning. Crew drank alcohol before the flight.
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Cargo flight. The captain's action in undertaking simulated emergency procedures at a dangerously low altitude.
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Twenty-five minutes into the flight, the pilot descended prematurely and collided with a cloud covered mountain.
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lost contact with the aircraft after the crew reported passing Cape Spencer. The wreckage was never found.  Cause undetermined.
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into Mt. Macedon hidden in fog. The pilot deviated off course from his flight plan and failed to follow VFR flight rules.
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed after running out of fuel when diverted to Liverpool because of adverse weather.
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After experiencing communication problems the crew attempted to land at a small airport, stalled and crashed into the ice-covered Kolyma River. Crew error.
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed shortly after taking off and climbing to 7,000 feet. The aircraft was seen trailing smoke before crashing in flames. The omission of a sealing washer on the carburetor fuel filter of the port engine resulting in fuel leaking on to the ignition systems, culminating in a severe oil fire which finally involved the main port fuel tanks.
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Overshot runway, crashed and burned.
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed during takeoff in fog.
## 1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed while attempting to land.
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed shortly after taking off from Bogota. Possible accidental detonation of fire works being carried aboard leading to the in-flight separation of the wing.
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on Balsalt Island  while attempting a visual approach through clouds. The pilot came down through a hole in the overcast but became trapped when the weather closed in. He reversed course but crashed into a small mountain. Pilot error. Quentin Roosevelt, son of Teddy Roosevelt killed.
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed in the Taigetos Mountains while en route after being shot down by Greek insurgents.
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into Pandols Mountain while en route in poor weather conditions.
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Radio contact was lost after the crew reported being 50 nm south of Miami. Departure from San Juan with known electrical problems and discharged batteries. Ditched in the Gulf of Mexico after it ran out of fuel. Offical cause unknown.
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into Mt. Arbetello in poor visibility. Poor visibility and geographical features made recognition of terrain difficult and likely mislead the pilot into believing he was out at sea.
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft took off in fog with a group of Yale University students returning to school following their Christmas vacation.  About midway down the runway the plane swerved to the left and became airborne.  The left wing dropped the wing tip dragged on the runway.  After about 750 feet, the tail wheel made contact with the runway.  The engines were cut and the plane skidded for 700 feet until it hit a hanger and burst into flames.  The accident was caused by the crew's attempt to take off in an airplane which had formations of ice and frost on the surfaces of the wings.  In addition, the plane was overloaded by 1,500 lbs.
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A blown tire during takeoff led to damage to the landing gear, engine and oil line. Lack of oil caused loss of the engine and the crew was not able to feather the prop. This led to overspeeding and an engine fire. The plane made a spiral descent and crashed to the ground.
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cargo plane. The loss of control of the aircraft which resulted from an icing condition, turbulence, and lack of alertness on the part of the crew. As a result, the aircraft spun, and during the spins, or attempted recovery from the spins, severe air loads were encountered which failed the left horizontal stabilizer and the elevators.
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed shortly after taking off. Engine failure due to fuel contamination.
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ditched in a lagoon.
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed en route.
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lost at sea on a flight from Bermuda to Kingston, Jamaica. The last radio message reported the plane was crossing 30 degrees N.  Nothing further was heard from the plane. No wreckage was ever found. The weather was good at the time. The plane was named "Star Ariel." Cause undetermined.
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft, part of the 301st BG  15 AFW, cashed into mountains after encountering icing conditions.  The aircraft lost height, clipped the summit of Beinn Tharsuinn in Argyll, and crashed in flames in Succoth Glen below.
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft departed Homer at night under VFR conditions contrary to company and federal regulations, strayed off course and struck a 3,000 ft. mountain, 27 miles northeast of Homer. The action of the pilot in proceeding off the designated airway at an altitude insufficient to clear the terrain.
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Midair collision. Two killed on the Cessna, none on the Lockheed which laned safely. The joint failure of the Constellation pilots to observe and avoid the Cessna aircraft in flight and of the Cessna pilot, while on an airway and in an area where a heavy concentration of traffic could be expected, to remain alert and avoid the Constellation.The aircraft was named "Clipper Monarch of the Skies."
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after taking off.
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The No. 4, followed by the No. 3 engines failed on initial approach. The plane lost altitude and crashed into trees.  Failure of the captain to maintain a safe height, by utilizing the available power of the starboard engines after power failure in the port engine. The reason for this failure by the captain cannot be determined. The power failure in the port engines was caused by fuel starvation brought about by an insuffuciency of fuel in the port tanks. This fuel shortage was the result of the wing tanks being allowed to become progressively unbalanced during the last stage of the flight.
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed while attempting to land.
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed in the sea off the Swedish coast after the pilot was told to enter a holding pattern for Copenhagen, since it was closed to inbound traffic. The aircraft was directed to land on Runway 22 but failed to make the landing. The wreckage was found a month later on the bottom of the ocean. Cause undetermined.
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a mountain as the plane approached Huanuco.
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Midair collision between a DC-3 and a RAF Avro Anson at 4,500 feet.  Both planes disintegrated and fell to the ground. Ten killed on the DC-3, four on the Avro Anson. Failure on the part of the pilot of each aircraft to ensure the maintenance of an effective lookout.
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft lost control and crashed following a blown tire on takeoff.
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed near Braemar Resevoir after a go-around in poor weather. The crash was attributed to pilot error.
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on takeoff from Coolangatta.  After becoming airborne, the aircraft was seen to climb very steeply and stall when at a height of 300 ft., roll to the left and crash.
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed while attempting to land.
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into a hill while on approach in low overcast. A navigational error by the pilot-in-command..
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The flight deviated 60 miles off the proper course, the crew initiated a descent without either establishing their position or making  visual contact with the ground. The plane crashed into a mountain.
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was returning on a flight from Lisboa to Milan with the Torino Soccer Team when the crew decided to land directly at Turin, homebase to the team. In low visibility, rain and thunderstorms, the left wing of the plane struck a wall surrounding the sanctuary of Superga, a mountain near Turin. The aircraft then pivoted, and disintegrated next to the sanctuary killing all aboard.  Error in navigation and poor visiblity.
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed in the English Channel. Cause unknown.
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane was on a flight from Daet, Camarines to Manila when it crashed after experiencing a violent explosion in the tail of the aircraft. Two ex-convicts confessed to planting a time bomb aboard the flight in order to kill the husband of a woman involved with another man.
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed after penetrating a thunderstorm.
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a mountainside 30 miles northeast of Athens. Structural failure while flying through an area of thunderstorm activity.
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into a mountain shortly after taking off from Florianpolis.
## 1112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into the Atlantic Ocean during takeoff after a loss of the No. 2 engine. The loss of power in the right engine before the aircraft could attain the optimum single engine climb speed, which together with being overloaded resulted in the aircraft losing altitude and ditching into the ocean. Incorrect spark plugs installed on the No. 2 engine.
## 1113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into Bari Harbor while en route from Cairo via Athens to Rome. Witnesses observed smoke from an engine followed by smoke from the other engines and fuselage prior to the crash. The plane broke-up in flight.
## 1114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane rose to 600 ft. then nosed down and crashed into a housing camp south of Guildford shortly after taking off. Caused by a stall attributed to improper loading of the DC-3 which resuled in its center of gravity being beyond the permissible limit.
## 1115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was flying in level flight with the gear down. The right wing tip brushed the side of a hill pulling the plane around 90 degrees. It hit the ground and bounced 300 feet into the air and crashed. Pilot's action in descending below the prescribed minimum altitude while executing an ILS approach.
## 1116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While circling in a blinding monsoon rainstorm, the aircraft crashed into 674 ft. high Ghatkopar hill, 3 miles ENE of the airport. Crew error. Pilots decision to land in weather below prescribed minimums in an area he was not familiar with.
## 1117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a garage near Jamnagar railway station while on a training flight. Apart from the pilot, at least 14 on the ground were killed and about 60 were injured.
## 1118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A power failure occurred in the No. 1 engine on takeoff and the pilot cut power to both engines and discontinued takeoff.  He then apparently changed his mind and applied power. The left engine continued to malfunction and the aircraft collided with power lines and crashed into houses. Use of improper fuel necessitated operating the aircraft's engines in excess of  operating limits resulting in engine failure. Decision to takeoff after the failure of the left engine.
## 1119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed after the left engine caught fire.
## 1120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Midair collision with a US Navy F-6F.  The F-6F was buzzing a small private aircraft which was cruising below the DC-3. The F-6F had pulled up into a climbing turn and collided with the DC-3. All fifteen killed on the DC-3, and one on the F-6F. Reckless conduct of the Navy pilot in performing aerobatic maneuvers on a civil airway.
## 1121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Twenty minutes before arriving a Porto Alegre, a fire was discovered in cargo hold "G."  The pilot executed an emergency descent while the crew tried to extinguish the flames to no avail. As the plane attempted to land, the panicking passengers rushed to the front of the plane to escape the flames causing the center of gravity to change, resulting in a hard landing. The cause of the fire in the hold "G" was not determined.
## 1122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Both the No. 1 and No. 2 propellers detached in flight which led to the crew ditching the plane close to shore.
## 1123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft was part of relief efforts of the Ecuador earthquake.
## 1124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed short of the runway.
## 1125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in the Andes mountains while  en route.
## 1126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fuel exhaustion forced the plane to ditch in the Atlantic Ocean, 15 km off the coast of Ireland. The plane stayed afloat for 15 minutes but 8 occupants died due to exposure or drowning. Failure of the captain to properly supervise the crew while en route.
## 1127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into Wimberry Rocks, Dovestones, Greenfield, near Oldham at 1,700 feet, 15 nm short of its destination.  Navigational error and improper approach procedure. Failure to check the position of the aircraft accurately before descent from a safe altitude.
## 1128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed and burned in a wooded area after entering an area of thunderstorms.
## 1129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft did not achieve a proper climb rate after taking off and crashed while making a low altitude right turn. Water in the fuel and excessive lead on the spark plugs.
## 1130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft disintegrated in flight 40 miles outside of Quebec.  Detonation of a dynamite bomb in the forward baggage compartment. Planted by Albert Guay, a jeweler, in a plot to kill his wife who was a passenger on the plane. Guay, who assembled the bomb, had his accomplice, Marguerite Pitre, air express the bomb on the aircraft. Ms. Pitre's brother, a clockmaker, helped make the timing mechanism. The insurance policy was for $15,000.  All three were hanged for their crimes.
## 1131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a 15,000 ft. snow covered volcano, Mt. Popocatepetl. Flying VFR in IFR conditions.
## 1132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed after an in-flight fire. The plane tried to make a forced landing but crashed before reaching the air strip. Returning from a mercy mission in Ecuador for earthquake relief.
## 1133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diverted to Cheyenne, while on approach, the aircraft crashed 2.5 miles short of the runway after encountering severe turbulence and icing. Loss of control of the aircraft during an instrument approach to Cheyenne, under conditions of heavy icing and severe turbulence.
## 1134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting for the third time to land at Santa Maria, the aircraft, flew into Redondo Mountain at 2,950 ft. on San Miguel Island. Crew error. Failure to carry out either of the two approach procedures adopted for Santa Maria airport. False position report give by crew. Inadequate navigation.  Failure to identify Santa Maria airport when flying in VFR conditions. French middleweight boxing champion Marcel Cerdan, 33, and French violinist, Ginette Neveu killed.
## 1135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Midair collision. The P-38 hit the airliner from above. Both planes crashed into the Potomac River. The pilot of the P-38 survived and was accused of causing the accident by executing  a straight in approach without proper clearance. He was later tried and cleared of the charges. ATC error.  George Bates, U.S. Representative from Massachusetts and Michael Kennedy, U.S. Representative from New York killed. Helen Hokinson, 56, cartoonist for the New Yorker magazine, also among the dead.
## 1136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane collided with trees short of the runway while attempting to land. The improper execution of an instrument approach which resulted in the aircraft being flown to the right of the proper approach path at an altitude too low to clear the terrain.
## 1137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A group of 6 Tempest fighters of the RIAF were flying over Calcutta city. While swerving to avoid a flock of vultures one plane crashed into another. Both planes crashed into the city causing damage to buildings as well as deaths to many civilians. One pilot was killed and the other bailed out. At least 14 were killed on the ground and at least 20 injured.
## 1138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a hill during the approach. Pilot continued VFR in IFR condtions.
## 1139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Struck a mountain shortly after taking off.
## 1140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During a pull-up for a go-around, after attemping a landing approach with the No. 1 engine feathered,  the No. 4 engine lost power then came on with a surge. The flight engineer feathered the No. 4 engine without instructions from the captain. The aircraft stalled, then collided with wires and a building.  Crew's improper handling of the aircraft after an engine failed.
## 1141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed while on approach to Lyons.
## 1142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountainside while circling to land. Crew error. Lack of flight discipline.  Poor decision by Chief of Operations in allowing the aircraft to continue flight in poor weather conditions.
## 1143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Struck a 1,200 ft. hill obscured by clouds, during a rainstorm, 6 miles east of Vallejo, California. The pilot failed to fly at the assigned altitude of 4,000 feet on his flight plan.
## 1144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while en route.
## 1145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed on the outskirts of Hoikow, Hainan Island.
## 1146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed 1,875 feet, short of the runway threshold, into the Potomac River while approaching Washington National Airport. Immediately before the accident and during the execution of an instrument approach, the aircraft was stalled at too low an altitude to effect recovery.
## 1147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hit a mountain and burned 30 miles north of  Karachi airport. Navigational error.
## 1148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain while en route.
## 1149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed after the wing failed during takeoff.
## 1150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed and burned after attempting an emergency landing.
## 1151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         During the approach to Koltsovo Airport in Sverdlovsk, Russia, the aircraft crashed in extremely adverse weather conditions involving a heavy snowstorm with strong winds. All 19 of those on board were killed, including almost the entire national ice hockey team of the Soviet Air Force. The team was heading to a match against the Dynamo Moscow hockey club.
## 1152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The military plane crashed on the southeast coast of Spain.
## 1153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while en route in the Andes mountains after encountering a thunderstorm.
## 1154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into a mountain 30 miles west of Tamatave.
## 1155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cargo plane.
## 1156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Operated by the Strategic Air Command, the transport disappeared while flying between Elmendorf AFB and Great Falls, Mt. There were 44 persons aboard. All were American military personnel except for two passengers, a civilian dependent and her infant child. Last radio contact was at 17:09 near Snag, YT. It took Amber Airway No.2 over Canada, but failed to arrive at its destination.  The wreckage still had not been found by 1951.
## 1157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crash into the North Sea during a night mail flight shortly after takeoff, 40 miles off the Dutch coast.
## 1158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into a mountain while en route.
## 1159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a flag pole, well marked by red neon obstruction lights, on approach in blowing snow.  Pilot's attempt to land visual rather than ILS after visual reference to the ground was lost.
## 1160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cargo plane.
## 1161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 During the approach to Runway 28 at Llandow Airport, it appeared to witnesses that the aircraft was going to touch down prematurely. This was followed by an application of power. Climbing to 300 ft. the aircraft stalled and crashed into a field. Due to the placement of luggage in relation to passenger load, the center of gravity was such that there was insufficient elevator control remaining to counteract the rise of the nose upon full application of power.
## 1162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed and caught fire during landing at Etimeagut airport.
## 1163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Loss of control after mechanical failure and crashed into the sea. Failure of the aileron control couplings resulting from severe vibration.
## 1164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane lost an engine on takeoff and attempted an emergency return but crashed. Overloaded.
## 1165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While en route over the English Channel a explosion occurred in the lavoratory. The bomb blew a 8 ft. by 4 ft. hole in the fuselage seriously injuring a stewardess. The capltain was able to returnt to Northolt and make a safe landing. Detonation of a bomb in the toilet compartment under the towel receptical. A French passenger was suspected of making a suicide attempt. The plane was named "Vigalant,."
## 1166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Flew off its prescribed course and crashed into Mt. Tanzawa in a rainstorm.
## 1168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into a mountain.
## 1169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while attempting to land after being diverted to Lagens due to engine trouble.
## 1170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lost the left aileron after taking off, lost control and crashed.
## 1171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Struck the side of Galeras Volcano.
## 1172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane lost an engine on takeoff and crashed. Overloading of the aircraft due to faulty loading and dispatch procedures coupled with engine malfunctioning due to inadequate maintenance.
## 1173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               During descent into dense cumulonimbus  clouds, severe turbulence was encountered which caused displacement of freight that led to an uncontrolled dive which resulted in the wings separating from the fuselage. Structural failure due to severe turbulence during a thunderstorm. Pilots decision to descend without clearing the turbulent area of weather.
## 1174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ditched into the Atlantic 300 miles east of Melbourne, Florida on a flight from San Juan, Porto Rico to Wilmington, North Carolina due to failure of both engines. It sank in one of the deepest areas of the Atlantic and could not be recovered. Failure of both engines for reasons unknown.
## 1175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed and burned 19 miles east northeast of Fonseca well off course. Cause unknown.
## 1176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While making a final approach for Bahrain, the aircraft crashed into the sea. The pilot did not keep a accurate check of his altitude and rate of descent during the approach. Crew error, possibly due to fatigue.  An alternate probable cause may been windshear. It was not know at the time that windshear conditions existed at temperature inversion levels for several days after Shamal dust storms. The aircraft may have run out of adequate forward speed at an altitude of 400 feet after descending through a headwind level into a tailwind level when committed to land.  With surface winds relatively calm and in 2,000 meters of sand haze, the winds at 400 ft. may have been in excess of 80 knots.
## 1177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into the Persian Gulf while on approach on a flight from Saigon to Paris. Improper approach. Crew error. An alternate probable cause may been windshear. It was not know at the time that windshear conditions existed at temperature inversion levels for several days after Shamal dust storms. The aircraft may have run out of adequate forward speed at an altitude of 400 feet after descending through a headwind level into a tailwind level when committed to land.  With surface winds relatively calm and in 2,000 meters of sand haze, the winds at 400 ft. may have been in excess of 80 knots.
## 1178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        En route from New York to Minneapolis, the aircraft crashed into Lake Michigan. The DC-4 was last reported at 3,500 ft. The crash occurred shortly after the aircraft entered an area of severe turbulence with thunderstorm activity. The wreckage was never found but was believed to be located in 150 feet of water and  not recoverable because it was in 30 feet of silt and an area of extremely poor visibility. The forecast of a squall line in the areas was not made available to the crew. Cause unknown.
## 1179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The airliner experienced trouble with all four engines. The crew attempted to return to Guildford but  in the dark, while in a 15 degree turn to port, the aircraft barely cleared a ridge line, struck a tree 30 feet off the ground and ploughed into a downward slope shredding itself and contents into small pieces. The aircraft was named "Amana."
## 1180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a mountain.
## 1181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed on climb-out.
## 1182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The left wing separated from the plane in extreme turbulence from a thunderstorm.
## 1183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft took off from O-shima and reached an altitude of 3,500 feet after which a sudden unexplained descent was made until it crashed into the sea. The surviving witness stated the aircraft hit two moderate bumps followed by dimming of the lights before the descent.
## 1185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft flew into power lines during a landing attempt after running out of fuel while in a holding pattern.
## 1186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           An explosion in the left wing fuel tank tore off the upper wing surface leading to loss of control of the aircraft.
## 1187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed shortly after taking off when the left engine failed.
## 1189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The No. 2 propeller began to overspeed during the takeoff. This was followed by overspeeding of the No. 3 propeller. The No. 3 propeller was successfully feathered  but then the landing gear would not retract. The aircraft was unable to gain altitude and the pilot slid the aircraft to the left to avoid a trailer park at the end of the runway. The aircraft stalled, fell to the ground and broke-up.  Killed in the accident was Brigadier General Robert E. Travis. The installation was later renamed Travis Air Force Base in his honor.
## 1190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         En route, the No. 3 propeller failed. A propeller blade struck and punctured the fuselage, causing a cabin decompression. A safe landing was carried out at Denver. One passenger who had heart trouble died prior to landing. The internal gouging of a propeller blade during the manufacturing process which resulted in a fatigue fracture and subsequent failure during flight."
## 1191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed in the steep forested foothills in the Gua Musang district.
## 1192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While en route from Cairo to Rome, witnesses observed the aircraft on fire. After turning back toward Cairo, it crashed and burned. Failure of the rear master rod bearing in the No. 3 engine that led to an uncontrollable fire. The aircraft was named "Star of Maryland."
## 1193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Engine parts were observed falling from a height of 3,000 feet. Soon after, the plane was seen losing altitude until it crashed into trees 1.5 miles southeast of Oneida County Airport. Failure of the left engine shortly after takeoff coupled with increased drag due to loss of the left cowling and reduced power output of the right engine resulting from the high pitch position of the right propeller.
## 1194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during takeoff.
## 1195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the sea and exploded 3 minutes after taking off from Kwajalein. Possible vertigo experienced by the pilot or malfunction of the instruments.
## 1196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during landing.
## 1197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Reached an altitude of 200 feet, stalled and crashed to the ground.
## 1198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in the Korea strait 1mile from the end of the runway after taking off from Ashiya Air Base.
## 1199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed after making a steep right turn. The unwanted reversal of the right propeller during flight, as a result of which the crew was unable to maintain control of the aircraft.
## 1200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into trees on Mill Hill after engine failure during takeoff. Everyone except one flight attendant was killed.
## 1202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed in fog in an overshoot after deciding on a go-around. Although it cannot be established with certainty, the probable explanation of the known facts may be that the captain deliberately came down below break-off point and then at 100 ft. or less came into fog which abruptly reduced the visibility of the runway lights and that then and not till then he started overshoot procedure with fatal results.
## 1203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed in a snowstorm 200 meters below Mont Blanc summit. The crew was warned by a Geneva controller to climb immediately. They acknowledged the message but soon after struck the mountain. The exact cause of the accident remains undetermined. Most likely the aircraft was caught in violent gust while trying to overfly the summit. The plane was named "Malabar Princess."
## 1204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The flight originated at Chicago for Seattle via intermediate stops at Minneapolis, Billings, Great Falls and Helena. The aircraft left Helena at 0753 from runway 29. The aircraft's flight plan was to fly to 10,500 ft. via Amber Airway No .2 to Whitehall Station and to Butte via Red Airway No. 2. At 0801 the flight reported it reached cruising altitude and was headed toward Whitehall Range Station. This message was acknowledged. The next message from the flight was at 08:14 stating that it was over Whitehall Range Station and starting descent. Butte acknowledged this message and  gave the flight the altimeter setting of 29.97, advised that the wind was south, calm, and the ceiling was lower to the east and north and better to the south and southwest. The flight replied that it had vertical visibility at 10,500 feet. This was the last radio contact with the flight. At approximately 0815 the aircraft had struck the eastern slope of a ridge about 30 feet below its crest, at an altitude of about 8,250 feet MSL. The site of impact was approximately 2 1/2 miles east of the control tower at the Butte Airport, and about 1-1/2 miles to the right of the center of the on course signal from Whitehall to Butte. Captain's failure to follow prescribed approach procedures.
## 1205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft drifted 50 miles off the prescribed route and struck Mt. Tete de l'Obiou at 6,740 feet. The pilot probably realized the deviation and tried to take corrective action but did not see the mountain in time.
## 1206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Veered off the runway and crashed into a ditch..
## 1207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft  crashed into Mt. Moran at 11,200 ft., in a snowstorm while flying in IMC conditions. The accident was attributed to flight into IMC conditions with probable electrical failure due to a malfunctioning voltage regulator.
## 1208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a hill in poor weather conditions while en route.
## 1209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Failure of the pilots to remain alert and maintain a proper look out resulting in the aircraft flying into the side of a hill.
## 1210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into a mountain.
## 1211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into a mountain in the Pyrenees.
## 1212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain in the Pyrenees 5 minutes after takeoff. Crew error. Excessive low rate of climb at night in an unknown region and premature change of heading.
## 1213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Flew into a mountain due to a navigational error.
## 1214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed after losing its No. 1 engine on takeoff. Engine failure during takeoff. Pilot error. Short takeoff procedure used on an airfield where such a maneuver was not necessary.
## 1215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into a house while attempting to take off.
## 1216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into mountains shortly after taking off.  Pilot error. The captain decided to cross the Seven Lagoons mountain range in severe overcast, thinking that he was 30 kms further north, where the range drops to 2,000m. Instead, he flew into 4,000m cliffs. In the last seconds, he realized he was in trouble and tried to gain altitude. For a hundred meters or so he cut through small trees, but finally crashed. A small fire followed.
## 1217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Proceeding on instruments, the aircraft crashed into Mt. Tabayoc while en route.  Navigation error.
## 1218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Struck trees on  Mt. Okanagan while making an approach to Penticton. Drifted below the minimum altitude permissible.
## 1219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed 60 miles north of the airport after taking off from Mar del Plata.
## 1220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Broke up in turbulence.
## 1221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into Bukit Besar Mountain while en route.
## 1222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane overshot the landing, ran into a ditch and caught fire. Pilot error in electing to land long, on a wet and snow covered runway instead of executing a missed approach.
## 1223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While cruising at 6,000 ft.,  the aircraft when out of control and into a dive, hitting the ground at 340 mph.  Officially the cause was never determined.  Possible in-flight fire, explosion, structural failure or conrol system failure.
## 1224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft plunged to the ground from 6,500 feet after being struck by lightning. Lightning ignited a mixture of air and fuel fumes in the fuel tank.
## 1225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into mountainous terrain while en route. Most likely weather related.
## 1227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into the sea 2.5 miles north of the airport after a second landing attempt in snow. The first attempt was aborted because the runway lights were not visible. The crew attempted a second landing but contact was lost with the aircraft. Wreckage was found in the ocean 10 miles from the airport.
## 1228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ditched in the ocean while on approach.
## 1229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into a mountain at 8,500 feet. Navigation error. Incorrect procedures followed by crew. The crew followed a different and inaccurate course.
## 1230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             En route, the cargo plane hit the slope of a mountain located 12 km from Yalí.
## 1231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After a missed ILS approach , the pilot stalled the plane and crashed in poor weather conditions. A stall during a left turn too close to the ground to effect a recovery. Pilot error.
## 1232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into hills shortly after takeoff. Crew error. The pilot taking off under VFR, lost visual contact with the ground and attempted to return to IFR procedure too late to avoid the hills. The aircraft was named "City of Ayudhya."
## 1233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       aircraft later crashed in an uninhabited area located near Hato Nuevo after encountering thunderstorms.
## 1234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The No. 2 engine failed on a go-around in reduced visibility and rain and the aircraft crashed into the ocean.
## 1235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft may have suffered an catastrophic explosion and crashed into the sea approximately 450 miles west of Limerick, Ireland. Early report of life rafts and survivors turned out to be incorrect. Cause unknown.
## 1236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The third cylinder of the right engine failed in flight, causing the engine to catch fire. With one engine inoperative and flying in icing conditions and turbulence, the aircraft was unable to maintain height, hit trees and crashed.
## 1237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      On final approach to Río Grande Airport, the aircraft stalled and crashed in a fieldlshort of runway.
## 1238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The inability of the aircraft to gain height shortly after becoming airborne, due to loss of engine power caused by ice formation in the carburetor intakes attributable to the captain's failure to make use of the heat controls.
## 1239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             On final approach to Techo Airport, the aircraft went out of control and crashed in an explosion short of runway.
## 1240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed into the north slope of Santa Ynez peak, 23 miles northwest of Santa Barbara, in poor weather. Failure of the crew to maintain minimum altitude for the route being flown for reasons unknown.
## 1241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into a wooded area, 8 miles NE of Charlston, after making a final turn to land at Kanawha County Airport. Both wings were sheared off and the aircraft burst into flames.
## 1242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The pilot lost control of the aircraft while attempting too steep a turn and too  low a speed while making an approach at night in dense fog and rain and struck the ground.
## 1243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane, on a flight from Miami to Cuba, collided with a US Navy Beechcraft at 4,000 feet. Thirty-nine killed on the DC-4, four killed on the Beechcraft.  Failure of both crews to maintain sufficient vigilance under VFR conditions to prevent a collision.
## 1244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed after being caught in a squall line with 65-85 mph winds and heavy rain. Windshear. The severe downdraft encountered which caused the aircraft to strike the ground in a near level attitude.
## 1245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed while attempting to land at Kirtland AFB in gusty winds. The pilot appeared to have difficulty keeping the wings level. The plane crossed the threshold left of the center line. When the pilot corrected, the right starboard jet pod and No. 6 propeller struck the runway. The pilot attempted a go-around with the No.6 engine afire but crashed to earth bursting into flames.
## 1246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 No. 1 engine failed shortly after taking off.  Altitude could not be maintained and an emergency belly landing was made in a field. The disconnecting of the articulated control rod of the propeller governor due to the lack of a split pin on the governor spindle and to the nut of the ball-joint of the control spindle having been unscrewed by force.
## 1247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hit a mountain in fog about 8 km from Rancheria.. Pilot's decision to fly VFR in unfavorable weather conditions.
## 1248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Struck by lightning and crashed.
## 1249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into high ground while on a VFR apporach in IFR conditions. The pilot attempted a descent over an area where the minimum safe altitude was 1,200 ft.
## 1250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While approaching the airfield for an emergency landing, the airplane hit the chimney of the Tejícondor factory located in the suburb of Belén, stalled and crashed in a huge explosion.
## 1251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed into a hill at 1000 ft. in a level descending attitude, 54 miles from the airport. The pilot descended below en route minimum altitude without knowing the aircraft's position. The aircraft was named Clipper Great Republic.
## 1252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane encountered poor weather conditions with thunderstorm activity and turbulence leading to loss of control and crash.
## 1253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         En route from San Francisco to Denver after passing the Cheyenne radio range the aircraft turned south in the wrong heading. Flying in darkness, the aircraft continued on this course until it hit Crystal Mountain. The captain may have depressed the wrong control switch or may have turned his ADF in such a way that it was affected by the radio range station at Fort Bridger, WY. Officially, the flight for reasons undetermined, failed to follow the prescribed route to Denver and continued beyond the boundary of the airway on a course which resulted in the aircraft striking mountainous terrain.
## 1254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One engine caught fire. The propellers of the working engine were feathered in error. The plane crashed.
## 1255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane hit the slope of a mountain.
## 1256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed during a landing attempt in adverse weather conditions under VFR and hit high ground. The pilot attempted a visual approach and made a turn at low altitude in adverse weather conditions.
## 1257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into the Huon Gulf after the center propeller failed.
## 1258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane crashed in a field while attempting to land..
## 1259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Disappeared with no trace over the Pacific Ocean while flying from Vancouver to Tokyo. The last message was received while the aircraft was near Yakutat, Alaska with no reports of probems. Cause undetermined.
## 1260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The failure of the right engine during takeoff. A rupture of the hydraulic circuit with oil projection in the cockpit would have increased maneuver difficulties by restricting visibility in the cockpit
## 1261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hit a tree while taking off and crashed.
## 1262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Cargo plane. Loss of lateral control during a turn at low altitude soon after takeoff. The probable cause of the loss of lateral control was the presence of ice on the aircraft surface.
## 1263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Abnormal flight maneuver made when the crew experienced difficulty in resuming normal flight on the two engines. Overspeed, reduction of pitch or difficulty in restarting the engine may have created a dangerous situation and caused the aircraft to stall in dissymmetrical flight, thus subjecting the airframe to stresses accompanied by buffeting which was either alternating or exceeded the design limits of the structure and caused the tail-plane to break off.
## 1264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cleared for an approach to Oakland Municipal Airport, the aircraft crashed 15 miles SSE of the airport into Tolman peak. Patches of fog obscured the terrain. The aircraft struck a hill at an elevation of about 1,000 ft. at 225 to 240 mph. Neither of its 2 low-frequency receivers were tuned to the Oakland station and the captain may have attempted to fly by visual reference using the ADF.  As a result, the flight was 3 miles off course and well below the minimum prescribed altitude. The failure of the captain to adhere to instrument procedures in the Newark area during an approach to the Oakland Municipal  Airport.
## 1266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a houses shortly after taking off from Congonhas Airport. Failure of several instruments.
## 1267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the Mediterranean due to structural failure following loss of control in severe weather.
## 1268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft, with the No. 4 propeller feathered, stalled and dived into San Francisco Bay. An inadvertent stall at a low altitude from which recovery was not effected.
## 1269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lost control and crashed when attempting to take off. Attempted to take off  with the autopilot engaged.
## 1270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the slope of Mt Tanazawa, 28 km northwest of the airbase while operating with the 314th Troop Carrier Wing.
## 1271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed shortly after takeoff from La Paz-El Alto Airport.
## 1272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While en route, the aircraft hit the slope of the Cerro Blanco.
## 1273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Went missing en route. No trace of the aircraft was ever found.
## 1274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route in clouds, the airplane crashed on Mt Ingeli  about 17 km southeast of Kokstad.
## 1275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While flying VFR in adverse weather conditions, the pilot mistook Nanaimo for Vancouver.  The plane crashed into Mt. Benson, 20 miles west of Vancouver.
## 1276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while en route.
## 1277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed and burned in jungle 170 miles north northeast of Guatemala City.  It is theorized a passenger may have started a fire in the aircraft's cabin with a cigarette.
## 1278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while attempting to land at Albuquerque in marginal weather conditions. The captain's attempt to land during less than minimum visibility, rather than proceed to his alternate.  A military contract flight.
## 1279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While cruising in marginal weather conditions, the aircraft hit the slope of Mt. Dore, about 32 km southwest of Clermont-Ferrand.Flew into Mt. Dore.
## 1280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shortly after taking off the aircraft flew into high voltage cable and crashed.
## 1281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed shortly after taking off due to icing.
## 1282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a sand dune while attempting to land in poor weather condtions.
## 1283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft struck trees in fog during a missed approach 3 miles north of Dum Dum airport as the crew descended too low in poor visibility.
## 1284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane crashed on approach when flying too low in poor visibility
## 1285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shortly after taking and while in an initial climb, the plane hit an obstacle and crashed.
## 1286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Stalled, entered a spin and crashed. An inadvertent spin at an altitude too low for recovery.
## 1287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While flying in a narrow valley, the pilot elected to gain height when the aircraft hit trees and crashed in flames. Pilot error.
## 1288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shortly after taking off from Newark Airport the control tower noticed smoke emanating from the right engine.  Minutes later the aircraft gradually descended, its left wing dropped and the aircraft struck the roof of a vacant building. Hold-down studs in the number 10 cylinder of the right engine failed due to improper installtion of their nuts. Fire erupted at the base of the failed cylinder. Extension of the landing gear and loss of the right engine led to the aircraft stalling at the height of about 200 ft. The aircraft was also overloaded by 117 pounds. A stall with the landing gear extended following a serious loss of power from the right engine. This loss of power was caused by the failure of the hold-down studs of the No. 10 cylinder, precipitating a fire in flight which became uncontrollable.
## 1289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed at Mehrabad airport during a third landing attempt. The pilot attempted to land despite warnings of poor visibility and snow.
## 1290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed after running out of fuel. Fuel starvaion. Crew switched to the wrong fuel tank.
## 1291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Proceeding at a low altitude to maintain reference with the ground in nearly zero ceiling and visibility , the plane drifted off course and crashed into a hill 15 miles east of the direct route. Flying VFR under IFR conditions. The captain's poor judgement in attempting a flight by visual reference during instrument weather conditions.
## 1292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The flight made an authorized left turn while outbound on the east leg of the Fairbanks radio range and subsequently struck Chena Dome, northeast of the station while on a westerly heading. The failure of the pilot to follow procedures and utilize properly the radio facilities for approach and letdown at Fairbanks with the result that the flight became lost.
## 1293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a mountainside at an altitude of 7,000 ft., 66 miles northeast of Williams AFB.
## 1294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane crashed on takeoff after hitting trees.
## 1295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft lost control in severe turbulence and downdrafts and crashed in a soft peat bog 1 mile east of Llyn Gwynant.  The encountering of strong down-currents of air on the lee side of Snowdon which forced the aircraft down into an area of strong turbulence where control was lost.
## 1297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The crew chose to divert to Sandpit after the No. 1 engine was shut down. The aircraft crashed into the Pacific Ocean one mile offshore after overshooting the runway during the emergency landing. A nose gear retraction difficulty in connection with an icing condition or a power loss, which made the aircraft incapable of maintaining flight. Most of the fatalities were from exposure to the frigid water.
## 1298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into an apartment house during its approach, 3 miles short and right of the runway.  The plane crashed while level laterally but in a steep descending attitude.  Most likely cause was carburetor icing. Official cause unknown.
## 1299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In-flight failure of a propeller which damaged control cables causing loss of control of the aircraft. The control cables in the fuselage were sheared by the right propeller which broke loose following a shaft failure caused by the sudden stopping of the engine caused by fatigue failure of No. 6 piston lug.
## 1300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The military plane crashed into several houses in a snowstorm after taking from Yokota AFB and hitting  power lines.
## 1301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into an apartment complex shortly after taking off. The last message from the pilot was "I've lost an engine and am returning to field."   Reversal in flight of No. 3 propeller and subsequent feathering of No. 4 propeller at too low an altitude to effect a recovery.
## 1302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hit the north slope of La Cinta mountain range while en route.  Pilot did not maintain a safe altitude. The pilots ignorance of wind conditions which allowed the aircraft to drift 3 degrees off course.
## 1303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Banked left and struck trees 2,000 ft. short of the runway. Pilot error. The pilot misjudged the approach, undershot and hit the tops trees. A contributing factor was the setting of the pilot's altimeter to QNH, rather than the customary QFE during the final approach.
## 1304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The right wing struck trees after attempting a go-around. Pilot error.
## 1306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After taking off, the plane was observed turning to the left until it turned on its back and crashed. Malfunction of ailerons. The gear chain of the co-pilot's control column slipped off the sprocket and jammed the aileron controls.
## 1307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While taking off, the cargo plane, carrying a light load of freight, lost altitude and crashed into a house.
## 1308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While on a training mission and flying blind on instruments the planes collided. One plane struck the ground and disintegrated. The other glided down several miles away, exploded and burned. Both planes crashed on ranches several miles apart about 18 miles from San Antonio . Six killed on one plane and seven on the other.
## 1309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane disappeared en route. Found on August 27, 1953.
## 1310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed and burst into flames two miles short of the runway in rain and fog during the approach. Cause unknown. The aircraft was named "Koningin Juliana."
## 1311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed after taking off. Pilot failed to maintain altitude after taking off for reasons unknown. May have been pilot fatigue.
## 1312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane overshot the runway and collided with a military aircraft killing at least 70 people.
## 1313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the summit on Cerro Grande Mountain.
## 1314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed during takeoff. The plane hit an unidentified obstruction on the runway and the wheels collapsed.
## 1315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Violent engine surges and turbulence during a missed ILS approach caused the crew to loose control of the aircraft and crash at 171st St. and 89th Ave. in Queens. The no.1 engine fuel feed valve diaphragm  failed due to deterioration.
## 1316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On an early morning flight, under instrument conditions, the crew flew the route segment from Tokyo to Oshima Island 1,000 ft. below the minimum instrument altitude.  At Oshima Island the aircraft crashed into the side of Mihara volcano.
## 1317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane, carrying a load of tea,  crashed while taking off after losing an engine and attempting an emergency landing.
## 1318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After taking off from Isle Grande Airport the crew had engine problems.The aircraft then crashed into the Atlantic Ocean. The ditching took place in turbulent seas. The tail broke off on impact and the aircraft stayed afloat for only 3 minutes and sank.  The company's inadequate maintenance in not changing the No. 3 engine which resulted in its failure immediately subsequent to takeoff and the persistent action of the captain in attempting to re-establish a climb, without using all available power, following the critical loss of power to another engine. This resulted in a nose-high attitude, progressive loss of air speed and the settling of the aircraft at too low an altitude to effect recovery. The aircraft was named Clipper Endeavor.
## 1319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane was on a flight from New York City to Burbank, California. Due to poor visibility and fog, the flight was diverted to Los Angeles Airport for an ILS approach. While on approach, the plane crashed into the Puente Hills and burned. The pilot voluntarily descended below the minimum altitude for which he was cleared and attempted an approach at too low an altitude to clear the terrain. The pilot in command was flying with a restricted medical certificate. An emergency suspension was placed on the airline and it was discovered the airline had allegations of more than 40 violations listed against it including charges of overweight planes, excessive flying time for crews and failure to use approved seats and safety belts.
## 1320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The flight crashed into the jungle about 887 nm NNW of Rio de Janerio. Separation of the propeller blade leading to separation of the No. 2 engine due to highly unbalance forces, leading to the distintegration of the aircraft. The aircraft was named "Clipper Good Hope."
## 1321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lost an engine while on approach and crashed. Fuel starvation caused when the plane banked to make a turn and the tank being used had very little fuel in it.
## 1322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed on a mountain slope while en route. There were mainly whaling crews aboard, returning from the antarctic. Crew navigational error.
## 1323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after taking off.
## 1324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed while attempting to make an emergency landing after experiencing an engine failure. Failure of the port engine due to accessory drive failure. Failure of the starboard engine due to seizure as a result of deficient maintenance. Error on the part of the crew in lowering the landing gear in emergency conditions.
## 1325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane lost an engine while taking off, stalled and crashed. Failure of maintenance staff to remove the flying control locks.  Failure of one engine for reason undetermined.
## 1326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The crew became lost in the desert, ran out of fuel and made a forced landing.  Survivors had to be led by a rescue team 15 miles to an oasis before they could be evacuated.  The co-pilot died 5 days later from head injuries suffered in the accident. Navagational errors by the crew. Improper adjustment of the parameters of the  gyroscopic compass CL2 Gyrosyn by the navigator.  Absence of radio assistance and incorrect use of the compasses. Captain's decision  to use the gyroscopic compass in the place of the magnetic compass which was inoperative. The aircraft was named "Horus."
## 1327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shot down by  a Mig-15 Russian Air Force fighter over the Baltic Sea in international waters while on a radio surveillance mission. Wreckage found 06/17/2003, recovered 03/19/2004.
## 1328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ditched into the English Channel after losing the starboard engine possible due to carborateur icing.
## 1329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After taking off from Larkenhealth AFB, the plane dropped out of a fortress of 10 aircraft and crashed and burned in the countryside between two farms.
## 1330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the North Sea near Holy Island while participating in North Atlantic Treaty maneuvers.
## 1331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Marine cargo plane, carrying ROTC students taking part in summer training crashed while taking off after a refueling stop.
## 1332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A woman was sucked out of the plane . The flight engineer's failure to recognize an unsafe condition of the cabin door despite three completely separate warnings of that condition and the captain's action in continuing flight while pressurized despite the several warnings that the main cabin door was not properly locked.
## 1333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Exploded in midair. A bomb exploded aboard.
## 1334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After failure of all four engines the plane ditched into the Mediterranean Sea. The initial failure of the No. 1 and 2 engines for reasons unknown.
## 1335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed shortly after taking off from Khewra. Possible engine failure.
## 1336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Extremely bad weather forced the captain of the cargo plane to divert from his original destination. No proper preparation had been made for a possible landing at an alternate airfield prior to commencement of flight. The secondary cause was due to the Captain's attempt to execute a landing at Kosti aerodrome which was not equipped with night landing facilities. The Captain landed on the runway but was unable to align himself with the center line and in consequence ran off the runway and struck a steel windsock support and thereafter struck various obstructions such as trees which lay in the path.
## 1337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One of two engines of the aircraft fell into a crowd at a performance at the Farnborough air show. The aircraft crashed to the ground 1.5 miles from the grandstands killing the Chief test pilot of de Havilland Aircraft Corporation, John Derry and an observer, Tony Richards. In addition, fifty two people on the ground were killed and over 60 injured. The cause was a structural design fault in the D shaped leading edge section of the wing. When Derry pulled a high G turn, the wing buckled.
## 1338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A navigational error on the part of the captain. This error was severely aggravated by the lack of proper radio aids from the destination airport, the unserviceability of the aircraft R/T equipment, and to a lesser degree the physical condition of the crew. The secondary cause was the cargo plane coming into close proximity of high ground due to the captains uncertainty of his position.
## 1340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Midair collision with a TC-62 aircraft. ATC error.
## 1341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Was on air-sea practice when it crashed near Tarbat Ness.
## 1342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After being cleared to land the aircraft struck high ground and burst int flames. Navigational error in not knowing where the aircraft was located. Poor weather.
## 1343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into the Sea of Japan while en route. No signs of the wreckage were ever found and only two bodies were recovered when they washed ashore.
## 1344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Struck Gray Mountain in poor visibility while en route.
## 1345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A course deviation led to the aircraft crashing into Mt. McKinley at an elevation of 12,000 ft.
## 1347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Struck a mountain at an elevation of 2,000 ft. as it prepared to land at U.S. military base K-16. The mountains were obscured by low clouds.
## 1348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared while en route. No trace of the aircraft was ever found.
## 1349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While en route, a propeller failed and punctured the fuselage after which vibrations caused the No. 1 engine to fall off. The pilot attempted to make an emergency landing. The plane crashed and came to rest in a muddy field.
## 1350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bound for Elmendorf Air Force Base, the aircraft struck the south slope of Mount Gannett. The plane drifted off course due to high winds. Wreckage found in 06/26/2012
## 1351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in poor visibility and fog after diverting to Great Falls. The No. 3 engine failed and the plane crashed into trees approximately 1 mile southwest of the airport. An 8-year old boy was the only survivor.
## 1352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed en route.
## 1353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed dived into the sea approximately 5 miles from the airport shortly after taking off. Cause unknown. The plane was called "The Star of the East."
## 1354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Within two minutes after takeoff the aircraft began to lose altitude. It crashed and burned into a snow laden field at the end of the airstrip. Failure of the pilot to remove the rudder and elevator locking pin prior to taking off.
## 1355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Disappeared over the Atlantic. Never found.
## 1356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lost altitude and ditched near shore after taking off.
## 1358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while landing.
## 1359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After takeoff from Laoag an armed man forced his way into the cockpit. He pulled .45-caliber pistol and demanded that the plane be brought to Amoy, in mainland China. The captain took over control from the co-pilot and put the plane into a steep dive. The hijacker did not lose his balance and instead shot and killed the captain. The co-pilot took over control and meanwhile the steward had come up to the cockpit to find out what was going on. As he knocked, the hijacker shot him twice through the cockpit door, killing him. The co-pilot changed course to China and continued at 6000 feet over the China Sea until two Chinese Nationalists T-6 Harvard planes showed up. Both planes chased the DC-3 and sprayed machine gun fire. The pilot managed to escape until he met with other Nationalist planes, who forced the flight to land at Quemoy. At Quemoy the hijacker was arrested.
## 1360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into approach lights while attempting to land.  Error of judgement on the part of the pilot.
## 1361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane struck a tree on a mountain ridge at an elevation of 1,620 feet. Following impact with the tree the aircraft continued flying and finally struck the ground in a canyon 1,500 feet below and caught fire. The flight's deviation from the established approach procedure.
## 1362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed into mountains while en route. Upon entering an area of turbulence, the plane was unable to climb and crashed into trees. Found 5 months later. The inadvertent descent into an area of turbulence and icing which resulted in the pilot's inability to regain a safe altitude.
## 1363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Both aircraft crashed after a midair collision at approximately 1,500 ft.  Weather conditions at the time were a factor with localized thundrestorms, heavy rain and hail. The court of enquiry was of the opinion that no responsibility could be attached to any individual.  Although evidence revealed that the  Malta Flight Information Center were not in possession of full information on the Lancaster's sortie, it was not a contributory cause. Nineteen killed aboard the Vickers, 7 aboard the Lancaster.
## 1364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed 10 miles east of Cagliari in the Sinnai mountains after a wing failed due to overstressing.
## 1365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Last know coordinates 46' 15" N, 46'31"W, over the North Atlantic. A distress message was received. No trace of the aircraft or its occupants were ever found.
## 1366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Destroyed by detonation of a bomb.
## 1367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a grove of small trees and burst into flames while trying to land in heavy fog. Misjudgement by the pilot. Wrong altimeter setting.
## 1368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a hill during a sandstorm 50 km northeast of Cairo.
## 1369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into the Gulf of Mexico off Mobile, Alabama. The aircraft broke up in the turbulence of a "frontal wave" storm after failure of  the left wing. The loss of control followed by the in-flight failure and separation of portions of the airframe structure while the aircraft was traversing an intense frontal-wave type storm of extremely severe turbulence, the severity and location of which the pilot had not been fully informed.
## 1370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft overran the runway during takeoff. Excessive nose-up attitude of the aircraft during the takeoff run producing a partly stalled condition and excessive drag. The pilot who had only limited experience in the Comet aircraft, elected to takeoff at night at the maximum permissable weight  for the prevailing conditions. The circumstances required strict adherence to the prescribed takeoff technique, which was not complied with.  First fatal crash of a commercial jet aircraft. The aircraft was named Empress of Hawaii.
## 1371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After missing his first approach to the airport, the pilot displayed poor judgement in attempting a circle under the overcast in rain and at night, rather than execute a standard instrument approach.
## 1372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a mountain while en route in severe weather. The pilot descended in poor visibility in order to find his position.
## 1373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the sea in poor weather conditions.
## 1374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft, flying low over the Atlantic Ocean, was to have flown higher when it reached the coast. Tail-winds caused the aircraft to arrive earlier and the plane hit a hill in low cloud cover.
## 1375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into a flat barley field and burned. The aircraft first struck the ground with its right wing tip in a near vertical position, cartwheeled and disintegrated. All 30 passengers were maintenance personnel from the 509th Bomb Wing, noted for dropping the atomic bombs on Japan. Accumulation of ice on the surfaces of the aircraft in sufficient magnitude to have caused loss of control. Official cause of loss of control unknown.
## 1376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The pilot aborted the takeoff after loosing the No. 2 engine and was unable to stop on the remaining runway. Error of judgment on the part of the pilot in not continuing the takeoff with three engines still operating
## 1377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed after a wing failed due to metal fatigue cracks after the aircraft encountered strong winds. A wrong type of grease used when fitting press fit bolts to the booms caused corrosion, thus weakening the lower starboard boom at the outboard bolt hole.
## 1378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lost an engine on takeoff, climbed to 100-200 ft. entering a slight banking turn and crashed into the sea. Failure of the left engine which was due to the cracking of the accessory drive gear. Failure of the pilot to take precautionary steps on hearing the back firing, which was a warning of possible engine failure.
## 1380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed on take off after experiencing duel engine failure.
## 1381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into Cedar Mountain following double engine failure. The progressive failure of both engines, due to the lack of compliance with proper maintenance standards. Spark plugs in both engines had been operated beyond their normal maintenance inspection period and exhibited evidence of a condition conducive to detonation and preignition. There was evidence that detonation and preignition took place in both engines and that  they ultimately failed as a result of master rod bearing failures.
## 1382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane broke apart in midair and crashed in the Khasi hills. The port wing failed in the air due to an upload as a result of being subjected to loads greater than those for which it was designed.
## 1383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed after takeoff due to wing failure.
## 1384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft descended below minimum altitude and crashed into the sea. The pilot's action in continuing a descent below the 500 ft. prescribed minimum altitude until the aircraft struck the water. A probable contributing factor to the aircraft striking the water was the sensory illusion experienced by the pilots.
## 1385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed 6 minutes after taking off from Dum Dum Airport. The accident occurred during a violent thunderstorm. Wreckage indicated that the aircraft broke up in the air. Failure of both elevator spars caused by a heavy down-load that may have been associated with a pull-up maneuver. Severe gusts encountered in the thundersquall and overcontrolling or loss of control by the pilots when flying through the thunderstorm. The aircraft was nicknamed "York Victor."
## 1386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the sea. Unknown cause.
## 1387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Stalled following takeoff. An error of judgement by the pilot, who executed a steep starboard turn. He could not come out of the overbanked turn in time because of the low altitude. Inexperience of the pilot with the type of the aircraft which he was flying.
## 1388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed while attempting to land.  Misuse of controls after the aircraft touched down on the water. The aircraft  bounced several times with the final bounce being so severe the nose section was torn off.
## 1389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed 13 miles east of Marashall Texas, during an approach to Shreveport in a severe thunderstorm. The encountering of conditions in a severe thunderstorm that resulted in loss of effective control of the aircraft and the failure of the captain to adhere to company directives requiring the avoidance of thunderstorms when conditions would allow such action.
## 1390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Mismanagement of fuel resulting in loss of power and control while circling the field preparatory to an approach for landing.
## 1391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While taking off the plane reached a height of about  50 ft. after which flaps were retracted. The plane began to lose height and crash landed into a meadow. While no one on the plane died, two girls on a bicycle path were killed.
## 1392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Midair collision. Crew did not follow the prescribed route. Inadequate preparation for flight. Tweny killed on the Li-2 and seven crew on the Li-2T
## 1393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed after being struck by lightning. Poor planning by the crew in entering an area of deteriorating weather conditions.
## 1394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed after taking off. Engine fire.
## 1395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into the San Ramone mountains while attempting to land in poor weather.
## 1396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed after on-board fire.  Possibly shot down.
## 1397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while on final approach to Sao Paulo. Error of judgement by the crew during poor visibility at night.
## 1398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed shortly after taking off from Tachikawa Air Base. Engine failure during takeoff. A premature application of full flaps during the three engine approach resultied in loss of air speed and aircraft control. The plane crashed into a field of watermelons. First aviation disaster to claim more than 100 lives.
## 1399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lost at sea while en route from Wake Island to Honolulu, Hawaii, approximately 325 miles east of Wake Island. Cause not determined, but there was thunderstorms and turbulence in the area. Fourteen bodies and all life rafts were recovered. The plywood panel from the navigator's table was recovered with the words "falling in" written on it. There is some speculation that a bomb caused the accident. The aircraft was named "The Royal Hawaiian."
## 1400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The co-pilot failed to maintain a sufficient rate of climb after becoming airborne, struck obstacles and crashed into a wooded area. The pilot suffered from spatial disorientation immediately after liftoff.
## 1401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shot down by a U.S. Air Force F-86 jet fighter towards the end of the Korean War. The Russian government claimed the plane was over Chinese air space.
## 1402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The No. 3 engine broke away from the aircraft following severe vibrations causing loss of control of the No. 4 engine and necessitating a ditching 1.5 miles from the coast. Failure in flight of a propeller blade. Four passengers drowned.
## 1403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shortly after taking off, the aircraft entered a turn and crashed to the ground. The failure of the captain to supervise the first officer in flying the plane who was not able to fly on instruments in the dark.
## 1404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into the Atlantic Ocean after two of it’s engines caught fire, 500 miles off the Irish coast.
## 1405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane flew into a mountain east of San Diego.
## 1406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While on approach to land at Nice-Cote d' Azur Airport the aircraft crashed into Mt. Cemet in the French Alps. French violinist Jacques Tribaud, 72, among those killed. Navigational error. Pilot deviated from the prescribled route for reasons unknown.
## 1407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed on the fringe of the Cascade mountains, 26 nm short of McChord AFB. The pilot's attempt to continue flight under the provisions of VFR during IFR conditions.
## 1408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After a missed approach the No. 2 engine of the cargo plane failed. Failure of the right engine when the pilot wished to obtain maximum power from both engines after a missed landing.
## 1409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane struck a tower in fog while attempting to land. Too low approach.
## 1410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After circling, the aircraft crashed into two radio towers while on approach to Albany Municipal Airport. While the pilot was aligning with the runway, he descended below obstructions partially obscured by fog and crashed into radio towers. Crew's failure to abandon the landing under adverse weather conditions.
## 1411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed to the ground after an engine fire during takeoff. As the plane returned, it stalled and crashed.
## 1412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While the plane was attempting to land it entered a steep climb, stalled and crashed. The structural failure of the left elevator in flight, causing loss of control. This structural failure was brought about by the left outboard hinge bolt backing out of the assembly. The underlying cause was improper maintenance which resulted in the installation of hinge bolts and bearings not meeting specifications, and inadequate inspection which failed to detect this condition.
## 1413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed while attempting to take off. Loss of engine power on takeoff. The loss of power may possibly be attributed to the heavy deposit of lead on the spark plugs.
## 1414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed under unknown circumstances.
## 1415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed a few seconds after becoming airborne. The captain's loss of visual reference and orientation when he encountered drifting fog shortly after becoming airborne on take-off and the resultant inadvertent assumption of a descending flight path.
## 1416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a ravine while carring reporters and officials to the inauguration of Falcon Dam.
## 1417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stalled and crashed 6 km from the airport. Overloaded. Snow not removed from the wings. Icing.
## 1418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While flying in fog on an approach to San Francisco International Airport, the aircraft crashed into a redwood forest on a mountain ridge, 7.5 miles southeast of Half Moon Bay. The plane struck the ridge of King's Mountain and broke up, scattering wreckage over a half-mile area.  Failure of the crew to follow prescribed procedures for an instrument approach. American pianist, William Kapell, 31, killed.
## 1419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane stalled while landing due to improperly set controls. Poor approach techniques on part of the flying crew and against the published procedures according to the weather conditions.
## 1420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the Rodeo Pampa mountains during an approach to Sucre, 18 miles from its destination.
## 1421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in the Atlantic during a training exercise.
## 1422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into Mt. Somosierra in poor weather conditions. It is believed the aircraft suffered downdraft and lost altitude before colliding with a mountain.
## 1423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shortly after taking off , the aircraft experienced loss of control in too steep a turn. Loss of critical height during a steep left hand turn, with the landing gear down, executed by the pilot at an unsafe altitude in an attempt to return to the aerodrome, after experiencing a temporary loss of power of the left engine soon after becoming airborne. A false right engine fire warning precipitated the attempt at a forced landing.
## 1424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane with a load of citrus fruit flew into a 8,000 ft. mountain.
## 1425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on takeoff from Cairo-Almaza Airport.
## 1426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed into an officer's housing area after attemping to make an emergency landing with an engine out,at Anderson Air Force Base on Guam.
## 1427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Descended below the glide path in poor weather and darkness and crashed 1.5 miles short of the runway. Poor approach procedures performed by the pilot.
## 1428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Two Russian trade delegates were killed when the plane crashed near Herat in a showstorm.
## 1430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Flew into a mountain near Lapseki.
## 1431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed 4 minutes after taking off in a snow shower. The aircraft lost altitude and crashed to the ground for reasons unknown.
## 1432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft broke up in-flight while en route from Rome to London. Metal fatigue due to a design flaw caused a breakup of the aircraft. One of two accidents with the same cause. The aircraft was nicknamed "Yoke Peter."
## 1433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While descending to Manizales by night and poor weather conditions, the aircraft collided with a mountain shrouded by clouds and disintegrated on impact.
## 1434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The crew spotted a chimney and the pilot made a sharp turn to the left to avoid a collision. In doing so, the airplane hit a telephone pole and telegraphic cables, stalled and crashed in flames in a snow covered field. The accident was the consequence of poor flying techniques on part of the pilot-in-command during initial climb.
## 1435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The jet fighter crashed into homes killing 6 people and destroying 3 homes while attempting to land at Long Beach Airport..
## 1436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While descending to make an IFR landing the aircraft went into a steep dive and crashed. There was a possibility of both right engines being on fire. There was turbulence in the area.. The aircraft possibly  lost a wing during a pull out from the steep dive.
## 1437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane crashed while on approach. The loss of control of the aircraft at an altitude too low to effect recovery. The loss of control resulted from an accumulation of ice and the use of de-icer boots at low air speeds.
## 1438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After reporting a fire in the cargo hold and that a ditching was imminent,  the last message from the aircraft was "I've lost control of the aircraft we're going in." The plane crashed 30 km south of Tomakomai.
## 1439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane broke apart over the Susitna Valley of South Central Alaska and the scattered parts fell onto Kesugi Ridge, which is now within Denali State Park. Six servicemen wearing parachutes escaped by being thrown from the disintegrating aircraft.
## 1440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed at sea while on manuvers.
## 1441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The test flight crashed after attempting to determine the cause of a crash at Nagpur on 12/12/1953.
## 1442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After entering an area of severe turbulence and icing, the plane made a rapid descent and struck the ground at high speed. A sudden emergency of undetermined origin under adverse weather conditions resulting in rapid descent and impact with the ground at high speed.
## 1443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft struck a mountain and disintegrated at an altitude of 8,000 ft. while en route. The accident occurred in snow and low overcast conditions. The plane had drifted off the prescribed course and no wind drift correction had been made.
## 1444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down.
## 1445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed short of the runway, hit a wall, overturned and caught fire. Improper procedures used in landing.  Pilot fatigue.
## 1446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One minute after taking off, the cargo plane crashed into the sea off Mackay.
## 1447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed to the ground about 20 minutes after leaving Bolling Air Force Base. The aircraft was circling a radio beacon under VFR waiting for IFR clearance. An attempt to maintain VFR flight at night and in poor visibility.  Possible crew fatigue.
## 1448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed and burned on Friar's Peak in the Salinas mountains after being waved off for landing due to a dust storm.
## 1449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Exploded in midair about 25 miles from Adana, 15 minutes after takeoff from Adana.
## 1450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane crashed into the Red River while on final approach.
## 1451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft broke up in-flight and crashed into the sea en route from Rome to Cairo. Metal fatigue due to a design flaw led to the breakup of the aircraft.  This is the second accident with the same cause. The aircraft was nicknamed "Yoke Yoke."
## 1452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision between a Canadair C-4-1 and a RCAF Harvard Mark II at 6,000 feet.  Thirty-five killed on the Canadair, one on the Harvard. Failure on the part of the pilots of both aircraft to maintain a proper lookout. The onus of responsibility for keeping out of the way being with the Harvard aircraft as it had the other on its own right side.
## 1453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stalled and crashed and burned during takeoff.
## 1454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shortly after taking off and climbing the plane crashed near Lake Batuco.
## 1455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a mountain during an approach. Deviation from prescribed course for unknown reasons. Crew fatigue may have played a part. The captain acted contrary to company policy regarding a required IFR approach.
## 1456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft tried to return to the airport after the No. 1 engine failed on takeoff but was unable to maintain airspeed, stalled and crashed into a tree. Delay in feathering the No. 1 engine after failure. Improper emergency procedural errors by the pilot.
## 1457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed onto a roadway from a height of 500 ft. and into a clump of trees.The crew used the wrong fuel selection configueration and the engines failed due to fuel starvation.
## 1458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft deviated from its normal course by 30 miles and struck the slope of Mt Cipóa. Navigational error. The minimum safety height for the route was not complied with.
## 1459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane ran off the end of the runway and crashed after being attacked by a fighter jet.
## 1460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane crashed on takeoff. Elevator lock was not removed prior to takeoff.
## 1461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed en route under unknown circumstances..
## 1462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane ditched into the Atlantic Ocean after running out of fuel. Three non-swimming passengers drowned due to lack of lifesaving equipment aboard. Negligence of the crew in not monitoring the fuel situation as the flight progressed.
## 1463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed while attempting to take off. Engine failure at a critical stage in takeoff.
## 1464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ditched into the sea after being shot down by Chinese Lachovlin  La-7 military fighter aircraft. The survivors were rescued by the U.S. Air Force.
## 1465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane flew into a mountain, 35 miles northeast of McGrath.
## 1466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into mountains after poor weather diverted the flight from Santa Maria. Flew opposite to prescribed course after takeoff. Crew error. The failure of the pilot to carry out the normal climb out procedure following takeoff on a flight to Bermuda and his having made a turn to the left instead of to the right, thus flying into the mountains instead of turning out to sea.
## 1467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed en route.
## 1468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the Mekong River while making an emergency landing after encountering engine failure. The aircraft was being used to evacuate families.
## 1469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed 16 miles south of Mason City, Iowa due to a loss of control after penetrating an area of thunderstorms during a go-around. The flight, while endeavouring to traverse a thunderstorm area, encountered very heavy rain, divergent winds, and strong downdrafts that forced the aircraft to the ground.
## 1470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the North Sea in rain showers and heavy seas. Cause not determined.
## 1471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed in the mountains. Crew did not properly use the navigation equipment.
## 1472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while making practice approaches to Ellsworth Air Force Base during its sixth attempt. The plane slammed into to ground with landing gear retracted and flaps set at 20 degrees.
## 1473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Less than a minute after takeoff, the aircraft crashed into a mudbank of the Shannon River. Although the crash site was only about 2,500 metres from the airport, no one was aware of the disaster. Rescue operations were only started after the plane's navigator, after having crossed the river, managed to reach the airport. The aircraft was partially submerged, and at least one of the fuel tanks had ruptured during the crash. The fuel fumes rendered many passengers and crew unconscious, who then drowned in the rising tide. Failure of the captain to interpret his instrument indications properly during flap retraction after the gear was re-extended.
## 1474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane was attemping to return to the Rio de Janeiro after severe vibrations in the No. 1 engine made the crew feather the prop.  While on final the aircraft came in too high and a go-around was attempted during which the plane crashed into the Guanabara Bay. Lack of reference to instruments after opening the throttle to go-around in restricted visibility.  Power may have been inadvertently reduced on the good engine.
## 1475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Stalled and crashed during a test flight.
## 1476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed in fog while attempting to land. Crew error, landing in conditions below minimums.
## 1477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed in the Alps, 25 miles northeast of Nice, on the French/Italian border while en route. The instrument flight plan the pilot filed indicated a cruising height that was lower than the authorized minimum altitude required to clear the mountains.
## 1478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hit the east slope of Mt Sivukha  located 30 km from the Mana River in strong winds while en route. Crew error.
## 1479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft disappeared approximately 300 miles east of Ocean City, Maryland and no trace of the wreckage or bodies was ever found.
## 1480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed during takeoff. An error of judgement on the part of the pilot-in-command in that he took the aircraft into the air at a speed below the minimum control speed, following loss of directional control during the ground run.
## 1481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Disappeared over the Andes while en route. Wreckage found 12/04/1954.
## 1482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed during an ILS approach to Berlin. Premature and unauthorized instrument descent to an altitude that did not permit terrain clearance.
## 1483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed in the jungle about 30 km north of Luang Prabang on the company's first commercial flight.
## 1484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hit the ground while making an approach to land. It is believed that the Pitot tubes heater system was OFF at the time of the accident, which cause several instruments to display wrong parameters, such the altimeters and the speed indicators.
## 1485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed into approach lights of the runway during the fourth landing attempt at Idlewild Airport, sinking into Jamaica  Bay. An erratic approach which resulted in a descent to an altitude too low to avoid striking the pier. A contributing factor was pilot fatigue due to the particular and difficult circumstances including two and one-half hours in a holding pattern.
## 1486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane crashed into a mountain while en route.
## 1487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ditched into the Monongahela River after running out of fuel. Inadequate flight planning. Contributing factors were inadequate crew supervision and training.
## 1488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed short of the runway, landing hard. Pilot error. Errors of judgement on the part of the captain in starting his final approach to land at too steep an angle and flaring out too late and too severely with the result that the aircraft sank and hit the ground short of the runway.
## 1489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed shortly after takeoff from Irkutsk-Magan Airport.
## 1490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The pilot turned back to make an emergency landing at Skwentna Airport but hit a ridge a mile short of the runway.
## 1491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Disappeared while on a training mission. Two planes collided in midair.
## 1492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Midair collision at 700-900 feet. The DC-3 entered the airport's control space without clearance or communication with the tower. Thirteen killed on the Martin, two crew on the DC-3.
## 1493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft, which had no wing anti-ice capability, flew into unexpected heavy freezing rain and ice, 4 inches thick formed. Needing an emergency landing at London, the pilot requested lights on all runways and approaches be turned on. This was not normally done as it might confuse pilots. This overloaded the lighting circuit and blew a fuse. The plane crash-landed short of the runway and the pilot said it became so hard to control the aircraft that the absence of lights may not have mattered. One passenger died of his injuries almost 30 hours later.
## 1494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Almost complete loss of elevator control and severe vibration was experienced shortly after taking off from Des Moines. The plane when into a steep climb and almost stalled but the captain applied full power and went into a steep dive. The captain then reduced power and headed for open country where the aircraft safely made an emergency wheels up  landing in a corn field.  A series of omissions made by maintenance personnel during a scheduled inspection which resulted in the release of the aircraft in an unairworthy condition and an almost complete loss of elevator control during flight.
## 1495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed into the Caqueta river while attempting to land.
## 1496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a field shortly after takeoff. The aircraft crashed as a result of slipping into the ground in the course of a poorly executed steep turn to port, carried out at night at a low altitude.
## 1497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed shortly after taking off after a wing failed. A design flaw in the wing led to fatigue cracks and wing failure.
## 1498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into a mountain while on approach. Navigational error due to failure to use radio equipment.
## 1499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After taking off from Albuquerque, the aircraft flew a path directly towards Sandia Mountain and crashed into it.  While initially blaming the pilots of intentionally flying the plane into the mountain, five years later, the CAB changed the probable cause to "deviation from course for reasons unknown" and admitted there may have been a problem with the flux gauge compass.
## 1500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The pilot began taking off and retracted the landing gear when smoke was observed in the cockpit. He attempted to belly land the plane. The propellers separated and penetrated the fuselage killing the fight engineer. The presence of smoke in the flight crew compartment in sufficient quantity to make the captain apprehensive of fire and to cause him to land the aircraft immediately with the landing gear retracted. A fractured rubber hose on the port engine connecting the rocker box of one of the lower cylinders to the collector box caused smoke to enter the wheel well and into the crew compartment.
## 1501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft was not able to get airborne and hit the end marker of the runway then hit the airport fence. Use of spark plugs inappropriate to the engine type. Overloaded.
## 1502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After an aborted landing attempt due to a unlocked landing gear, the plane made a left turn, hit a pole, crashed and burned. Pilot error. Improper use of the throttles by the crew following the go-around. Failure of the landing gear locking mechanism.
## 1503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While cruising by night, the twin engine aircraft hit the slope of the Cerro El Sabino located near Ciudad Valles.
## 1504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               the airplane hit the slope of the Cerro del Cabre located about 20 km northwest of the airport.
## 1505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed with a gold and platinum shipment aboard. Wreckage found one month later.
## 1506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed 1.25 miles short of the runway while attempting to land. Crew's inattention to flight instruments during approach. Pilot sensory illusion which gave a  false impression of the aircraft's altitude.
## 1507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft returned to Hickam Airfield because of inoperative high-frequency radio transmitters. As the plane was descending to land, it crashed into Pali Kea peak, 15 miles northwest of Honolulu. Navigational error by the crew brought the plane 8 miles north of its intended position.
## 1508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane ditched 35 miles off the Oregon coast after the No. 3 engine and propeller broke away causing severe control difficulties. The plane sank after 20 minutes. Loss of control and inability to maintain altitude following failure of the No. 3 propeller which resulted in wrenching free the No. 3 power  package. The aircraft was named "Clipper United States."
## 1509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane flew into a thunderstorm and crashed into the sea  in the Gulf of Mexico while en route.
## 1510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Suddenly dove into the ground. Unintentional movement of no.4 throttle into the reverse range just before breaking ground, with the other three engines operating at high power output, which resulted in the aircraft very quickly becoming uncontrollable once airborne.
## 1511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       An explosion occurred at 18,000 feet while over the China Sea. A resulting fire which started on the starboard wing soon spread and eventually led to total hydraulic and electrical failure. Smoke filled the cockpit and the plane crashed. An act of political terrorism.  An aircraft worker placed an incendiary device in the starboard wheel wella by an airport worker. The plane was named "Kashmir Princess."
## 1512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft hit the slope of Mt Koupé located about 80 km north of Douala. Wreckage found after 10 months.
## 1513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed after reporting being over Jipe Lake on the slopes of Mt. Kilimanjaro. Failure to follow prescribed route and procedures.
## 1514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ditched into the sea a few km from shore.
## 1515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The attempt of the pilot to takeoff under the prevailing unfavorable conditions. As a result, the aircraft hit an instrument landing building and crashed into a rail yard.
## 1516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed while attempting to land.
## 1517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on final approach. Pilot fatigue. The pilot did not follow the recommended procedure for instrument final approach and he descended below the height prescribed in the final approach chart.
## 1518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lost an engine on takeoff and crashed into trees and caught fire.
## 1519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed in a mountainous area located 39 km from the airport in the Zimathan district while en route.
## 1520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While on instrument approach, the aircraft hit a sign and crashed through the airport boundry fence.  Momentary disorientation caused by the loss of visual reference during the final visual phase of the approach resulting in an increased rate of descent at an altitude too low to effect recovery.
## 1521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     On a flight from London, England to Tel Aviv, the aircraft drifted over Bulgarian airspace and was shot down by Bulgarian jet fighters. A navigational error that probably originated with an incorrect radio compass indication due to the effects of thunderstorm activity in the area.
## 1522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft attempted an emergency landing at a military airstrip after fire broke out in the No. 2 engine. The right wing separated from the aircraft and crashed 1.5 miles from the runway. Installation of an unairworthy cylinder in the No. 2 engine which resulted in an uncontrollable fire and loss of the right wing.
## 1523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The right engine caught on fire due to a fuel leak leading to distruction of the plane in the air.
## 1524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Participating in a U.S. military exercise, the two planes collided in midair while in formation after one of the planes pulled out of formation because of engine trouble. The accident occurred at an altitude of 4,000 feet.  Forty-six aboard 7841 and 20 aboard 3222 were killed.
## 1525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hit Caparao Mountain while en route, 1 hour after taking off.  Failure to follow flight plan.
## 1526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane lifted off too early, stalled and crashed. The pilot tried to avoid a person on the runway.
## 1527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flew into Mount Popa located about 45 km east of Lanywa.
## 1528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane returned after failure of the No. 2 engine, stalled and crashed 200 yards short of the runway  into parked aircraft and a hanger.  The captain's commitment to a landing without radio or visual confirmation of his runway alignment following engine failure immediately after takeoff.
## 1529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into the Cameroon mountains after the wing separated due to severe turbulence.
## 1530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For reasons undetermined, the right engine failed and as a result of being overloaded, the aircraft did not maintain altitude on one engine and struck the ground with the right wingtip. A possible contributing factor was the failure of the co-pilot's vacuum-driven gyro instruments, without his knowledge.
## 1531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crash landed in a sandstorm on the fourth landing attempt.  The plane came in too low, struck a line of trees and crashed 1,200 yards short of the runway.  Pilot error.  In an error in judgement, the captain who allowed his desire to keep the runway lights in view failed to make adequate reference to his flight instruments.
## 1532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane lost 3 engines and ditched into the Pacific Ocean. The loss of power in three engines due to incorrect fuel system management and faulty restarting methods which resulted in the ditching of the aircraft.
## 1533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane ditched into the Thoa river. The pilot radioed he was going down and was ditching into a lake. Fuel exhaustion.
## 1534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed in adjacent mountains while attempting an emergency landing following an engine fire.
## 1535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into cloud covered Medicine Bow Peak while en route. The plane failed to clear the 12,013 ft. peak by 75 feet. The pilot deviated from course for reasons unknown.  Possible incapacitation of crew by carbon monoxide emanating from a faulty cabin heater, though never proven.
## 1536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into Kahlenberg Hill while on approach to Wien.  The aircraft flew for a longer time on the outbound track and descended below the prescribed minimum altitutde. Pilot error.
## 1537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed 11 minutes after taking off from Denver Stapleton Airport, 8 miles east of Longmont.  Detonation of a dynamite bomb in the No. 4 cargo hold, placed by John (Jack) Gilbert Graham in his mother's luggage in order to collect $37,500 in insurance.  A delayed flight caused the bomb to detonate over flat land rather than the mountains as planned.  Graham never showed any remorse for his actions and refused to file any appeals. He was executed for the crime on 1/11/56.
## 1538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the  peak of Mount Charleston 30 miles WNW of Las Vegas during a storm.
## 1539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed on takeoff. In-flight prop failure.  Maintenance error.  The excessively high drag resulting from the improperly indexed propeller blades and inability to feather.
## 1540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The military transport crashed seconds after taking off from Central Airport in Iwo Jima. Malfunction of the number one engine propeller that went into reverse after an electrical short-circuit occurred.
## 1541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into a wooded area in 5 degree nose-down attitude.  Abnormal nose-down trim condition which could not be corrected due to an unknown malfunction.
## 1542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shortly after taking off, the No.1 engine lost power. The crew shut off the hydraulic pump which caused the landing gear to stop retracting halfway. The resulting drag, caused the aircraft to lose altitude. The left wing struck a tree and the plane crashed and burned. Failure of the front bearing of the propeller shaft leading to disconnection of the reduction gear and left propeller and causing a sudden failure of the left engine.
## 1543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flew into a mountain wave in the Sikhote-Alin Mountain Range while en route.
## 1544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane was carrying mail . An in-flight structural failure resulting from a violent pitch-down induced by the erratic action of nonconforming elevator tab controls.
## 1545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed on takeoff.
## 1546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed while on approach and during an attempted go-around.  The crew allowed the aircraft to deviate to the left of course and descent below the glide path for reasons unknown.  The crew encountered local fog and restricted visibility during the final approach of an ILS approach and missed approach procedure came too late to prevent the aircraft from descending into the ground.
## 1547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane flew into the water upon approach. The pilot relied on inadequate external visual reference for determining the altitude and paid insufficient attention to the instruments. The irregular approach procedure carried out by the pilot in command deprived him of the opportunity to monitor the safe approach to the aerodrome through the correlation of time, height and position.
## 1548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Loss of the No. 2 engine necessitated a forced crash landing near a railway station.  Failure to maintain height at night due to the loss of the starboard engine in icing conditions.  The aircraft was also overloaded.
## 1549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After being diverted, while cruising in bad weather conditions, the aircraft hit trees and crashed in a snow covered and wooded area located in the Tatra Mountain Range.
## 1550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While in heavy fog and on final approach, the airplane was too low and hit telephone lines before crashing in a field  about 2 km short of the runway.
## 1551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Loss of control due to improperly secured heavy cargo breaking loose and sliding to the rear of the aircraft during takeoff.
## 1552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on a ferrying flight. Soldier-of-fortune Harold (Whitey) Dahl killed.
## 1553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into Sunol Ridge after circling for half-an-hour while attempting to land at Alameda Naval Air Station.  Non adherence of the crew to the holding pattern and departure from the radio beacon and descent in a unprescribed manner.
## 1554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft took off from Luqua Airport in Malta bound for England when smoke was seen coming from the left engine.  Shortly thereafter it banked to the left and plunged almost vertically into cliffs.  Engine failure due to cracks in the boost enrichment capsule and the failure of the captain to stop the leftward swing of the aircraft using the rudder. Failure to correct the nose high attitude and failure to feather the No. 1 engine.
## 1555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The flight crashed while on approach 18 miles SE of Cairo.  Pilot's inexperience in ILS approaches.  Improper approach.  Crew error. Crew fatigue.
## 1556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed shortly after taking off 15 miles from Aleppo.  Double engine failure during a thunderstorm.
## 1557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Struck  Lash Golath Mountain while en route. Pilot error while he was attempting a flight beyond his ability or experience.
## 1558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           An improper flare on landing caused the aircraft to bounce causing the right wing to strike the runway after which the plane veered off the runway.
## 1559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 During an instrument approach at night the pilot of the cargo plane permitted the aircraft to descend below the approved safety height and this resulted in the aircraft striking the ground.
## 1560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane crashed en route. A downdraft which forced down the fully loaded aircraft to the ground when it was flying under exceptionally severe weather conditions below 1000 ft. and possibly at a few hundred feet above the terrain.
## 1561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after taking off.
## 1562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft yawed to the left and crashed shortly after takeoff after a fire warning occurred on the No.1 engine. The cause of the fire warning was a failed exhaust connector clamp in the left engine, which triggered an adjacent fire detecting unit. A windmilling left propeller, the extended landing gear, and the takeoff flaps produced sufficient drag to make the airplane lose altitude and strike the ground. An uncoordinated emergency action in a very short time available to the crew, which produced an aircraft configuration with insurmountable drag.
## 1563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft experienced extreme buffeting after taking off from Seattle. A decision was made to divert to McChord AFB but the plane continued to loose altitude and had to be ditched in Puget Sound 4.7 nautical miles southwest of Seattle. The plane sank within 15 minutes. The incorrect analysis of control difficulty which occurred on retraction of the wing flaps as a result of the flight engineer's failure to close the engine cowl flaps; the analysis having been made under conditions of urgency and within an extremely short period of time available for decision.
## 1564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed en route from Anchorage to Seward. The pilot's action in continuing flight during instrument weather conditions on a planned VFR flight through a mountain pass and striking a mountainside while attempting to climb out.
## 1565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane struck an object in the water while landing and broke up.
## 1566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft made a sudden turn to the right while talking off from Stansted. Overcorrection by the pilot in command which caused the aircraft to veer to the right.
## 1567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft touched down at an excessive speed, bounced and stalled. Go-around power was applied, but the remaining runway length was insufficient and the plane overran the end of the runway and went down a steep slope and crashed.
## 1568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The CF-100 was from the Canadian Air Defense Command which was scrambled to investigate an unidentified transport plane flying in the area. It was suspected the crew's oxygen system malfunctioned on the fighter and the jet crashed into a convent operated by the Grey Nuns of the Cross, at over 680 miles an hour, destroying the three story, 70 room convent.
## 1569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane struck trees on a mountainside and crashed at an altitude of 8,500 ft. The sole survivor, Roberto Obando, was found and rescued on May 30.
## 1570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A passenger fell to his death after the door of the plane opened.
## 1571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         About 1.5 hours after taking off from New York, the pilot radioed the No. 2 propeller was overspeeding and could not be feathered. Upon trying to return to New York the plane caught fire and crashed into the Atlantic Ocean. Vibration resulting from the uncontrollable propeller caused one of the inside wing attachments to loosen or break somewhere between the fuel tank and the dump chute causing an uncontrollable fire.
## 1572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Loss of height and airspeed caused by the aircraft encountering an unpredictable thunderstorm cell which gave rise to a sudden reversal of wind direction, heavy rain, and possible downdraft conditions.
## 1573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The TWA aircraft flying from Los Angeles to Kansas City and the United Aircraft flying from Los Angeles to Chicago collided over the Grand Canyon. Both planes were traveling about 320 mph. Both aircraft were flying in uncontrolled airspace. All  fifty-eight on the DC-7 and seventy on the Constellation killed. The pilots did not see each other in time to avoid the collision. It is not possible to determine why the pilots did not see each other, but the evidence suggests that it resulted from any one or a combination of the following factors: 1) Intervening clouds reducing time for visual separation 2) Visual limitations due to cockpit visibility 3) Preoccupation with normal cockpit duties. This is the accident that led to the adoption of the Air Route Traffic Centers that track planes across the country and the formation of the FAA.
## 1574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While on a flight from Chicago to Montreal, cruising at FL190,  the crew was unable to feather an overspeeding No. 4 engine. Soon after the No. 4 propeller broke and one blade disabled the No. 3 engine and  penetrated the fuselage killing a passenger. An emergency landing was successfully made at Windsor, Ontario.
## 1575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into a wooded area 2 minutes after taking off from McGuire Air Force Base. There was thunderstorm activity at the time. Microburst windshear.
## 1576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane was on delivery from San Diego to Zürich via New York, Gander and Shannon. The crew broke off their GCA runway 23 approach after establishing visual reference, and turned for a runway 05 approach. The plane banked sharply, dropped and crashed. Error in judgement by pilot in executing  an abnormally steep turn onto final approach.
## 1577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while making an approach to Rio Cuarto. The decision of the pilot to descend en route, without justifiable reason, below the minimum altitude prescribed for a night flight and in weather conditions which made it his duty to follow IFR procedure.
## 1578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Struck Mt Pindaya near Thazi .
## 1579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed after a missed approach. The crew executing full retraction of flaps without increasing power or changing attitude resulting in loss of lift after the missed approach.
## 1580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision. Both planes landed safely. Failure of both aircraft to observe and avoid the other aircraft.
## 1581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft had to return to Amman for an emergency landing. The landing took place with the gear retracted. The plane bounced, went up a hill and down the other side and burst into flames.
## 1582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed while en route. The action of the pilot in flying into conditions of darkness and adverse weather in which he could not maintain adequate control of the aircraft.
## 1583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane disappeared over the Atlantic while on a flight from Royal Air Force Base in England to McGuire Air Force Base in New Jersey. Cause unknown.
## 1584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft ditched into the Pacific Ocean while on a flight from San Francisco to Honolulu after losing the No. 1 and then the No. 4 engine. The aircraft circled around the U.S. Coast Guard cutter "Pontchartrain", at Ocean Station November until daybreak after which it made a successful ditching with no casualties. Probable Cause: An initial mechanical failure which precluded feathering the No.1 propeller and a subsequent mechanical failure which resulted in a complete loss of power from the No.4 engine, the effects of which necessitated a ditching. The aircraft was named "Clipper Sovereign of the Sky."
## 1585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed after an attempted go-around. On final, as the pilot-in-command was unable to locate the runway, he decided to make a new go around when the aircraft struck trees and crashed in flames few km short of runway.
## 1586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shot down by the Israeli Air Force.
## 1587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While attempting to land the aircraft descended below the ILS glideslope and hit a tree. Using the lights of the airport the captain misjudged the height he was flying.
## 1588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft took off, experienced icing, lost altitude and crashed into Hommelfjell Mountain. Unusually heavy icing which the aircraft encountered. Severe downdraft immediately prior to the crash may have been a contributing factor.
## 1589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An unsuccessful belly landing was attempted on flat terrain following a fire in the fuel system.
## 1590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hit El Rucio Mountain at 6,200 ft. which was obscured by clouds. Lack of cockpit discipline. Flight on instruments at an excessively low altitude for the route.
## 1591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lost altitude on takeoff and crashed into a house. Failed to climb for reasons unknown. The aircraft's slight loss of altitude soon after take off was the main cause of the accident. There is no explanation for this loss of altitude. Orchestra and opera conductor Guido Cantelli, 36, among those killed.
## 1592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a field shortly after taking off about 12 km north of the airport.
## 1593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Struck Silla de Caracas Mountain at 6,700 feet while approaching to land at Maiquetia. Navigation error. The pilot did not follow prescribed approach procedures. St. Louis Cardinal outfielder, Charlie Peete, 27, killed.
## 1594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The starboard engine failed shortly after takoff and  the plane crash into Quetame Hill, 25km northwest of Santa Cecilia  Airport. Complete failure of the starboard engine due to the breakdown of the lubricating system. Recklessness of the pilot in taking off from a closed airport while aware of the poor weather conditions. The aircraft was also overloaded.
## 1595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft departed Vancouver en route to Calgary. Some 50 minutes later the pilot reported a fire in the No. 2 engine and was turning back. While flying under the power of 3 engines, the aircraft encountered severe icing, turbulence or other difficulty which led to the loss of control by the crew. It could not be determined why the aircraft was 12 miles south of the assigned airway. The plane crashed high into Mount Slesse. The bodies and wreckage were not found until 05/10/1957 and the wreckage still remains at the site which is now a memorial.
## 1596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in a steep angle of attack.
## 1597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The co-pilot acting as pilot-in-command and under the instruction of the captain began a descent to land until the aircraft hit the ground, left wing first. Both wings detached and the fuselage slid 1,200 feet.
## 1598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft strayed off the assigned airway and hit a mountain. The pilot did not follow the airways assigned in the flight plan. He did not check his direction and position along the new route. Pilot error.
## 1599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed and burned while attempting to land in heavy fog at night.
## 1600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Struck trees, hit the ground, and slid 500 ft. after landing short of the runway in rapidly deteriorating condtions.  The captain's lack of alertness in allowing the first officer to continue an instrument descent to an altitude too low to permit terrain clearance.
## 1601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The domestic flight crashed and burned immediately after takeoff from Buenos Aires after overrunning the runway. Too short a runway and excessive cross-winds for the type of aircraft.
## 1602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft hit Concepcion volcano while en route. The aircraft made a left turn towards the volcano, banked sharply in descent, enered a rapid climb and then crashed. Unexplained loss of control.
## 1603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A first ILS attempt to land at Orly Airport failed. The crew decided to try a second time with GCA guidance. Full power was applied when the crew was not able to see the runway. The aircraft continued to descend impacting the ground in a right bank. The right wing separated and the main fuselage broke-up into four parts. Stalling, as a result of delayed application of power in a final approach configuration and inadequate control of heading, airspeed and altitude after the visual was lost.
## 1604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Midair collision between a DC-7 and F-89J Air Force fighter. The DC-7 crashed into a playground of a school  killing 3 junior high school children 3 miles northwest of Sunland. The F-89 crashed into the mountains. Four crew members on the DC-7 were killed. One crew member aboard the F-89 was killed and  the other ejected to safety. The high rate of near head-on closure at high altitude, which together with physiological limitations, resulted in a minimum avoidance opportunity during which the pilots didn't see each other's aircraft. It was the first test flight of the DC-7B. One of the 3 students killed in the accident was the best friend of singer Richie Valens, who died in an airplane crash two years later. Archie Twitchell, test pilot and actor, 50, killed. The high rate of near head-on closure at high altitude in a minimum aviodance opportunity during which both pilots did not see the other aircraft.
## 1605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shortly after lifting off from La Guardia Airport in a snowstorm, the plane rolled sharply to the left and crashed on Rikers Island. The failure of the captain to properly observe and interpret his flight instruments and maintain control of his aircraft. Several inmates from the Rikers Island Prison made some heroic rescues and were later pardoned.
## 1606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The No. 3 engine seized, causing the propellor to come loose and slice through the side  of the fuselage makng two full turns before exiting. It took two men out with it , idled the No. 4 engine and cut the throttle cable.  While  attempting  an emergency return landing at Kimpo Air Base, level flight could not be maintained and the aircraft descended, crashing into the Han River.
## 1607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a densly wooded mountain, 3 miles east of Blyn, while en route to Seattle. Navigation error and poor judgement by the pilot in entering an overcast mountainous area at too low an altitude.
## 1608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While attempting to land, the plane lost air speed and crashed into the sea, 400 yards offshore.
## 1609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into trees and farm buildings about a half-an-hour after taking off from Abingdon airfield.  Fuel starvation due to an valve being installed backwards.
## 1610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into mountains  located 32 km west of Tuluá while en route. Pilot did not follow prescribed route nor follow prescribed IFR procedures.
## 1611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane suddenly veered and banked to the right while making an approach to land. The plane crashed into houses. Fracture of a 9/16" bolt on the starboard flap due to fatigue led to loss of control of the aircraft.
## 1612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane had just taken off from Cebu bound  for Manila when it crashed 20 miles NW of the city. President Ramon Magsaysay, 50, of the Philippines died along with twenty-three others when the plane struck Mt. Manunggal. Magsaysay was on a campaigning trip for reelection. Metal fatigue.
## 1613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into Andies peak while en route. Wreckage found 100 miles northeast of Cochabamba.
## 1614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Disappeared in  a storm 200 miles southeast of Tokyo, Japan while on a flight from Travis Air Force Base to Tokyo.  Cause unknown.
## 1615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shortly after  takeoff, a fire developed in the left main landing gear well. The pilot thought the fire had started in the engine, feathered the No.1 engine and returned for an emergency landing. When he couldn't get the gear down, he performed a go-around after which the left wing separated from the plane. The plane crashed and burned. Fracture of the fuel line in the landing gear housing due to wear against the ribs.
## 1616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed just after takeoff, one mile from the airfield. Left engine failure.
## 1617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While en route, fire broke out in the starboard engine. As the plane lost altitude and because of reduced visibility, the pilot did not see the peak of a mountain. When he tried to pull up the plane stalled and crashed. Engine failure.
## 1618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The accident was due to a maneuvering error which consisted in making two turns onto the Mexico City heading without conforming the distance and procedure specifications and below the prescribed altitudes and speeds. This error was aggravated by a probable shifting of the load due to improper securing.
## 1619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed and burned 5 minutes after taking off from Aqaba. The aircraft lost it's left wing after encountering clear air turbulence.
## 1620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Explosive decompression. A passenger was sucked out of a window at 18,000 feet when the window he was sitting next to shattered. The body was never recovered.
## 1621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed while attemting an emergency return to the airport shortly after taking off. Engine failure. The failure of the captain to maintain height and a safe flying speed when approaching to land on one engine after the failure of the left engine for reasons unknown.
## 1622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The accident is attributed to the insufficient altitude at which the aircraft was flown during an attempt to fly through a thunderstorm. Downdrafts and divergent winds encountered, forced the aircraft to the ground.
## 1623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while attemping to land. The aircraft hit the ground with the front part of the fuselage, the right wing and the right engine propeller and caught fire. Procedural errors by the pilot.
## 1624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into an ice cap. White-out conditions. Incorrect indication on navigation charts.
## 1625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The pilot lost in rain and fog searched for a landing area until the plane ran out of fuel and crashed into a 4,500 foot mountain.
## 1626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   During a training exercise the aircraft approached a stall entered a spin, partially recovered but crashed.
## 1627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft descended below safe altitude and struck the ground in rain and poor visibility. The crew's application of an approach procedure other than that prescribed by the airport authority.
## 1628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The stalling of the aircraft following a loss of airspeed, whereupon it unintentionally went into a spin and crashed into the water. In view of insufficient altitude, it was not possible to level off the aircraft.
## 1629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Loss of airspeed while executing maneuvers during a training flight, resulting in a stall followed immediately by a spin from an altitude too low to effect recovery.
## 1630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed while attempting an emergency landing after taking off with control difficulties. Jammed elevator. Crew forgot to remove the ground locks.
## 1631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on approach.
## 1632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Went into a spin and cashed onto tidal flats off Charlakhi Island during a storm.
## 1633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed on takeoff. The pilot took off in weather conditions below permissible limits, in an area sparsely served with aids to navigation, in an aircraft not equipped with de- icing equipment.
## 1634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Air Foce transport was en route when it crashed at Mount Chaiopeng between, Hisinchu and Taipei.
## 1635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The pilot asked for clearance to make a low pass over Mokmer to give the passengers a final glimpse of the island. The plane gradually descended over the sea, crashed, burst into flames, broke apart and sank. Crew did not properly monitor their altitude.
## 1636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane landed safely after a dynamite bomb exploded in the rear lavatory. A passenger, Saul F. Binstock, 62, a retired North Hollywood jeweler, intent on suicide, detonated a bomb in the rear lavoratory blowing a 6 x 7 ft. hole in the fuselage. Binstock had purchased two insurance policies totaling $125,000 and then flew from Burbank to Las Vegas, where airport personnel at McCarran Field reported he never left the airport terminal. He then boarded the Western Airlines flight bound for Los Angeles and locked himself in the rear lavatory shortly after takeoff. Binstock’s body, missing several fingers on the left hand, was found the next day on a rugged peak in the Ord Mountains south of Daggett.
## 1637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft en route from Reykjavík to Montreal, Canada was flying at 6,000 ft. when it entered a  thunderstorm. Subsequently it plunged to earth almost vertically at a speed calculated at 230 mph, bursting into flames. Severe turbulence encountered while flying in a cumulonimbus cloud, resulting in a chain of events quickly leading up to a complete loss of control.
## 1638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into the harbor after hitting the chimney of a factory. Crew error. ATC error.
## 1639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While making a sharp turn the cargo plane stalled and crashed.
## 1640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Blew up and burned in flight after taking off.
## 1641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Strayed off course and collided with a mountain in the Penas Blancas hills. Pilot error.  Weather's influence on radio communications. Leaving the prescribed route and flying at too low an altitude.
## 1642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft struck trees to the right and short of the runway during approach in fog. The pilot attempted to make a visual approach by descending prematurely in the approach area without adherence to the prescribed ILS approach procedure which was dictated by existing weather conditions.
## 1643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flying VFR, the aircraft encountered fog during the approach, undershot the runway and crashed. Pilot error.
## 1644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While in it's initial climb, the ferry /positioning  flight crashed soon after.
## 1645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The pilot did not appreciate that the air ambulance had rapidly lost height whilst he was making a visual half circuit to land. This could not have been due to the absence of sufficient visual reference in the prevailing conditions of darkness, very low cloud and drizzle. The urgent nature of the flight is considered to have influenced the pilot's decision to land.
## 1646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While cruising by night, the crew lost his orientation and requested ATC assistance, without success. The airplane deviated from the prescribed flight path to the south and due to fuel exhaustion, the crew was forced to make an emergency landing. Following three unsuccessful attempts, the captain elected a fourth landing attempt when, at an altitude of 900 meters, the airplane clip trees, continued for about 340 meters and eventually crashed in a dense wooded area.
## 1647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A few minutes after takeoff the crew informed ATC about a fire on board and elected to return. More than thirty minutes later, while at altitude of 2,000 meters, the aircraft lost height and crashed into the sea some 18 km off Beirut.
## 1648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        During the takeoff roll, the airplane started to skid and deviated from the centerline to the right. Incorrect use of flying controls during the takeoff roll.  Possible failure of left engine. Turbulent conditions close to ground.
## 1649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While attempting to land at Belfast, in poor weather, the plane drifted to the right of the runway, overshot the runway and crashed. Cause unknown.
## 1650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Intense fire in the No.1 engine while en route, caused by foreign objects entering from the nacelle.
## 1651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed en route.
## 1652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed shortly after taking off. The aircraft plunged into the suburb of Derendorf, setting afire an office building and crushing a small house. The lone occupant of the the house, an elderly woman, was killed
## 1653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The accident was the consequence of a succession of errors on part of the flying crew during the final approach that was continued at an insufficient altitude. The pilot-in-command took the decision to continue the approach procedure despite a warning message from ATC and because he established a visual contact with the runway lights. Due to low visibility and an insufficient height, this led the aircraft to struck trees and to crash.
## 1654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed on a training flight. The right wing suddenly dropped and the aircraft went into a very steeply banked right hand turn and crashed. Instrument failure leading to loss of control. Undetermined cause. Possible failure of the auto-pilot.
## 1655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft disappeared mid-way on a flight between San Francisco and Honolulu. Wreckage was found 940 miles NE of Honolulu 5 days later. Officially, the cause was never determined.  Possible in-flight fire. High levels of carbon monoxide were found in the 19 bodies that were recovered, though this could have resulted from exposure to seawater. The aircraft was named "Clipper Romance of the Skies."
## 1656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft hit a mountain at 1,500 feet while on approach after the pilot turned the wrong way. Weather was rain and turbulence. Pilot error.
## 1657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed into the face of a quarry between Chessel and Brook on the Isle of Wight. The last message transmitted from the aircraft was "No. 4 engine feathered. Coming back in a hurry."  Electrical failure or accidental cut-off of the fuel actuator circuit of the No. 3 and No. 4 engines.
## 1658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane lost a wing in flight and crashed into farmlands. In-flight structural fatigue failure of the starboard front lower spar boom.
## 1659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed during a storm. Left wing detached in extreme turbulence. The pilot descending on a track well below the minimum safety flight altitude established for this type of operation. The absence in the flight plan of a forecast showing the intensity of the meteorological phenomena encountered. Inadequate operational dispatch of the aircraft.
## 1660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed during a landing attempt.
## 1661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While taking off the plane stalled and hit trees. The uncontrollable stall at low altitude which resulted from the abrupt steep climb immediately after takeoff. Contributing factors were the improper loading of the aircraft and the prevailing gusty wind with a relatively high ambient temperature.
## 1662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In June 1958 the aircraft was found on the northwest slope of Mount Poktoy 30 km west of Birobidzhan completely destroyed and burned. Crews, ATC error.
## 1663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft lost all power during a simulated emergency maneuver and struck the water after descending from a altitude of 1,000 ft. One of the crew moved an emergency shut-off lever in the wrong direction depriving all four engines of their fuel supply. The plane hit the water and broke in two. It was ruled the check pilot had failed to initiate remedial action when the aircraft began to lose altitude and failed to exercise authority when the real emergency developed.
## 1664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane crash landed short of the runway on the third landing attempt. The accident was due to an error on the part of the captain in that while making an attempt to land he continued the approach below the critical height without sufficient visual reference to the ground.
## 1665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The flying boat sank in Buenos Aires harbor while trying to make an emergency landing after losing an engine.
## 1666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane lost the No. 1 engine on takeoff, dove into the ground and crashed and burned.
## 1667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed in mountainous terrain while en route.
## 1668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane abandoned the takeoff after an engine failed. The plane was unable to stop and slid off the runway striking rocks and catching fire. Failure of No. 4 engine. Malfunctioning of the starboard brakes.
## 1669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The two aircraft collided at an altitude of 3,000 feet scattering wreckage over a residential and business area of suburban Los Angeles. The C-118 had just taken off from Long Beach Municipal Airport on a transcontinental flight and the P2V was on an instrument training exercise. All 41 killed on the C-118A, six on the P2V and one woman on the ground who was hit by debris outside her house. Pilot error, pilots of both aircraft.
## 1670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The first takeoff attempt ended in an aborted takeoff due to engine boosting. This was not uncommon with this type of aircraft at higher altitudes and was usually caused the thrust being opened too fast. The second attempt to take off was aborted for the same reason. During the third attempt, as the plane passed V1 (committed to take off) the plane suddenly decelerated, never became airborne, crashed through the barrier fence, into a house and burst into flames. Eight members of the Manchester United football (soccer) team killed. A German inquiry concluded at an accumulation of ice on the wings was the cause of the accident, blaming the captain for not deicing the plane. Ten years later the British reopened the inquiry and concluded the accident was caused by slush on the last quarter of the runway. The reason other planes had taken off without incident was because they lifted in the air using only two thirds of the runway. The accident plane, because of the engine boosting, went further down the runway to take off. The aircraft was named "Lord Burghley."
## 1671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Radio contact was lost with the military aircraft  thirty minutes after taking off from Naples after the crew reported en route at 6,500 feet and switching to the Rome ATC. The plane crashed on the northern slopes of Mt. Vesuvius.
## 1672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Struck the water and sank after the right wing tip float contacted the water during a shallow turn for final approach.
## 1673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  During the approach the aircraft hit a hill in front of R34 and crash landed with a damaged landing gear onto  the runway. An off duty  pilot opened an emergency exit before aircraft stopped and was thrown out into a still turning propeller and killed.
## 1674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Disappeared while on patrol about 100 miles from the Azores. No trace of the aircraft was ever found.
## 1675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a mountain near Winter Hill during an approach. The First Officer used the wrong radio beacon (Oldham Becaon instead of on Wigan Beacon).
## 1676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While approaching Cairo, the aircraft was diverted to Port Said where it ditched into Menzalah Lake.
## 1677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft collided after descending from a holding pattern while  attempting to land at Naha Air Base.  Failure of the AD-6 pilot to maintain his position. One killed aboard the AD-6. Poor judgement on the part of the R4Q Plane Commander.
## 1678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft went down 35 miles SW of Grants, New Mexico. Fog, snow and thunderstorms were reported in the area. The plane hit the ground a a 45 degree angle and disintegrated and burned. Film director, producer Mike Todd, 49, husband of Elizabeth Taylor, killed.  Elizabeth Taylor, who had planned to go on the trip with her husband, remained at home, ill with bronchitis. The plane was named "The Lucky Liz." Icing.
## 1679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Due to a navigational error the aircraft flew the wrong route into a valley. While maneuvering to make a turn, the aircraft stalled and crashed. Wreckage was found 16 miles from Kathmandu.
## 1680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed 2 minutes after takeoff while trying to return to the airport  after reporting a fire in the No. 3 engine. The failure of the captain to maintain altitude during an emergency return to the airport due to his undue preoccupation with an engine fire following takeoff.
## 1681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Collided in midair while cruising at 6,000 ft. Both aircraft crashed into farmlands killing all aboard. The pilot of the 49-195A was flying at the wrong altitude.
## 1682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed after experiencing engine trouble.
## 1683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft stalled and crashed into a corn field, 300 feet short of the runway, while making a landing attempt at Tri-City Airport in restricted visibility of rain and snow. The aircraft struck the ground nose first, then flipped over and broke apart.  Icing of the horizontal stabilizer leading to loss of pitch control.
## 1684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Flew into a mountain 15 minutes after leaving Guayaquil. Procedural error. The pilot did not maintain IFR until clear of the cloud cover.
## 1685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the ocean after a sudden avoidance manuver. ATC error. Another aircraft was permitted to takeoff without the exact position of the plane being known.
## 1686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The DC-7 was en route from Los Angeles to Denver flying at 21,000 ft. The military jet was on a training mission being conducted under VFR. The fighter initiated an evasive maneuver just prior to colliding with the airliner. Both trainee and instructor aboard the F-100 were killed along with all forty-seven aboard the DC-7 airliner. A high rate of near head-on closure at high altitude,  human and cockpit limitations and the failure of Nellis Air Force Base and the Civil Aeronautics Administration to take measures to reduce a known collision exposure as training exercises were allowed to be conducted within the confines of several airways after numerous close calls with military jets had been reported by airline crews for more than a year prior to the tragedy.
## 1687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed shortly after taking off. Improper observation and interpretation of instruments. The captain did not properly observe and interpret his flight instruments and thus inadvertently permitted the aircraft to descend to the ground immediately after a night takeoff during which no visual reference was possible.
## 1688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane broke up in midair while flying through a thunderstorm.
## 1689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft developed trouble in the No. 1 engine while en route from Lisbon to Leopoldville. While attempting to land in poor visibility on 3 engines, the aircraft stalled 80 ft. above the ground and crashed into a building and burst into flames. Pre-crash damage to the No. 1 engine. An error of judgment by the pilot in reapplication of power when the aircraft was neither in the appropriate configuration nor at a sufficient speed to carry out the attempted safety maneuver.
## 1690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Midair collision at 8,000 ft., four miles ENE of Brunswick. Failure of the T-33A pilot to exercise a proper see and avoid procedure to avoid other traffic. One of two aboard the T-33 ejected safely, all aboard the Viscount were killed.
## 1691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A fire in fligth caused by a failure of the No. 1 engine. During the ensuing forced landing on rough terrain the aircraft broke up and was consumed by fire.
## 1692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane plunged into the water when, a front wheel glanced off a freighter when it was taking off.
## 1693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into mountains 100 miles southwest of Algiers.
## 1694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A hard landing in heavy rain and gusty winds at Manila caused the collapse of the right main landing gear. A prop broke off the No. 3 engine, penetrated the cabin and killed one passenger. The aircraft was named "Clipper Golden Gate."
## 1695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed into La Latilla mountain 13 km west of Guadalajara. The aircraft did not climb out in accordance with approved procedures.
## 1696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Following the trainee-pilot's failure to maintain minimum-control speed during an attempted go-around, the instructor-pilot failed to take control of the aircraft in sufficient time to prevent a critical loss of altitude. A contributing factor was the malfunction of the landing gear latch which delayed retraction of the landing gear and caused the distraction of the instructor-pilot for several seconds during a critical period of the go-around.
## 1697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the tops of trees while attempting to land. Crew error in attempting to land in weather conditiions below the minimum.
## 1698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed during approach after encountering a downdraft. Missed the runway and collided with a tree. Windshear.
## 1699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While manoeuvring at a low height in mountainous terrain during a supply dropping mission the port wing of the cargo plane grazed the side of a hill thus causing the aircraft to slew and crash. A contributory factor might have been the mismanagement of the fuel system which caused temporary loss of engine power and height.
## 1700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed while attempting to break a transatlantic flight record. Heavily loaded with fuel, the pilots failed to detect the aircraft had gone into a slight descent shortly after becoming airborne. The plane struck some power lines and crashed near the Massachusetts Turnpike. The dead included six journalists.
## 1701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane suffered structural failure in thunderstorm activity.
## 1702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into high ground during approach. Misinterpreted or misread altimeter reading. Possible fatigue.
## 1703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed on approach 10 minutes from the airport. Cause unknown.
## 1704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ditched into the sea near Izu Island appoximately 1 hour after taking off after experiencing engine trouble.
## 1705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into the sea while en route from Shannon to Gander, Newfoundland. Possible overspeeding of outer propeller.
## 1706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed 1,450 feet short of the runway while on approach in heavy fog. Poor judgement and technique by the pilot during approach in poor weather conditions. Nantucket Airport was not equipped with technology to permit insturment landings in such foggy conditions.
## 1707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft stalled after flying over a thunderstorm. The aircraft climbed in excess of its operational ceiling considering its weight.
## 1708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shot down by Soviet Mig fighters.
## 1709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed 35 miles west of Agana Naval Air Station. In-flight fire of unknown origin.
## 1710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane lost an engine on the initial climb and was not able to maintain altitude and crashed.
## 1711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed after a second landing attempt. Improper approach procedure. Pilot error. A contributing cause was incorrect forcast provided to the crew.
## 1712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed shortly after being struck by lightning in a thunderstorm.
## 1713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In VFR conditions the two Boeing B-52 Stratofortress bombers approached the same runway at the same time. The two aircraft rammed into each other 900 feet above the ground and crashed. Eight out of 9 aboard 56-661 were killed. Five out of 7 aboard 56-681 were killed. Operator error, in that the pilots of both aircraft failed to maintain safe separation during VFR conditions.
## 1714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into Mount Oyama 15 miles southwest of Tokyo. The crew continued the approach below the minimum safe altitude, maybe following a wrong altimeter setting.
## 1715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Collided with a French Air Force Dassault Mystère IV. Both aircraft dove into the ground and crashed in a field located in Triel-sur-Seine, west of Paris.
## 1716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in a mountainous area.  The loss of orientation during the flight at night.
## 1717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane disappeared over the Mediterranean Sea and was never found.
## 1718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed and exploded on flat terrain east of Payette. A loss of control or the incapacitation of one of the pilots may have factored in the accident.
## 1719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the Alto del Cedro mountain. Premature descent. Navigation error. Lack of navigation facilities in the area.
## 1720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into mountain while en route.
## 1721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane was on a flight from Peking to Moscow at FL330 when it went out of control. The aircraft experienced extreme turbulence during a climb, stalled and plunged to earth and burned. The captain described everything as it happened as he attempted to recover from the uncontrolled descent, ending the radio transmission with a farewell.
## 1722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into Placentia Bay, 1,000 feet short of the runway during a CGA landing, trying to get under the  weather. The ceiling was reported indefinite, 200 feet, visibility, 2 miles in drizzle and fog. A precision approach was commenced to the runway. The approach was within tolerances and normal until after passing through GCA minimums, at which time the aircraft went below glide path and the pilot was instructed to take a waveoff. The waveoff was not executed until after the aircraft had actually made contact with the runway. After climbout, GCA was contacted and a second approach was requested to commence with no delay. The pilot advised GCA that the runway was in sight just before GCA gave him a waveoff on the first approach. The second approach was again normal until the final controller gave the instructions, "Approaching GCA minimums." The aircraft immediately commenced dropping below glide path. An emergency pullup was given, but the aircraft collided with the water and came to rest 2,050 feet east of the approach end of the runway. It sank in 26 feet of water
## 1723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Midair collision with an Italian Air Force F-86. The airliner drifted off course. Neither pilot saw each other before they collided.
## 1724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hijacked by 4 Cuban rebels, the plane crashed after running out of fuel while attempting to land at Preston Airport.
## 1725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The DC-3 was to fly the Yemenite Under Secretary of Foreign Affairs from Rome to Belgrade. The aircraft The aircraft crashed on the western slopes of Mount Porretta at an elevation of 2,690 feet due to a navagation error. Pilot error.
## 1726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane disappeared en route.
## 1727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft was missing on a flight from Cabo Ruivo to Funchal over the North Atlantic after transmitting an emergency message positioning the aircraft at  36 degrees 40 minutes N 12 degrees W.
## 1728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane lost an engine while enroute and crashed. Icing, turbulence.
## 1729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into La Rodilla de la Mujer Muerta while on approach to Madrid. Loss of control due to icing and turbulence.
## 1730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Missed the approach and crashed in a snowy field. Landing below weather minimums.
## 1731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While descending the aircraft struck the ground in heavy fog.
## 1732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft took off into heavy thunderstorms, was not able to maintain height and airspeed and crashed to the ground. The aircraft struck the ground shortly after takeoff as a result of an uncontrollable loss of airspeed and height due to a sudden squall accompanying the onset of a thunderstorm.
## 1733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed on takeoff after the No.1 engine failed. Pilot error. Pilot's incorrect handling of controls in flight.
## 1734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into Mt. Pena Blanca while en route. The pilot's attempt to fly over mountainous terrain by visual reference to the ground under weather conditions restricting visibility which forced him to descend to a dangerously low altitude.
## 1735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft struck the slope of Mt Holston, located 15 miles from the airport during an ILS approach to Tri-City Airport. Pilot's failure to identify an intersection properly, resulting in flying 15 miles beyond the outer marker and descending to an alititude too low to clear high terrain. An inoperative compass was not entered into the aircraft log.
## 1736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Twenty minutes out of  Rio de Janerio, the crew was cleared to descend from 14,000 to 10,000 feet. After reaching  KXNDB (waypoint) they were cleared to descend to 3000 ft.. Galeaoa approach was contacted and normal position reports were made. As the plane descended over Guanabara Bay in rain, the extended nosewheel struck the water. The crew tried to continue the approach, but the aircraft crashed near Flecheiras Beach, short of the runway. The actual cause of the accident was never determined however, the most probable cause was pilot error in descending below the minimum altitude on final approach. Aircrew fatigue was considered to be a contributing factor.  Crew flight time exceeded the Brazilian limits, but did not exceed the German limitations.
## 1737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed into Panther Peak at 8,500 ft. while en route.
## 1738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft overshot runway and a missed approach procedure was initiated. The plane gradually descended into the ocean just offshore. The pilot was not familiar with the airport and he miscalculated during the instrument approach procedure. The pilot's temporarily confused mental state when he found himself in this critical situation, effectuating his capability and skill.
## 1739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in a snow covered field while attempting to land. Cause undetermined. Possibly hit by machine gun fire.
## 1740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While en route,  flying VFR the CARGO plane ran into a cloud covered El Callejon pass  at 7,000 feet. The aircraft made a 180deg turn but crashed into the La Culata Peak at an altitude of 13,500 feet. Flying of the aircraft at an insufficient altitude over an area apparently unfamiliar to the pilot.
## 1741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Struck trees during approach and crashed 2.8 miles northwest of Wadi-Es-Sir. Adverse weather conditions.
## 1742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane overran the runway while taking off, cashed and burst into flames. Windshear.
## 1743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed into a hill while attempting an emergency landing after experiencing icing. The captain's poor judgment in continuing into known and dangerous icing conditions.
## 1744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Buddy Holly chartered the plane to fly to Fargo after appearing as part of the Winter Dance Party tour at Clearlake, Iowa.  J.P. "The Big Bopper" Richardson, who was suffering from the flu, talked Waylon Jennings into giving up his seat. Ritchie Valens won a coin-toss and went in place of Tommy Allsup. He commented "I never won anything in my life" after winning the coin-toss. The plane took off into deteriorating weather conditions. The pilot, Roger Peterson, was not certified to fly IFR. The wreckage of the plane was found the next morning in a snowy meadow, 5 miles NW of the airport. The plane hit the ground at a high rate of speed and singers Ritchie Valens, 17, Buddy Holly, 22, Jiles P. "The Big Bopper" Richardson, 28, as well as the pilot, were killed instantly. It appeared, the pilot became disoriented and flew the plane into the ground.  Officially: The pilot's decision to undertake a flight in which the likelihood of encountering IFR conditions existed, when he was not certified to fly IFR. Also, deficiencies in the weather briefing and the pilot's unfamiliarity with the instrument which determines the attitude of the aircraft. In later years, a story appeared in the Iowa Globe Gazette in which a pilot, Al Potter, flying in the vicinity of the aircraft that night, claimed he was in contact with the aircraft shortly before it crashed. Potter stated the pilot radioed he had taken on ice and was losing power.
## 1745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While attempting to land in rain and fog at La Guardia Airport, the aircraft descended below the minimum altitude and crashed into the East River. The aircraft struck the water while in shallow descent at 150 mph with its landing gear and flaps extended. Primarily the crash resulted from the failure of the crew to properly monitor essential instruments for determining attitude due to preoccupation with particular aspects of the aircraft and its environment. Limited experience of the crew with this particular type of aircraft. Erroneous setting of the captain's altimeter. Possibly misinterpretation of the altimeter and rate of descent indicator.
## 1746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on approach, the jet lost its wings and had its engines torn off as it ploughed 300 yards through the woods and landed upside down with trees embedded in the mangled fuselage and burst into flames. The flight had been diverted to Gatwick because of fog at London.  Cause unknown.
## 1747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane was overloaded and could not maintain altitude after losing an engine. Crashed while attempting an emergency landing.
## 1748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed shortly after takeoff, inverted, into trees. Failure of No. 1 engine on climbout. The non-retraction of the landing gear immediately after the aircraft reached V2. Failure of engine No. 2 a few seconds later. The aircraft banked left, lost altitude and collided with trees. Engine failure cause unknown.
## 1749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane crashed during an attempt by the pilot to clear high terrain under poor visibility conditions. He had previously descended to a low altitude in order to determine his position.
## 1750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane banked to the right soon after leaving the ground and crashed to the ground. Strong gust of wind which tilted the aircraft to the right during final approach to land, causing it to crash to the ground
## 1751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed while en route in the jungle. The right wing detached in flight due to a structural failure caused by severe vibrations due to additional engines that were installed on this special model.
## 1752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Sustained structural failure while flying through a thunderstorm.
## 1753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane lost control after a fire broke out in the cargo hold. The ignition of cargo in the aft belly compartment caused by contact with an unguarded light bulb. It is believed the fire then breached the compartment wall, and damaged a hydraulic unit or line in the wing center section area at the rear spar., igniting the flammable hydraulic fluid.
## 1754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Exlpoded and caught fire near Bahia de Kino.  A bomb is believed to have exploded onboard.
## 1755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane aircraft, flying on instruments, drifted north of its normal track because of strong winds and crashed into Mt. Suphan. The winds were stronger than forecast. An accurate bearing could not be obtained at Mus and Van had not been checked.  Sub-normal temperatures would result in a high indicated altimeter reading. Calculations on the flight and contacts with beacons were not coordinated and controlled.
## 1756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the east slopes of Sierra de Valdemeca after being diverted due to poor weather. Joaquin Blume, Spain's European gymnastics champion, killed. Unfavorable weather made it necessary to deviate from the planned route.
## 1757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Two minutes after reporting at 3,000feet the aircraft struck Alfabia peak at 3,300 feet. Insufficient altitude while flying at normal climb power.
## 1758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Disintegrated in-flight due to severe turbulence after penetrating a thunderstorm. Icing. A farmhand observed a large chuck of ice fall from the plane seconds before the crash. A second plane crash involving Capital Airlines occurred at Charleston, WV on this same day.
## 1759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The pilot intentionally ground looped the aircraft, which slid down a steep embankment caught fire and burned. Landing too fast on a wet runway under conditions conductive to aquaplaning.
## 1760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the slope of a mountain while en route.
## 1761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the sea during a steep turn following a takeoff at night. Undetermined cause.
## 1762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a  mountain while en route..
## 1763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane, carrying Nicaraguan rebels was shot down by a Nicaraguan Air Force fighter.
## 1764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thirty minutes after taking off from Sheyma, "Rivit Amber" radioed "experiencing  vibration in flilght. Not certain of emergency. This was the last radio contact with the plane. The aircraft crashed at sea.
## 1765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shortly after takeoff from Sandy Lake, the single engine aircraft stalled and crashed in a wooded area. The aircraft was destroyed and all eight occupants were killed. It was reported that a non-authorized person was sitting in the left seat in the cockpit at the time of the accident.
## 1766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed  into the slope of Cerro Baco located about 12 km northwest of Huaricanga.
## 1767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While flying from Athens to Chicago, the No. 6 and 7 fuel tanks in the right wing exploded during a storm.  Ignition of gasoline vapors emanating from fuel tank vent pipes by static discharge after the airliner was hit by lightning.
## 1768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot ejected and parachuted safely from the aircraft after the engine caught fire and the aircraft became uncontrollable. The plane crashed into the Miyamori Primary School compound and the surrounding neighborhood killing 17, of which 11 were students, and injuring another 181.  Because of the subsequent fire in the aftermath of the crash another 158 persons (28 families) were made homeless.
## 1769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shortly after takeoff from Kuwait City Airport and while climbing, the aircraft stalled and crashed in the desert  6 km from the airfield.
## 1770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed while en route. Navigational error. The pilot entered a wrong valley and stalled the fully loaded aircraft while attempting to turn back.
## 1771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The trainee captain attempted a maneuver in disregard of the prescribed limitations of such a maneuver. A two-engine overshoot was attempted at a very low height and below the prescribed minimum speed, when the aircraft was committed to a landing. This resulted in a violent yaw and sharp drop which could not be controlled. The training captain was conversant with the minimum requirements of a two-engine overshoot of the Viscount 815 aircraft but appears to have overestimated his performance.
## 1772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The crew failed to recognize and correct the development of excessive yaw which caused an unintentional rolling maneuver at an altitude too low to permit complete recovery.
## 1773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nineteen minutes after taking off and while climbing, the aircraft entered a cloud and struck Mt. Monseny. Pilot did not follow prescribed regulations.
## 1774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft descended below MDA and crashed 5 miles short of the runway while on approach to Asuncion. The crew led the aircraft pass below the glide in marginal weather conditions and continued the approach at an insufficient altitude, against published procedures.
## 1775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane took off, rose to 200 ft., stalled and crashed. Elevator control lost. The aft link assembly became disconnected from the clevis in the elevator control horn assembly when an improperly secured bolt backed out.
## 1776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An in-flight explosion occurred in the passenger cabin. A male passenger, who was believed to have been carrying a bomb, fell from the airplane from an altitude of 11,000ft.  A forced landing was made at Poza Rica after a fire broke out in the cabin.
## 1777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shortly after taking off, the cargo plane deviated from it's intended course and struck a mountain, for reasons unknown.
## 1778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed a few minutes after taking off from Sao Paulo Airport. Cause undetermined.
## 1779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into a mountain while on approach to Adak. Improper approach. Crew error. Pilot did not fly in accordance with visual flight rules over hazardous terrain.
## 1780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed shortly after takeoff, not gaining altitude and colliding with trees. Loss of an engine. Crew did not properly monitor altimeter.
## 1781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In-flight separation of the left wing resulted in the aircraft crashing 3 miles southeast of Buffalo, Texas. A design flaw caused an oscillation known as  mode to transfer propeller wobble to the outboard nacelles which induced flutter in the wing which led to the separation of the wing. One of two accidents with the same cause. See 3/17/1960.
## 1782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was on a government mission to supply contractors near Paloemeu with food and equipment.  While searching for a drop point in the jungle, in heavy fog,  the plane crashed into a hill.
## 1783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed on approach. Crew's handling of the plane led to a premature loss of altitude and collision with obstacles. Crew fatigue,
## 1784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moments after rotation the left engine exploded and caught fire. The elevator of the plane hit a 12,000 volt powerline and crash landed upright sliding 65 feet. The only fatality was the first officer who was thrown clear of the accident still strapped to his seat. The number 5 cylinder of the left engine failed leading to an explosion that deformed the left engine's ring cowl to a degree that cause excessive drag and buffeting that made sustained flight impossible. Maintenance records showed the engine had a troubling number of oil leaks.
## 1785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Bucks Elbow Mountain during an ILS approach to Charlottesville Airport. Navigational omission resulting in an off course approach. It took thirty-six hours before the lone survivor was rescued.  A navigational omission which resulted in a lateral course error that was not detected and corrected through precision instrument flying procedures. A contributing factor to the accident may have been pre-occupation of the captain resulting from mental stress.
## 1786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Engine failure on takeoff. The plane crashed 5 minutes later. Failure of the gudgeon pin bearing of the No.6 piston of the left engine.
## 1787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane exploded in midair while en route after an engine fire. The possible failure of the fire detection and warning system to inform the pilot of the existence of a fire before it had penetrated the firewall and ignited the fuel feed system and oil tank to the rear of no.2 engine.
## 1788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Loss of control in icing conditions when the flaps were downed to 45° on approach, apparently due to an excessive accumulation of ice on wings and stabs. The distance between the aircraft and the ground was insufficient to expect a recovery.
## 1789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into the Gulf of Mexico at 29 degrees 13 minutes N, 88 degrees 40 minutes W or about 108 miles east-southeast of New Orleans, while on a flight from Tampa to New Orleans. Sabotage (explosion of a dynamite bomb aboard) was strongly suspected but could never be proven due to lack of physical evidence.  There is a possibility that there is a connection between this crash and the National Airlines crash of January 6, 1960. No one was charged in either case.
## 1790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed shortly after takeoff, 2.5 miles from Beirut Airport. Navigation error. Possible in-flight fire in the No. 1 engine which induced the pilot to start fire emergency action with a resulting reduction in the rate of turn and the rate of climb.
## 1791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after taking off the plane experienced a fire warning in the No. 2 engine, shut it down and attempted to return to Midway Airport. During the final approach the aircraft banked in excess of 45 degrees and developed an excessive sink rate. When the aircraft reached the tops of trees its wings were nearly level and its nose was raised in a climbing attitude but the descent continued and the plane crashed one quarter of a mile southeast of the airport. The accident was the consequence of manuvering the aircraft during the turn to final approach in such a manner as to cause a rate of sink from which recovery was not possible. Sometime during the turn the flaps were retracted from 60% to 24% causing a loss of lift.
## 1792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into Bald Eagle Mountain,13 miles south of Williamsport,  while on an ILS approach to Williamsport.  Probable accidental caging of the fluxgate compass leading to a erroneous heading indication. Captain's failure to execute a timely abandoned approach. There was one passenger who survived.
## 1793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared en route. Right landing gear found on Moron Island.  Cause undetermined.
## 1794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into a mountain while en route. Crew error. The crew deviated from prescribe route. The captain decided to continue under VFR in IMC conditions and at the time of the accident, the aircraft was about 40 to 50 km off course to the right of the intended route.
## 1795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane cashed en route after reporting engine trouble.
## 1796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a hanger during a practice landing. The accident was attributed to a balked landing maneuver carried out below the speed limits for safe directional control of the aircraft during a critical situation that developed in the last phase of the landing in the course of a simulated emergency exercise with two power units inoperative.
## 1797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A midair collision took place between a Vickers Viscount and a Brazilian Air Force Fokker T-21 trainer, as the Viscount made an approach to land. The pilot of the trainer parachuted to safety. All 32 aboard the Viscount were killed when it crashed into several houses in the district of Ramos. Failure of both pilots to see and avoid each other. Apparently, the pilot of the trainer aircraft was not supposed to cross the approach path of the Viscount.
## 1798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shortly after takeoff the cargo plane lost the No. 2 engine, tried to return to the airport but crashed. Failure of the right engine, a lack of precaution on the part of the captain and marginal weather. A contributing factor may have been the overloaded condition of the aircraft, however, not to such an extent that it forced the aircraft to descend to a dangerously low altitude.
## 1799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed on takeoff.
## 1800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed while dropping supplies and making a narrow turn in a valley. The accident was attributed to an error in navigation which caused the pilot to enter the wrong valley. During an attempt to turn back in a restricted area, the aircraft stalled and crashed.
## 1801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane disintegrated in flight at 18,000 feet and crashed 1.5 miles northwest of Bolivia, North Carolina. Detonation of a dynamite bomb by means of dry cell batteries, in the vicinity of row 7, in the passenger cabin.  The plane continued to fly for a short time after which the fuselage came apart and the plane crashed in a ball of flames. Julian Frank, who had purchased 1 million dollars in insurance, was suspected of committing suicide by detonating the bomb in his lap or under his seat. There is a possibility Frank may have been an unwitting bomb carrier and that this bombing has something to do with the National Airlines crash of November, 16, 1959. No one was charged in either case.
## 1802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Missing, never found.
## 1803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed and burned in a wooded area, striking the ground in a level attitude. The delayed arming of the engine ice-protection systems while flying through icing conditions, causing eventual flame-out of the four engines. This condition existed for sufficient time to cause a drop in battery electrical energy, preventing the unfeathering and relighting of sufficient engines to maintain flight. The aircraft was then dived in an  effort to attain sufficient airspeed to drive the propellers out of the feathered positions by wind-milling.  At the same time, multiple attempts were made to relight one or more engines. Successful relights were either interrupted by auto-feather action initiated by premature advancing of the throttles prior to complete light up of an engine or prevented by insufficient battery electrical energy. No. 4 engine was eventually  relit and the crew had just successfully relit No. 3 engine when the aircraft crashed.
## 1804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While on a flight from Istanbul to Ankara, Turkey the aircraft crashed while on approach to Esenboga Airport, 6 nm short of the runway. The aircraft struck the ground at an elevation of 3,500 ft, between the Ankara mountain range and the airport. An unintentional descent below the authorized minimum flight altitude during final approach to Esenboga Airport for reasons that could not be determined. The aircraft was named "Orm Viking."
## 1805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A heavy landing led to structural failure and a fire. The adoption of a final approach path resulting in a heavy landing during which a major structural failure occurred in the port wing. Crew fatigue. Lack of proper training.
## 1806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Radio contact was lost with the aircraft before it crashed into the ocean. Poor weather.  Unqualified pilot.
## 1807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Few minutes after takeoff and reaching an altitude of 9,000 feet, the captain stated that an engine exploded. Shortly thereafter, the airplane went out of control and crashed in Laguna Huanacota, about 13 km south of the airport. A two-year-old girl survived but later died from her injuries.Investigators believed that the maximum takeoff weight was exceeded and this contributed to the engine exploding.
## 1808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Midair collision between a DC-3 and a US Navy R-6D. Improper piloting procedures when flying on authorized instrument flight (US Navy pilot). The pilot of the USN plane disobeyed instructions transmitted by Rio Approach Control. The U.S. Navy disagreed and placed no blame on neither pilot. Twenty six killed on the DC-3, 35 on the R4-D6. Members of the United States Navy Band among those killed.
## 1809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed into a swamp short of the runway threshold. Icing of the horizontal stabilizer.
## 1810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lost altitude shortly after taking off and crashed. Cause unknown.
## 1811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in the jungle  en route.
## 1812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mid-air collision with a Japan Air Self Defence Force F-86 fighter which was taking off from Nagoya. Both planes crashed but the F-86 pilot ejected safely.
## 1813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   An in-flight separation of the wing. A design flaw caused an oscillation known as whirl mode to transfer propeller wobble to the outboard nacelles which induced flutter in the wing which led to the separation of the wing. Reduced stiffness of the structure and the entry of the aircraft into an area of severe clear air turbulence were contributing factors. One of two crashes with the same cause.  See 9/29/59.
## 1814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Forced landing after engine failure. The accident was attributed to an error in judgment by the pilot in deciding to land at an airport which was closed and where no radio aid was available. Contributing factors were intermittent overspeeding of propellers, adverse weather and no communication tower.
## 1815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Flew into a hill shortly after taking off. Engine failure due to a  fatigue crack at a valve.
## 1816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While taking off, the plane drifted to the right, overcorrected to the left and struck two other aircraft. Pilot error.  Incorrect use of the brakes and controls while on the ground.
## 1817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Struck Mt Wuzhi located 8 km northeast of the airport.
## 1818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Failed to gain altitude on take off and struck a hill.
## 1819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed during final approach. The pilot failed to take proper action to counteract the loss of speed and height in the final approach turn. Lack of pilot experience.
## 1820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft were involved in a midair collision while both were making an approach to land. The pilot of the Cessna, the over-taking aircraft, failed to see and avoid the F-27 during the landing appoach. Four died aboard the Cessna, none aboard the Fairchild.
## 1821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the slope of Bogoro Peak located about 8 km short of runway.while on approach. Crew error. The decision by the pilot in descending below the minimum ceiling prescribed.
## 1822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed after an explosion aboard. Detonation of a hand-grenade brought aboard by a Russian immigrant. The explosion occurred after the captain tried to disarm the man.
## 1823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into 8,000 ft. Mt. Marra. Navigation error by the crew who were using an astrofix to estimate their position.
## 1824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed due to structural failure after flying into extremely violent turbulence. Insufficient preparation for the flight by the crew. Inadequate arrangements for the secure carriage of the livestock. The pilots failure to familiarize himself with the prevailing weather conditions. Not found until 11/21/61.
## 1825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft stalled for reasons undetermined, at an altitude too low to effect recovery.
## 1826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane crashed in hillside woods while en route. Poor organization and overseeing the preparation of the flight by the crew.
## 1827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The flight crashed into the sea, 7.5 miles from the airport after being in a holding pattern waiting for fog to lift.  Cause could not be determined.
## 1828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft failed to maintain its intended flight path and  crashed into the face of Mt. Gilbert at 9,646 ft. after taking off from Cordova. The crew's failure to use all available  navigational aids in establishing the aircraft's position on Amber I Airway thereby allowing the aircraft  to proceed off course over dangerous terrain. A contributing factor to the  accident was the failure of air defense radar, which had been tracking the aircraft, to notify either  ARTCC or the crew that the aircraft was proceeding on a dangerous course.
## 1829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into Guanabara Bay during approach. Cause undetermined.
## 1830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The airship crashed nose-first into the Atlantic Ocean, 10 miles off the coast of New Jersey. The  failure of a seam due to some unknown factor that degraded the adhesive.
## 1831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the Persian Gulf while en route. Cause undetermined. Wreckage never found.
## 1832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed and burned on Mt. Pichincha as it prepared to land at Quito.
## 1833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After a loss of power in the No. 2 engine the crew was unable to feather the prop. An emergency descent was made and the plane ditched into the ocean. Upon contact with the water, the aft end of the fuselage broke free at the rear of the pressure bulkhead, the right wing  tore free and the engines separated. The wing floated for 3hrs, serving as a life raft for  passengers. The remainder of the fuselage, sank some 10 minutes after impact.  Passengers were rescued 6 hours after the accident. Failure of No. 2  engine, resulting in oil contamination, loss of oil supply, subsequent loss of the No. 2 propeller assembly and fire-in-flight, which necessitated a ditching.
## 1834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed onto a mountainside at 9,000 ft. The pilot misjudged the weather conditions and continued to fly into deteriorating weather conditions while trying to maintain VFR. The pilot attempted to climb at a speed below the minimum safe climbing speed of the aircraft.
## 1835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The twin engine aircraft was chartered by the Danish Football Association. In the initial climb the pilot lost control of the plane and crashed into the ocean 50 meters off shore. Eight members of the Daniish Soccer Association were killed, while the pilot survived, but lost a leg. The pilot suffered spatial disorientation in heavy rain and strong crosswinds. The plane was not equipped with wipers which was considered as a contributing factor to the accident.
## 1836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into mountainous terrain north of Lake Kivu after experiencing engine failure.
## 1837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Broke up in mid air after flying through a thunderstorm and experiencing heavy g loads.
## 1838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The helicopter crashed into Forest Home Cemetery. The structural disintegration in flight, initiated by a fatigue fracture of a main rotor blade.
## 1839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While descending through 5,000ft, the crew lost the No.1 engine. At 1,500 ft. the other engine was also lost. The aircraft crashed 3,300 ft. short of the runway. Failure of both engines on the aircraft.
## 1840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The DC-3 crashed into Hayti Mountain while en route.
## 1841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While en route the No. 4.engine caught fire.  The fire extinguishing system was ineffective and the fire spread to the wing after which the fuel tanks exploded and the plane crashed.
## 1842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Cashed while en route to Casablanca after experiencing an engine fire. Shortly after, the plane crashed in flames on a hilly terrain near El Kelâa des Sraghna.
## 1843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane took off, lost an engine, banked to the left and crashed into the ocean. The cause of the engine failure was not established but the most likely reason appears to be a defective fuel or ignition system. The reason why it was not possible for the aircraft to maintain safe flight after the failure of the engine remains unknown.
## 1844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into the Atlantic Ocean after an unsuccessful landing attempt. Cause undetermined. Possible structural failure or loss of control due to turbulence, sensory illusion or distraction of the flight crew which could have been associated with a lightning strike.
## 1845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane flew into the side of Mt. Belaya in poor weather. Crew flew below minimums.
## 1846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed in a storm. Separation of propeller followed by disintegration of the aircraft. Overspeeding of No.3 propeller caused by irregular operation of the propeller governor, detachment of that propeller and impact with that of No.4 engine, followed by disintegration of the aircraft.
## 1847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft was carrying American servicemen and dependants. Less than a minute after taking off, the aircraft crashed on Mt. Barrigada bursting into flames on impact. The casualties were more attributable to the effects of the fire than the crash. Failure of the pilot to comply with published departure procedures by initiating a right turn before attaining an altitude of 1,000 ft.
## 1848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed after transmitting a message that the No. 3 engine was on fire and they were diverting to Okinawa. The fire in the No. 3 engine was extinguished but a residual fire continued in a tire until it ignited the fuel tank resulting in an explosion.
## 1849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shortly after takeoff from Campbell Lake, while climbing, the single engine aircraft stalled and crashed in flames in a wooded area. The pilot and two passengers were killed while a third passenger was seriously injured.  Engine failure.
## 1850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed on approach to Moscow, 11 nm short of the runway. Malfunctioning or misread altimeter.
## 1851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed on the slopes of a mountain near Juchitepec, about 40 km south of Mexico City Airport in dense fog.
## 1852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed  into the Tyrrhenian Sea off Elba after penetrating severe thunderstorm.
## 1853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A few seconds after becoming airborne, the aircraft struck a flock of starlings. A number of these birds were ingested in engines No. 1, 2, and 4.  Engine No. 1 was shut down and its propeller was feathered. Engines No. 2 and 4 experienced a substantial momentary loss of power. This abrupt and intermittent loss and recovery of power resulted in the aircraft yawing to the left and decelerating to the stall speed. As speed decayed during the continued yaw and skidding left turn, the stall speed was reached; the left wing dropped, the nose pitched up, and the aircraft rolled left into a spin and fell almost vertically into the water. An altitude of less than 150 feet precluded recovery.
## 1854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hit Mt. Capanne while en route.  Cause unknown.
## 1855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The right wing of the cargo plane separated from the aircraft at 6,500 ft. Fatigue of the right wing lower attach angle bolts resulting in an in-flight wing failure.
## 1856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed after a premature descent. The decision by the captain to perform a go-around was ccrrect but the very low pass above the runway was unacceptable.
## 1857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into mountains in snow showers while descending to Missoula. The aircraft entered a steep left banking turn and the nose was raised in an apparent attempt to turn and climb out through an intersecting valley, however, the aircraft continued to sink toward the ground, rolled to the left and crashed inverted. The failure of the pilot to continue in accordance with his IFR flight plan by attempting a VFR approach during instrument weather conditions.
## 1858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed after taking off from Toledo Express Airfield, landing 5,800 ft. beyond the runway threshold. Sixteen members of the California State  Polytechnic College,  San Luis Obispo football team killed. Premature lift-off, partial loss of power in the No.1 engine, overweight aircraft and weather conditions were the cause of the crash.
## 1859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ten minutes into the flight the copilot grabbing the air marshall and forcing the pilot at gunpoint to head to Key West. A shooting erupted and the air marshall was killed. A total of nine persons were involved in the hijacking.
## 1860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While in  the initial climb, the plane stalled and crashed in a huge explosion.
## 1861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a mountain 20 miles south of the airport while on approoach to Quito-Mariscal Sucre Airport.
## 1862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into Mt. Baco while en route. Navigational error under adverse weather conditions.
## 1863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The right engine caught fire. The crew initiated an emergency  descent from which the right wing broke off  causing the aircraft to crash.
## 1864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The No.2 engine failed while en route. The aircraft lost altitude, crashed in a jungle and burned. Starboard engine failed to feather for reasons unknown.
## 1865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The domestic flight cashed and burned in heavy rain, 100 miles from it's destination. Pilot error. Flying VFR in adverse weather conditions.
## 1866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A midair collision took place over Staten Island at 5,000 ft. The Connie was cleared to land at La Guardia Airport on Runway 04 when the United DC-8 struck the Connie tearing it apart. The Connie immediately crashed to the ground at Miller Army Air Field on Staten Island. One passenger was sucked out into one of the DC8s jet engines. Other passengers fell from the Connie as the spinning fuselage fell onto Staten Island. The United jet tried to make an emergency landing at La Guardia Airport but could not maintain altitude and crashed into the streets of Brooklyn. Forty-four passengers on the Constellation and eight-four passengers on the DC-8 were killed. Three passengers from the DC-8 died shortly after. One young boy, Stephen Baltz survived several days before succumbing to his injuries. Six people were also killed on the ground. The United crew entered a low-altitude holding pattern at 500 miles per hour, twice the speed it should have been going and flew past the clearance limits and airspace allocated to the flight. One of 2 VORs on the DC-8 was not functioning. Although the crew knew this, they failed to report this to the ATC, who probably would have provided extra radar assistance.
## 1867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft lost an engine on takeoff from Munich. Unable to maintain altitude, the aircraft crashed into St. Paul's Cathedral church and into a crowded streetcar in the business section of the city, breeching a gas main and starting a fierce fire, Thirty-one people were killed on the ground. A collection of water was found in the fuel tank booster pump. Fuel contamination causing engine failure.
## 1868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed on takeoff. Failure of the No. 1 engine shortly after take-off but after V2. Inappropriate emergency procedures by crew.
## 1869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Loss of control resulted after 40 degrees flaps was selected causing the plane to crash. Icing.
## 1870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Unable to gain altitude, the aircraft crashed into power cables during takeoff.
## 1871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into woods while attempting to land. Both pilots tested positive for alcohol.  In addition, the pilot did not have enough sleep the night before and was not considered to be in satisfactory mental and physical condition to undertake the flight.
## 1872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   An aborted takeoff caused the aircraft to crash through the airport barrier fence and burst into flames. The unnecessary discontinuance of the takeoff as a result of actions by the check-pilot who was either not in the pilot's seat or reached forward without warning and pulling the throttles back. This action caused power to be decreased on all four engines. Contributing factors were the marginally poor weather, snow on the runway and the possibility of the pitot head heat not being on.
## 1873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While returning from an aborted barrier mission, the aircraft hit a seawall at end of short runway. The main landing geart was sheared off and the aircraft cartwheeled, slid into a vehicle, exploded and burned.
## 1874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft struck Mt. Burangrang . Attempt by the pilot to fly over mountainous terrain when unsure of his position and in weather conditions which severely restricted visibility.
## 1875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While approaching Argentia-Bristol Field, the  aircraft crashed into the Trinity Bay about 50 km northeast of Argentia. It is believed the aircraft disintegrated in the air possibly following a mechanical issue. However, due to a lack of evidence,  it was not possible to determine the exact cause of the accident.
## 1876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraaft banked left, entered a dive and eventually crashed into the ocean five miles off shore.
## 1877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared while en route. The wreckage was never found. It is believed the aircraft crashed into the sea off the island of Madura.
## 1878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was about to touchdown on the runway when engine power was increased and the aircraft climbed to 1,500 ft. The aircraft completed 3 left-hand circles. Its attitude increased until it nosed down and crashed. The entire eighteen member U.S. Figure Skating team killed.  Failure of the aircraft's flying controls, possibly jamming of the outboard ailerons or unwanted extension of the spoilers.
## 1879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the slope of a mountain while en route. Navigation error. Failure of the crew to follow the prescribed route. Flying VFR in IFR conditions.
## 1880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed while attempting to land.
## 1881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed 13.6 miles Northeast of Nürnberg after an intentional descent for unknown reasons led to the disintegration of the aircraft due to structural stress. Possible defective artificial horizon. Possible unnoticed over control of the electrical rudder or aileron trim. Possible physical incapacitation of one or both pilots.
## 1882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed into La Gotera Hill while on approach to Santiago. The official cause is unknown.  Icing suspected. All members of the Green Cross Chilean soccer team killed. Wreckage found 54 years after the accident.
## 1883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft impacted Mount Parker shortly after taking off in foggy weather conditions.
## 1884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While en route from Fort Lamy, Chad to Marseilles, France, the airliner crashed and burned in the Sahara Desert on the Algeria / Libya border. Detonation of a nitrocellulose bomb.
## 1885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After a night takeoff, while climbing to a height of 500 feet, the airplane went out of control and crashed in a wooded area.
## 1886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lost an engine, stalled and crashed.
## 1887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Five minutes after taking off from Lisbon, Portugal, the aircraft plunged into the Atlantic Ocean. There were indications from the wreckage that the aircraft went into a spiral dive and hit the water at over 500 mph. Either through inattentiveness or loss of an artificial horizon or other instrument malfunction, the aircraft went into a steep left bank from which recovery was not possible. Attitude of the aircraft at the moment of impact pointed to over correction.
## 1888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a hill  at night during the approach, 4 km short of the runway. Crew's neglect to cockpit duties. Pilot's inattention to his instruments.
## 1889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After liftoff, the airplane encountered difficulties in gaining height when the propeller on the No 2 engine struck a tree located 1,200 meters past the runway end. The airplane continued at low height and struck a second tree, causing a fuel tank to be ruptured and to catch fire. The accident was caused by flight at too low an altitude during a night training exercise.
## 1890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Error in judgement on the part of the captain, who, after sighting the runway lights, concentrated on keeping them in sight and failed to make adequate reference to his flight instruments. As a result, he allowed the aircraft to descend below the obstacle clearance limit of 360ft.  In the darkness, with no ground reference, the runway lights gave him insufficient guidance as to his height and angle of approach and he was unaware that the aircraft had descended to ground level. The fatigue of the captain and the failure to illuminate the aircraft's landing lights were conributing factors.
## 1891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a trees and telegraph poles on final approach.The pilot failed to follow the instrument approach procedures during the approach.
## 1892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane ran out of fuel and crash landed. Crew did not refuel at Kazan.
## 1893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hit apporach lights while trying to land in heavy rain.
## 1894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Following takeoff from Omaha, hydraulic difficulties were experienced. The flight was continued to Denver where the aircraft experienced asymmetrical reverse thrust while landing and crashed into a maintenance truck and burned. Asymmetrical thrust during the landing attempt due to a hydraulic emergency.  Numbers 1 & 2 thrust reversers failed.  The crew failed to activate the back-up high-pressure air bottle used to hold the reverse ejectors in the extended position during a hydraulic emergency.  Poor evacuation procedures.  A contributing factor was the  failure of the first officer to monitor the thrust reverse indicator lights when applying reverse thrust and the crew's lack of training and knowledge on the aircraft's hydraulic system. The driver of the maintenance truck was killed.
## 1895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            On reaching Rabat, the plane was diverted to Casablanca because of poor ground visibility. Conditions at Casablanca were a little better but the plane overshot the runway on its first approach. With worsening conditions the pilot asked to land at the U.S. Air Force base at Nouasseur. While the tower was seeking permission, the pilot saw a window of opportunity and tried again to land at Casablanca. The aircraft crashed into a hillside and burned eight miles short of the runway.
## 1896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft disintegrated in flight following the application of loads in excess of the design loads. The aircraft entered an area of extreme turbulence and was struck by lightning.
## 1897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Undershot the runway by 200 feet, crashed and burned. Absence of approach and runway lights. Lack of guidance from air traffic controller during last stages of flight.
## 1898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed between a row of houses while on a sightseeing flight. Inattention of crew to duties. Pilots had 2 companions in the cabin during the entire flight and performed forbidden maneuvers including one sharp turn which resulted in  lost control of the aircraft.
## 1899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a mountain18 nm northeast of Stravanger Airport.  Deviation from prescribed course. Cause unknown.
## 1900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed during approach. During the approach to the airport the aircraft was not in the normal pattern and was below the normal altitude.
## 1901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An in-flight fire, initiated and sustained by a severe fuel leak. The fuel leak was caused by the locking of a carburetor drain plug to unscrew.
## 1902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed and burned in a field 10 miles west of Midway Airport. The airliner had taken off from Midway headed for Las Vegas. Loss of a 5/16 inch steel bolt from the elevator boost system which caused the elevator to move to its full upward position creating a stall and loss of control of the aircraft.
## 1903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Malfunctioning propeller. The pilot tried to turn back for an emergency landing but  the plane stalled and crashed.
## 1904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into high terrain, 1,500 meters short of the runway in adverse weather conditions. Probable cause: Continuation of visual filght in adverse weather conditions.
## 1905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cargo plane crashed.
## 1906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed into the Shannon River shortly after taking off in fog. Possible fault with the artificial horizon or aircraft's aileron tabs. Contributing factor was the weather and crew fatigue.
## 1907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed and burned while attempting to land at Sale Airport. With its landing gear down and flaps partially extended, the plane struck the ground in a slight nose-down attitude. Possible misread altimeter.
## 1908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Takeoff and Initial climb appeared to be normal, but at approximately 200 feet a shallow turn to the right continued into a gradually increasing bank of about 85 to 90 degrees. While in the turn, the crew made a short, garbled transmission indicating alarm. During the latter part of the turn a gradual descent began and, two minutes after taking off, the aircraft struck the ground. Mechanical failure in the aileron primary control system due to an improper replacement of the aileron boost assembly, resulting in a loss of lateral control of the aircraft at an altitude too low to effect recovery.
## 1909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into the jungle approximately 9 miles from the destination airport. UN Secretary General, Dag Hammarskjöld, 56, killed. The aircraft was allowed to descend too low, resulting in striking trees and crashing. Although the United Nations released a statement that no evidence of sabotage was found, rumors persist about this accident alleging that the victims were shot prior to the crash or that a bomb onboard exploded. A recent report in 2011 sites pilot fatigue as the cause of the accident.
## 1910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into high terrain on approach, 18 kms from Ankara Airport. The aircraft was not in a normal flying  pattern and below normal altitude.
## 1911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into Mt. Canigou while descending to land. Navigational error.
## 1912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane stalled and crashed during takeoff.
## 1913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The flight crashed into a hill during approach. Pilot error. Improper evaluation of distance, flying a non-standard traffic pattern by night and failing to observe altitude minima during the final approach.
## 1914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Failed to gain altitude after a missed approach and crashed. The malfunctioning of the automatic pitch coarsening unit of the starboard propeller. This deprived the captain of the necessary degree of control of the aircraft at a critical stage of the flight.
## 1915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Flown under a military contract, several procedural errors by the crew caused the loss of 2 engines. After several more errors, the aircraft crashed into a wooded area. Most deaths from post-impact fire and CO.  Lack of command coordination and decision, faulty judgement and insufficient knowledge that led to an emergency situation. In addition there were faulty maintenance procedures. The carrier's license was revoked 6 weeks after the crash.
## 1916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Went missing en route in the Caribbean Sea.
## 1917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The pilot flew too close to the summit of Mt Ruapehu and due either to turbulence or some pilot maneuver, the starboard propeller struck a rock outcrop on the mountain, bending the blade tips forward and causing vibration, which weakened the wing and led to its rapid structural failure of the aircraft.
## 1918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was on a charter flight to Livingstone to pick up United Nations troops on leave and take them back to Elizabethville. It took off from Salisbury Airport, and shortly after take-off suddenly dipped its right wing. After a slow recovery, it climbed away to between 100 - 150 ft and then went into a turn to the left with the port propeller windmilling. This turn continued to get steeper until the aircraft rolled over and dived inverted to the ground . The accident was caused by failure of the pilot to execute a successful single engine forced landing after concluding that there had been a power loss in the port engine. Evidence indicated that a failure of the port engine did not, in fact, occur. The pre-take-off rudder trimmer check was not carried out correctly as laid down in the checklist, and the aircraft took off with full left rudder trim applied. Once airborne this was misinterpreted as port engine failure, and the port propeller was feathered. No apparent action was taken by the pilot to correct the ensuing critical speed yaw.
## 1919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After reaching an altitude of about 100 m, the aircraft lost altitude, collided with a eucalyptus forest and was destroyed. Pilot error. Failure to operate under IFR in adverse weather conditions at night. Failure to follow the climb procedure.
## 1920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 1921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed 9 minutes after taking off, into Botany Bay, 3 miles south of the airport . In-flight structural failure due to turbulence.
## 1922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into an open field in a steep dive after attempting an emergency landing.
## 1923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Midair collision between two C-119s.
## 1924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane cashed while attempting to land. Shifting cargo.
## 1925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane made an unconcrolled dive and crashed into a snow covered field. The flight engineer inadvertently caused the flaps to be selected to 40 degrees.
## 1926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shortly after taking off from Esenboga Airport, the aircraft assumed an excessively steep climbing angle, stalled and crashed. The probable cause of the accident was the obstruction of the pitch pointer in the captain's director horizon which led him to make an excessively steep climb. One of three screws had worked its way loose and blocked the pointer on the dial from indicating the correct pitch.
## 1927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed shortly after initial lift-off while making a water takeoff from Old Harbor. Improperly executed takeoff   which resulted in an inadvertent descent into the water. This produced a high-speed low-angle porpoising from which the pilot was unable to recover.
## 1928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On approach to Surabaya Airport, the plane struck a mountain.
## 1929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed about 3 km southwest of the airport on a second attempt to land at Mineral Waters. Inattention of the crew due to unnecessary interactions among the crew.
## 1930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Swerved off the runway while taking off and struck a structure.
## 1931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane's right wing tip struck a wall and then the plane crashed into a tree. Pilot error in failing to discontinue takeoff, even after the right wing tip hit the well and broke off, while the aircraft was on the ground during the takeoff run.
## 1932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed on take off due to engine failure. The No..4 propeller did not feather and the airplane banked to the right, lost speed and crashed.
## 1933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While flying at FL 150, the pilot radioed he was returning to Huanuco because of bad weather. Soon after, the plane was seen spiraling towards the ground and witnesses heard the engines accelerate before the aircraft hit a hill. Separation of the left elevator in flight.
## 1934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Approximately 10 minutes after takeoff , for a scheduled flight to Cumana, the aircraft crashed into the San Juan Mountains.
## 1935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After taking off the crew of the cargo plane declared an emergency and crashed shortly after. The faulty procedure on the part of the pilot who made the en route climb from Manizales to San Felix at a low altitude, so that the aircraft became trapped in a canyon and crashed in the San Felix pass at La Aguadita after stalling during a turn at 9,000 ft.
## 1936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After taking off from Idlewild Airport and reaching a height of 1,500 feet, the aircraft made a left turn but continued to roll until it was inverted and crashed into Jamaica Bay approximately 3 miles southwest of the control tower. A rudder control malfunction which caused  a full unwanted rudder deployment, yaw, sideslip and roll which led to loss of control of the aircraft. This was caused by the use of an improper tool at the manufacturing plant to wrap the rudder servo unit's wiring, damaging the wires and leading to a short circuit. There is speculation that the accident was actually caused by the captain putting the aircraft in a steep 45 degree bank which resulted in the loss of control of the aircraft.
## 1937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft had a unusually long take-off run and appeared to gain altitude with difficulty. One and one-half miles from the runway the aircraft struck trees and crashed into a tidal swamp and burst into flames.  A jammed right elevator spring tab caused the crew to lose of control of the aircraft.
## 1938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a mountain. Error in judgement by the pilot-in-command who attempted a low visual flight, beneath the cloud base, near mountains, in deteriorating weather conditions.
## 1939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane crashed into Mt. Velino while en route.  Premature descent on part of the crew.
## 1940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The transport was taking part in a parachute drop mission with five other aircraft when it crashed.
## 1941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a mountain at an altitude of 6,800 ft. while en route in poor weather. In avoiding cumulus clouds and turbulent conditions the pilot was not able to keep track of his exact position or maintain exact altitude.
## 1942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lost at sea while en route from Guam to the Philippines. The crew of the SS T.L. Lenzen supertanker sighted a midair explosion at 00:30 local time, from their position at 13 degrees 44' N, 134 degrees 49' E.  The subsequent search of over 144,000 square miles found nothing. Cause undetermined.
## 1943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into a rock embankment, 328 ft. short of runway threshold while attempting to land on Runway 23 and after being warned by ATC that the plane was below the glidepath. The main gear and right wing separated from the plane and a fire ensued. The pilot's misjudgment of distance and altitude during the final approach.
## 1944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While approaching Boufarik AFB by night and poor weather conditions, the plane struck the slope of a mountain located near Col des Deux Bassins, about 38 km southeast of Boufarik Airfield.
## 1945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed shortly after takeoff into the sea 1 mile offshore and sank. The weather was clear.
## 1946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Due to winds, the aircraft was 10 degrees off course as it prepared to land at Villavicencio and crashed into a 11,500 ft. mountain.
## 1947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into a fog-shrouded mountain minutes after taking off from Hong Kong airport.
## 1948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nothing was heard from the aircraft after departing Bahia Solano. The wreckage was found 4 days later, 31 miles from the airport on Bonito Peak at an elevation of 2,400ft.
## 1949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane descended to 1,000 ft while approaching Portsmouth in low clouds and drizzle and stuck St. Boniface and bust into flames. Pilot error. Crew flew below minimum safe altitude.
## 1950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane crashed and burned in a ravine after experiencing engine failue minutes after taking off.
## 1951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into trees short of the runway while on approach. Approach not carried out in accordance with company procedures and misjudgement of his distance from the runway.
## 1952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While landing on the water, the plane abruptly swerved to the right and sank in a short period of time. Because of a malfunction, the nose wheel doors were not closed and locked. The doors were torn off in the landing, allowing water to enter the wheel well severely damaging the aircraft.
## 1953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed shortly after taking off.
## 1954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Struck a mountain in poor weather conditons.
## 1955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After departing Rhein-Main Air Base, the pilot sent a distress message requesting an emergency landing.  Soon after, the aircraft disintegrated losing it's left wing. Some sort of undetermined emergency led to explosive decompression which led to the destruction of the plane.
## 1956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route from Chicago to Kansas City the airliner fell from FL 390 and crashed 6 miles north-northwest of Unionville, Missouri after an explosion aboard caused separation of the tail section. Detonation of a dynamite bomb in the right rear lavatory in the towel bin under the wash basin. This is the first case of sabotage on a commercial jet airliner. The bomb was believed to have been carried aboard by a passenger in a suicide-for-insurance plot. It was alleged Thomas Doty, recently arrested for armed robery, and insured for $300,00 put together the dynamite bomb and placed it in the lavatory.
## 1957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane lost an engine on take off and crashed 7 km southeast of the Airport.
## 1958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              During takeoff from Orly Airport, the nose rose for about 5 seconds and then dropped back down on the runway. Smoke streamed from the wheels as the crew tried to stop the aircraft but it ran off the runway and collided with the runway lights and a house. The only survivors were two stewardesses who were seated in the tail section which broke free in the crash. The aircraft's horizontal stabilizer was improperly trimmed due to a failure of the trim servo motor.
## 1959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane struck a mountain after losing an engine.
## 1960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into a 1,400 ft. hill while on approach, 15 miles from the runway threshold. Nonfunctioning VOR station. Insufficient meteorological information given to the flight crew. Malfunctioning automatic direction finder due to the effects of poor atmospheric conditions. The aircraft was named "Chateau de Chantilly."
## 1961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed into a mountain during an approach to Adler Airport. The accident was caused by a change in approach patterns to the airport on the part of controllers without approval from aviation authorities.  Lack of training by the carrier for flights into mountainous regions.
## 1962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft went into an uncontrollable dive from FL 290.
## 1963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The crew reported losing the right engine. The plane lost altitude as the crew tried to make it to Tashkent. The aircraft  crashed into a cotton field, broke in three and caught fire.
## 1964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into a hill near Bombay, India, at an elevation of 3,600 ft. 50 miles ENE of the airport. Navigational error.  Premature descent. Crew did not use navigational facilities available.
## 1965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane descended and crashed into the ocean attempting to take off. A loss of power on the No.1 and 2 engines following takeoff, which resulted in a gradual loss of height. The probable slow psycho-physical reaction of the crew, due to fatigue, may have prevented perception of the danger and the timely execution of maneuvers to prevent the accident, or minimize its consequences.
## 1966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A vulture crashed through the cockpit window and killed the copilot.
## 1967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 En route, he encountered poor weather conditions and the airplane entered a narrow valley in low visibility. The pilot realized the situation and attempted a sharp turn to return when the airplane stalled, struck the ground and crashed..
## 1968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a jungle on the side of a mountain, 52 nm from the Bangkok airport while on approach. Premature descent. Navigational error.
## 1969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shortly after takeoff, a fire warning indication caused the pilot to feather the propeller on the No. 1 engine. Fuel was jettisoned, and the flight returned to Honolulu for landing approximately 40 minutes after departure. The three-engine landing approach appeared normal until the aircraft had proceeded beyond the runway threshold and had commenced its landing flare at an altitude of approximately 20 feet above the runway centerline. A go-around was attempted from this position and the aircraft banked and veered sharply to the left. Initial ground contact was made by the left wing tip approximately 550 feet to the left of the runway centerline. The aircraft progressively disintegrated as it  moved across the ground, then struck heavy earth-moving-equipment parked approximately 970 feet from the runway centerline. The accident was caused by the attempted three-engine go-around, when the aircraft was in a full landing configuration, at insufficient airspeed and altitude to maintain control.
## 1970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Struck a mountain while attempting to land. Changes in the approach patterns for Sochi Airport, not approved by the State aviation authorities and without informing the flight crews about it.  Inadequacies of flight control and crew training in the Sochi area and training for flights in mountainous regions in general.
## 1971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After rotation, the airplane encountered difficulties in gaining height and struck a truck with one of its wing.
## 1972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a 11,200 ft. mountain, 100 miles from New Deli. Dirfted off course to the north of the intended track.
## 1973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rejected takeoff. Overran runway into the sea. Incorrect stabilizer setting. Stablizer setting changed from nose-up to nose-down position. Delayed decision to abort takeoff.
## 1974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While taking off, the aircraft began to veer to the left. The pilot corrected to avoid a collision with the T wind indicator and crossed into the parking apron. The pilot applied full power and decided to take off from the apron. The starboard wing struck two helicopters, cart wheeled and burst into flames. Pilot error. Poor flight technique, faulty judgment in trying to take off outside of the main runway.
## 1975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the jungle near San Ramon.
## 1976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On a disaster relief mission, the plane clipped tree tops and crashed.
## 1977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The airliner crashed and burned 10 minutes after taking off from Khabarovsk Airport.The crew reported that they were experiencing shaking and uncontrollable roll and yaw.
## 1978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft lost its right wing in flight, crashed and burned in a field. Malfunction of the electric elevator trim tab unit which resulted in aircraft uncontrollability and subsequent structural failure of the wing.
## 1979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on approach.
## 1980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a fog shrouded wooded ravine in broken overcast  while attempting to land at Fairchild Air Force Base. Navigational error.
## 1981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The failure of the left engine and execution of a sharp 180 degree turn to the left of the original flight path. This was the only possible maneuver since the valley ahead narrowed and a turn to the right could not be effected, because the aircraft was close to - and below the altitude of - a mountain on that side.
## 1982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Collided with a mountain while en route. Crew error. Flew below minimums into a cloud covered mountainous area.
## 1983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While en route in bad weather conditions, the airplane struck the slope of a mountain located in the region of the Sela Pass.
## 1984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A fire developed in the No. 3 engine. A few minutes later, the propeller of the No. 1 engine oversped and the flight engineer inadvertently closed the firewall shutoff valve to the No. 1 engine. The No. 1 engine was then shut down. The No. 2 engine then developed mechanical trouble. The plane ditched at sea approximately 560 nm W of Shannon, Ireland. Failure of 2 of the 4 aircraft's engines and the improper action of the flight engineer which disabled a 3rd engine necessitating a ditching at sea.
## 1985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On final, the airplane struck the top of a hill and crashed by a house located near the village of Slavkov, about 6 km from the runway 28 threshold.
## 1986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Collided with a RCAF CF-101B Voodoo fighter plane on the runway. The controller having assumed in error that the Viscount was turning off at the high speed taxi strip, cleared the Voodoo aircraft for takeoff before the Viscount was clear of the active runway. The Voodoo collided with the tail of the Viscount, killing a stewardess and one passenger. The Voodoo caught fire but continued to fly. It climbed to 1,200 feet where both crew members ejected safely.
## 1987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on final approach to Seville-San Pablo Airport, the crew was able to send a brief mayday message, reporting that the aircraft caught fire. Shortly later, the airplane went out of control and crashed onto a hill located 4 km short of runway threshold.
## 1988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while practicing take offs and landings.
## 1989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Following departure from Philadelphia, a high frequency whistling noise was heard and inspection revealed an escape of air at the lower aft corner of the rear service door. Pillow cases were placed in this area to reduce the air noise but no further action was taken. While the aircraft was descending through 4,000 feet the door blew out. The ensuing outward rush of air ejected a flight attendant who was near the door opening. Undetected insecure latching of the rear service door, resulting in an inflight explosive decompression which ejected a flight attendant from the aircraft.
## 1990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed on takeoff on a test flight. Rudder controls improperly installed.
## 1991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into 1,800 ft. mountain, 12 miles from the Da Nang airport. Navigational error in poor weather conditions.
## 1992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Made a sharp turn, nosed up and hit the ground.
## 1993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed while taking off in a storm.
## 1994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Stalled and crashed during approach, 0.5 miles from the outer marker. Cause undetermined.
## 1995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft penetrated a flock of Whistling Swans at 6,000 ft. One, estimated to be 13 pounds, struck the leading edge of the left horizontal stabilizer, weakening the structure and causing it to detach. The aircraft lost control and broke-up in mid-air and crashed. Separation of the horizontal stabilizers, which had been weakened by a collision with a Whistling Swan.
## 1996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Midair collision with a Cessna at 2,400 m. Twenty-three killed on the Saab, three on the Cessna. Both pilots failed to maintain adequate lookouts for other aircraft.
## 1997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After initiating an overshoot procedure, at the suggestion of the control tower, because it was too high, the aircraft proceded to start another approach when it crashed into La Cruz Peak. Possible misinterpretation of navigation instruments.
## 1998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft was 1,000 ft past the ILS touchdown point and at an altitude of 25 ft. when a loss of visual reference caused the crew to abandon their approach. The landing gear was retracted, 20 degrees flaps selected and climb power applied.  At 3,500 ft. from the threshold, in a 6 degree left bank and speed of 135 knots the No. 1 and 2 propellers struck the ground. The aircraft hit a mound of earth and broke up. Crew failed to follow approved procedures. Technique employed by the crew during abandonment of the approach under fog conditions that were not adequately reported.
## 1999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed in heavy rain while en route. Pilot error. Flight under VFR in IFR conditions.
## 2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed 9 miles short of its destination. Cause unknown. The aircraft was named "Estevao Ribeiro Baiao Parente."
## 2001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed during an ILS approach to Burbank Airport. Incapacitation of the captain with a heart attack at a critical point in the approach from which the co-pilot could not recover.
## 2002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stalled and crashed 8 miles from the threshold after being struck by lightning.
## 2003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Twelve killed, including civilians. Two civilian houses burnt.
## 2004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed short of the runway, striking trees. The aircraft descended below the prescribed altitude for undetermined reasons.
## 2005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The pilot carried out the final stage of approach below the normal glide path with insufficient engine power, as a result of which the speed of descent was too high in relation to the horizontal distance still to be covered to the beginning of the runway. Consequently, the aircraft, at a high vertical speed, hit a dyke, after facing the direction of approach.
## 2006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Mt. Renoso at 7,450 ft. Crew fatigue. Inadequate preparation for the flight. Entered cruise at a high rate of speed. Navigational errors. Failed to maintain safe altitude. Decent started prematurely.
## 2007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After the takeoff roll, the pilot pulled up and started the rotation when the aircraft banked right and crashed. The flight was dispatched despite the fact that the visibility and weather conditions were below minima at the time of the accident.
## 2008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The crippled airliner crashed into houses and burst into flames as it was coming in for an emergency landing in steady rain. Control was lost while attempting a go around manoeuvre due top the failure of the left engine.
## 2009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the Great Salt Lake while practicing an emergency decent during training. Crews lack of vigilance for undetermined reason.
## 2010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane crashed after a go-around was attempted.  An uncontrollable loss of altitude caused by adverse wind conditions during an attempted go-around.
## 2011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While making a straight in approach, the aircraft continued flying over the runway to the south end and while at a height of 90 feet, suddenly pitched down and struck the ground. Icing of the horizontal stabilizer which led to loss of pitch control.
## 2012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed en route into the ocean, 231 miles east of Atlantic City, New Jersey..
## 2013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision between a civilian and military aircraft. Both planes crashed into a heavily populated area destroying buildings, houses and vehicles. Fourteen killed on the Viscount, three on the C-47 and 87 on the ground. Cause attributed to a military flight training zone extending into the approach pattern associated with civilian aircraft. The Viscount aircraft had an IFR flight plan but was cruising under VFR conditions and did not see the C-47 until it was too late.
## 2014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft struck approach lights 1,170 feet from the runway threshold, climbed to about 200 feet and then crashed approximately 1,900 feet beyond the threshold and on the left edge of Runway 28L. Continuation of an instrument approach after adequate visual reference was lost below authorized minimums. Inadequate monitoring of the  instrument approach by the PAR controller was a contributing factor.
## 2015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane stalled and crashed.
## 2016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed 37 miles west-southwest of Miami after penetrating a thunderstorm and encountering severe turbulence. The aircraft initially entered an area of updrafts followed by downdrafts which put the aircraft into a high speed dive. While trying to pull out of the dive, the aircraft broke apart from excessive g forces. The crew is believed to have concentrated on maintaining a given airspeed in an extreme turbulence condition instead of flying attitude. In doing so, excessive stress was applied to the wings which separated from the fuselage. The weather was considerably worse than forecast.
## 2017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         With engines idling, a girl ran into the No. 2 propeller despite warnings of ramp personnel. Suicide.
## 2018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Mt. Boca during descent for landing. Limited visibility, crosswinds contributing to navigational error.
## 2019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed 200 m short of the runway threshold in a dust storm.  The plane broke apart and caught fire. Crew error. Attempted to land below weather minimums.
## 2020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane took off from Dyersburg and flew into a storm. The pilot, Randy Hughes, was not instrument rated, lost control and crashed. The plane was at full throttle in a 45 degree downward attitude when it struck the ground. Singer, Patsy Cline, 30, killed. Also killed were Hawkshaw Hawkins, 39,, Cowboy Copas, 49, and Cline's manager, Randy Hughes, 35. Cline’s friend, Dottie West, offered a ride to Cline. They were to travel  from Kansas City, Kansas, to Nashville. West tried to persuade Cline to ride in the car, believing it was safer. Cline was eager to return home to her children and wanted to take her flight. She refused to ride with West. Cline allegedly told West she was ready if it was her time to leave. Noninstrument pilot attempted visual flight in adverse weather conditions, resulting in a loss of control. Judgment of the pilot in initiating flight in the existing weather conditions.
## 2021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Struck 14,250 ft. Chachacomani Peak. Flight under VFR in IFR conditions in marginal weather conditions with severe turbulence.
## 2022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane crashed after experiencing engine trouble.
## 2023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tthe airplane struck the slope of Mt Matto located 28 km southwest of Cuneo.
## 2024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into Monte Vale Rotonote, 53 miles southeast of Rome, where the plane was scheduled to land.  Navigation error. Descending too low in order to maintain visual contact with the ground. Poor weather conditions. Failure to notify ATC of the changes made during the flight.
## 2026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in a snow covered field whille en route. The pitch control mechanism of the No. 4 prop failed, creating a severe drag. As the crew was not able to establish under these conditions which one of the right props had caused the problem both were feathered. The airplane entered a high speed descent from which the crew was unable to recover. Control was regained and the crew pulled up when breaking through the low clouds at 150-200 metres but elevators broke off. Control was lost and the airplane crashed.
## 2027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed on approach, 6 km west of the runway. Possible icing of the stabilizer.
## 2028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft returned to airport after the No. 2 caught fire. The crew feathered the prop, made a left turn, stalled and crashed into a house. Improper feathering procedure.
## 2029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft flew into a mountain at 6,500 ft. Navigation error. Crew choose to fly a prohibited route at too low an altitude.
## 2030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into an orange grove while climbing in a sand storm.
## 2031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft was being flown under contract to the military. While en route, the aircraft crashed into the sea.  The last known message was a request to ascend from 14,000 ft. to 18,000 ft. The last known position was 54 degrees 14 minutes N, 134 degrees 41 minutes W. Unable to determine the probable cause due to lack of evidence.
## 2032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Cashed 25 miles from Amritsar. Structural failure of the aircraft in the air, following overstressing, as a result of loss of control. The loss of control was caused by improper rigging of the rudder bungee system.
## 2033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed  into Mt. Kaolokung while attempting to land.
## 2034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While descending, the aircraft struck the slope of Mt Pérez located 42 km from the airport.
## 2035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed between Totkomlos Bekessamson while en route.
## 2036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft was accidentally hit in the wing by a phosphorus mortar shell fired by a British Army unit setting the aircraft on fire. Nine paratroopers were able to jump to safety before the plane crashed.
## 2037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into trees during initial approach in heavy fog. Error in judgment by the pilot in attempting to fly visually in unfavorable weather conditions during twilight.
## 2038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot lost control of the aircraft while attempting to take off in a thunderstorm and crashed.  Poor decision by pilot-in-command  to take off during a severe thunderstorm.
## 2039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed  while on a descent to Tauranga the aircraft experienced heavy rain, turbulence and extreme downdrafts on the lee side of a mountain. The plane crashed into the Kaimai Range at 2,460 ft., just 300 feet below the nearest summit. Premature descent by the pilot-in-command. Misleading forcast. Lack of DME equipment at the airport.
## 2040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed 2 miles short of the runway during approach. Premature descent.
## 2041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed while taking off.
## 2042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane crashed into a fog shrouded mountain.
## 2043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into the Arabian Sea while on a flight from Tokyo, Japan to Egypt while preparing to land in rain and turbulence. The pilot may have lost control while turning into an area of severe turbulence and heavy rain.
## 2044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While flying under VFR rules, the airplane struck the slope of a mountain located near Ibicaré, 25 km southwest of Videira.
## 2045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck by lightning while on initial approach in a thunderstorm. The accident resulted from exceptionally bad weather conditions in the area where the aircraft was holding at the request of Lyon Approach. The Board did not rule out the possibility of a flash of lightning dazzling the crew and causing temporary blindness or appreciably incapacitating both crew members.
## 2046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft lost an engine during takeoff and could not gain sufficient altitude, entered a canyon which forced a landing in a field causing the aircraft to strike a small earth dam. The failure of the captain to effect a proper and timely assessment of a power plant malfunction, followed by improper judgment and technique during a single-engine emergency operation.
## 2047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into mountains shortly after taking off from Hachijo. Navigation error. Followed wrong departure route.
## 2048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After the landing gear did not retract  after takeoff the flight was diverted to Leningrad because of fog.  After circling for a long time the plane began to lose it's engines because of fuel starvation and a ditch was carried out in River Neva.
## 2049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shortly after taking off the aircraft crashed in \ta wooded hillside, 32 km northwes of Kutaisa. Crew error. VFR flight into IMC.
## 2050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A mid-air collision occurred approximately 700 miles east of Miami, Florida.
## 2051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Refugee flight.
## 2052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Prior to departure from Zurich Airport, the pilot,, without authorization, taxied half way down the runway in order to clear fog. The aircraft then went back to the beginning of the runway and took off only to crash 10 minutes later, 18 miles WSW of Zurich. Braking done during the fog clearing procedure overheated the brakes which led to the wheel flange splitting and a burst tire which damaged a hydraulic line which caused a fire to start which ultimately led to the loss of control of the aircraft. Forty-three people, one fifth the population of the small town of Humilikon died in the accident.
## 2053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Went into a steep dive and crashed into a field. Cause unknown.
## 2054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into Pic de la Roquette while descending for an approach to Perpignan. Navigational error. It was noted that the crew continued to the south at an altitude of 6,000 feet without knowing his real position. It is possible that fatigue may contribute to the accident.
## 2055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         About 57 minutes after its departure from Dover AFB, the crew informed ground about its position flying at an altitude of 14,000 feet. In unknown circumstances, the airplane went out of control and crashed into the ocean about 1,440 km east of the coast of New Jersey. SAR operations were initiated but eventually suspended a few days later as no trace of the aircraft nor the 10 crew members was found. Due to lack of evidences, the exact cause of the accident could not be determined with certainty.
## 2056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed shortly after taking off with a cargo of 30 dairy cows.
## 2057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The helicopter crashed to the ground and burned. Fatigue failure of the drive quill shaft due to contamination of the lubrication system in the aft transmission assembly.
## 2058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed and  burned in a sandstorm while attempting to land at Aswan.
## 2059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Failure of the crew to follow the published procedure while cruising at an insufficient altitude in limited visibility.
## 2060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  During a stalling test the aircraft entered a stable stalled condition from which recovery was not possible.
## 2061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft flew below the safe flying altitude and hit trees on the approach line in fog. Wrong indication of the pilot's altimeter during the instrument approach. Landing carried out in below minimum conditions.
## 2062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed about 5 minutes after leaving Dorval Airport in Montreal. Icing of the pitot system or failure of the vertical gyro or an unprogrammed and unnoticed extension of the Pitch Trim Compensator.
## 2063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane impacted a vertical rock face at 12,500 ft. Pilot in command executed improper in-flight decisions and planning and exercised poor judgment.
## 2064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The airliner was on a flight from Baltimore to Philadelphia. The aircraft was in a holding pattern along with 5 other planes when the control tower received a Mayday message. The plane was seen going down in flames and crashed 10 miles southwest of New Castle, Delaware. The aircraft was struck by lightning.  Lightning induced ignition of fuel tank vapors. Within two weeks after the accident, the FAA ordered lightning discharge wicks to be installed on all commercial jet airliners. The aircraft was named Clipper Tradewind.
## 2065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane struck a mountain while en route. A wrong estimation of the wind speed and direction resulted in a navigation error which brought the aircraft 42 nm from the approved air route. Possible contributing factors were: lack of weather forecast prior to takeoff, personal worries, fatigue and lack of oxygen, inadequate charts and maps.
## 2066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after taking off.
## 2067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The  No 1. and No2. Engine propellers touched the runway after an attempted go-around during landing.  A safe landing was made at Lockheed Air Terminal in Burbank.  Failure of the pilot to maintain a positive rate of climb and the premature retraction of the landing gear during a go-around in the fog.
## 2068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot reported a localized fire in the cabin. Soon after, he attempted to land at an airfield close to Zarate.  The aircraft struck the ground with its landing gear, left engine and wing which resulted in a break-up of the plane and subsequent fire. Crew was possibly overcome by fumes from the fire.
## 2069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed short of the runway while on approach. Improper IFR procedure. Descended below MDA.
## 2070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft made a steep climb to 200 ft., stalled and crashed striking the departure end of Runway 6. Pilot's failure to properly load the aircraft, resulting  in insufficient elevator effectiveness to reverse an unwanted pitching motion.
## 2071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft stalled and  crashed at the end of the runway after liftoff.
## 2072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain while en route.
## 2073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Struck trees on a mountain ridge and crashed while attempting to land. Continued flight under VFR into IFR conditions.
## 2074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into Lake Pontchartrain, 19 miles northeast of New Orleans International Airport, shortly after taking off. Mechanical failure. Uncommanded extension of the pitch trim compensator. Degradation of aircraft stability characteristics in turbulence, because of abnormal longitudinal trim component positions.  Malfunctioning pitch trim compensator.
## 2075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ran past end of runway when landing and ran into a river dike, broke in three and burst into flames. Malfunctioning propeller reverser, excessive speed and insufficient  braking.
## 2076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into Mt. Glungezer and then slid down a gorge, 10 miles ESE of the airport while in a holding pattern. The pilot descended below the minimum safe altitude in an apparent attempt to penetrate the overcast flying VFR in IFR conditions.
## 2077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into Genoa Peak while attempting to land under VFR conditions after a missed approach and go-around. The captain's decision not to wait until the weather improved or divert to an alternate airport during adverse weather conditions. The pilot's deviation from prescribed VFR flight procedures in attempting a visual landing approach in adverse weather conditions. This resulted in an abandoned approach and geographical disorientation while flying below the minimum altitude prescribed or operations in mountainous areas. The aircraft was named "City of Los Angeles."
## 2078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While flying from Barrackpore AFS (near Calcutta) to Bagdogra AFS (near Siliguri), the aircraft crashed into the Hooghly River.
## 2079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed after executing a missed apporach. Improper operation of powerplant and powerplant controls.
## 2080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed during final approach. Evasive maneuver to avoid a mid-air collision with another aircraft caused the pilot to lose control of the aircraft.
## 2081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While on approach, the cargo plane suddenly pitched down and crashed short of the runway. Loss of balancing forces on the horizontal surface of the empennage of the aircraft, due to ice accretion, causing the aircraft to pitch nose down at an altitude too low to effect recovery.
## 2082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Struck a ridge while approaching Miles City in sleet and freezing rain while on a VOR instrument approach. The descent below obstructing terrain, for reasons undetermined, during an instrument approach in adverse weather conditions.
## 2083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft suffered engine failure in flight and crashed. Carburetor icing. Improper emergency procedures. Alcohol impairment.
## 2084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed during  final approach. Failure to discontinue visual approach in the absence of minimum visibility conditions required for the type of maneuvers involved. Abnormally wide initiation of down wind leg which brought the aircraft along an unsafe path in relation to the terrain in the area.
## 2085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Disappeared while en route, 1,120 nm W of San Francisco, after the pilot reported he had a bad fire in the No. 2 engine.
## 2086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while approaching the airport.
## 2087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flew into whiteout conditions and crashed.  ATC did not advise of unsafe weather conditions.
## 2088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the sea, 4 nm off shore while on approach to Dhahran Airport in a sandstorm.
## 2089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft went into a steep dive and crashed 26 miles from it destinatiion of San Francisco Internatiional Airport. The last message which had to be obtained through laboratory analysis was "Skipper's shot.  We've been shot.  I was trying to help."  Francisco Gonzales, a passenger, who had told several people he was going to kill himself, shot both the pilot and co-pilot. Gonzales, 27, a former member of the Philippine yachting team at the 1960 Olympics, had purchased life insurance policies totaling $105,000 prior to the flight.
## 2090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a sand dune while attempting to land at Lima in heavy fog. Improper IFR procedures by the crew.
## 2091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While attempting to land at Clark Air Force Base, the aircraft contacted the perimeter fence, 3,500 ft. from the threshold of the runway, causing the plane to clip the tower and crash 300 ft. left of the runway center line. Wrong approach configuration on part of the flying crew who decided to continue the approach despite he was instructed by ATC to abandon the approach and to go around
## 2092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Struck a hill while taking off. The pilot continued to fly VFR into unfavourable weather over the jagged shoreline with practically zero visibility due to heavy rain. At the time of the accident, the visibility was below minima.
## 2093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane was being used for training. Witnesses reported the plane exploded in the air  and broke in three parts before reaching the ground. The body of one of the crew was seen being thrown out of the cabin.
## 2094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the Red Sea.
## 2095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane crashed on takeoff into a rice paddy at San Chiao Village north northeast of the airport. The pilot discovered the left engine was overspeeding and made an abrupt left turn to land at Kung-Kuan Military Air Base. During the turn he lost control and crashed into mountains. Probable cause: About 5 miles west of the accident site was Kung-Kuan Military Air Base. Six miles south-southwest was Shui-Nan Airport from where the aircraft took off. On the right side of the flight pattern was a chain of mountains. It was concluded that, when the pilot found that the left engine was overspeeding, he made an abrupt left turn to land at Kung-Kuan Military Air Base or return to Shui-Nan Airport. During the turn he lost control of the aircraft, which crashed to the ground.
## 2096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Both engines failed and the plane ditched 1 mile offshore and sank.
## 2097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While climbing to cruise altitude the plane hit turbulence, downdrafts and updrafts. One passenger's seat belt  failed, killing the passenger.
## 2098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed 2 miles northeast of Parrottsville after experiencing an uncontrollable fire of unknown origin which started below the passenger floor and eventually involved the passenger cabin. One passenger died after free-falling out of the No. 4 emergency escape window of the plane in an attempt to escape the onboard fire. The ignition source was never determined, but it is thought the plane's battery or something in a passenger's luggage caused the fire.  Testing revealed lethal amounts of CO2 could be discharged into the cockpit instead of the lower baggage compartment. The plane was seen flying erratically and the fire eventually burned through the controls.  It is likely the crew was unconscious by then.
## 2099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Landed 17 feet short of the runway threshold, tore off the landing gear, slid and caught fire. Pilot misjudged altitude and distance and undershot during landing.
## 2100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed during an intense rainstorm into dense woods 6.5 miles south of the Nashville airport,  while on a return trip from Batesville Arkansas. It took searchers 2 days to find the wreckage. Country western singer Jim Reeves, 40, and his manager, Dean Manuel were killed. Reeves was piloting the plane and was 2 minutes from touchdown when he apparently lost visual reference with the ground and experienced spatial disorientation. Pilot error. VFR flight into adverse weather conditions.
## 2101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Struck Huayna Hill in poor weather. The flight was conducted in IMC conditions at an altitude unsafe for operations of that nature through the Huayna Pass.
## 2102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After insisting on and getting a direct approach without completing a standard traffic pattern, the airliner crashed into a wooded hillside. The controller lacked the radar with which to monitor the flight. Blame was placed on both the crew of the airliner and the ATC. Lack of radar facilities. Premature descent. Inexperience with the area and poor flight planning.
## 2103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Struck a tree and crashed during a nighttime landing attempt.
## 2104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into Mt. Nova. Deviated off course for unknown reasons.
## 2105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane touched down, bounced twice, climbed and crashed. Improperly loaded cargo.
## 2106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane left the runway and crashed while landing.
## 2107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               About an hour and a half after departing Palma de Mallorca the airliner crashed into Mt. Alcazaba, 20 miles SSE of Granada. Deviated off course. Cause unknown.
## 2108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    En route, the airplane encountered strong downdrafts and severe turbulences, causing the fuselage to fail.
## 2109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Instructed to land at Belgrade from the west, the aircraft was too low and off course when it hit Avala Hill, 600 ft. below the peak, exploding in flames.
## 2110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while en route after pilot continued VFR flight into adverse weather conditions.
## 2111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed  into rising terrain 9.7 miles south southwest of Mc Carran Field in a snowstorm during an approach to the airport. Captain's misinterpretation of approach charts leading to premature descent below obstructing terrain. After years of legal court battles, a U.S. District Court Judge concluded that the landing charts provided by Jeppesen were the main cause of the accident.
## 2112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the ocean while on maneuvers.
## 2113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Descended prematurely struck the ground 2 km short of  the runway. Crew mistook lights perpendicular to the runway for runway lights and descended prematurely.
## 2114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The captain decided to abort the takeoff after the No. 4 engine pressure ratio read zero thrust and the amber warning light indicating thrust reversal of No. 2 engine came on. The speed was below V1. The aircraft continued to travel past the runway limit and the No. 4 engine struck a steam roller. The aircraft burst into flames. Malfunction of the No. 2 engine reverse thruster. The malfunction allowed in the development of forward thrust by No. 2 engine even though all four levers were in the reverse position.
## 2115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While taking off, the aircraft struck an empty fuel drum on the runway which tore away the right stabilizer. The plane lifted off the ground but lost control and crashed.
## 2116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed in the Andes Mountains after an explosion blew off the tail of the aircraft. Detonation of a bomb in the tail section of the passenger cabin. A suicide-for-insurance plot was suspected.
## 2117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hit a mountain shortly after taking off exploding in flames.
## 2118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After losing the No. 1 engine the pilot decided to return to Kalibo but could not land do to poor weather. He attempted to divert to Bacolod but could not climb to avoid terrain and crashed into a fish pond while attempting to ditch in the sea.  Failure to maintain safe single engine speed and altitude following failure of the left engine. The precipitation and poor visibility prevailing at the time of the accident over Kalibo and its vicinity and the failure on the part of the maintenance personnel to take action to correct discrepancies logged in the aircraft log-book, individually or collectively contributed to the cause of the accident.
## 2119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane flew off course and struck a mountain in the San Bruno range. The pilot, for undetermined reasons, deviated from departure course into an area of rising terrain where downdraft activity and turbulence affected the climb capability of the aircraft sufficiently to prevent terrain clearance.
## 2120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Cashed on takeoff.
## 2121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane crashed on slope of the Turrialba Volcano while en route.
## 2122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane veered off course and struck trees while attempting to land.  Loss of control during night instrument approach in adverse weather for undetermined reasons.
## 2123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane took off and crashed. Fuel starvation. Fuel selector positioned to an empty tank.
## 2124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During the approach the weather was below minima, but the crew was not aware of this. The plane deviated off course and the controller instructed the crew to execute a go-around but the captain continued the approach. The airplane struck the ground 75m short and to the right of the runway, crossed a ditch and struck trees.
## 2125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after taking off, the aircraft made a left bank attempting to return to McConnell Air Force Base and transmitted a distress message. Soon after, the plane crashed to the ground in a nose-down attitude into houses. Remains of a parachute were found in the No. 1 engine which may have led to an asymmetrical thrust condition. A preceding B-52 may have blown a drag chute from a F-105 Thunderchief against the departing KC-135. The drag chute had been accidently left on the runway.
## 2126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed while attempting to land and caught fire.
## 2127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In poor visibility, struck Mt Helmos located near Kalávryta, 40 km southeast of Patras.
## 2128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After an improper climb, the aircraft flew into a 12,000 ft. mountain in the La Melosas area of the Andes. Crew did not follow flight plan for climbing out of Santiago.
## 2129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed shortly after taking off after taking evasive action to avoid  Pan American Flight 212, a  Boeing-707, that was planning to land. The aircraft were separated vertically by approximately 1,000 feet although this was not known to the  controllers involved. The EAL captain had the illusion that a potential collision course existed. As a result of this illusion, a descent was initiated. In this circumstance the DC-7 was placed in an unusual attitude, resulting in spatial disorientation of the crew. Placement of the two aircraft on a near head on course which prompted the EAL plane to make an evasive maneuver from which the pilots could not recover.
## 2130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane lost the No. 1 engine on takeoff. The prop could not be feathered and the plane crashed. Fatigue fracture of the crankshaft. Inadequate maintenance and inspection.
## 2131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed. Crew error. Premature descent.
## 2132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into mountainous area while en route. Failure of the rudder assembly.
## 2133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed and burned on a forested mountain slope on Mt. Tangcong Vaca. Misjudgment of clearance with the ground by the crew which resulted in collision with trees.
## 2134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed in a snowy field after taking off. Jamming of the elevator control and engine trouble.
## 2135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Communication was lost with the aircraft soon after takeoff. Failure of corroded skin along the bottom center line of the aircraft which resulted in structural failure of the fuselage and aerial disintegration.
## 2136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While attempting to land the plane  undershot the runway, hit a snowdrift, broke up and caught fire.
## 2137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into Pan de Azucar Peak, 35 nm from Bucaramanga. Flying under VFR in IFR conditions.
## 2138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane was participating in U.S. - Canadian maneuvers.
## 2139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a mountain  near the Lowari Pass.
## 2140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stalled and crashed into the sea 10 nm off the coast of Tangier. Reason unknown.
## 2141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane flew into a mountain at 4,200 ft after taking off from Beirut. Structural failure of the fuselage.
## 2142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed on its second approach in deteriorating weather condtions, crashing 3,000 feet short of the runway. The aircraft struck the approach lighting when it was flown below the safe approach path during an approach to land in conditions of very low clouds and poor visibility. The pilot disregarded the approach ban applied by his operations manual.
## 2143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane flew into Mt. Rainier at 10,200 ft.  The improper correlation of the aircraft position with respect to obstructing terrain while continuing the flight on a VFR flight plan in instrument weather conditions.
## 2144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The pilot, who saw the beginning of the runway clearly, but not the rest of it, decided to make a very low run after which he re-applied power for a go-around. After starting his go-around, the aircraft struck a tractor located 50 meters from the runway edge. Heavily damaged, the plane crashed on the western edge of the diversion canal of the Rodeo gorge. Decision not to divert to Las Palmas in view of the weather conditions.
## 2145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft  crashed during its approach.The plane descended during the approach at triple the normal rate until the aircraft struck the ground. The aircraft exceeded the recommended descent rate during the final stages of landing for reasons unknown.
## 2146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Two helicopters flying in formation, crashed in mid-air at Benning military base. Ten aboard 8760 and 8 aboard 8840 killed.
## 2147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed shortly after taking off from El Toro Marine Corps Air Station bound for Okinawa. After attaining an altitude of 1,000 feet, the plane failed to make a left turn and flew into rising terrain. Cause unknown.
## 2148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Just after the aircraft took off from San Francisco International Airport, the No. 4 engine disintegrated tearing off 25 feet of the right wing. An emergency landing was safely made at Travis Air Force Base. A plane was dispatched to pick up the passengers at Travis Air Force Base. While attempting to land, and in plain view of the passengers, the nose gear collapsed. Improper turbine rotor positioning during engine assembly and the use of serviceable worn parts. The aircraft was named "Clipper Friendship."
## 2149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft slid off the end of the runway while landing and broke in two. Hydroplaning of the landing gear wheels which led to braking ineffectiveness.
## 2150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane, carrying paratroopers, climbed to 2,000 ft., made a left turn and crashed. Fatigue fracture of 2 bolts that attached the elevator to the horizontal stabilizer resulted in an abnormal pitch-up attitude and stall.
## 2151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed and burned after taking off from Almaza Airport.
## 2152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The tail section separated from the fuselage after a bomb exploded in the passenger compartment.  It was believed a saboteur ignited a mixture of acid and gunpowder which may have been poured into the toilet in a suicide-for-insurance scheme.
## 2153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft experienced a lost of the No. 2 engine followed by a fire in the No. 3 engine and ditched in the North Atlantic, 100 miles northeast of Nantucket, in zero-zero weather.
## 2154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed into the water shortly after taking off. The pilot failed to maintain flying speed after lifting off prematurely. Failed to abort takeoff. Selected wrong runway relative to wind. Improperly loaded aircraft.
## 2155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed and burned on Penay Island on a domestic flight. The plane hit Mt. Madiac at 7,000 ft. in rain, wind and low clouds.
## 2156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The No. 2 engine of the cargo plane caught fire while it was taking off. A fire and a fuel tank explosion caused the plane to descend uncontrollably and crash.
## 2157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             About 30 minutes after taking off, the aircraft turned back to Mato Grosso with its left engine on fire. While over Buracao, it's left wing and engine broke away from the fuselage and it crashed to the ground.
## 2158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed into Lake Michigan 19.5 miles east of Lake Forest, Illinois during  an approach and while descending from FL 350. The aircraft made a continuous descent at an average rate of approximately 2,000 feet per minute from 35,000 feet to impact with the water in a clean flight configuration. Officially, a cause could not be determined. The aircraft was dispatched illegally without an operating CVR. Possible misread altimeter. The crew could have read the altimeter as 16,000 instead of  6,000 ft. and continued a descent below what they were cleared for. Possible excessive sink rate. Excessive sink rate is thought to have possibly caused four 727 accidents in succession. Lake Michigan 8/16/65, Cincinnati 11/8/65, Salt Lake City 11/11/65 and Tokyo Bay 2/4/66. Only the Salt Lake and Cincinnati crashes were officially attributed to it. After 727 training manuals were modified and pilots were reoriented to the flying characteristics of the aircraft the problem was corrected.
## 2159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After making a request to change course to avoid heavy weather the positioning flight suddenly descended and crashed. The overall atmospheric conditions in the vicinity of Jeuk and the circumstances of the accident were such that it was assumed that the pilot lost control of the aircraft when entering a cumulonimbus cloud.
## 2160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed into Kowloon Bay after taking off from Kai Tak Airport. Pilot error. Commander's decision to proceed with the takeoff with only three engines. Failure to feather the non-functioning engine or trim the plane for a 3 engine takeoff. Decision not to abort after directional control was lost.
## 2161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The pilot misjudged altitude and distance and crashed into the lake during a descent to land.  VFR flilght into adverse weather conditions.
## 2162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hit tree tops and crashed into Mt. Kantakan.
## 2163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shot down by Communist ground fire.
## 2165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while en route.
## 2166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into mountains 32 miles southwest of its destination while descending for a landing. Pilot became lost and disoriented. Crew did not determine their position before descending. Navigation error. The aircraft was named "Clipper Constitution."
## 2167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Collided with houses during an uncontrolled descent.
## 2168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cago plane did not clear a ridge and crashed.
## 2169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Midair collision between a Douglas DC-3 and Piper PA-18.  Eighteen killed on the DC-3, one on the Piper.
## 2170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shot down by Communist ground fire.
## 2171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft veered to the left after taking off. The pilot lost control and crashed. Failure of the pilot to set the rudder trim tab to the proper position before takeoff and during the flight. Undetected deflection of the rudder trim tab.
## 2172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft made two unsuccessfull attempts at landing at Heathrow Airport and overshot the runway. The third time, the plane again overshot the runway, began climbing, then suddenly dove into the runway at a steep angle. Pilot error. Low visibility, crew fatigue, disorientation, lack of experience in overshooting in fog, over-reliance on instruments and incorrect indication of position by instruments.
## 2173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed and exploded as it attempted to land at Obock. The civilians aboard included a hand-ball team.
## 2174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Disappeared over the Gulf after the pilot sent a distress message reporting a fire in the No. 3 engine. Cause unknown.
## 2175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed short of runway during a visual approach in deteriorating weather conditions. Failure of the flight crew to properly monitor the aircraft's height during the approach into deteriorating weather conditions resulting in an excessive sink rate. Excessive sink rate is thought to have caused four 727 accidents in succession.  Lake Michigan 8/16/65, Cincinnati 11/8/65, Salt Lake City 11/11/65 and Tokyo Bay 2/4/66. Only the Salt Lake and Cincinnati crashes were officially attributed to it. After 727 training manuals were modified and pilots were reoriented to the flying characteristics of the aircraft the problem was corrected.
## 2176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed while en route. Flight on an prohibited route in adverse weather. Flight VFR in IFR conditions.
## 2177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed on the ice-covered Lake Kilp-Yavr while attempting to land . Premature descent during approach. Sudden change in the weather.
## 2178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed short of the runway and collided with runway lights, 335 feet short of the runway, causing the main landing gear to fail followed by a fire. Too high of a descent rate during approach. Failure of the captain to take  timely action to arrest an excessive descent rate during the landing approach. Excessive sink rate is thought to have caused four 727 accidents in succession. Lake Michigan 8/16/65, Cincinnati 11/8/65, Salt Lake City 11/11/65 and Tokyo Bay 2/4/66. Only the Salt Lake and Cincinnati crashes were officially attributed to it. After 727 training manuals were modified and pilots were reoriented to the flying characteristics of the aircraft the problem was corrected. Bill Linderman, 45, champion rodeo cowboy killled.
## 2179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed 13 miles east of Palm Springs Airport shortly after taking off. The pilot was confronted with conditions requiring the division of his attention between instrument reference for proper attitude information and visual reference for terrain and aircraft avoidance. The aircraft went out of control from a cruise configuration and crashed in a 55-degree nosedown, vertical left bank attitude. Spatial disorientation of the pilot, resulting in a loss of control.
## 2180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into a hill 22 miles south of Salt Lake City after taking off in snow and poor visibility. The track was aboout 1 mile east of Pass Through mountain. Judgment of the pilot in command in initiating a VFR flight under existing weather conditions and terrain environment.
## 2181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Midair collision at 11,000 feet. Misjudgment of altitude separation by the crew of EAL 853 because of an optical illusion created by the up-slope effect of cloud tops resulting in an evasive maneuver by the EAL 853 crew and a reactionary evasive maneuver by  the TWA 42 crew. The 707 landed at JFK despite losing 25 feet of the left wing. There were no injuries to the crew of 7 and 51 passengers aboard the 707.  Three of the 46 passengers and 1 crew member aboard  EAL 853 were killed. Misjudgment of altitude separation by the crew of the Constellation because of an optical illusion created by the up-slope effect of cloud tops, resulting in an evasive maneuver by the Constellation crew and a reactionary evasive maneuver by the Boeing crew.
## 2182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into high terrain shortly after takeoff. Cause undetermined. Mechanical failure suspected.
## 2183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route in poor weather, the plane struck trees on a mountain slope and then went into a flat spin, crashed and burned.
## 2184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Power stall during a tight turn manoeuvre at too low an altitude from which successful recovery was impossible.
## 2185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Midair collision between two Garuda aircraft. Both crashed into a swamp while approaching Palembang. Seventeen died on each aircraft.
## 2186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed due to engine failure due to the destruction of the cylinder head number 12
## 2187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft hit the slope of a mountain 3.4 km from Shamurat. Crew who decided to continue the flight in below-minima weather conditions.
## 2189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed shortly after taking off. The plane rose less than 100 ft. and then crashed into shallow water.  Possible engine failure. Maintenance error and inadequate inspections.
## 2190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a mountain  5 minutes after taking off from Las Cayee.
## 2191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft was told to hold at 1,000 ft. above the clouds  before landing at Geneva  but descended below the minimum safe altitude and crashed into Mont Blanc. With a malfunctioning No. 2 VOR the crew thought they had already passed Mt. Blanc. Miscalculation by the crew on their position and the phraseology used by the controller in relay the aircraft's position. Hambi Bhabha, father of India's nuclear program killed. The aircraft was named Kanchenjunga. Remains found 7/2017
## 2192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Struck trees inverted, 10 minutes after taking off from An Khe airfield. Evidence was found of a fire in the No. 2 engine.
## 2193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed on approach in heavy fog. The aircraft stalled while making a turn at low altitude. Instrument malfunction.
## 2194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The jetliner crashed about 7.5 miles ESE of Tokyo International (Haneda) Airport where it was scheduled to land. The aircraft was on VFR approach and was observed at a height of 2, 000 ft. just before the crash.  Cause undetermined. Excessive sink rate is thought to have caused four 727 accidents in succession. Lake Michigan 8/16/65, Cincinnati 11/8/65, Salt Lake City 11/11/65 and Tokyo Bay 2/4/66. Only the Salt Lake and Cincinnati crashes were officially attributed to it. After 727 training manuals were modified and pilots were reoriented to the flying characteristics of the aircraft the problem was corrected.
## 2195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into high terrain, 12 miles west of its proper course, due to a navigation error. Abandonment of the ILS approach at too early a stage during an attempt to land under conditions of poor visibility in fog.
## 2196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Undershot the runway and struck a concrete obstruction in poor weather conditions. Lack of information supplied to the pilot regarding the true conditions of surface visibility which was below the minimum prescribed for a night landing.  Lack of proper monitoring and possibly incorrect setting of altimeters during the approach to land. The use of landing lights which resulted in glare during the final stages of the approach in foggy conditions
## 2197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An hour after he departed Vorkuta Airport bound for Syktyvkar, the crew reported a fire on the right engine. After the engine detached, the plane crashed in a lake.
## 2198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Approximately 1 hour into a flight, the plane's right engine failed and a fire erupted which could not be extinguished. The crew attempted to divert to Pechora but did not make it. The engine fell off, te plane rolled to the left and the plane crashed into a forest.
## 2199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The crew was attempted a night takeoff in heavy snow. The plane veered off the runway to the right and crashed in flames. The crew attempted a takeoff in what was well below the minima.
## 2200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While taking off, the aircraft struck a snow drift with the left main landing gear. The pilot banked the plane to the right, causing the No..3 propeller to strike the runway. The airplane crashed and caught fire. The runway was not entirely cleared and the visibility was poor.
## 2201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane struck trees to the right of the runway while attempting to land. Failure of the pilot to comply with the Company's minima. Subsequent belated decision to execute the missed approach procedure.
## 2202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft struck the approach lights and a sea wall during a landing attempt. The pilot initiated a steep rate of descent with the intention of executing a final approach at a lower altitude. Poor visibility due to illusive fog conditions misled the pilot and affected his judgement.
## 2203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed into Mt. Fuji after encountering severe turbulence when the pilot decided to give the passengers a view of the mountain. The aircraft encountered severe clear air turbulence and started to come apart in the air before crashing.
## 2204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane flew into Mt. Parnon about 27 km east of Sparta.
## 2205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    On approach, the aircraft struck power cables, stalled and crashed into the Portland Canal. after the pilot misjudged altitude and clearance. VFR flight into adverse weather conditiions.
## 2206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into sand dunes. Improper approach during a sandstorm with turbulence and icing. Descent of the aircraft below the safe flight altitude in the final approach.
## 2207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane crashed on takeoff.
## 2208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into foothills during landing attempt at Ardmore Municipal Airport . During the approach in rain and fog, the captain made a last-minute change in his choice of runways. One minute later the plane crashed into high ground. Incapacitation of the captain with a heart attack during final stages of approach.  The captain, who suffered from a long standing heart condition and diabetes, managed to keep his pilot's license by falsifying his medical records.
## 2209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot reported both engine were losing power and he was going to ditch the plane into the ocean. Engine failure cause unknown. The wreckage was never found.
## 2210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into 12,600 ft. Mt. Talsula. Pilot error. Incorrectly selected the route. Incorrectly calculated the climb performance of the aircraft in relation to its total weight of takeoff. Underestimated the elevation of peaks he had to clear along the route.
## 2211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Engine failure caused the helicopter to crash shortly after taking off. Failure of the aircraft's No. 2 pinion drive shaft thrust bearing.
## 2212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cashed in poor weather. Misjudgment of the terrain clearance, which resulted in the collision with trees in severe turbulence and strong gusty winds.
## 2213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The incurrence of reverse thrust during simulated failure of no. 4 engine on takeoff. That condition arose when very rapid rearward movement of the power level generated an inertia force which caused the associated thrust brake lever to rise and enter the reverse idle detent. After lift-off, the minimum control speed essentially required to overcome the prevailing state of thrust imbalance was never attained and an uncontrollable roll, accompanied by some degree of yaw and sideslip in the same direction, ensued. When the condition of reverse thrust was recognized and eliminated, insufficient time and height were available to allow the aircraft to recover from its precarious attitude before it struck the ground.
## 2214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Struck mountain slope while in level flight. VFR flight into adverse weather conditions. Weather conditions were poor with low ceiling, rain showers, thunderstorm activity and turbulences.
## 2215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While cruising in poor weather conditions, the cargo plane struck the slope of Mt Planchón-Peteroa  located about 200 km south of Santiago.plane. The wreckage was never found.
## 2216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a mountain.
## 2217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft stalled during an emergency single engine approach. Both engines failed as the approach continued. The plane came to rest in a shallow pond on the golf course. Fuel starvation. Mismanagement of  fuel. Pro golfer Tony Lema and his wife, Betty, was killed. He was on a Buick promotional tour.
## 2218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo  aircraft was not being flown at the recommended altitude when it reached mountains to be crossed, nor whas it at the proper crossing point. A secondary factor was the lack of navigational aids in the area.
## 2219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft broke up in flight due to turbulence after entering a squall line. Right tailplane and wing failed. Pilot operated aircraft in area of avoidable weather hazard.
## 2220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed on a flight while en route.
## 2221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ditched in the ocean after running out of fuel after a problem caused excessive fuel consumption. Decision to continue a flight with both engines impaired until ditching at night became inevitable, instead of making an emergency daytime landing on any of the various runways in the area at a time when the situation made it clear that this operation was inevitable.
## 2222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Following engine failure, the jet fighter crashed into a village.
## 2223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a glacial crevasse near Juneau. Undetermined cause.
## 2224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed into forest during a landing attempt at Ljubljana Airport. The crew's failure to follow proper landing procedures. Improperly set altimeter. Captain failed to adjust his altimeter (he remained on QNH instead of changing to QFE) and the crew failed to cross-check altimeters.
## 2225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Struck a hill while simulating an engine failure.
## 2226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     An overspeeding and failed attempt to feather the No. 1 engine necessitated ditching the plane. The plane sank after 5 minutes.  One passenger refused to leave the aircraft and drowned.
## 2227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane struck trees at the end of the runway after trying to make an emergency landing. Material failure consisting in fatigue failure of a number of teeth of the pinion of the governor control unit, which was jammed against the rack in the 'up' position and therefore set for maximum rpm, thus causing the engine to overspeed. This would be in keeping with the fact that the dome ring was at maximum low pitch setting, i.e. high rpm and a runway propeller on take-off.
## 2228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About 150 miles from Longreach, fire was reported in No. 1 and 2 engines. While the plane was making an emergency descent, the left wing broke away due to weakening by the fire. After failure of the wing, the plane broke up in mid-air and crashed. Loosened bolts led to the loss of the oil lubricating unit causing the bearings to heat and catching the engines on fire. Subsequently, a locking mechanism was installed on the bolts to prevent any future accidents of this kind.
## 2229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed into Salmon Mountain while on approach to Portland. The pilots evidently had agreed to maintain 9,000 feet, but descended instead. The aircraft hit the mountain at the 3,830-foot level of a 4,090-foot ridge. The crew's descent  below its clearance limit and below that of surrounding obstructing terrain for reasons unknown. First crash of a DC-9.
## 2230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While attempting a go-around the plane hit Hong Kong mountain.
## 2231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The helicopter crashed into the Gulf of Mexico after a tail rotor failure.  Fatigue fracture.
## 2232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft was observed flying low and emitting smoke from one of its engines before crashing into the sea and exploding, 125 miles east of Nantucket.
## 2233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed into the sea after overshooting the runway and during a go-around. Undetermined cause.
## 2234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed while landing. The descent of the flight below its altitude clearance limit for reasons unknown.
## 2235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while on approach. Descent below obstructing terrain.
## 2236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into the desert 20 minutes after taking off. The aircraft made contact with ATC during the climb but failed to make a scheduled report an hour later. Detonation of an explosive device placed in hand luggage in the cabin on the port side just above the wing.
## 2237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Following takeoff, the aircraft did not follow assigned route and crashed into wooded hillside. Insufficient evaluation of the weather conditions and relief of the terrain by the crew.
## 2238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed and burst into flames into a rice paddy after experiencing a malfunction of the left engine.
## 2239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shortly after takeoff from  La Pedrera Airport, while in an initial climb, the seaplane stalled and crashed into the Rio Caquetá.
## 2240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a snowbank on the takeoff roll in poor visibility.
## 2241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crash landed short of the runway on approach in fog. Pilot error. Presence of unauthorized person in the cockpit distracting the pilot. Lack of cockpit supervision. Poor weather.
## 2242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into the southern slopes of Tajumbina Peak at 11,600 ft. while approaching Cali. Lack of cockpit discipline. Consuming alcohol shortly before the flight. Not following the recommended route. Incorrectly reported positions. Continuing VFR in IFR conditions. Flying below minimum safe altitude for a VFR approach.
## 2243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane undershot runway by 1 mile while making a radar approach in fog at night. Crashed into numerous thatched roof houses.
## 2244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into building while landing in marginal weather and limited visibility.
## 2245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed after an explosion aboard the aircraft.
## 2246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed due to 18 km from the runway. Pilot error,
## 2247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on approach, landing short of the runway, collapsing the landing gear. Awkward landing technique resulting in excessive rate of sink. Contributing factors include narrow runway, uneven runway necessitating landing as close to the threshold as possible and marginal weather conditions.
## 2248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While landing, the crew was unable to move the throttles into reverse position. The plane was not able to go-around and a ground loop was attempted. The aircraft ran off the runway into a ditch and the left wing tank ruptured and caught fire. Probable failure of the reverse pitch control mechanism.
## 2249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed after undershooting the runway. Loss of control at low altitude. Improper loading which placed the center of gravity in back of the center of gravity limits of the plane.
## 2250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed following the separation in flight of all four blades of the right propeller. No. 2 blade penetrated and destroyed the structural integrity of the fuselage. Malfunction of the hydraulic pitch control mechanism. Uncontrollable overspeeding. Propeller separation in flight. Omission of the torque piston nitriding process during manufacture and failure of quality control to detect the omission.
## 2251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed on short of  the runway during approach. Crew error. The failure of the pilot to arrest the fast descent at a low altitude upon which he had erroneously decided after coming in too high.
## 2252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Failed to climb on takeoff and crashed into a bridge and some houses. Failure of the right engine.
## 2253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Midair collision. Twenty five killed on the DC-9, one on the Beechcraft. Failure of the DC-9 crew to see and avoid the Beechcraft. The DC-9 was traveling at almost 300 mph at low altitude in airspace occupied by numerous small planes. The contributing factor to the accident was the excessive speed of the DC-9.  ATC systems inadequate to separate controlled and uncontrolled traffic. After this accident, the FAA imposed a maximum speed of 250 knots below 10,000 ft. mean sea level.
## 2254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed and exploded  while en route.
## 2255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft struck the northwestern slope of Stukel Mountain just after takeoff. Loss of control due to ice accretion on airframe surfaces. The pilot should have required that de-icing fluid be applied prior to takeoff.
## 2256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flew into Colcanin Mountain in heavy fog while en route.
## 2257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft collided with trees and caught fire  50 miles from Yakutsk after the right engine caught fire.
## 2258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the sea. Most probably the captain suffered a heart attack and the first officer could not regain control of aircraft.
## 2259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Flight 9877 was scheduled to provide crew training for a captain trainee and a flight engineer trainee. In addition the flight engineer instructor was being given a routine proficiency check. The flight departed the ramp at 00:40 with the captain trainee in the left seat and the check captain in the right seat. At 00:43 the crew advised the tower they were ready for takeoff and would like to circle and land on Runway 1. The tower cleared them as requested. The aircraft was observed to make what appeared to be a normal takeoff and departure. At 00:47 the crew reported on base leg for Runway 1, and the controller cleared the flight to land. A subsequent discussion revealed that they would execute a simulated two-engine out approach, execute a full stop landing and then takeoff on runway 19. The tower controller observed Flight 9877 in a shallow left turn on what appeared to be a normal final approach. The degree of bank increased to approximately 60 degrees or greater when the aircraft hit the power lines approximately 2,300 feet short and 1,100 feet west of the runway threshold. The DC-8 crashed into a residential area, destroying several homes and a motel complex. Improper supervision by the instructor and the improper use of flight and power controls by both instructor and the captain trainee during a simulated two-engine out landing approach.
## 2260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ditched in the ocean 2 km  off shore.
## 2261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a mountainside while descending to land at Tamanrasset. Cause unknown.
## 2262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed after flying through thunderstorm activity and being struck by lightning.
## 2263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The flight crashed while making a second landing attempt. Misjudgement by the pilot during approach. Both pilots exceeded their duty time by 3 hours at the time of the crash. The first officer had less than 50 hours flying time in a Britannia.
## 2264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Stalled and crashed shortly after taking off.
## 2265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed at the west end of of the runway on takeoff while on a demonstration flight. Overloaded.
## 2266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The de Havilland and Piper collided while attempting to land at La Guardia Airport. The Piper did not reply to instructions from the tower and landed without clearance. Congested traffic pattern. Inadequate spacing of traffic were contributing factors. All three killed on the Piper.
## 2267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed short of the runway in whiteout conditions. Improper  procedures by crew in whiteout weather conditions.
## 2268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane rolled to the right and crashed inverted. Failure to abandon a training maneuver under conditions which precluded the availability of adequate flight control.
## 2269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a mountain while attempting to land. Series of errors by the crew due to intoxication by carbon monoxide fumes. Difficulty in communication between the ATC and crew due to lack of phraseology.
## 2270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed a during a landing attempt. Loss of power in both starboard engines resulting in control difficulties. Fuel starvation due to inadvertent fuel transfer. Inadvertent fuel transfer in flight on a scale sufficient to involve the risk, after a long flight, of emptying the tank expected to contain sufficient fuel can occur if the fuel selector levers in the cockpit of this type of aircraft are incorrectly positioned by even a small amount. This is easy to do and difficult for the pilot to recognize.
## 2271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed on final approach.
## 2272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a residential neighborhood while attempting to return to the airport following an engine failure.
## 2273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The pilot attempted an overshoot maneuver, following the stoppage of the port engine, at too low a speed (below the minimum control speed) resulting in an uncontrollable turn towards the Airport buildings.
## 2274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot became lost and ran out of fuel crashing into a swamp. Wreckage was found in the jungle 10 days later.
## 2275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed after an aborted takeoff caused the plane to break apart and catch fire.
## 2276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The flight crashed after an in-flight fire destroyed the pitch control systems. Incorrect installation of a valve caused hot air to ignite hydraulic fluid. The fire resulted from engine bleed air flowing back through the malfunctioning non-return valve and an open air delivery valve, through the auxiliary power unit in a reverse direction, and exiting into the plenum chamber at temperatures sufficiently high to cause the acoustics linings to ignite.
## 2277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A mid-air collision occurred between the two aircraft as they attempted to land at the New River Marine Corps Air Facility located on the grounds of Camp Le Jeune.Tower personnel did not continuously  monitor the approach of the CH-53 in order to take more positive action to prevent the mid-air collision.
## 2278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while en route.
## 2279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ditched into the sea while on approach during a typhoon. Crew did not follow proper approach procedures.  The captain did not monitor the approach properly and the co-pilot mishandled the aircraft after descending below minimum altitude.
## 2280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a mountain in poor weather. Pilot error. Decision to fly VFR over rugged terrain in IFR conditions.
## 2281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision. The B-727 was climbing away from Asheville Airport when it hit the Cessna, about 8 miles from the airport at 6,000 feet.  Seventy-nine on the B-727 and  3 on the Cessna killed. Deviation from IFR clearance by the Cessna pilot. Confusing transmission by the ATC. Lack of secondary surveillance radar. John T. McNaughton, Navy Secretary designate killed along with his wife and son.
## 2282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed 2,500 feet beyond the runway while taking off from Ivato airport in fog. Lost power to both left engines and struck high ground while trying to return for an emergency landing in poor visibility.
## 2283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Struck a mountain in the Phou Pha Bon range while in a holding pattern. Encountered strong turbulence and downdrafts.
## 2284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed en route.
## 2285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unable to maintain altitude after taking off, the aircraft crashed 4,000 feet past the runway and burned. Cause unknown.
## 2286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft struck a mountain at 1,700 ft., exploded and disintegrated 10 minutes after taking off from Da Nang.
## 2287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While flying at FL 290 the aircraft was destroyed by a detonation of a high explosive device within the cabin under seat 4A or 5A which severly damaged the aircraft causing it to go out of control and structurally break up at FL150.
## 2288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed en route.
## 2289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into hill while on approach. Improper procedures used by crew.
## 2290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft descended too low and flew into the southern slope of Black Down Hill.  Descended through its assigned altitude for reasons unknown. Actress June Thorburn, 36,  killed.
## 2291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shortly before reaching V1, the nose gear tire blew causing severe vibration. The crew aborted the takeoff and overran the runway into the sea. Loss of directional control developing from separation of the right nose wheel tread.  Inability to stop within the normally adequate runway distance available due to use of differential braking, impaired performance and an increase in tail wind component and aircraft weight over those used in calculating the aircraft's acceleration /stoping performance.
## 2292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While on the takeoff roll a loud bang was heard as the aircraft passed a Delta plane and the takeoff was aborted. The aircraft overran the runway and crashed and burned. The inability of the TWA crew to abort successfully their takeoff at the speed attained prior to the attempted abort. The abort was understandably initiated because of the first officer's belief that his plane had collided with a Delta aircraft stopped just off the runway. A contributing factor was the action of the Delta crew in advising the tower that their plane was clear of the runway without carefully ascertaining the facts, and when in fact their aircraft was not a safe distance under the circumstances of another aircraft taking off on that runway.
## 2293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane climbed to 700 ft. and crashed into the ground. Malfunctioning artificial horizon and compass.
## 2294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft struck a tree short of the runway during an approach in snow. Procedural errors by the crew during the approach in adverse weather. The visual approach conducted at night and in deteriorating weather conditions without adequate altimeter cross-reference. The approach was conducted using visual reference to partially lighted irregular terrain which may have been conducive to producing an illusionary sense of adequate terrain clearance.
## 2295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed and burned on a slope of a mountain in light rain and low visibility as it diverted to Nha.Trang from it scheduled landing at Qui Nhon.
## 2296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed inverted into a river.
## 2297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane flew into 10,500 ft. Carpish Mountain,30 miles from Tingo Maria.
## 2298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The twin engine aircraft went into a spin and crashed into the icy waters of  Lake Monona in heavy fog and sank. The plane was three miles from landing at Madison. Cause undetermined. Singer, Otis Redding, 26, killed, along with his vallet and  four members of his Bar-Kays band. Trumpet player, Ben Cauley was the only survivor.
## 2299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed on takeoff. The failure of the crew to perform a pre-takeoff control check resulting in takeoff with the elevators immobilized by a control batten.
## 2300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        During poor weather and after a flyby, the pilot requested a Runway 18 approach. The pilot decided to make a visual approach along the middle of 3 diverging roads, which was aligned with the runway. Because of the fog, the pilot began his approach along the third road which extended to the Royal Thai Air Force fuel storage instead of Runway 18. When the aircraft got close to the ground, the pilot realized that he was approaching the wrong road. He tried to initiate a go-around but the aircraft became unstable as he raised the nose slipped to the left and stalled the plane. The No.1 engine hit the ground first, 200 meters from the airport.
## 2301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             During the approach to airplane was high above the glide slope. At an altitude of 250 m, 4 km from the runway, the crew added takeoff power and performed  a missed approach. Simultaneously  the right engine lost power. While the crew tried to feather the propeller, the aircraft lost altitude, rolled 40 degrees to the right and struck a snow-covered field about 500 m from the runway.
## 2302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entered an uncontrolled descent and crashed 92 km from Olekminsk. The cause of the accident could not be determined.
## 2303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into a mountain south of Dong Ha airfield.
## 2304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft hit Mt. Tobin 300 ft. below the peak and slid 1,000 ft. down the side of the mountain. Turbulent conditions caused the uncontrolled descent. The Salt Lake control center had, in response to its vector request, informed the crew that there were no storm cells and no reports of icing along the airway being used. As a result, the pilot was unaware that turbulence encountered would be hazardous, worse than that predicted at the time of take-off. These turbulent conditions apparently caused the uncontrolled descent of the aircraft into the ground. The pilot was technically not qualified for the type of aircraft and was aware of the general weather conditions and should have discontinued the flight..
## 2305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ice accretion on the lifting surface of the aircraft accompanied by moderate to severe turbulence, which resulted in loss of aircraft control by the pilot. When he tried to regain control over the aircraft the lifting surfaces were loaded beyond approved design limits, which brought about the disintegration of main parts of the aircraft in the air, and its subsequent impact with the ground.
## 2306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Touched down on the right side of the runway, bounced, crashed into landing lights and into the sea.  Inadequate supervision of the flight by the pilot-in-command. While attempting to go-around, the flaps were fully extended.
## 2307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Visual reference was lost in fog after the flare and prior to touchdown. The aircraft overran the runway and collided with a parked aircraft, some vehicles and two buildings. Failure to evaluate existing terminal weather information and to discontinue the attempt to land.
## 2308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Vanished without a trace over the Himalayas while en route. The remains of one victim from the plane were found in the Rohtang Pass in August 2003. The wreckage itself and other remains would be found in August 2005. Cause unknown, but believed to be premature descent due to bad weather, resulting in a collision with a mountain. On July 15, 2012 the debris was found over Dakka Glacier by mountaineers.
## 2309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft descended below the glideslope, struck trees and  a house, short of runway, at night, in poor weather. Pilot was not qualified to fly.
## 2310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into the Mekong River. Engine failure.
## 2311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After an emergency situation and emergency descent the plane broke apart at FL100 and crashed. One passenger survived. Fuel leak.
## 2312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft attempted a go-around after a small plane landed in front of it but was shot down by enemy ground fire. The plane was hit in the right turbine and crashed in flames.
## 2313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After reporting the field in sight, the aircraft struck the ridge of a dormant volcano. The crew initiated a descent from an incorrectly identified point while flying VFR.
## 2314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cashed into the sea. In-flight structural failure due to air loads exceeding the design strength, while flying into a thunderstorm cell.
## 2315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a hill shortly after taking off from the Indian Ocean island. The pilot did not follow the correct departure procedure of turning out towards the ocean after takeoff.
## 2316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft was believed to have gone into a spin or spiral dive with recovery at about 12,000 ft. The dive apparently caused structural damage which resulted in the aircraft plunging into St George's Channel, 10 miles east of Carnsore Point. Possible causal factors may have been metal fatigue, corrosion, flutter (vibration) or a bird strike.
## 2317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Midair collision. Both planes were in a landing pattern. The collision resulted in damage to the DC9's wing with fuel pouring out but the plane was able to make a safe landing.  Two killed on the Cessna, no one killed on the DC-9.  Inadequacy of current VFR standards. The DC-9 crew not sighting the Cessna in time to avoid it. Congested traffic pattern.
## 2318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Soviet cosmonaut Yuri Gagarin, 34, the first man in space, was killed along with his instructor, when the military fighter they were training in crashed approximately 30 miles east of Moscow.
## 2319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shortly after leaving the runway during takeoff the No. 2 engine caught fire. Through some confusion, the crew did not pull the fire shutoff handle. The fire continued to burn and while attempting to land, the No. 2 engine fell away. After the plane came to a stop, the wing tank exploded.
## 2320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while on approach 5 minutes from its destination. Failure of the right wing due to turbulence.
## 2321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While operating on its inaugural flight the aircraft crashed into a mountain en route after getting lost.
## 2322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A mid-air collision occurred between the two helicopters at about 1,000 ft. altitude.
## 2323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft took off from J. G. Strijdom Airport, climbed to an altitude of 600 ft. and then descended, crashing, about one minute after taking off 3 miles from the runway. Procedural errors during takeoff . Takeoff conditions in total darkness with no external visual reference. Stabilizer trim improperly set, spatial disorientation and preoccupation with after takeoff duties.
## 2324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while en route after encountering turbulence, possibly leading to a break-up of the aircraft.
## 2325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On a flight from Houston to Dallas the airliner flew into thunderstorms. While attempting to turn around by making a right hand turn, winds lifted the port wing, forcing the starboard wing down past 90 degrees.  A stall resulted from this unusual attitude, pitching the nose down. During the recovery maneuver, the starboard wing was over-stressed, separating from the aircraft followed by the the tail and engines. The aircraft crashed into a field. Pilot's decision to penetrate a line of thunderstorms and severe weather. Visual perception of the pilot may have been reduced by a near lightning strike.
## 2326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shot down by enemy fire while attempting to evacuate Kham Duc civilians.  The aircraft shook  violently, crashed and burst into flames in a ravine at the end of the airstrip.
## 2327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The helicopter suddenly descended to the ground with an erratic action of the main rotor blades and burst into flames. A faulty main rotor blade damper caused one of the rotor blades to detach for reasons undetermined and strike the fuselage.
## 2328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed in a nearly vertical attitude, 5 minutes after takeoff, 20 nm from the airport.
## 2329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed  1,200 meters short of the runway and hit a tree and caught fire in heavy rain on a night approach. Improper IFR operation. Misused or failed to use flaps. Descended below decision height. The aircraft was named "Clipper Caribbean."
## 2330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft flew into the side of Mt. Jaiskibel after turning in the wrong direction.
## 2331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A mid-air collision between three helicopters at 900 ft. (66-16202) (66-16592) (66-16601).
## 2332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Passenger inadvertentlly opened air stair door in flight, safety chain failed and passenger fell out.
## 2333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane's left wing struck the ground, the plane struck two other planes, burst into flames and came to rest on its back near a building. Failure of the port flap operating rod due to fatigue, permitting the port flaps to retract. This resulted in a rolling moment to port which could not be controlled.
## 2334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed after a third aborted landing attempt in poor visibility and blowing dust. Failure of the captain to maintain minimum altitude for reasons unknown. Poor judgement by the pilot in attempting a fourth landing.
## 2335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane descended below mimimum safe altitude and struck trees and crashed.
## 2336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a mountain.
## 2337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lost at sea.
## 2338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed on approach, 7 miles north of the runway. Positioning for final approach by means of a non-standard procedure. Delayed detection of the VOR radial.
## 2339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Midair collision with the Cessna which became embedded in the forward baggage compartment.  Three person on the Cessna were killed none on the Convair.  Lack of VFR separation. Inability of the Convair crew to detect the Cessna in sufficient time to take evasive action despite having been provided with three radar traffic advisories. Visual detection capabalities were substantially reduced by heavy accumulation of insect smears on the windshield and by haze, smoke and sun glare.
## 2340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft broke up in-flight after plunging from 21,000 ft. Failure of the aircraft's electrical DC generator control system.
## 2341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed on approach to Kanawha County Airport in poor visibility. The aircraft was being operated under VFR when it entered a shallow fog overlying the approach lights.  Unrecognized loss of altitude orientation during the final portion of the approach into shallow, dense fog. Disorientation caused by rapid reduction in the ground guidance segment available to the pilot at a point beyond which a go-around could not be initiated.
## 2342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The main rotor blade of the helicopter separated from the central hub. The aircraft spun to destruction as the tail cone sheared off. Metallurgical fault during manufacture of the main rotor blade spindle. Fatigue origin in area of substandard hardness and inadequate shot peening on main rotor blade spindle.
## 2343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ditched into the Mediterranean sea. Cause unknown.
## 2344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane crashed while returning to the airport for an emergency landing after the No. 1 engine failed on takeoff.
## 2345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a hill in poor weather conditons while flying raindeer hunters to a mountain location. One man survived by jumping from the plane seconds before it caught fire.
## 2346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on approach descending into the ground short of the runway. Deviation from the prescribed flight rules to accomplish a visual approach in adverse weather conditions.
## 2347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Midair collision. Pilot of Cessna failed to see and avoid other aircraft. Two aboard the Piper killed.
## 2348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The airliner crashed into the Mediterranean sea, 10 miles south of Nice Airport, while attempting an emergency landing 21 minutes after taking off. Prior to the crash a message was received that there was fire aboard in the rear of the cabin.
## 2349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While on final approach, the aircraft hit trees and crashed into a village and caught fire.
## 2350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed  into Rio Grande de Terraba, about 7 km west of the airfield. while attempting to land.
## 2351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After taking off he airplane went out of control and crashed in an open field located 7 km southwest from the airport. Engine failure.
## 2352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Tried to return to the airport for an emergency landing after an engine failed. While completing a last turn to join the approach path, control was lost and the airplane crashed in a field located few km from the airport.
## 2353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed en route after the pilot transmitted a Mayday reporting the failure of the No. 2 engine and inability to feather the propeller. It crashed 20 miles from the airfield it intended to make an emergency landing at.
## 2354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed into Moose Mountain during an approach. Execution of a non-standard approach.  Premature descent. The crew was not able to determine accurately its position because they had performed a non-standard instrument approach and there were no supplement navigational aids available for their use.
## 2355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane landed in the shallow waters of San Francisco Bay, 2.5 mile short of the Runway 28L. All 107 people aboard were safely evacuated off the plane without injury. According to the NTSB, the captain said he was making a coupled approach, but because of problems with his pressure altimeter, he was relying on the more accurate radio altimeter for verification of altitude. The captain looked up expecting to be 200 feet above the water but instead was nearly in the water. He applied power but it was too late. The captain did not cross-check the raw data glide-slope signals and didn't realize the ILS on-course position was far above where he was. The  improper application of the prescribed procedures to execute an automatic-coupled ILS approach. This deviation from the prescribed procedures was, in part, due t o a lack of familiarization and infrequent operation of the installed flight director and autopilot system.  As a result, Japan Air Lines changed their training procedures to stress command responsibilities, crew coordination and transition time for new type of aircraft. The aircraft was recovered from the San Francisco Bay 55 hours after the accident, repaired at a United Air Lines facility and eventually flow back to Japan where it was put  in service for many decades.
## 2356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on approach to the airport, in dense fog, the aircraft descended prematurely and its left wing clipped a 30 ft. light pole on the grounds of a fire station 1.8 miles northwest of the runway threshold. The plane then veered into the adjacent elevated western embankment of a freeway and broke up, spewing flaming wreckage across all six traffic lanes. Improper IFR operation. Misjudged altitude.
## 2357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after taking off after one of the engines failed.
## 2358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Broke up in severe turbulence at 11,500 feet. Failure of the right wing that was weakened by pre-existing fatigue cracks.  The turbulence was not forcast and not known to the flight crew.  Improper maintenance. Incorrect weather forcast.
## 2359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           En route from New York City, the airliner crashed in the Caribbean sea and exploded while descending for a landing  at Maiquetia Airport. Possible sensory illusion produced by the town lights on upslope. The aircraft was named "Clipper Malay."
## 2360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into trees in the snow, 2.5 miles short of the runway, during an instrument approach. Continuation of the descent below minimum descent altitude into obstructing terrain while both pilots were looking outside to establish visual reference to the ground. Improper IFR operation. Misread or failed to read instruments.
## 2361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed after a go-around was attempted in a snowstorm. Pilot in command continued VFR flight into adverse weather conditions and delayed in initiating go around. Weather conditions - down and up drafts.
## 2362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The stickshaker sounded shortly after VR. The aircraft rotated and climbed slowly.  The right wing contacted the snow covered ground 94 feet left of the extended centerline at a distance of 2,760 feet from the runway.  The aircraft rolled inverted and broke up.  The probable cause was an attempted takeoff with the flaps in a retracted position. This resulted from a combination of factors: a) inadequate cockpit checklist and procedures; b) a warning system inadequacy associated with cold weather operations; c) ineffective control practices regarding manufacturer's Service Bulletins; and d) stresses imposed upon the crew by their attempts to meet an air traffic control deadline.
## 2363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a mountain after being blown off course by a storm while en route.
## 2364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed during an instrument approach after a go-around, nearly inverted, into a hangar. Spacial disorientation of the crew precipitated by refraction of the landing or approach lights during transition from flying IFR to visual reference to the ground.
## 2365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Struck the slope of a mountain west of Soto la Marina in marginal weather,
## 2366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Last radio contact  from the aircraft was at 11:34 local 30 DME south of Port Hedland in moderate turbulence. The aircraft was seen descending rapidly. Wreckage was found 28 miles south of Port Hedland. The accident was caused by a crack originating at a bolt hole in the wing spar. Also, it was found that someone  had carried out an incorrect procedure on the spar, by forcing an oversize bush into the housing of the lower spar boom, resulting in damage which exacerbated the spread of the hairline fracture.
## 2367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter crashed into the water after a uncontrolled descent. Moisture in the servo cylinder vent ports froze causing the pilot valves ports to become inoperative causing the  pitch control to lock-up.
## 2368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Encountered extreme turbulence and downdrafts while en route near mountains.
## 2369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft descended below the glide slope and crashed into trees and a house short of the runway.  Incorrect setting of flaps and instruments.  The pilot inadvertently allowing the aircraft to descend below the glide slope during the final stage of an approach to land until it was too low for recovery to be effected.
## 2370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed, clipping tree tops short of the runway, in light snow while on approach. An excessive descent was not detected or corrected by the crew for reasons unknown. Possibilities include an altimeter failure or misreading of the instrument approach chart.
## 2371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was on approach to 07R when it crashed into Santa Monica Bay 6 miles short of the runway. The fuselage  broke into 3 pieces one of which floated for 20 hours. SAS did not authorize a back course approach to LAX.  A VOR approach was conducted without notifying the controlling authority. The crew was preoccupied with a landing gear light problem. Lack of crew coordination and inadequate monitoring of aircraft position which resulted in an unplanned descent into the water. The aircraft was named "Sverre Viking."
## 2372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Struck a mountain in poor weather while en route.
## 2373                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into Santa Monica Bay shortly after a night takeoff in poor weather and visibility. The aircraft was dispatched with the No. 3 generator inoperative. While this was allowed, United was required to repair the generator at the first airport where there were repair facilities. The aircraft flew for a total of 41 hours with the inoperative generator passing through airports that had the facilities to repair the generator. Soon after taking off, the crew reported a fire warning in the No. 1 engine and shut it down as required. For reasons that could not be determined, shutting down the No. 1 engine and it’s generator tripped the No.2 generator resulting in the loss of all electrical power in the aircraft. Following loss of all electrical power, the battery standby electrical system either was not activated or failed to function. Electrical power at a voltage level of approximately 50 volts was restored approximately a minute and a half after loss of the No. 2 generator. The duration of this power restoration was just 9 to 15 seconds. Regardless, the pilots did not have functioning attitude indicators from the time the No. 2 generator tripped. In the dark, with no outside or inside reference to guide them, the pilots became spatially disoriented and the plane eventually went into a dive and crashed into the Pacific Ocean 11.3 miles west of the airport and sank in 950 ft. of water. The accident was caused by the loss of attitude orientation during a night, instrument departure in which all attitude instruments were disabled by loss of electrical power. The investigation was not able to determine (a) why all generator power was lost or (b) why the standby electrical power system either was not activated or failed to function." One unproven scenario that is not contradicted by available evidence was the inadvertent placement of the battery switch to the "OFF" position by the flight engineer during attempts to remove galley loads from the generator buses. The galley switches were similar in shape and size, and were located on the flight engineer's upper panel in close proximity to the battery switch. Following the accident, the flight engineer’s panel was redesigned to place a guard over the battery switch.
## 2374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The flight designated "gambler's special" flew into  Mt. Whitney at 11,770 ft. about 11 miles west of Lone Pine.  Deviated from prescribed course, as authorized, resulting in the aircraft being operated under IFR weather conditions, in high mountainous terrain, in an area where there was a lack of radio navigation aids. Aircraft recovered 8/8/69.
## 2375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed after experiencing an engine failure during takeoff. The plane passed over a wooded area and belly-landed in a small cleared and skidded into a creek.
## 2376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the Sierra de Luquillo mountains. The vectoring of the aircraft by a ATC trainee into mountainous terrain under IFR  conditions without adequate clearance altitude.
## 2377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane went missing en route between Santa Maria and the Azores Islands.
## 2378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed after the pilot experienced spatial disorientation in a whiteout.
## 2379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Seconds after becoming airborne, the aircraft struck electrical power lines and crashed into houses in the La Trinidad section of the city. Takeoff calculations made from erroneous information. Faulty temperature sensor along the runway. San Francisco Giants pitcher Nestor Chavez, 22,  killed.
## 2380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A sand storm in the Aswan area caused the visibility to drop from 10km to 2-3km. The plane made 2 missed approaches and was approaching for the third time when it  banked right causing the right wing to contacted the left side of the runway . The wing broke off and the aircraft crashed in flames. The pilot descended below minimum safe altitude without having the runway lights clearly in sight. A contributing factor was pilot fatigue.
## 2381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while landing in fog. The aircraft was being operated under VFR when it entered a shallow fog overlying the approach lights. Failure of the crew to discontinue descent into conditions below minima upon reaching the decision height. Improper IFR operation. Misunderstanding of instructions. Exercising of poor judgment. Poor crew coordination. Pilot fatigue.
## 2382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was on a flight from Warsaw to Cracow when it crashed into the Babia Gora mountains. The aircraft deviated from its normal route in heavy fog for unknown reasons.
## 2383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As the helicopter was taking off in a vertical climb, there was a loss in rotor speed and the aircraft touched down on the edge of a ravine and rolled over causing the rotor blades to strike the ground and a fire to erupt.
## 2384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo aircraft crashed into the ocean after a reported fire.
## 2385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A fire in the left landing gear caused the plane to return for an emergency landing. After landing to a full stop,  control was lost of the No.1 engine. Loss of control of the left main gear brakes caused the aircraft to circle to the right during the evacuation. Overheating of the starter selector relay during the starting of the No.1 and 2 engines. The proximity of a wire bundle to the relay provided a source of combustion for the initial fire.
## 2386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft was shot down over the Sea of Japan by two North Korean MiG jet fighters while making a reconnaissance flight.
## 2387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane developed landing gear trouble while attempting to land at Luluaburg. The pilot chose to return to Kinshasa. He was circling to use up fuel when the accident occurred. The plane crashed into the Congo River. Leased to the Congolese Air Force. Possible fuel exhaustion,.
## 2388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed in adverse weather conditions. Windshear. The crew tried to fly through thunderstorms at a low level but lost control in severe downdrafts.
## 2389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft struck high ground after engine problems required  a forced landing.
## 2390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As the helicopter was taking off, the landing gear became entangled in some wire which dragged the aircraft down and caused it to fall over a cliff.
## 2391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lifted off prematurely to avoid a parked aircraft and struck trees.
## 2392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lost control on approach and nosed into the ground in a field. Flap asymmetry in the final stages of the flight.
## 2393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Landed short of the runway and hit a wall. Misjudgement by the pilots of the distance between the aircraft and the ground during the final phase of the landing approach.
## 2394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While the crew was descending and attempting to align with the runway, the plane hit high ground, several kilometers from the airport, in poor weather conditions. Excessive speed and wide radius of turn took the  aircraft out of the designated descent area and over rising terrain.
## 2395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Vanished en route. A message was received from the aircraft stating they were experiencing a vibration but not declaring an emergency followed by "crew go to oxygen."
## 2396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A soviet air force plane carrying 91 paratroopers collided with a passenger airliner at 3,000 m. The IL-14 pilot changed altitude without permission to avoid storm clouds. Twenty-four killed on the IL-14 and 96 on the An12.
## 2397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The passenger plane struck a mountian 34 km from Talas. Crew error. The crew made a right turn  towards the mountains instead of  a left turn.
## 2398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft descended in a near vertical dive crashing to the ground. Unwanted change in longitudinal trim which resulted in a nose down high-speed flight condition that was beyond the physical capacity of the pilots to overcome. The initiating element in the accident sequence could not be specifically determined. However, design of the aircraft flight control system was conducive to malfunctions of the flight control systems which, if undetected by the crew could lead to loss of control.
## 2399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Collided with trees on a cloud covered mountain summit. The plane was 10 miles from its destination when it crashed. Weather was poor at the time of the accident.
## 2400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane flew into wake turbulence and crashed.  The pilot was 12 minutes behind schedule and made an intersection takeoff. The tower warned him of wake turbulence from a recently departing jet.
## 2401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The sightseeing flight collided with trees after experiencing an engine failure. Failure of valve assembly. Pilot-in-command exercised poor judgment. Unwarranted low flying.
## 2402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crash landed while attempting an emergency landing after a fire in an electrical panel led to a cabin fire.
## 2403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed during a missed approach procedure. A loss of directional control, which resulted from the intentional shutdown of the pumps supplying hydraulic pressure to the rudder without a concurrent restoration of power on the No.4 engine. A contributing factor was the inadequacy of the hydraulic fluid loss emergency procedure when applied against the operating configuration of the aircraft.
## 2404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              At an altitude of 4,000 m the propeller separated from the left engine.The blade punctured the fuselage, severing elevator and aileron controls. The crew could not control the plane  anymore. It went into a spin and crashed.
## 2405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed while attempting to land.
## 2406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed into a hillside as it was about to come in for a landing and after the pilot was shot.
## 2407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed under unknown circumstances.
## 2408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On final approach to Moscow-Vnukovo, the flying crew failed to lower the landing gear.
## 2409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The crew encountered below-minima weather conditions with low clouds over the mountains.The airplane struck the slope of a mountain
## 2410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The single engine plane took off at night in rainy weather despite warnings of a building storm front. Fighter, Rocky Marciano, 45,  killed. The pilot was not cleared to fly IFR and had only 35 hours of night flying experience. The plane got as far as Newton, Iowa. The plane was seen flying barely 100 feet off the ground when it entered a rolling bank of clouds. Reappearing once, it rose and disappeared again. The plane crashed into a lone oak tree in the middle of a corn field. After a stop at Des Moines, Marciano was on his way home to attend his birthday party. Pilot attempted operation beyond experience/ability level. Continued VFR flight into adverse weather conditions. Spatial disorientation.
## 2411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed into a hillside 24 km from the airport in poor weather while on approach.  Failure of the crew  to reduce speed and approach in weather worse than the specified minimum.
## 2412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed near the Meking River after being unable to land because of lowe clouds and  running out of fuel.
## 2413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Twelve men and a woman, some of them armed with machine guns, hijacked two TAME Ecuador C-47 planes. The hijackers shot and killed one crewman and wounded another. Both aircraft landed at Tumaco (TCO), Colombia for refueling. One airplane was left behind as the hijackers continued to Panama City-Tocument Airport (PTY). After a 31-minute refueling stop the C-47 continued to Kingston (KIN), Jamaica. The plane left Kingston at 21:00 after a 71-minute refueling stop. The flight finally landed at Cuba. The hijackers told passengers that the hijacking was in retaliation for the deaths of several students in May 1969 during anti-government riots at the University of Guyaquil in Ecuador.
## 2414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Flew into a mountain, 30 miles from its destination after being diverted because of a severe storm.
## 2415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Midair collision at 2,500 ft. The Piper crashed into the tail of the DC-9 as it prepared to land. Eighty-two killed aboard the DC-9, one aboard the Piper.  Inadequate VFR separation and deficiencies in the ATC system in the terminal area with mixed VFR/IFR traffic.
## 2416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Landed short and crashed into a tree during it's approach. Possible faulty altimiter. The weather was clear.
## 2417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fifteen minutes after leaving Londina, the port engine was feathered and aircraft returned to Londrina. The plane crashed while attempting a go-around after a failed landing attempt. The only survivor was a crew member thrown clear of the accident.
## 2418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a hill  while attempting to land in inclement weather. Non-compliance with the instrument approach procedures. Pilot error.
## 2419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Midair collision. The F-4E landed safely. The DC-4 crashed, killing all seventy-five aboard and two on the ground. Misconstrued instructions on landing by the DC-4.
## 2420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During an approach, the plane undershot the runway and landed about a mile short, hitting an embankment . The plane became airborne again until the undercarriage and forward fuselage struck a railway embankment and broke up. Undetermined cause.
## 2421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hit 15,500 ft. Mt. Choquetanga. Cause unknown. All members of the Bolivian soccer team The Strongest, killed.
## 2422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed  into trees on approach short of the runway.
## 2423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while flying from Subi Point in the Philippines to an aircraft carrier. Possible engine failure.
## 2424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed 1,090 mshort of the runway while on approach A propeller accidently feathered when the de-icing system was activated causing the plane to lose altitude and crash.
## 2425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed after returning to Timmins because of poor weather. The pilot made inadequate pre flight preparations for a flight into known marginal weather. The pilot descended below the minimum altitude. The pilot exposed himself and his crew to the effects of fatigue by attempting a flight after a long period of duty.
## 2426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed on approach. Icing.
## 2427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Struck trees on the northwest slope of Pilot Knob Mountain, and impacted a rock cliff, after which the aircraft fell 38ft, becoming lodged between trees. The captain exceeded his clearance limits and flew the aircraft into a severe "lee side" mountain downdraft at an altitude insufficient for recovery.
## 2428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed and burned 8 miles from Lagos Airport where it was to have landed. Cause unknown.  Possibly insufficient monitoring of equipment. Allowing the aircraft to come down to an unsafe altitude without contact with the ground.
## 2429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         At a height of 3,000 ft., the aircraft suddenly nosed  into the sea, 3 minutes after taking off. Cause unknown.  It appears that the report has been classified by the French Authorities until 2029.
## 2430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The VFR rated pilot continued flight in poor weather. Airframe icing caused the left wing to fail in flight. The aircraft lost control and crashed. The Lodestar was not equipped with deicing boots.
## 2431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed short of the runway on approach. Icing.
## 2432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into Mt. Pan, 25 miles SW of Athens while preparing to land. The flight crew deviated from the proper track and descended below the minimum safe altitude during approach.
## 2433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ATC lost contact with the aircraft shortly after it took off crashing into the ocean. Cause unknown. Possible collision with a flock of birds.
## 2434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               An explosive device was detonated in the cabin just as the aircraft was about to land. The blast damaged the aircraft's hydraulics. The aircraft became airborne, overran the runway and crashed into a school.
## 2435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while approaching Luang Prabang Airport in thick fog.
## 2436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane developed trouble in the No. 4 engine and the takeoff was aborted and the plane returned to the gate.  It was decided to continue the ferry flight to Zurich on three engines.  As the aircraft started its take-off roll the nose yawed to the right. This was corrected by retarding no.1 engine power. The aircraft rotated at 134kts with 27deg. Flaps. While climbing, the aircraft banked 4 to 6 degrees to the right and the airspeed dropped to 10kts below V2. The plane then contacted some tree tops, banked 10 to 15 degrees and crashed. Unexpected early loss of external visual reference after take-off and loss of directional control during transition from visual to instrument flying. Windshear.
## 2437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft, carrying paratroopers, crashed into a mountain in fog.
## 2438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into a lagoon 400 yards past the end of the runway, seconds after taking off after the plane pitched up and stalled. Windshear, precipitation and turbulence.
## 2439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Flew into a 10,500 ft. mountain. The mental state of the pilot-in-command adversely affected his judgement and efficiency. Contributing factors  ATC error, navigational aids not functional.
## 2440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed short of the runway after entering a thunderstorm and encountering windshear.
## 2441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into Vega Hill located six km east of the airfield while on approach. The plane was carrying Mexican journalists covering the presidential campaign.
## 2442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a mountain while on approach after executing a premature descent.
## 2443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft suffered an airframe failure while en route. Fatigue fracture of wing attachment fitting bolts. FAA replacement time exceeded.
## 2444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Collided with a snow-covered rocky mountain slope 40 km northeast of Batagay Airport at an altitude of 1020 meters. The crew had initiated a descent prematurely.
## 2445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While descending in poor weather conditions, the airplane struck tree tops, stalled and crashed in a snow covered hill located in the Vladeasa Mountain Range, about 73 km southeast of Oradea Airport.
## 2446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed in a storm 8 minutes after taking off. Went into a dive and crashed at a high rate of speed into the ground. Severe turbulence and adverse weather conditions.
## 2447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a mountain at an elevation of 5,000 ft. 32 km northeast of Samarkand Airport.  Misidentification of the aircraft by the air traffic controller.
## 2448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into Long Island Sound while on a flight from Groton to New York.  Fuel exhaustion resulting from inadequate flight preparation and erroneous in-flight decisions by the pilot-in-command.
## 2449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed while attempting to return to the airport after reporting an overspeeding propeller.
## 2450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Two minutes after taking off , the crew reported losing an engine and turned back towards the airport. The plane then descended rapidly and crashed into the sea. Featherweight boxer Carlos Cruz and members of  the Puerto Rican women's national volleyball team killed.
## 2451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed under unknown circumstances.
## 2452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 About 9 minutes after taking off, the crew reported trouble with the aircraft's cabin pressure and radioed they were returning to the airport. The crew reported they suspected an explosion in the aft cargo hold. While returning to the airport the crew lost navigational instruments and electrical power. The cockpit filled with smoke and the plane crashed into a forest. Detonation of an explosive device in the rear section of the passenger cabin shortly after takeoff. A bomb with an altimeter trigger was believed to have been placed in a package mailed to an Israeli address by Palestinian extremists.
## 2453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed 3 km short of the runway into a snow bank. Disintegration of the No. 1 engine turbine wheel.
## 2454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into Guajara Bay, short of the runway while on approach during a storm.
## 2455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The pilot tried to stretch the approach to avoid workers on the runway, ran out of runway, attempted a go-around, was unable to gain altitude and crashed into several structures, trucks and a U.S. Navy Jet.
## 2456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Flew into thunderstorms and turbulence, crashed while en route. Continued VFR flight into adverse weather conditions. Spatial disorientation.
## 2457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed after colliding with a radiosonde weather balloon and disintegrated in the air.
## 2458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed 9.7 km short of the runway during approach in the fog and broke in two. During the descent, the fire alarm connected to the right engine came on in the cockpit and the flight engineer immediately switched all the power of the hydraulic pumps on the engine that the captain was shutting down, which blocked the transfer actions until the power supply on the left engine would be reactivated. At impact, controls started to function again but it was too late for the pilot-in-command to expect recovery.
## 2459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was destroyed when it crashed while on approach. The crew descended prematurely and was not monitored.
## 2460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft was on a flight from Cauayan, Isabela to Manila when it crashed into mountainous terrain after a bomb explosion in the rear lavatory of the aircraft  broke off the tail section.
## 2461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed after experiencing engine problems during the initial climb.
## 2462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while on approach to a dirt strip.The probable cause of the accident was that the pilot persisted with such determination or confidence in his attempts to reach his destination in the face of deteriorating weather conditions, that he did not ensure he could safely discontinue the approach at any time and still maintain visual reference to the significant terrain.
## 2463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The flight was scheduled to fly from New York to St. Maarten. Because of poor visibility, the aircraft could not land at St. Maarten and was diverted to San Juan, Puerto Rico. Five minutes later the crew was told the weather had improved at St. Maarten and were directed back. After 3 missed landing attempts at St. Maarten, the crew asked to be diverted to St. Thomas. By this time, the plane was very low on fuel and the crew chose to divert to St. Croix. While trying to make St. Croix, the aircraft ran out of fuel and ditched into the sea, 35 miles from shore, sinking in 5,000 ft. of water. Improper management of fuel by the crew. Continued, unsuccessful attempts to land at St. Maarten until insufficient fuel remained to reach an alternate airport. A contributing factor was rain showers in the approaching zone not reported to the crew. Inadequate warning given to passengers before the ditching.
## 2464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The airplane struck trees and crashed on a mountain slope located eight miles from the airbase.
## 2465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After losing all flight controls on approach, the aircraft hit the runway hard, collapsing the nose gear and sliding off the runway. In-flight fire of unknown origin which resulted in loss of the flight controls.
## 2466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In almost zero visibility, control was lost during takeoff. The plane ran off the runway, the wing tip struck a rock pile and the plane cartwheeled.
## 2467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft, cleared for an instrument landing, broke through scattered clouds at 400 feet, landing short of the runway, crashing into trees and exploding into a ball of fire. Illusions produced by the lack of visual cues during a circling approach over unlighted terrain at night to a runway not equipped with approach lights or other visual approach aides. Possibility of altimeter error. United Auto Worker's President, Walter Reuther, 63, and his wife killed along with Oskar Stronorov, William Wolfman and pilots George Evans and Joseph Karrafa.
## 2468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             On final, the airplane banked left, lost height and crashed in a large explosion a few km short of runway threshold. Pilot error.
## 2469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While on approach, the plane banked to the left and crashed to the ground. The pilot stalled the plane in turbulence at a low altitude.
## 2470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   There was a loss of power as the aircraft climbed after taking off from DeKalb Peachtree Airport. The plane touched down and slid along a highway for one-half a mile striking a automobile killing 5 people. Loss of effective engine power because of improper fuel having been placed in the tanks by relatively untrained personnel. A contributing factor was the flightcrew did not detect the error.
## 2471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Undershot runway in fog and crashed after two failed landing attempts. Crew error.
## 2472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A hand grenade exploded inside the passenger cabin at FL130 . A safe emergency landing was made despite a 9 sq. ft. hole in the fuselage.
## 2473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Struck a 15,000 ft  mountain located in the region of Huaricanga.
## 2474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into trees shortly after taking off. The pilot rotated at V2 speed and then reduced power when the copilot raised the landing gear.The right main gear was still on the ground when retracted, causing the propeller to strike the runway surface.
## 2475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Due to heavy traffic, the flight was diverted from the planned route. The aircraft failed to follow the assigned airway and crashed into a cloud obscured Montseny Mountain while on approach. The deviation from the assigned airway may have been caused by malfunctioning equipment. In addition, the ATC did not realize the aircraft was deviating from its assigned course.
## 2476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While attempting to land at Toronto, at approximately 60 feet above the runway, the spoilers were inadvertently deployed causing the aircraft to fall to the runway and lose the No. 4 engine. With the wing on fire, the captain decided to go-around but while circling the plane lost the No. 3 engine and eventually went into a steep dive and crashed. Inadvertent deployment of the spoilers by the first officer while the aircraft was still in the air. Faulty design by allowing the spoiler handle to perform two different unrelated tasks (lift to arm and pull to deploy). After the crash McDonnell Douglas denied there was any design flaw and the FAA decided to issue an Airworthiness Directive requiring a warning placard on all DC8s. After two and possibly three more crashed with the same cause an AD was issued requiring a safety lock be installed.
## 2477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Disappeared without a trace while en route with a final destination of Peru, 40 minutes after takeoff. The plane was carrying a field hospital to earthquake stricken Peru.
## 2478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cargo plane. An unarrested rate of descent due to inattention of the crew to instrument altitude references while the pilot was attempting to establish outside visual contact in meteorological conditions which precluded such contact during that segment of a precision radar approach inbound from the Decision Height.
## 2479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Broke up and crashed after penetrating a thunderstorm 50 miles south of Las Vegas.
## 2480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into terrain after takeoff in thunderstorms and strong winds.
## 2481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The flight crashed shortly after takeoff after the No. 3 engine failed. Procedural error after an emergency occurred. With flaps retracted, the aircraft lost altitude and crashed while in a turn. The improper execution of engine-out procedures by the flight crew with contributing factors of improper loading of the aircraft and improper maintenance procedures by company personnel.
## 2482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed on Yuan mountain while on approach to Taipei during a thick fog and thunderstorm activity.
## 2483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shot down by a rocket grenade.
## 2484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed in jungled hills shortly after takeoff. The pilot didn't climb to the minimum sector altitude and continued directly to Gauhati.
## 2485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Struck trees and crashed on Haringvreter Island. he pilot suffered spatial disorientation after entering a fog bank. The pilot was not IFR qualified.
## 2486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane lost control and crashed about 30 minutes after taking off. Cause undetermined.
## 2487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while cruising at FL270.
## 2488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a mountain after the captain descended over mountainous terrain without knowing his position. Poor flight planning, erroneous in-flight decisions and navigation errors on part of the flying crew caused the aircraft to be off-course at the time of the accident, resulting in a controlled flight into terrain.
## 2489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rejected takeoff. Lost control and crashed. Loss of pitch control caused by the entrapment of a pointed, asphalt-covered object between the leading edge of the right elevator and the right horizontal spar web access door in the aft part of the stabilizer.
## 2490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the slope of Mt Knuku mountains on Mueggenaes Island at  an altitude of 1,500 ft., 2 miles off course, while descending, after holding for 20 minutes.
## 2491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Flew into high ground after being diverted to Da Nang in poor weather conditions.
## 2492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Two charter planes took off Wichita for a flight to Logan, Utah via Denver. The flight was uneventful to Denver.  The crew of N464M decided to fly a scenic route the rest of the way to Logan. The aircraft, which was overloaded by 5,165 lbs. , flew into a box canyon. Confronted with steeply rising terrain, the pilot made a sharp bank trying to turn around in the narrowing valley and stalled, crashing into a mountainous forested area on  Mt. Trelease. Numerous members and staff of the Wichita State Football team were killed. The pilot had only 123 total hours in a Martin 404, the copilot 30 hours. Intentional operation of the aircraft over a mountain valley route at an altitude from which the aircraft could neither climb over the obstructing terrain ahead, nor execute a successful course reversal. Other factors included overloaded conditions, lack of a flight planning and minimum qualifications of the crew.
## 2493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft struck a mountain ridge 6 minutes after taking off from Taipei. Deviation off course while flying  IFR in zero visibility.
## 2494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed into a mountainside 20 minutes after taking off. NASCAR driver Curtis Turner, 46, was killed along with pro-golfer Clarence King. Tuner, who was flying the plane, had a blood alcohol of 0.17. Alcoholic impairment of efficiency and judgment.  Evidence showed that Turner had a severe heart attack prior to the accident.
## 2495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shortly after takeoff, the No. 1 engine failed.  After feathering the prop, the crew tried to return to the airport but the plane crashed 1.2 miles from the airport. The plane was carrying employees of the Anglo American Corporation.
## 2496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The crew of the cargo plane became disoriented and struck the ground 5,000 ft. short of the runway. Fog, low ceiling, spatial disorientation, improper IFR operation.
## 2497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed while attempting to make an emergency landing.
## 2498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While on approach, the aircraft crashed one mile short of Runway 11 at Tri-State Airport in rain and fog. Thirty-six players and 5 coaches on the Marshall University football team were among those killed. Improper procedures executed by the crew. Descent below Minimum Descent Altitude during a nonprecision approach under adverse operating conditions, without visual contact with the runway environment. The reason for this descent was not able to be determined, although the two most likely explanations are ( a ) improper use of cockpit instrumentation data, or (b) an altimetry system error .
## 2499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into high ground on a mountainside while on a flight from Saigon to Nha Trang Air Base. Cause unknown.
## 2500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The military charter overran the runway during takeoff, hit the ILS localizer support structure and burst into flames. The lack of acceleration, undetected by the crew  until after V1 speed was reached caused by the main landing gear wheels remaining locked after power was applied for takeoff on the icy runway due to brake or hydraulic failure.
## 2501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the jungle 15 miles from it destination as the pilot prepared to land at Saigon in poor weather conditions.
## 2502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The hydraulic gust lock system on the cargo plane activated in flight, causing the controls to lock. The rudder was blocked in neutral position and the ailerons in a upper position. The hydraulic back pressure had built up because of a malfunctioning switch valve when hydraulics where armed on descent.
## 2503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The No. 2 engine failed on takeoff due to fuel starvation. The plane made a right turn, lost control and crashed.
## 2504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed 4 kms short of the runway on approach in poor weather after being diverted to Bucurest. The visibility was limited due to fog and the crew continued the approach below the minimum descent altitude, in violation of the published procedures.
## 2505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft experienced a hard landing which caused it to bounce. The crew executed a second touchdown which caused the main landing gear to fail. The aircraft veered off the right side of the runway, passed through the airport perimeter fence, crossed a paved highway and hit an embankment. Captain's use of improper techniques in recovering from a high bounce generated by a poorly executed approach and touchdown.
## 2506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The pilot declared an emergency and reported his position 65 nautical miles north of Algie. No trace of the aircraft nor the 31 occupants was found.
## 2507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ditched in the ocean. Mayday received. No trace of the plane ever found.
## 2508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed during takeoff on a flight to Erevan. Due to poor flight preparation and lack of coordination, the crew failed to follow the pre-takeoff checklist and failed to deploy the flaps prior to departure, according to the published procedures.
## 2509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed 7 kms from the runway in a sandstorm. Decision to land while visibility was below company minimums for that particular airport at night.
## 2510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Midair collision at 3,000 ft.  Failed to see and avoid other aircraft. The Boeing 707 landed safely. Two killed on the Cessna.  System permitted VFR operation in congested area in reduced visibility.
## 2511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The crew decided while on the ground at Paris not to stop at Zurich but later, while in flight, changed their minds when they received reports of improving weather. The plane crashed during the approach to Zurich after drifting to the right and below the glide path. The left wing tip and landing gear struck the ground first.The crew neglected several published procedures which led the aircraft to pass below the minimum descent altitude and the approach path.
## 2512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in the Andes mountains after experiencing engine trouble.
## 2513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed and exploded  in a snowstorm in mountainous terrain. Thirteen of France's nuclear weapons experts were killed. The crew may misunderstood and mixed both altitude clearances of 8,000 feet till Montélimar and 5,000 feet till Orange, descending prematurely.  Controlled flight into terrain.
## 2514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed 15 km short of the runway. Icing. The engine bleed valves were not open causing  the anti-icing system to become ineffective.
## 2515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crash landed on a beach after a hijacker detonated grenades he was carrying. The hijacker and the co-pilot were killed by the grenade explosions.
## 2516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crash landed onto Cruces de Daji mountain in the Andes eight minutes after taking off off from Merida.
## 2517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Aileron oscillations coincided with flap extension. The crew misunderstood aileron oscillations for asymmetrical flap extension and retracted the flaps. The airspeed dropped to 172 knots and the aileron suddenly deflected causing a left roll. The aircraft undershot the runway and crashed. The hinge moment reversal on the ailerons caused by icing.
## 2518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cashed into a mountain 15 minutes after taking off in poor weather conditions. Controlled flight into terrain.
## 2519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hit  a mountain after deviating from the prescribed course. Wreckage found 6 days later. Controlled flight into terrain.
## 2520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft, during a training flight suddenly rolled to the left and  crashed after a missed, 3 engine, ILS approach. Failure of the aircraft rudder hydraulic actuator support fitting which led to the loss of left rudder control. Stress corrosion cracks.
## 2521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed on approach resulting from structural failure of the right outer wing. A portion of 13 m2 detached from the upper surface of the right wing during the approach, causing the aircraft to be uncontrollable.
## 2522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a rice field moments after taking off from Basa Air Base near Floridablanca. Climbed to 200 ft. banked to the left, stalled and crashed to the ground. Failure of the right engine. A young boy was the only survivor.
## 2523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft experienced engine failure during takeoff and crashed. Fuel starvation. Fuel selector positioned between tanks. Pilots unfamilarity with aircraft. Had only 1 hour in type aircraft.
## 2524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shortly after takeoff from Guatemala City-La Aurora Airport, while climbing, the crew declared an emergency after an engine failed. The captain elected to return but the airplane lost height and crashed in a hilly terrain located 24 km south of the capital city.
## 2525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed on landing at Rijeka Airport during a heavy rain storm. After a too rapid descent, the aircraft landed extremely hard on the runway causing the left wing to separate. The aircraft turned over and slid 2,300 ft. and burst into flames. Improper handling of the flight and engine controls. Optical illusion due to the intense rain which caused a refraction of light.
## 2526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane lost an engine while taking off and crashed 2 km from the airport..
## 2527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The flight crashed into the side of a mountain during a thunderstorm. Continued VFR flight into adverse weather conditions.  Entered instrument weather at too low an altitude to clear mountain.  World War II hero and western movie star Audie Murphy, 46, killed.
## 2528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The DC-9 was climbing to FL 330 under radar control of the LA ARTCC and the F4-B was en route to El Toro under VFR. Visibility was good with no clouds. The collision took place at 15,150 feet. Both planes crashed into the San Gabriel Mountains. One of two killed on the F4 when the forward canopy did not jettison. The other crew member parachuted to safety unhurt. All forty-nine killed aboard the DC-9. Failure of both crews to see and avoid each other and failure of the F4 crew to request radar advisory service and particularly considering the fact that they had  an inoperable transponder.  Allegations also surfaced that the F-4B was performing an aerobatics maneuver shortly before the collision.
## 2529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into a row of beach houses, 4,980 feet short of the runway. Captain's intentional descent below minima under adverse weather conditions while trying to locate the runway despite advisories from 1st. officer.
## 2530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared while en route. Met with an undisclosed catastrophic event and plunged into the sea. Believed to  have struck the surface at high speed.
## 2531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft struck Putre Mountain at an altitude of 18,000 feet.  Improper flight planning for IMC weather.
## 2532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft was unable to gain height on takeoff. It struck a transformer and a building, became airborne and went off a cliff into the ocean. Failure of the pilot to remove the rudder and elavator gust locks.
## 2533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into Yokotsu Mountain while on approach. Navigational error after strong winds caused flight to drift.
## 2534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into high terrain during a right turn on takeoff at night.
## 2535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While on a VOR/DME approach to Manila runway 24, the cargo aircraft struck Mount Kamunay at an altitude of 2,525 feet, 20 miles east/northeast of the Manila VOR. The probable cause was improper crew coordination, which caused a premature descent.
## 2536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While landing at Irkutsk Airport the aircraft landed short of the runway after an excessive rate of sink. The left wing separated and the plane burst into flames. Procedural errors by the crew. The aircraft' speed was 32 km/h lower than the prescribed speed when the vertical speed was too high, which prevented the pilots to complete a correct touchdown and avoid the violent impact with the runway surface.
## 2537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane, carrying parachute trainees, crashed in the flatlands of the Pyrenees during a final approach and after experiencing an engine fire. Two escaped by parachuting out of the plane before it crashed.
## 2538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A Japan Air Self Defense Force F-86F fighter collided with the B-727. Both aircraft crashed, but the fighter pilot ejected safely. All one hundred sixty-two aboard the 727 were killed. The fighter pilot and his captain was indicted for involuntary homicide. The fighter pilot was acquitted but the captain was convicted and received 3 years in jail for not providing sufficient supervision of his wingman.
## 2539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft struck approach lights at the departure end of runway during takeoff. Miscalculation of available runway length and takeoff reference speed by crew. Erroneous information from the dispatcher. The aircraft was named "Clipper America."
## 2540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter, carrying American troops to an exercise, crashed into a hayfield and exploded in flames. Fatigue failure of the rotor blade led to its failure and structural failure of the aircraft.
## 2541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in dense fog while making an approach to Agusta State Airport. Discontinue VOR approach, attempted to maintain visual flight in IFR conditions at an altitude below obstructing terrain.
## 2542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Disappeard from radar while eight miles short of the runway and crashed into the sea while on approach. Crew error. Crew flew below prescribed minimum altitiude.
## 2543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into the slopes of Chikat Mountain in rain and fog while attempting a non-precision instrument landing at Juneau Municipal Airport. Display of misleading navigation information which resulted in the premature descent below obstacle clearance altitude. The crew didn't use all available navaids to check the position of the aircraft.
## 2544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft collided with a bridge shearing off both wings after a double engine failure during takeoff.  A forced landing was attempted on a roadway. The water-injection system to cool the engines during takeoff was inadvertently filled with kerosene instead of water.
## 2545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane crashed while taking off. Icing.
## 2546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While on approach to Kiev,   generator failed forcing the crew to switch to batteries. After two aborted attempts to land in fog, the plane crashed and broke up.
## 2547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on Sveti Duh peak in the Rila mountains while en route. While giving directions to the aircraft, the ATC confused the aircraft with another Turkish aircraft which was flying almost the same route, but at 9000 m altitude.
## 2548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft tried to return to the airport after an engine fire during takeoff  but the right wing struck trees and it crashed in the Amazon jungle.
## 2549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route a distress message was received from the aircraft after which it crashed and burst into flames.  The elevators and tailplane were destroyed when the rear pressure bulkhead ruptured at 19,000 feet. The airplane rapidly nosed down and crashed. The bulkhead was weakened by corrosion from a suspected leak in the lavatory.
## 2550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The airplane was climbing through an altitude of 1,200 m after takeoff when an explosion occurred. A TNT explosive device had been placed between the cabin wall and a passenger seat in the rear of the cabin  The blast destroyed the flight controls. The airplane rolled to the right and descended until it collided with the ground.
## 2551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sightseeing plane crashed in rain/snow.  Continued VFR flight into adverse weather conditions. Pilot transmitted he was turning around do to weather conditions.
## 2552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed and burned short of the runway. A girl, 6, and a boy 3, were the only survivors.
## 2553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Collided with wires/poles while attempting to land. Improper IFR operation. Descended below MDA.
## 2554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed short of the after flying during a typhoon and landing in heavy rain.
## 2555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Collided with trees while attempting to land. Improper IFR operation. Descended below MDA. Pilot fatigue.
## 2556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane, carrying paratroopers, crashed into the Ligurian Sea about 20 miles west of Pisa shortly after taking off from San Giusto Airport. In-flight structural failure. Cause undetermined.
## 2557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed into the sea while on approach to Padang. Unknown cause.
## 2558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed  on a a go-around 850 m short of the runway. Stalled for unknown reasons.
## 2559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed into the sea while on a flight from Taipei to Hong Kong.  Detonation of an explosive device.
## 2560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a mountain after attempting to fly through a lowland area due to deteriorating weather conditions.
## 2561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  During approach the plane made a large roll and vertical rate of descent and crashed. Icing.
## 2562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Midair collision.  The DC-9 descended onto the Cessna. Two killed aboard the Cessna. The DC-9 landed with no one aboard injured. Inadequacy of ATC facilities and services in the terminal area.
## 2563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft experienced a forced landing after being hijacked and running out of fuel.      
## 2564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Strayed off course and flew into a mountain. Crew error.
## 2565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed in adverse weather conditions shortly after taking off. Technicians failed to comply with maintenance procedure and it was determined that the aileron control cables were not properly connected.
## 2566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft was struck by lightning after it entered an area of thunderstorms and heavy turbulence. The lightning caused a fire which led to the separation of the right wing and part of the left wing. The aircraft crashed in mountainous terrain in the jungle. One German passenger, a female teenager, survived and was found after trekking through the jungle for 9 days. Juliane Koepcke had a broken collarbone and was unconscious for an unknown amount of time but had survived the crash still strapped in her seat. She fell more than two miles into the jungle canopy but miraculously survived with only minor injuries. When she came to, she set out in vain to find her mother. Maria Koepcke, her mother, a leading Peruvian ornithologist, was dead. Rescue crews searched for the aircraft without success. Koepcke would have to save herself.  Koepcke found a stream and began nine days of wading through knee-high water and fighting off swarms of insects and leeches. On the ninth day, she found a canoe and shelter. Then she waited. Hours later, local lumbermen returned and found her. They tried to get her to eat but she was quite sick and refused. Insects had buried eggs in her skin and they were beginning to hatch. One of the men poured gasoline on her and, as she told the London Daily Mail, "I counted 35 worms that came out of my arms alone." The men offered what assistance they could provide but it was too late in the day to start the journey back to civilization; she slept one more night in the jungle before the men took her on the final seven hour journey via canoe down the river to a lumber station where she was airlifted to a hospital.
## 2567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed about 40 km northwest of Chetumal. following a fire onboard while en route.
## 2568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed into hill while attempting to land. Failure to maintain the minimum flight altitude during the final stages of the visual approach. The accident was the result of a controlled flight into terrain due to a premature descent in limited visibility, causing the airplane to descent below the MDA.
## 2569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed shortly after leaving Bogota after an explosion aboard.
## 2570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft struck a mountain in rain and thunderstorms operating as a non-scheduled passenger airliner run by the military.
## 2571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane crashed after the detonation of a bomb in the forward cargo hold. A flight attendant,  22 year old Vesna Vulovic, fell 33,330 feet in the tail section and although she broke both legs and was temporarily paralyzed from the waist down, she survived. She was in a coma for 27 days and it took 16 months for her to recover. The bomb was believed to be placed on the plane by a Croatian extremist group. On January 27, 1997, 25 years after the crash, Vesna Vulovic returned to the crash-site and was reunited with the firemen who pulled her from the wreckage and the medical team who looked after her in the hospital.
## 2572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Due to a compass error the aircraft became lost and crashed during a forced landing due to fuel starvation.
## 2573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After a go-around due to an obstruction on the runway, the aircraft crashed while attempting to land a second time. Overloaded
## 2574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disappeared while en route. Wreckage found 3 days later. The accident was the result of a controlled flight into terrain due to a premature descent.
## 2575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shot down while en route. Aircraft not found.
## 2576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft was on final approach to Albany County Airport in light snow and two miles visibility, when the pilot reported a malfunctioning left propeller cruise pitch lock. The captain ordered the engine shut down but the crew was unsuccessful in feathering the prop and the plane began to lose altitude. The plane crashed 4 miles short of the runway into a two-family house killing one man. Malfunction of the cruise pitch lock.  Inability of the crew to feather the left propeller, in combination with the descent below the minimum approach altitude. The reason for the malfunction and inability to feather the prop remains undetermined.
## 2577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft struck a mountain ridge during approach, 50 miles E of Dubai. Incorrect information from an outdated flight plan.
## 2578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into Shamsam Mountain and exploded, during a visual approach, 4 miles SW of the airport. Controlled flight into terrain.
## 2579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed in mountainous terrain,  50 miles north of Rio de Janeiro, while on approach. The crew mistakenly tuned the ADF instrument to a wrong NDB, causing the airplane to follow a wrong approach path and to descend at an inappropriate altitude. The lack of visibility due to the night and clouds was considered as a contributing factor.
## 2580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into high ground while en route in thunderstorm activity. Loss of control due to downdrafts and updrafts in thunderstorm activity.
## 2581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Float equipped sightseeing helicopter encountered turbulence which led to the blades flapping and a steep nose down crash into the river.
## 2582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft broke-up after overrunning the runway and an aborted takeoff. Partial loss of braking power due to the incorrect reassembly and repairs of the braking system.
## 2583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane struck a mountain in poor weather conditions. The pilot elected to use a cruising altitude lower than stipulated in order to save time and continue flying in VFR conditions.
## 2584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hit trees while flying through a mountain pass in rain and fog.
## 2585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on approach. The plane entered an area of severe wind. Windshear. ATC error. Current weather was not passed on to the plane.
## 2586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane cashed into Mt. Lunga during an approach to Palermo. The crew's non-adherence to airport traffic regulations. The aircraft was named Antonio Pigafetta.
## 2587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a mountain near Rio Orinoco while en route.
## 2588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Metal fatigue of the spar in a blade led to separation of the blade and loss of control of the aircraft.
## 2589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The military plane was returning after a flight over the Baltic Sea for weather research. The crew didn’t set the barometric altimeter the airfield, so the altimeter indicated a height higher than the actual altitude. After crossing the shoreline it entered a patch of thick fog. The crew couldn’t see the ground and descended to a dangerously low altitude. The aircraft crashed onto a kindergarten, killing 23 children and two adults. The altimeter from an Il-14 was mistakenly installed in the AN-24.
## 2590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Structural failure and separation of both wings due to a fatigue crack in the center wing section.
## 2591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Overshot the runway in heavy fog and crashed into the ocean while landing.
## 2592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed after taking off from this North sea island for another island.
## 2593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the water after the fatigue failure of both tail rotor blade grips.
## 2594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane cashed into trees shortly after taking off after two engines failed. Refueling directly from the trucks, without allowing sufficient time for the fuel to settle.
## 2595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While practicing touch and go landing the aircraft crashed after getting caught in the wake turbulence of a DC-10. An encounter with a trailing vortex generated by a preceding "heavy" jet which resulted in an involuntary loss of control of the airplane during final approach. Although cautioned to expect turbulence the crew did not have sufficient information to evaluate accurately the hazard or the possible location of the vortex. Existing FAA procedures for controlling VFR flight did not provide the same protection from a vortex encounter as was provided to flights being given radar vectors in either IFR or VFR conditions.
## 2596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The crew failed to realize his altitude was too low when the airplane struck the slope of a mountain located few km from the airport.
## 2597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On approach the cargo plane struck El Ovejero mountain.
## 2598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by enemy fire, 60 miles north of Saigon, shortly after taking off.
## 2599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed short of the runway. Indian officials claimed the crash was caused by a disregard for prescribed procedures in abandoning all instrument references before making visual contact with the runway. Japanese investigators claimed a false glide path signal was responsible for the descent into terrain.
## 2600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed while en route from Singapore to Hong Kong. Detonation of an explosive device in the passenger cabin in a suitcase under a seat. A Thai police lieutenant, accused of planting the bomb, was acquitted due to lack of sufficient evidence.
## 2601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed into a field shortly after taking off from Heathrow Airport. The airplane stalled after the wing's leading edge devices were retracted prematurely after takeoff.  Failure of the captain to maintain adequate speed after noise abatement procedures. Premature retraction of the slats. Incapacitation of the captain due to a possible arterial hemorrhage.
## 2602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The pilot over-rotated during a go-around from a landing attempt , lost control and crashed. Crew error. The reason for rejecting the landing is not known.
## 2603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Both aircraft were proceeding under VFR getting ready to land when there was a midair collision. Both aircraft crashed into Lake Winnebago and sank. The failure of both flightcrews to detect visually the other aircraft in sufficient time to initiate evasive action.
## 2604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Two hijackers and one passenger killed.
## 2605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane ditched into the sea, 14 miles from Gran Canana Island while on approach. Reasons unknown.
## 2606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed in rain and fog on the island of Hinno while preparing to land at Skagon Airport. Navigational error.  The pilot was found be under the influence of alcohol.
## 2607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shot down by enemy fire, 60 miles north of Siagon.
## 2608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               On the takeoff run, a loud explosion was heard and the takeoff was aborted. The aircraft never became airborne,  overran the runway and crashed into shallow water.  On passenger that did not have her seatbelt on was killed.
## 2609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Midair collision. Seventeen aboard the HK-134 and twenty-one aboard the HK-107 killed.
## 2610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed on second approach after the pilot used the wrong flap setting and gears down after initiating a go-around.
## 2611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft was hit by small arms fire shortly after taking off from Soc Trang Air Base.
## 2612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In cargo bay 6, hot air, leaking from an air conditioning system, melted insulation off cabling causing a short circuit in the stabilizing system. Melting insulation ignited flammable fluid which led to an uncontrollable fire that eventually weakened the structure until the tail fell off.
## 2613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lost control soon after it took off and crashed into the sea.
## 2614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed while the crew was returning to the airport after experiencing a No.1 engine failure.
## 2615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While traveling through a valley, the pilot reversed his course after the weather deteriorated. He began to climb but clipped trees just below a ridge, lost control of the aircraft and crashed. The pilot's error in judgement in not flying about the poor weather in the valley.
## 2616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed, trailing heavy smoke. Fire caused by spontaneous ignition of passenger baggage.
## 2617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While on a VFR flight, the aircraft, struck  Mt. Giluwe at  14,346 feet. Cause undetermined.
## 2618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The No.1 engine failed during takeoff, the aircraft banked left, lost height, touched down again and ran through small trees and a fence . The right gear collapsed and the nose hit the ground.
## 2619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed after a wing separated from the fuselage caused by the presence of fatigue cracks in the root.
## 2620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed while en route with paratroopers in limited visibility
## 2621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A World War II vintage Sabrejet fighter leaving an air show at Executive Airport was unable to get airborn and crashed into a Farrell's Ice Cream Parlor on Freeport Blvd. Twenty-two people on the ground, including 12 children were killed. The pilot, was pulled from the wreckage by a bystander and survived. The pilot tried to lift off too quickly, pointing the nose of the jet three times higher than the normal angle. Instead of becoming airborne sooner, the plane had trouble getting off the ground.
## 2622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed 23 miles from Saigon while attempting an emergency landing.
## 2623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The flight ditched into Black Sea shortly after takeoff. The accident occurred in good weather and visibility, and ground controllers received no distress message prior to the crash. An investigation failed to reveal its cause.
## 2624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shot down by a mortar shell while approaching to land at Kampot.
## 2625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane left Montevideo bound for Santiago, Chile carrying the Old Christians Rugby Team. After leaving Mendoza and while flying at FL150, the copilot radioed he was over Curico and requested clearance to FL100. Because of head winds, the plane was actually still over the Andes. As the plane descended into clouds it ran into turbulence and the crew found themselves surrounded by mountains on all sides. The crew tried to climb out but the right wingtip struck the mountainside. The right wing detached and separated from the aircraft taking off part of the tail. The fuselage slid down a mountain slope and came to rest in the Andes mountains at an altitude of 12,000 feet. The survivors were not found until 12/22/72. Eight passengers died in an avalanche on October 30. Survivors resorted to cannibalism to stay alive. The book and movie "Alive" is based on this accident. The aircraft flew into a rotor zone or mountain wave which led to loss of control of the aircraft.
## 2626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed at the outer marker while attempting to land for the third time in poor weather conditions.  Sudden incapacitation of the crew for reasons unknown. Contributing to the accident, the airport's instrument landing system was not working.
## 2627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane was on a flight from Anchorage to Juneau when it disappeared as it was approaching the Chugach Mountain range.  The weather along the prescribed route was not condusive to VFR flight.  Louisiana Congressman and House Majority Leader Hale Boggs, Alaska Congressman Nick Begich and his aide killed. Cause unknown.
## 2628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the sea just short of the runway while on approach in poor visibility. Controlled flight into water.
## 2629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After takeoff from Lenakel Airport, en route to Port Vila, the pilot wanted to show cattle to a passenger and decided to reduce his altitude when the twin engine airplane struck trees. Pilot error.
## 2630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed while landing in severe turbulence. Faulty indication by radio compass.
## 2631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Plummeted to the ground and burst into flames near a farmhouse after losing control with the tower. Visual approach in descent below minima.
## 2632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Shot down by enemy fire over the Mekong Delta region.
## 2633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The crew elected to divert to Plovdiv due to fog. While on approach, the aircraft flew into a mountain. ATC error.
## 2634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Improperly loaded aircraft, weight and center of gravity.
## 2635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft lost altitude while taking off and crashed. The copilot responded to the captain's "gear-up" command by reaching forward and pulling back on the ground spoiler handle, rather than lifting the gear handle which was immediately ahead of the spoiler control. Late night partying by the crew was suspected the night before.
## 2636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Reached a height of 300 feet  when the plane suddenly plunged to earth and crashed. Loss of control precipitated by abnormal maneuvers made by the pilot in command in zero visibility. Crew's loss of situational awareness. Spatial disorientation immediately after takeoff in an almost zero visibility configuration.
## 2637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into hilly area in poor weather conditions. Controlled flight into terrain.
## 2638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed while making a nonprecision instrument approach to Runway 31L. The accident occurred in a residential area approximately 1.5 miles southeast of the approach end of Runway 31L. Upon reaching mimimum descent altitude, the pilot raised the nose of the aircraft to stop the descent. The stall warning horn sounded and continued to sound until the plane crashed 17 seconds later. The aircraft was destroyed by impact and subsequent fire. The captain's failure to exercise positive flight management during the execution of a non-precision approach, which culminated in a critical deterioration of airspeed resulting in a stall from which level flight could no longer be maintained. U.S. Representative from Illinois George Collins killed. Wife of  Watergates E. Howard Hunt, Dorothy Hunt, also killed.
## 2639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Delta Convair, taxing across Runway 27L, after landing in heavy fog, was hit by the North Central DC-9 as it took off, shearing off its tail. The DC-9 came crashing back down on the runway and caught fire. Ten people out of 45 aboard the DC-9 were killed. None of the 88 aboard the Convair were killed. The ATC gave ambiguous instructions to the Delta crew, did not use all available information to determine the location of the CV-880 and the CV-880 crew did not request clarification of the controller's instructions.
## 2640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed on approach into the sea at night.
## 2641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hit high ground while on approach to Fornebu Airport in Oslo. The aircraft descended well below the MDA and was off course by 2,5° at the time of the accident.Pilot error.
## 2642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The crew was preoccupied with a landing gear problem and was trying to replace the landing gear light while on autopilot and in a holding pattern. As the captain got up to help, he inadvertently pushed on the yoke releasing the autopilot. With no ground reference and  under nighttime conditions, the aircraft gradually descended until it crashed into Everglades, 18.7 miles west-northwest of Miami . The failure of the crew to monitor the flight instruments during the final 4 minutes of flight, and to detect a descent soon enough to prevent impact with the ground. After spare parts from the L-1011 were used on other planes, apparitions of the captain, Robert Loft and flight engineer, Don Repo began to be reported by Eastern employees. The book "The Ghost of Flight 401"and movies "The Ghost of Flight 401" and "Crash" are based on this accident. Three passengers and one crew member died in weeks following the accident making the total 103.
## 2643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The flight crashed moments after taking off after losing the No. 2 engine and losing power in the No. 3 engine.  Overloaded by 4,193 lbs.  Inadequate maintenance, inspection and previous damage to the engine during a taxing accident led to the engine failures. Baseball player Roberto Clemente, 38, killed. Clemente was on a relief mission to deliver supplies for earthquake victims in Nicaragua.
## 2644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Landing in poor visibility, turbulence and snow, the cargo plane came in for a landing at a high sink rate. The captain took over the controls to try to arrest the sink rate but the plane crashed into trees, a powerline and finally into a ridge short of the runway. The plane broke in two and was destroyed by fire.
## 2645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into Ben More mountain. The pilot did not maintain a safe altitude and gave insufficient attention to navigation when flying VFR into an area of snow covered high ground in marginal weather conditions.
## 2646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane went into a spiral dive. As the crew tried to pull the plane out, it broke up due to excesss g loads. Four survived the crash as the plane landed in a blanket of snow but succumbed to the cold before they could be rescued. Cause unknown.
## 2647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The landing gear collapsed after hitting a depression in the runway while landing. The aircraft ran off the side of the runway and caught fire. Wake turbulence during the landing.
## 2648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane crashed and burned ten miles from the destination airport.
## 2649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the Kyrenia Mountains while on approach. Controlled flight into terrain.
## 2650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane struck the ground short of the runway while landing. Possible windshear or jammed tailplane. Official cause unknown
## 2651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed after the failure of the main rotor.  Pylon support link failed due to fatigue, causing complete failure of the main rotor.
## 2652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Flew into Cerro Horqueta Mountain. Controlled flight into terrain.
## 2653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While en route from Tripoli to Cairo, the aircraft drifted over Israeli territory due to strong tailwinds and was shot down by Israeli Phantom fighters. After being hit, a fire broke out and the crew attempted to make an emergency landing in the desert but crashed and burst into flames. Cairo approach control radar and beacon not functioning.
## 2654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft entered a spin after the plane banked 60 degrees and then dove into the ground.
## 2655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed back on the the runway and broke apart. Official cause could not be determined.
## 2656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed while en route 45 km east of Nabire.
## 2657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed, broke up and burst in flames while on second approach after descending below glide slope. Icing of tailplane.
## 2658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Midair collision. Both planes were headed to London, at the same altitude, but different airways. When the Convair was at the ATC sector boundary, the crew could barely hear the Marina controller who instructed them to contact Menhir control. The pilot erroneously thought he had to contact Menhir control when passing the Nantes VOR. In order to delay their arrival at the VOR the Convair crew twice tried to request permission to carry out a 360-degree turn. When they did not get any answer from Marina control, they initiated the turn without clearance. While in the midst of an overcast, the Convair collided with the DC-9. The CV-990 lost an outboard portion of its left wing and managed to carry out an emergency landing at Cognac-Châteaubernard Air Base. The DC-9 lost control and crashed. The air traffic control system had been taken over that day by military personnel because of a strike of civilian controllers.
## 2659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While turning and aligning to land the right wing tip struck power lines and a tree. The aircraft then hit a house and caught fire. Multiple errors by the instructor as well as the trainees due to being under the influence of  alcohol.
## 2660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed after an explosion in the cargo hold.
## 2661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into a forest during a snowstorm. Malfunctioning navigation equipment. Navigational error by crew.
## 2662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A Navy P-3C collided with a NASA research jet as it prepared to land at Moffett Naval Air Station. A ground controller mistakenly gave both planes permission to land on the same runway and the NASA plane settled on top of the P-3, 300 ft. off the ground. Both planes crashed onto a golf course. Five aboard the P-3 and 11 aboard the Convair were killed.
## 2663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The chartered American/Canadian tour group's plane crashed on takeoff.
## 2664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane disintegrated during an emergency descent and crashed 84km from Semipalatins. Collision with a foreign object causing damage to the wing.
## 2665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft broke up at FL 300. Detonation of a bomb in the cabin being carried by a hijacker.
## 2666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed shortly after taking off after being hit by ground fire.
## 2667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   the crew failed to realize their altitude was too low when the plane struck a tree and crashed, 5 km southeast of Rimouski.
## 2668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed and caught fire after hitting power lines during a landing attempt. The landing was made despite visibility below minima. Crew error.
## 2669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While on a go-around the aircraft attained a nose up attitude, stalled and crashed. Loss of power in the No.1 engine at a critical stage of the landing.
## 2670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     During a steep climb at an airshow, the airplane was observed to level off very abruptly and then begin a dive. The plane broke apart and exploded before crashing into a residential area killing 8 people and seriously injuring 60 others. The pilot, possibly startled by a close encounter with a Mirage jet photographing the TU-144, overreacted causing a compressor stall. The aircraft then went into a dive and broke apart after the aircraft's design capacity was exceeded.
## 2671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane was making an instrument approach to Runway 14 with the speed brake lever at 45 degrees and inboard spoilers deactivated when it was noted that the spoiler switch cover was open. The captain or copilot then closed the spoiler switch cover and activated the inboard spoiler causing the aircraft to pitch down. The plane descended from a height of about 70 meters and struck approach lights.
## 2672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft hit high ground during an approach, 32 kms from the airport.
## 2673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft was not able to lift off during takeoff, overshot the runway and crashed into a house bursting into flames.
## 2674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Controlled flight into terrain, 53 km south of Shakhtyorsk. The crew descended below a safe altitude during the approach.
## 2675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Made a forced landing after experiencing engine failure. Complete destruction of turbine and due to a design and manufacturing defect.
## 2676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fire aboard the aircraft in the aft right toilet was reported and an emergency descent made. The plane was heavily damaged by fire before fire fighters could rescue passengers. Most fatalities were due to CO before rescuers could reach passengers. The fire started in the aft right toilet either from an electrical short or discarded cigarette.
## 2677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed 30 seconds after takeoff from Faaa Airport into the ocean. Cause unknown.  It is possible an instrument failure diverted the crews attention during a turn. The aircraft was named "Clipper Winged Racer."
## 2678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed after attempting to land in thunderstorms with heavy rain and high winds. After passing the outer marker, the aircraft descended below the glide slope, entered an area of heavy rain, was struck by lightning and crashed into the ground short of the runway. The aircraft's encounter with a downdraft following the captain's decision to initiate and continue an instrument approach into a thunderstorm. Lack of a timely issuance of a severe weather warning by the National Weather Service.
## 2679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane experienced engine faiure while taking off and crashed into the ocean. Fuel starvation. Rear auxillary tanks not serviced. Overloaded, improper center of gravity.
## 2680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The flight crashed into a seawall during ILS approach in adverse weather conditions. The failure of the flightcrew to monitor altitude and to recognize passage of the aircraft through the approach decision height during an unstabilized precision approach conducted in rapidly changing meteorological conditions. Poor positioning of the aircraft for an approach by ATC. Questionable information presented by the flight director.
## 2681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft experienced two missing landing attempts. On the third try, the crew tried to descent below minimum safe altitude to make visual contact with the ground. The right wing clipped trees and the aircraft crashed about 2 m from the runway. Attempting to land in meteorological conditions that were below minima.
## 2682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While flying too low, the plane struck a mountain shrouded in clouds and located in Dondon, 21 km south of the airport. Controlled flight into terrain..
## 2683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed after after attemping a return to the airport for an emergency landing. Left engine failure.
## 2684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Struck a hill in heavy fog. Flying VFR in IFR conditions.
## 2685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into El Cable Mountain after taking off in fog. Crew failed to follow departure procedures.
## 2686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft was cleared to 5,000 ft. but descended to 3,000 ft. The plane hit a ridge became airborne, rolled over and crashed inverted into a ravine. The flying crew failed to follow approach procedures and descended to an unsafe altitude following a misinterpretation of the ATC clearance. A lack of crew coordination, a wrong planned approach and crew fatigue.
## 2687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane porpoised while descending to LAX. The aircraft was subjected to 2 minutes of peak acceleration forces of 2.4 g.  A combination of design tolerances in the aircraft's longitudinal control system which, under certain conditions, produced a critical relationship between control forces and aircraft response.
## 2688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hit mountain at 3,500 ft., in level flight, 15.5 miles east of airport in fog. Improper IFR operation.  Descended below MSA in mountainous terrain. The captain's deviation from approved instrument approach procedures. As a result of the deviation the flight descended into an area of unreliable navigation signals and obstructing terrain.
## 2689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft struck Moganik Mountain at 6,300 ft., while descending. Controlled flight into terrain.
## 2690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed into a tree 200 yards past the end of the runway while taking off  from Natchitoches, Louisiana Municipal Airport. A witness to the crash reported that the plane never seemed to gain any altitude. It scraped the top of a pecan tree, catching a wing and crashed to the ground. Pilot failed to see/avoid objects, obstructions. Pilot had severe coronary artery disease. Ran 3 miles from motel to airport.  May have had a heart attack. Singer Jim Croce, 30, killed.  Also killed were accompanist Maurice Muehleisen, publicist Kenny Cortese, road manager Dennis Rast, comedian George Stevens and pilot Robert Elliot. Croce's company had just completed a performance before a crowd of 2,000 at Northwest State University.
## 2691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft flew100 miles off course and struck Black Fork Mountain, 600 feet below the summit of the peak, 91 miles North of Texarkana. Heavy thunderstorms were in the area at the time. The captain's attempt to operate the flight under VFR at night without using all the navigational aids and information available to him and his deviation from the pre-planned route without adequate positioning information.
## 2692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The crew started the takeoff roll at a point 200m down the runway, with a runway distance remaining of 1080m. After taking off, the DC-3 climbed slowly, entered a right turn, stalled and crashed in flames.  Power loss on one or both engines, due to maintenance deficiencies or fuel contamination.
## 2693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed shortly after takeoff while on a go-around. After reaching an altitude of 1,200 ft. the aircraft banked to the left which steepened until the plane began to descend and finally crashed. Malfunctioning artificial horizon.
## 2694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane struck high ground after going off course during a go-around. Crew error.
## 2695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After making a right turn, the aircraft plunged to earth from 1,500 ft.  Electrical failure of the compass and main gyro.
## 2696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The takeoff from Santos Dumont airport was aborted after a loss of power occurred before the V1 speed was reached. Due to poor braking action, emergency brakes were applied. The pilot-in-command retracted the landing gear after it was apparent an overrun was imminent. The aircraft slid into Guanabara Bay.
## 2697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed after diverting to Villavicencio after experiencing hydraulic problems and having to feather the No. 1engine.
## 2698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Smoke in the cockpit and uncontrollable fire in the cargo plane caused by spillage of nitric acid on sawdust packing in the cargo hold. The aircraft was named "Clipper Titian."
## 2699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Overspeeding of the starboard engine caused the engine to disintegrate. Pieces struck the fuselage, breaking a window, causing rapid explosive decompression and a passenger Mr. Gardner, sitting in seat 17H was sucked out of the plane.  The plane landed safely. His body was found two years later. The captain and flight engineer were experimenting with the autothrottle system by tripping the circuit breakers which supplied the instruments which measured the rotational speed of each engine's low pressure compressor. This led to engine overspeeding and destruction of the engine.
## 2700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flew into a mountain while en route. Flying under VFR in IFR conditons.
## 2701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed after the wing touched the ground while landing short of the runway. Crew error in not executing a missed approach.
## 2702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Went into a sudden dive and crashed to the ground. A short circuit occurred in the elevator trim system.
## 2703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Two phosphorus bombs were thrown into the aircraft prior to its departure. The aircraft was named "Clipper Celestial."
## 2704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ammunition exploded while the aircraft was on the ground.
## 2705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After missing the outer marker, the aircraft continued off course and crashed into Mt. Mellaline, 20 kms from the airport at an elevation of 2,300 feet in rain. Crew error. The pilot started his final turn too far east of the runway.
## 2706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed after takeoff. Engine failure. A defective turbine blade failed resulting in violent vibration of the engine and rupturing of a fuel line and causing an in-flight fire.
## 2707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The No.1 engine failed while the DC-3  turned onto final approach.  Shortly thereafter,  the No.2 engine also failed. The aircraft was turned towards a beach and was ditched successfully. One  non-swimming passenger  drowned.
## 2708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed 2 miles short of the runway upside down during an approach in fog and heavy rain.
## 2709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed short of the runway.  Failed to maintain flying speed. Improper IFR operation. Premature descent below safe approach slope for reasons undetermined.
## 2710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane hit a mountain en route.
## 2711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane dove into the ground 100 meters behind the outer marker while on approach.  Icing of the horizontal stabilizer.
## 2712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The domestic flight crashed into Mt Gabinete about 34 km northwest of Florencia while en route to Bogota.
## 2713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The non-scheduled passenger flight crashed while en route to La Paz. Wreckage never found.
## 2714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed after climbing to cruising altitude.
## 2715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane yawed left, pitched nose down and crashed shortly after taking off. Icing. Frost on the wings along with over rotation resulted in a stall. Crew error.
## 2716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed and burned while making ILS approach to Pago Pago International Airport. There was a failure of the crew to correct an excessive rate of descent causing the aircraft to fly into trees short of the runway. Windshear, sensory illusory, inadequate monitoring of flight instruments, and the failure of the crew to call out descent rate. Most aboard the aircraft were not injured by the crash but succumbed to fire and panic afterwards. The aircraft was named "Clipper Raidant."
## 2717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A 16 month old child was asphyxiated by a seat belt while unattended.
## 2718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The twin-engine turboprop hit a mountain at an elevation of 5,000 ft. during an ILS approach.
## 2719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 An out of work Pennsylvania salesman, Samuel Byck attempted to hijack Flight 523. His plans were to fly the plane into the White House and kill president Richard Nixon. He killed a security guard to get on board. He then shot and killed the copilot and seriously wounded the pilot. He was wounded  by a security guard and soon after killed himself. The plane never left the ground.
## 2720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Severe turbulence possibly caused the failure of ropes securing cargo. The center of gravity shifted causing a loss of control. The wreckage was found 2 days later.
## 2721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed shortly after takeoff from Orly Airport in Paris, France. Climbing through FL110 the aircraft lost the rear cargo door, resulting in explosive decompression and damage to the cabin floor and control cables. The aircraft lost control and crashed in a forest at a high rate of speed. The service subcontractor and the flight engineer neglected to check the locking mechanism through a recently installed viewport to verify the door was latched properly. In addition, although a service bulletin stipulated that the locking pin should be extended, it was mistakenly shortened causing the latch to release after the cabin was pressurized. On June 12, 1972, an American Airlines DC-10 lost its cargo door shortly after taking off from Detroit ,Michigan. Using mainly engine thrust the crew was able to land safely. The cause was a defect in the latching mechanism on the door.
## 2722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Fifiteen journalists aboard for an Asian tour. On approach to Hanoi Airport, the aircraft crashed for unknown reasons.
## 2723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed into Poleta Ridge, in the foothills of  the White Mountains at 6,100 ft.  The Wolper Productions Inc. movie crew was being flown from Bishop to Burbank. The flight was being conducted under VFR conditions. It could not be determined why the crew did not maintain a safe distance from hazardous terrain.
## 2724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Collapse of right main landing gear while taxing ruptured the wing fuel tank causing a fire.
## 2725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed into trees and burst into flames after the engines overheated resulting in loss of power. The plane was carrying gold miners. Fuel contamination. Jet A fuel contaminated the aviation gasoline.
## 2726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft was on a flight from Hong Kong to Denpassar, Bali.  While on approach, the plane crashed into Mt. Mesehe at 4,000 ft. killing all aboard. Premature execution of a right hand turn to join the 263 degrees outbound track which was based on the indication given by only one of the ADFs while the other one was still in steady condition. External or internal interference causing an incorrect indication from the automatic direction finder. The aircraft was named "Clipper Climax."
## 2727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed after report of a heavy vibration and fire in the No. 4 engine. Structural failure of turbine disc in No. 4 the engine.
## 2728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed during takeoff. Inadequate preflight preparation and planning. Lack of familarity with aircraft.  Misused  flaps. Gust lock engaged.
## 2729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Struck a mountain shortly after takeoff. Failure to climb to the minimum safety altitude. Overconfidence of the crew. Distraction by a tourist guide in the cockpit.
## 2730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane struck trees and crashed while on final approach. Icing. Pilot blood alcohol above normal.
## 2731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While en route the left wing separated from the aircraft. The plane crashed out of contol. The undiscovered, preexisting fatigue cracks, which reduced the strength of the left wing to the degree that it failed as a result of positive aerodynamic loads created by moderate turbulence.
## 2732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed during approach. Incapacitation of the crew due to carbon monoxide.
## 2733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane suffered an engine failure and spiraled into the ground.
## 2734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft lost control and crashed after a tailplane failure. Failure in-flight of the tailplane spar causing the left tailplane and elevator the detach.
## 2735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed during takeoff and burned after 3 engines failed. Mechanical failure due to improper maintenance procedures. Insufficient training of cabin crew.
## 2736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed after the fatigue fracture of the swachplate assembly. Inadequate maintenance and inspection.
## 2737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed into a mountain at 7,000 ft. shortly after taking off.
## 2738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane was struck by a surface-to-air missile.
## 2739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Struck  the slope of Mont-Apica located 67 km southwest of saint-Honoré Airport.
## 2740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed after running out of fuel. After being diverted because of bad weather, a navigation error caused the crew to circle the wrong city.
## 2741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The crew became lost in rainy weather and crashed into Trujillo Mountain. Wreckage found 2 months later.
## 2742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In accordance with ATC, the crew divert to Cumaná Airport and while completing a turn to change heading, the plane struck the peak La Gloria located10 km northeast of Porlamar Airport.
## 2743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                During a night time approach to Kisangani Airport, the plane crashed in unknown circumstances few km from the runway threshold
## 2744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a building while landing during poor weather conditions. The plane was blown against the building by a strong gust of wind.
## 2745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft pitched up, rolled to the left, went into a steep spiral dive and crashed into the sea. Detonation of an explosive device in the aft cargo hold. A Palestinian organization claimed responsibility. The blast probably buckled the cabin floor damaging the elevator and rudder controls.
## 2746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft flew too low and struck trees 3.3 miles short of the runway during an approach in fog. Flightcrew's lack of altitude awareness at critical points during the approach due to poor cockpit discipline in that the crew did not follow prescribed procedures. The crewmembers were preoccupied with conversations having nothing to do with the operating the aircraft while conducting an instrument approach. The aircraft was 50 knots too fast and 500 feet below the final approach fix.
## 2747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hijacked. Detonation of two hand grenades in the passenger compartment after the pilot refused to fly to Hanoi, North Vietnam. The aircraft attempted to land, executed a missed approach and dove into the ground from a height of 1,000 feet.
## 2748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One hour after takeoff, cruising at FL85, the No.1 engine had to be shut down due to severe vibrations and backfiring. The crew chose to divert to Calapan. At 900 ft over Calapan, the controls began to shake and control of the aircraft  was lost. The aircraft was ditched 700 feet offshore.
## 2749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While en route, the cargo plane lost a wing and spiraled into the ground. Failure of the right wing in fight. Fatigue fracture. Inadequate maintenance and inspection.
## 2750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pilot refused weather briefing. Flew into blind canyon. Icing conditions. Continued VFR flight into adverse weather conditions.
## 2751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Midair collision between a An-2 and a Mil Mi-8T in poor weather.
## 2752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The No.2 prop was feathered when the engine failed after taking off. The aircraft lost altitude during a 180 degree turn and a forced landing was made in a rice field.
## 2753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft stalled and crashed during takeoff. The wing flaps were not extended. First fatal Boeing 747 accident to occur.
## 2754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stalled  on takoff and crashed.
## 2755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during takeoff.
## 2756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed into high terrain at approximately 270 mph during an approach to Dulles Airport. The crew's decision to descend before aircraft reached the approach segment. The crew ignored high terrain marked on the en route chart and continued their descent. Lack of clarity in ATC procedures. The issuance of the approach clearance when the flight was 44 miles from the airport on an unpublished route without clearly defined minimum altitudes. Inadequate depiction of altitude restrictions on the profile view of the approach chart for the VOR/DME approach to Runway 12 at Dulles International Airport.
## 2757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft stalled in a climb from which recovery was not effected. The loss of control of the aircraft because the flight crew failed to recognize and correct the aircraft's high-angle-of-attack, low-speed stall and its descending spiral. The stall was precipitated by the flight crew's improper reaction to erroneous airspeed and Mach indications which had resulted from a blockage of the pitot heads by atmospheric icing. Contrary to standard operational procedures, the flight crew had not activated the pitot head heaters.
## 2758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The An-2 crashed after colliding with Antonov 12 over Irkutsk airport. The ATC cleared the An-2 for takeoff crossing An-12s flight path. The An-12 landed safely. Eleven passengers and 2 crew killed on the An-2
## 2759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft impacted Mount Anjimalai at 4,355 ft. the during approach. The crew descended below a safe altitude due to a position error resulting from misinterpretation of Doppler and weather radar.
## 2760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Disappeared en route. Never found.
## 2761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shot down by a surface-to-air missile.
## 2762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Overran the runway and hit a dyke while attempting to take off. Elevator lock not removed.
## 2763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Four minutes after takeoff from runway 05 at Maturin Airport, while climbing , the plane struck the slope of Mt Zamuro,  20 km from the airport.
## 2764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into Lotru mountains, 22 km south of Sibiu after drifting 20 km off course by winds and turbulence. Wrong decisions on part of the flying crew who adopted a wrong approach configuration, causing the aircraft to drift.
## 2765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Few minutes after takeoff from Tikal Airport, while climbing, the airplane went out of control and crashed on the slope of a mountain located few km from the airport. Possible in-flight fire.
## 2766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shot down with a SAM missile.
## 2767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed and burned in mountains while en route. Improper flight planning by proceeding in mountainous terrain during adverse weather conditions which had reduced visibility along the route.
## 2768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Midair collision between a DHC-6 and a Cessna 150 at 2,200 feet while approaching Ontario Airport. Twelve aboard the Otter  and two aboard the Cessna killed. The failure of both flight crews to see the other aircraft in sufficient time to initiate evasive action. This was because of the position of the sun, the closure angle of the aircraft and the necessity of the Twin Otter's flight crew to acquire visual contact with radar reported traffic directly ahead of them.
## 2769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into the ground 1,360 meters past the runway threshold and 120 meters to the left of the center line while attempting to land at Ferihegy airport. Poor weather, fog, nightime conditions, lack of crew coordination and possible spatial disorientation contributed to the accident.
## 2770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              En route from Vientiane to Sam Neua, the crew encountered poor weather conditions when the airplane struck the slope of a mountain located in the region of Sam Neua. Flying VFR in IFR weather.
## 2771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After an electrical failure at the airport the aircraft initiated a go-around. Because another aircraft was about to take off, an extended downwind leg was flown. The aircraft crashed into the Sea of  Marmara while in the process of making the second approach. It is though the pilot-in-command may lost control of the airplane after suffering  spatial disorientation while flying at night under VFR mode over the Marmara Sea without any visual reference points.
## 2772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed during take off. Failure of the right engine.
## 2773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The flight was diverted to Houston because weather at Huntsville was below minima.  An ILS approach was abandoned due to intermittent operation of the aircraft ILS localizer receiver instruments. The crew then tried an approach with Houston TRACON monitoring on surveillance radar. The DC-3 descended too low until the left wing collided with a  high power line tower, located 1.8 miles short of the runway. Fifteen feet of wing was torn off and the aircraft continued another 650 feet before striking the ground inverted.  Improper in-flight decisions or planning and improper IFR operation.
## 2774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The No. 2 engine caught fire shortly after takeoff.  The aircraft crashed into a rice field 3 miles short of the runway while making an emergency approach back to the airport.
## 2775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Slammed into a mountain at an altitude of 5,000 ft. during an approach to Canea in a snow shower.
## 2776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane lost three of four engines on takeoff. The crew tried to return to the airport but crashed short of the runway. Fuel contamination. Water in fuel.
## 2777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Minutes after taking off in a rainstorm the right wing struck a tree. The crew lost control of the plane and crashed.
## 2778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed into houses after taking off and burst into flames. The plane had engine trouble, attempted to return to the airport when it crashed into the houses.
## 2779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shot down by a hand-held surface-to-air missile by North Vietnamese forces 25 miles SW of Pleiku.
## 2780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft struck a mountain while preparing for an ILS approach in poor weather. Crew error. Crew descended below the minimum safe altitude before knowing their position.
## 2781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unknown circumstances.
## 2782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed during climbout. The crew failed to prepare the flight properly as the total weight of the aircraft was 449 kilos above the MTOW and the CofG was out of the enveloppe, too far aft. This caused the airplane to enter a high angle of attack during the initial climb and to stall and crash.
## 2783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft struck a ridge of  Mt. Constance in Olympic National Park. Faulty clearance by the ATC after misidentifying the C-141 as another aircraft.
## 2784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft reported it was returning to Tan Son Nhut Airbase 15 minutes after taking off. The aircraft was not able to make the airport and crashed landed into a rice paddy, 1.5 miles from the airport. The flight was evacuating 243 Vietnamese orphans. Pressure failure due to a faulty rear loading ramp caused decompression which led to severed rudder and elevator cables and loss of two hydraulic systems resulting in a loss of pitch control. Worst single non-combat U.S. military aviation disaster.
## 2785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The copter was observed in an uncontrollable descent to earth in an inverted attitude after which it crashed and burned. Cracking of a rotor spindle assembly  which led to separation of the main rotor.
## 2786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A bomb exploded in the right rear lavatory causing a hole in the fuselage. The plane landed safely.
## 2787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft landed with excessive speed and touched down on the last 300 meters of the runway, overran the runway, crossed a street and crashed into a house.
## 2788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed into the approach lights to runway 22L at JFK while on an ILS approach to the runway. Aircraft's encounter with heavy rain and a very strong thunderstorm that was located astride the ILS localizer course which resulted in a high descent rate into approach light towers.The flightcrew's delayed recognition and correction of the high descent rate and their reliance upon visual cues rather than on flight instrument reference. However, the adverse winds might have been too severe for a successful approach and landing even had they relied upon and responded rapidly to the indications of the flight instruments.Contributing to the accident was the continued use of Runway 22L when it should have become evident to both air traffic control personnel and the flightcrew that a severe weather hazard existed along the approach path.
## 2789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed in an emergency landing. Fatigue fracture of the cylinder head. Standpipe cutoff flush with bottom of oil tank. Improper maintenance.
## 2790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane barely took off when it settled back on the runway and crashed into a DC-6. Both planes destroyed.
## 2791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft struck a mountain after an attempted go-around. Deviation from the standard trajectory for a missed approach. Misinformation supplied to crew.
## 2792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Stalled and crashed during thunderstorm while attempting to land for a second time. The pilot attempted a go around but the plane did not respond, the wing hit the ground and the plane crashed. The pilot decided to pull up too late for another try at landing and failed to operate the plane properly while doing so.
## 2793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft was on approach when the right wing tip and No. 4 engine struck a mountain peak at 2,400 feet.  Part of the wing separated and the plane crashed into a ravine. Crew error.
## 2794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was unable to land at Ilopango, El Salvador to refuel because of adverse weather conditions. The plane most likely ran out of fuel and crashed into the Pacific Ocean.
## 2795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft climbed to about 100 feet above runway 35L and then crashed near the departure end of the runway. At the time of the accident, a thunderstorm with associated rain showers was moving over the northern portion of the airport. The aircraft's encounter, immediately following takeoff, with severe windshear at an altitude and airspeed which precluded recovery to level flight.
## 2796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The crew deviated from the approach pattern and collided with terrain obscured by clouds 28 km from Bagdarin.
## 2797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane descended below the glidepath and crashed. Windshear.
## 2798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The airliner crashed into a sandy knoll, 10 miles NE of Damascus during an approach to Damascus International Airport. Failure of the crew to maintain the minimum flight altitude.
## 2799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After several landing attempts, the aircraft crashed into Sevuokuk Mountain, in fog, while attempting to land at Gambell Airport. The flightcrew's failure to adhere to prescribed company instrument approach procedures while attempting to land in adverse weather conditions.
## 2800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft descended below the glide path and struck a radio tower short of the runway. The captain was sentenced to 5 years in prison, the co-pilot, navigator and radio officer received 3 year sentences each. The plane collided with the radio tower because the pilot was flying below the minimum flight altitude.
## 2801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane was flying at FL 115 under VFR in scattered clouds. When breaking through a cloud bank a mountain was seen up ahead. A steep climbing turn was initiated, but the tail struck trees, control was lost and the aircraft crashed inverted.
## 2802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Landed short and struck trees while on approach in poor weather. VFR flight in weather conditions below minima.
## 2803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into the Mediterranean sea while on approach. The ILS localizer was down at the time but a visible approach was possible. Cause unknown.
## 2804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The crew attempted a straight-in approach in fog but the plane went off course after passing the Outer Marker.  The crew descended until the undercarriage and wing contacted a building. Crew error. Attempted to land below minimumns.
## 2806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Improper approach during a storm. Crew error. Misalignment of the aircraft with the runway and abandonment of the landing approach. The pilot-in-command did not immediately initiate a climb to a safe altitude for reasons unknown.
## 2807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft took off reaching a altitude of only 300 feet which was insufficient to clear the terrain surrounding the airport. Cause not determined. Overloaded.
## 2808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft landed short and hit high ground during an ILS approach in fog.
## 2809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The helicopter crashed after the main rotor failed. No occupants ever found.
## 2810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The crew attempted to circumnavigate a thunderstorm but los track of their positon. They descended until the struck Mount Apshara at 2,250 meters.
## 2811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into mountainous jungle in poor visibility and heavy rain.
## 2812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into trees on a slope of a hill near Kharkov Airport. Air traffic control reported a wrong QNH setting to the crew. Crew ignored ground proximity warnings.
## 2813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed shortly after takeoff. Stalled crashed. Icing.
## 2814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed 15 ft. below the summit of cloud-obscured Jebel Hilal Mountain on the Israeli-occupied Sinai Peninsula.
## 2815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Race car driver Graham Hill, 46, was killed when the plane he was piloting got lost in fog and crashed near Elstree Airport.
## 2816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into mountains. Continued VFR flight into adverse weather conditions.
## 2817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft broke-up at FL 370 and crashed in the desert. Detonation of an explosive device in the forward cargo compartment.
## 2818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed short of the runway in fog. The pilot descended below published minimums because of low fuel.  Inadequate preflight planning. Improper IFR operation.
## 2819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After taking off the plane entered clouds. Both artificial horizons failed. The plane rolled to the left  until it reached an angle of 95 degrees, descended and crashed.
## 2820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed under unknown circumstances.
## 2821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane was forced to return to San Borja after the No.2 engine failed.  After crossing the runway the plane crashed into trees 1.2 miles past the end of the runway. Malfunction or failure of the No. 2 engine, landing gear malfunction and an improper landing procedure.
## 2822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft lost altitude and the right wing struck trees as the plane crashed in the Chillacocha mountain range at 9.000 ft. while en route. It is believed that the loss of altitude and the subsequent collision with ground was the consequence of orographic currents encountered over the mountainous area.
## 2823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed during the approach. Reasons unknown.
## 2824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during takeoff.
## 2825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane crashed into the ocean. Engine failure.
## 2826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft took off from Burbank when a propeller blade separated, causing an engine failure. The aircraft circled back to the airport and attempted an emergency landing but upon touchdown the plane’s speed was too great. As a result, the landing was aborted and the flight crew opted to divert to nearby Van Nuys Airport. While en route, a second engine failed and the aircraft crashed onto the Woodley Golf Course one mile short of the runway at Van Nuys. The aircraft plowed into a small unoccupied building and came to rest against a portable bungalow.
## 2827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After taking off the plane began to bank to the right until it crashed. Asymmetrical refueling of the plane. Pilot error.
## 2828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into the water and sank while attempting and emergency forced. Unscheduled feathering of right prop for undetermined reasons. Engine failure for undetermined reasons.
## 2829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed short of the runway.
## 2830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in the jungle while en route. Cause unknown
## 2831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft plunged to earth from FL 260 in darkness. Electrical power failure of compass, gyros and auto pilot caused the crew to lose control of the plane.
## 2832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Continued VFR flight in to adverse weather.
## 2833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into a lake while on approach in heavy rain.
## 2834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane overran the runway after landing at excessive speed. The captain's faulty judgement in initiating a go-around after he was committed to a full stop landing following an excessively long and fast touchdown from an unstabilized approach.
## 2835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Structural failure and in-flight separation of the right wing. Fatigue cracks attributed to stress due to design. These cracks became critical sooner than anticipated. The cracks remained undetected and became critical because the manufacturer's inspection program for the area was insufficiently.
## 2836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fatigue fracture of tail boom fuselage attachment fitting. Pilot and 4 passengers not recovered.
## 2837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After touching down 2,200 feet down the runway, a go-around procedure was initiated. When there was no acceleration felt, the throttles were closed again. After attaining a nose-up attitude of 11 degrees, the aircraft ran off the end of the runway and struck a localizer antenna. The wingtip then clipped a hillside, the aircraft hit an embankment, went airborne and contacted the ground bursting into flames. The captain's actions and his judgement in initiating a go-around manoeuver with insufficient runway remaining after a long touchdown.
## 2838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Unknown cause.
## 2839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft was struck by lightning while descending through FL100.  There was an explosion in the No. 1 fuel tank which caused the left wing to fail and the plane to crash. Ignition of fuel vapor in the No.1 tank in the vicinity of the motor drive fuel valve.
## 2840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After entering the wake turbulence of a MiG fighter plane, the rudder deflected sharply and both propellers feathered causing the plane to go into a spin and crash.
## 2841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft was destroyed after a hijacker set off grenades in the cabin. All three hijackers were killed.
## 2842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After takeoff from Malabo the aircraft collided with Mount San Carlos. Cause unknown. Possible failure of radar equipment.
## 2843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The No. 3 engine failed during the takeoff roll as the plane left Agana Naval Air Station. The aircraft began to rise but struck terrain and exploded in flames. The loss of climb capability after the crew retracted the flaps at too low an altitude to clear the rising terrain. The flaps were retracted after the No. 3 propeller feathered as the aircraft lifted off the runway. A driver in an automobile struck by the aircraft was killed.
## 2844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stalled and crashed into the sea during the approach two miles from the airport.
## 2845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane was hijacked ,in Athens, by Palestinian terrorists and flown to Entebbe Uganda. Seven passengers were killed during a commando raid by Israeli armed forces to free the hostages.
## 2846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Caught fire and exploded.
## 2847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The No. 3 engine failed during the approach and the No. 4 engine was feathered by mistake. The No. 4 engine was restarted but  the aircraft lost control and crashed into Zlaté piesky lake after a decision to go-around was made.
## 2848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Instead of turning on course the cargo plane continued straight and hit a mountain.
## 2849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed 15 minutes after taking off. An engine caught fire.
## 2850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed while en route. Struck the slope of Mt Chimborazo. Controlled filght into terrain.
## 2851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A hijacker set off two grenades in the cabin and was killed.
## 2852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft suffered structural failure after flying into a severe thunderstorm. The starboard wing, horizontal stabilizer and vertical tail fin separated from the aircraft.
## 2853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed while climbing to cruise altitude. Failed to maintain adequate rotor speed.
## 2854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a hill one mile short of the runway in heavy rain and wind while attempting to land at Lajes Air Base. Members of the Venezuelan choir Orfeon Universitario killed. The aircraft was not properly aligned with the runway as it made its approach. Weather conditions associated with hurricane Emmy was the primary factor in the accident.
## 2855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Midair collision at FL187.  ATC error. Forty-six deaths on the Antonov, 18 on the Yak. Violation of separation rules. Contributing causes were insufficient visual alertness on the part of both crews and a lack of situation analysis based on air/ground radio communications.
## 2856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Midair collision. Both planes flew towards the same VOR at the same altitude at the same time. ATC error, negligence in operations. Improper look-out duties on both aircraft. One hundred thirteen deaths on the DC-9 and 63 on the Trident. The entire shift of controllers were arrested. One was found guilty of criminal negligence and sentenced to seven years in jail but release after 3 1/2 years. The controller was made a scapegoat. The real cause was a run down air traffic control system.
## 2857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft struck Mt. Karatepa during an approach to land. The crew attempted to land at the wrong airport, landing at Isparta instead of Antalya.
## 2858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crash-landed in rugged terrain broke up and landed in a swamp. Possilbe cabin pressure problem causing the plane to disintegrate in the air.
## 2859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane struck Mt. Kenya while descending to land. Descended prematurely.
## 2860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ten minutes after taking off from Barbados the aircraft reported an explosion aboard. The plane was seen below the overcast trailing smoke. The aircraft crashed into the Caribbean sea. Detonation of an explosive device in the aft of the cabin which initiated an uncontrollable fire which led to the incapacitation of the crew.
## 2861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane failed to climb and crashed into trees, poles and houses at the end of the runway and came to rest in a soccer field 560 meters beyond the runway. The failure of the crew to select enough thrust to achieve the necessary acceleration. Crew fatigue.
## 2862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crash landed in flames during an emergency landing. The right engine failed during takeoff. A fatigue crack in compressor led to engine destruction, severing of fuel lines and fire. The fire spread because the crew did not shut off the fuel supply.
## 2863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The airplane was seen to initiate a turn to the left when it stalled and crashed in a field.
## 2864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After overshooting the runway, a go-around was initiated but abrupt application of power made an engine autofeather after which the plane crashed.
## 2865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane went missing between Curacao - Port-au-Prince.
## 2866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The airliner crashed into mountainous terrain after being diverted to Kozani due to poor weather at Larissa. Controlled flight into terrain. Premature descent.
## 2867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After taking off an artificial horizon failure caused the crew to become disoriented and exceed bank angle limits and crash.
## 2868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane crashed short of the runway in rain. Windshear. The aircraft's rate of descent and descent flight path angle increased as a result of windshear encountered during visual approach below minimum descent altitude. The flight crew did not recognize these flightpath deviations because they were relying on visual references which were degraded by non-homogeneous fog and on kinesthetic cues which were adversely affected by the aircraft's forward center of gravity resulting from the improperly loaded aircraft.
## 2869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane crashed into trees on takeoff. Deviation in preparation for the flight by the crew and pilot error in the technique used during the takeoff.
## 2870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In heavy fog  the crew continued their descend below decision height, although they had not obtained visual contact with the runway. The fact that visibility had decreased below minima (700 m) was not reported to the crew.
## 2871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The survey fllight deviated from the approach pattern and crashed into Mount Ostraya.
## 2872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into an industrial area during a landing attempt. Lack of altitude awareness and disorientation leading to an uncontrolled descent. Crew did not make use of navigational aids.
## 2873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Struck the slope of Mt Pintado located 25 km north of the airport shortly after taking off from Trujillo.
## 2874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane took off from Palm Springs Municipal Airport in light rain, bound for Las Vegas Nevada. The plane climbed to 9,000 feet but never changed its runway heading and flew directly into a mountain at an altitude of 9,700 feet. Flight crew's misinterpretation of an IFR clearance issued by the Palm Springs Departure Control and subsequent ATC instructions.  Natalie "Dolly" Sinatra, 82, mother of entertainer Frank Sinatra and her traveling companion were killed.
## 2875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane crashed while attempting to take off. Alcoholic impairment of captain. Flightcrew members did not prevent captain from attempting to fly. Blood alcohol of 0.21.
## 2876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft was preparing to land when it was informed by the tower that its left engine was on fire. Shortly thereafter, the plane exploded and crashed 2 miles short of the runway.
## 2877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into Little Herman Mountain while on approach.
## 2878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft suddenly dove to the earth into an apartment parking lot from an altitude of 1,150 feet. Icing of the stabilizer leading to stabilizer stall. The No.2 and No.3 engines had been running with reduced power and the anti-icing system temperature was too low.
## 2879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane stalled nearly vertical and crashed. Shifting cargo.
## 2880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed short of the runway while attempting to land. Failure to follow the prescribed flight path and decision height in marginal weather.
## 2881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Stalled and crashed after the crew executed a missed approach. Failure of the crew to adopt a proper go-around configuration after a missed approach. The loss of control during initial climb was the result of a premature raise of the flaps, which caused the aircraft to reach a critical angle of attack and to stall.
## 2882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed in whiteout conditions. Possible spatial disorientation on final.
## 2883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the ocean. Engine failure.
## 2884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed into cloud obscured  Mt. Serra shortly after taking off from San Giusto Airport at Pisa. The plane was seen making a evasive maneuver before slamming into the mountain peak.
## 2885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane crashed short of the runway while attempting to land.  The crew continued the approach below the glide until impact with ground.
## 2886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Both aircraft were diverted to Tenerife because of a bombing at Las Palmas Airport. After an extended delay,  both planes were instructed to back track up the runway. The KLM plane reached its takeoff point while the Pan Am plane was still on the runway. The Pan Am plane continued up the runway missing the taxiway turnout. There was heavy fog on the runway. The KLM plane began its takeoff roll without permission with the Pan Am plane still on the runway. The controller and Pan Am pilot each radioed a warning to the KLM plane, but were not heard because the simultaneous transmissions interfered with each other.The KLM plane hit the Pan Am plane just as it was taking off. Both planes burst into flames.  KLM 234 + 14 crew,  Pan Am 326 + 9 crew killed. All aboard the KLM plane were killed. The KLM captain was their safety officer and for some months had  been training other pilots using a simulator, where getting takeoff permission was not simulated. The Pan Am aircraft was named Clipper Victor. The KLM aircraft was named Rhine River. Despite all the circumstances the KLM plane was blamed for taking off without permission by the NTSB.
## 2887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After spotting a mountain in front of him, the pilot applied full power and went into a steep climb. The plane stalled and crashed into trees.
## 2888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The crew continued their visual approach after entering an area of fog with visibility less than 500 m and losing sight of the ground. After deciding to go around, the right wing hit a 9-meter high pole. The wing caught fire and the number 2 engine failed. The fuselage hit the ground sideways in a field about 1,500 meters from the runway. The plane broke up and caught fire. The pilot-in-command decided to continue the approach below the glide under VFR mode in IMC conditions.
## 2889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft sustained a broken windshield and loss of power to both engines after penetrating a thunderstorm and encountering hail. The plane crash landed on a highway and exploded in flames. Total and unique loss of thrust from both engines while the aircraft was penetrating an area of severe thunderstorms with heavy precipitation and hail. The hail clogged bleeder valves in the engines causing multipe engine surges until the compressors tore apart. Contributing factor was the failure of the company's dispatcher to provide the flight crew with up-to-date severe weather information.
## 2890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on the slopes of the Rio Guape mountains. Found 1 month later. Deviation from course.
## 2891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a building while attempting to land in snow and poor visibility.
## 2892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Failure of the No. 1 engine due to lack of oil. Mantenance error. Incorrectly connected high pressure oil hose.
## 2893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed and exploded in the desert shortly after taking off . Crew error. Flight at an unsafe altitude into an area of unfamiliar terrain.
## 2894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane struck power lines and trees while attempting to land.
## 2895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The elevator assembly separated in mid-flight. The plane nose dived and crashed. The in-flight separation of the right hand horizontal stabilizer and elevator as a result of a combination of metal fatigue and inadequate failsafe design in the rear spar structure. Shortcomings in design assessment, certification and inspection procedures were contributory factors.
## 2896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While passengers were loading aboard the helicopter on top of the Pan Am building, the landing  gear collapsed causing the helicopter to tip on its side.  Four people, waiting to board the craft  were killed by the rotating blades. One of the blades tore loose and struck a window breaking in two. One-half of the blade then sailed two blocks striking and killing a pedestrian, 800 feet below the heliport. Fatigue failure of the upper right forward fitting of the right main landing gear tube assembly. The fatigue originated from a small surface pit of undetermined source.
## 2897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Struck power lines and crashed 1 m from the runway while attempting to land.
## 2898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into trees while making an ILS approach.
## 2900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the Pacific Ocean and exploded moments after taking off from Wake Island Air Base. The plane rose no higher than 400 ft. before crashing one mile from the end of the runway.
## 2901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After taking off the cargo plane's No. 2 engine did not develop power, the plane rolled to the right and crashed. Attempted operation with known deficiencies in equipment. Failed to follow approved procedures. Inadequate maintenance and inspection.
## 2902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into the Black Sea shortly after taking off from Kirovograd.
## 2903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down by rebels near the Namibia border as it took off.
## 2904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The crew attempted to take off in tailwind, stalled, contacted trees and crashed
## 2905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane crashed into a mountainside in poor weather, visibility and rain showers.
## 2906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into a swamp and burst into flames as it attempted to land in heavy rain at night.
## 2907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The left engine exploded in flight and the plane crashed into mountainous terrain. Plane was overloaded with passengers.
## 2908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter, piloted by Francis Gary Powers, 48, crashed in Balboa Park on the way back from covering a news story on a brush fire in Santa Barbara. Francis Gary Powers was famous for piloting the U-2 spy plane in 1960 that was shot down by the Russians and caused a major political crisis for President Eisenhower.  Powers was a helicopter pilot and newscaster for KNBC in Los Angeles. Power's cameraman was also killed. The helicopter apparently ran out of fuel.
## 2909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane took off struck trees, crashed and burned.
## 2910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane stalled, went into a spin and crashed short of the runway. Failure to maintain flying speed.
## 2911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The No. 4 engine failed shortly after taking off. A fire developed and the plane crashed into the ocean. A loss of control following in-flight separation of the right-hand outboard wing section and the No.4 engine. These failures followed a No.4 engine failure, an internal engine fire and a fire in the aircraft fuel system eventually resulting in a massive external fire.
## 2912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Struck a mountain peak in the Cajas mountains  in poor weather . Flying VFR in IFR conditions.
## 2913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed in level flight  into Mt. Iliamna glacier at 7,000 feet. Failure of the flight crew to use proper navigational procedures for the route being flown especially their failure to use the available backup means of navigation to verify the position and progress of the flight. Recovery of bodies or wreckage not possible.
## 2914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed in the jungles of eastern Burma.
## 2915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane did not gain altitude after taking off and crashed into trees 2.5 miles from the runway. The aircraft was overloaded and lost an engine on takeoff.
## 2916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain peak in the Manzano range shortly after taking off and making a right bank. The aircraft was observed flying too low and did not heed the controller's warnings. Fatigue may have played a part in the accident.
## 2917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed short of the runway. The aircraft was being flown at reduced power and went unnoticed by the crew until it struck the ground in level flight..
## 2918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft struck a hill 4 miles short of the runway while on  a VOR approach during a thunderstorm. Crew error. Descended below MDA.
## 2919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The crew diverted to Mc Comb because of low fuel. Both engines quit before the aircraft could land and a forced landing was attempted in a wooded area. The plane struck trees before it could make a forced landing in an open field. Lead singer Ronnie Van Zant, 29, guitarist Stevie Gaines, back up vocalist Cassie Gaines and assistant manager Dean Kilpatrick of the Lynyrd Skynyrd band killed.  Several other members of the band were seriously injured. Fuel exhaustion due to crew inattention of the fuel supply. Contributing factors were improper flight planning and a malfunction in the No.2 engine which caused a higher than normal fuel consumption.
## 2920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After lifting a water container the aircraft began rotating until control was lost and contact was made with the ground, shearing off the tail rotor and a large portion of the tail assembly. New engines were installed in the CH-53s to increase the power of the main rotor and on a whole to make the helicopter more powerful. However, it was soon evident that the tail rotor could not balance the increased power created by the main rotor. Under certain conditions the aircraft would become unstable and lose directional heading. Sikorsky warns of these conditions. To compensate for the mistake that had been made, Sikorsky designed and tested a bell crank system to stabilize the rear rotor. After seven years, this helicopter was still not retrofitted with the bell crank system. Gross weight of the container exceeded the lifting capacity of the helicopter. No restrains used by the passengers.
## 2921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Exploded, crashed and burned on approach.
## 2922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane failed to gain altitude and crashed into trees.
## 2923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft landed 1,000 ft. past the aiming point of the runway in heavy rain, overran the runway and plunged off a cliff during a third landing attempt. Hydroplaning, due to poor drainage on the runway. Excessive speed during landing. In the last attempt, the plane was 44 ft high in the begining of the runway flying at 150 kt. Then a sudden tail wind increases the speed to 155 kt. Cross winds from several directions made the plane unstable. Tail winds alternated with frontal winds making the speed unstable. The plane only hit the runway after 800m. The same cross winds make it impossible to align to the center of the runway. Then aquaplaning did the rest.
## 2924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The flight crashed into high ground after a second landing attempt. Procedural error by the crew during the final approach in that they abandoned the ILS procedure. This was influenced by the interruption of the VOR signal.
## 2925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into mountains north of the city in fog and adverse weather conditions.
## 2926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After not being able to land at the scheduled airport due to fog, the crew could not find the alternate airport, ran out of fuel and crashed.
## 2927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               During a hijacking and while descending from 21,000 to 7,000 feet, both pilots were shot and the aircraft crashed into a swamp.
## 2928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Collided with cable crane. Crane operator failed to park crane boom in stowed position.
## 2929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane took off at night and entered a steep attitude after the flaps were raised and crashed.
## 2930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While on patrol the plane flew into a 4,200 ft. mountain at 1,200 ft.
## 2931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed during takeoff in rain and fog. Killed, were the entire Evansville basketball team. The aileron on one wing and rudder remained locked upon takeoff, which made it extremely difficult to bank. An attempted takeoff with the rudder and right aileron control locks installed, in combination with a rearward center of gravity. Improperly loaded luggage which resulted in rearward center of gravity which resulted in the aircraft's rotating to a nose-high attitude immediately after takeoff and entering the region of reversed command from which the pilot was unable to recover.
## 2932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While in a holding pattern because of electrical problems the cargo plane cashed into 7,600 ft. mountain. The approach controller's issuance and the flight crew's acceptance of an incomplete and ambiguous holding clearance in combination with the flight crew's failure to adhere to prescribed impairment-of-communications procedures and prescribed holding procedures. The controller's and flight crew's actions are attributed to probable habits of imprecise communication and of imprecise adherence to procedures developed through years of exposure to operations in a radar environment. Contributing to the accident was the failure of the aircraft's No.1 electrical system for unknown reasons.
## 2933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ditched into the ocean while on a second approach. Crew error. Sensory illusion.
## 2934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane made a forced landing in the ocean. Fuel exhaustion. Inadequate preflight planning. Mismanagement of fuel.
## 2935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a hill while descending for a landing. Flying under VFR in IFR conditions.
## 2937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Following a right turn, after taking off, the plane rolled to the left beyond 90 degrees, went into a steep dive, crashed and exploded in shallow water. Irrational control wheel inputs on the part of the captain after his attitude director indicator malfunctioned leading to complete loss of situational awareness.
## 2938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Struck Cerro Granada, at 6800 feet in mountain fog.
## 2939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during takeoff.
## 2940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The passenger flight attempted to make an emergency landing at Artigas Airport when it had taken off from.  An engine failure was followed by a wide banking turn and crash to the ground bursting into flames.
## 2941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed shortly after taking off from Richland after climbing to 400 feet and stalling. Crew error.  The failure and inability of the flightcrew to prevent rapid pitchup and stall by exerting sufficient push force on the control wheel. The pitchup was caused by the combination of a mistrimmed horizontal stabilizer and a center of gravity near the aircraft's aft limit. The mistrimmed condition resulted from discrepancies in the aircraft's trim system and the flightcrew's preoccupation with making a timely departure. The out-of-trim warning system was inoperative.
## 2942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft touched down just as the crew noticed a snow plow on the runway. A go-around was initiated but the thrust reverses did not stow away properly because hydraulic power was automatically cut off at lift-off.  The aircraft missed the plow, overran the runway, crashed and burned. Estimated time of arrival given by Calgary ATC in error. Crew did not report over its final approach beacon.
## 2943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Continued VFR flight into adverse weather conditions.
## 2944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While approaching V1 speed on takeoff, a loud bang was heard followed by shaking of the aircraft. The crew decided to abort the takeoff. With the end of the runway approaching, the captain steered the aircraft off the runway to the right. The landing gear failed and resulted in a fire. The plane slid for approximately 650 feet and came to rest 40 feet right of the runway centerline. Several passengers not heeding the warnings of the stewardess exited onto the wing and fell into the fire. Failure of two tires on the left main landing gear resulting in failure of a third tire during a critical point in the takeoff. This was to be pilot Gene Hershe's last flight before retiring.
## 2945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Midair collision. The Fokker collided with the MiG which was performing touch-and-go landings. Error by the MiG pilot. Sixteen killed on the Fokker and two on the MiG.
## 2946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed into the ocean shortly after takeoff due to problems with the artificial horizon. The pilot radioed he was having an instrument failure. The plane the banked to the left and crashed into the sea.
## 2947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed shortly after takeoff. An undetermined emergency of some kind occurred during the climb after takeoff resulting in loss of control of the aircraft.
## 2948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a mountain in fog.  Continued VFR flight into adverse weather conditions.
## 2949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After an explosion, the aircraft went spinning into the ground and crashed into a field.
## 2950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter was attempting to land on an oil drilling platform. The co-pilot suffered spatial disorientation and stalled helicopter and crashed.
## 2951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Made a forced landing in water. Fuel starvation. Inattentiveness to fuel supply. Fuel selector positioned between tanks.
## 2952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft, which deviated off course, suffered rapid decompression after being fired upon by a Russian fighter. The aircraft made an emergency landing on a frozen lake.
## 2953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed on farmland six miles outside of Bogota shortly after taking off.
## 2954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed while attempting a non-precision instrument approach to Pensacola and landed in 12 feet of water, 3 nm short of the runway. Failure of the crew to monitor altitude and descent rate and the failure of the 1st officer to provide the captain with the required altitude and approach performance call-outs. Also the flight engineer disabled the GPWS alarm so the crew could hear one another better. In addition, the night flight had been diverted from its primary airport due to poor weather and was required to execute a compressed approach (descending and approaching more quickly and steeply than normal), and the crucial altimeter readout was an old drum-roll-counter type (due to be replaced), which could easily be misread, especially in  heavy workload situations. Three fatalities occurred when the frightened passengers grabbed their seat cushions and exited the plane from the rear. They drowned in part because their seat cushions were not flotation cushions. The airplane was not required to have floatation cushions because it was not flying over water.
## 2955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The flight engineer accidentally shut off the automatic transferring of fuel from the sump tank. Eventually all three engines stopped and the plane crashed. Fuel starvation.
## 2956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed in heavy fog while attempting to take off.
## 2957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The helicopter crashed 87 miles northwest of Bergen on a ferry run to an oil drillilng platform.
## 2958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft overran the runway and crashed into a revine after an aborted takeoff due to a blown tire. The No. 3 tire failed on takeoff and debris damaged the right gear 'down and locked' switch, causing a gear unsafe indication in the cockpit. Debris was also ingested by the No. 2 engine causing a loss of reverse thrust during the rejected takeoff.
## 2959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft, flying VFR, collided with a mountain in deteriorating weather condtions after being blown off course which went unnoticed because of lacking navigational equipment.
## 2960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed shortly after taking off from runway 18.
## 2961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed on takeoff. Down elevator control stop backed out, limiting down elevator travel to 1 1/2 degrees of normal 20 degrees.
## 2962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in a swamp.
## 2963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While on approach, the aircraft yawed to the left and plunged into the ocean in a left-wing and nose-down attitude and sank. In-flight failure of the left-hand inboard flap control rod that led to a sudden retraction of the complete left-hand flap system and sudden loss of control.
## 2964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft took off from  from Kariba Airport at 17.10.  Shortly after departing Kariba, the starboard wing was hit by a SAM-7 missile.  The crew tried to make an emergency landing in a large clearing in the bush. The aircraft crash landed, striking an irrigation ditch, cart-wheeled, broke up and caught fire.  Soldiers from the Joshua Nkomo's Zimbabwe Peoples Revolution Army, who were responsible for shooting down the airliner, later killed 10 of the 18 survivors. The remaining survivors were rescued the next day.
## 2965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The helicopter experienced rotor failure. Undersized threads on anti-node bar.
## 2966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into a mountain.
## 2967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The float plane flew into a blind canyon and crashed into water. Continued VFR flight into adverse weather conditions.
## 2968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The domestic flight crashed while attempting to land at Paranaque in thunderstorms with heavy rain and wind gusts. Possible lightning strike.
## 2969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Midair collision. The PSA was descending and about to land at Lindbergh Field. The Cessna was climbing while engaged in practice approaches. The 727 overtook and struck the Cessna from the rear. The primary cause was the PSA crew lost sight of the Cessna and did not make that fact known to the ATC.  The ATC failed to realize from the PSA transmissions that they lost sight of the Cessna. One hundred thirty-five killed on the PSA, two on the Cessna and seven on the ground. Crew fatigue may have played a part in the accident as there are unofficial reports that the crew attended an all night party and had only 2 hours sleep from the night before.
## 2970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After taking off, one of engines stalled due to a damaged #5 cylinder exhaust. The pilot attempted to return to to Kuopio. He turned  but the plane lost control and crashed into Lake Juurusvesi.
## 2971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lost both engines on climbout and made an emergency landing on a sandbank of the Irrawaddy River.
## 2972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The military transport crashed into a fog-shrouded hill, 20 miles south of the city.
## 2973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed after the left engine flamed out on takeoff.
## 2974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The tail rotor pitch control system failed shortly after taking off. The helicopter tried to return and crashed.
## 2975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed following engine flame out in icing conditions.
## 2977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the ocean.
## 2978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed short of the runway into a coconut plantation while attempting to land in heavy rain.  Windshear. Excessive sink rate. Crew's non-conformance with approach procedures. Incorrect information supplied by the radar controller. Lack of an approach lighting system at Bandaranaike.
## 2979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft sank in the sea after the left wing tip struck the water in heavy rain and wind.
## 2980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a mountain and burned short of the runway after experiencing engine failure.
## 2981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in the Rubio mountains.
## 2982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in rain, fog and low ceiling. Continued VFR flight into deteriorating weather conditions.
## 2983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forced to return to Steamboat Springs due to severe icing, the plane crashed into a 10,530 ft. mountain.  Severe icing and strong downdraughts associated with a mountain wave which combined to exceed the aircraft's capability to maintain flight. Contributing to the accident was the Captain's decision to fly into probable icing conditions that exceeded the conditions authorized by company directives.
## 2984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 2985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Couldn't climb on takeoff due to non-availability of leading edge slats, overran the runway and killed one passenger and  3 maintenance workers on the ground cutting grass. Nonavailability of leading edge devices immediately after rotation during take off.
## 2986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed into ocean during a landing approach. Poor monitoring of altitudes and too early a transition from ILS to visual flight procedures.
## 2987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While on a flight from Denver to Portland, the aircraft ran out of fuel while the crew was distracted with a landing gear problem. Failure of the captain to monitor properly the aircraft's fuel state and to properly respond to the low fuel state as indicated by other crew members. Contributing to the accident was the failure of the other two flight crew members either to fully comprehend the criticality of the fuel state or to successfully communicate their concern to the captain.
## 2988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The pilot switched off the de-icing system too early during the approach through clouds in icing conditions  which resulted in the aircraft losing longitudinal stability and pitching over and crashed.
## 2989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed short of the runway on approach. Crew error. Non-compliance with proper procedure, lack of crew coordination, crew fatigue and faulty altimiter.
## 2990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Struck a mountain. Failure of the crew to level off at the prescribed altitude either due to inadequate monitoring or an altimeter setting error by confusion between QNH and QFE.
## 2991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Contact with the cargo plane was lost 30 minutes after taking off from Tokyo Narita Airport.The cargo included 153 paintings by Manabu Mabe, returning from a Tokyo exhibition, valued at US$1.24 million. Neither the wreck nor the paintings were ever found. The cause of the accident was blamed on cabin depressurization, which killed the crew.
## 2992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hit trees and burst into flames shortly after taking off.
## 2993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shot down by rebels with 2 surface-to-air missiles a few minutes after taking off from Kariba.
## 2994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed  inverted shortly after lifting off the ground. The captain's decision to take off with snow on the aircraft's wing and empennage surfaces which resulted in a loss of lateral control and a loss of lift as the aircraft ascended out of ground effect.
## 2995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Flew into the water while on ILS approach. The crew was misled by a visual illusion in conditions of reduced visibility into believing they were at a safe height and consequently failed to monitor the flight instruments sufficiently to confirm their aircraft maintained a safe approach path.
## 2996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane crashed after a bomb exploded aboard.
## 2997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane failed to maintain flying speed and crashed while attempting to take off.  Improperly loaded aircraft. Nose baggage door opened during takeoff. Flaps inoperative. Improper emergency procedures. Inadequate emergency training.
## 2998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane ditched into Santa Monica Bay near Marina del Rey, shortly after taking off from Santa Monica Airport. The flight crew's mismanagement of an emergency procedure following an autofeather of the right-hand propeller which resulted in their shutting down the remaining engine. A leak or break in the propeller pressure line probably caused the right engine to autofeather. The left engine was shut down when the flight crew failed to identify the engine on which the autofeather occurred and moved the left power lever to the stop position. Contributing to the accident was the unavailability of vital restart information to the crew.
## 2999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed into a factory after being stolen and flown by pilot who was not qualified to fly.
## 3000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Despite two missed approaches in thunderstorms, the pilot declined the controllers' suggestion to divert to Dubai. The aircraft landed heavily on the runway (due to windshear), suffered landing gear damage, veered off the runway and crashed into a fire station building not far from the terminal building. At that time, all on board were still alive. Fire from spilled fuel started shortly thereafter and there was panic to escape the cabin.  The aircraft was named "The City of Petra."
## 3001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircarft crashed in freezing rain and fog shortly after taking off. The aircraft was overloaded. The pilot had very little experience flying the aircraft type.
## 3002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane lost the No. 2 engine on takeoff, overran the runway, crashed into the ILS localizer antenna, broke up and caught fire.
## 3003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Engine failure shortly after takeoff caused damage so the landing gear could not be retracted and increasing drag during the critical climbout phase. Airspeed slowed until the aircraft crashed.
## 3004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                During an attempted go-around, the plane struck boat wakes and crashed. One passenger drowned.
## 3005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Tail rotor separated in flight shortly after takeoff. The helicopter autorotated and crashed. Fatigue fracture in tail rotor.
## 3006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft disappeared while en route. Wreckage was not discovered for over 5 years.
## 3007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed in heavy crosswind while attempting to takeoff. Inadequate preflight preparation and/or planning. Pilot in command failed to follow approved procedures,directives,etc. Cargo shifted.
## 3008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               During takeoff just, as the plane lifted from the runway, the left engine and pylon separated from the aircraft damaging the wing and hydraulic system which caused the aircraft to roll and crash. Highest single plane death toll in U.S. aviation history. Asymmetrical stall and the ensuing roll of the aircraft because of the uncommanded retraction of the left wing outboard leading edge slats and the loss of stall warning and slat disagreement indication systems caused by separation of the engine and pylon. Improper maintenance procedures used by American Airlines when dismounting the engines for maintenance, by removing the pylon and engine together, putting strain on the engine mounts leading to  stress cracks.
## 3009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into the Atlantic Ocean during a blinding sandstorm. The pilot, unable to land due to the sandstorm headed out to sea for another approach when the accident occurred.
## 3010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into a wooded area during a non-precision approach to Rockland, in fog . Failure to arrest aircraft's descent rate, without the runway in sight. Inordinate management pressures, the first officer's marginal instrument proficiency, the captain's inadequate supervision of the flight, inadequate crew training and the captain's chronic fatigue were all factors in the accident.
## 3011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed near the Karmwal Pass at 16,000 ft. mountain 10 minutes after taking off from Leh.
## 3012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed in a heavily wooded area about 1.5 miles northeast of Barnstable Municipal Airport while on an ILS approach. The failure of the flightcrew to recognize and react in a timely manner to the gross deviation from acceptable approach parameters, resulting in a continuation of the descent well below the decision height during a precision approach without visual contact with the runway environment. Pilot fatigue.
## 3013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Struck Mt. Sebayak at 5,500 ft. during its approach. Pilot error.The plane was named "Mamberamo."
## 3014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a rain forest. Pilot-in-command continuing the flight into conditions where he lost visual reference with the ground which resulted in the aircraft colliding with terrain.
## 3015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed in low ceiling and rain. Fluxgate compass inoperative because of chafed wires.
## 3016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On a third practice touch-and-go landing, the plane yawed to the right, stalled and crashed in an inverted attitude.
## 3017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft attained a nose-high attitude and pitched up shortly after taking off. The pilot's loss of control of the aircraft after takeoff because of the aircraft's grossly overweight and out-of-balance condition which resulted from misloading by the company's load control personnel. The misloading was due to the failure of the company to supervise and enforce its loading procedures.
## 3018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the sea after overrunning the runway while taking off. Locked condition of the elevators which prevented the rotation of the aircraft into a flying attitude. Gust lock became re-engaged during pre- flight check.
## 3019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed 1,000 feet short of the runway during a landing attempt at Akron-Canton airfield. Baseball player Thurman Munson, 32,  who was piloting the aircraft, was killed. Munson who was practicing takeoffs and landings, allowed the plane to get too low and then slowed the aircraft to 10 knots below safe landing speed.
## 3020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed due to engine failure on approach.
## 3021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the Kiroli Hills while on approach to Bombay at night. Momentary/intermittent loss of electrical contact in the G/S system of aircraft which gave the pilot an erroneous impression of the interception of the glide slope.
## 3022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Midair collision at 27,200 ft. Separation error by air traffic controller. Eight-four killed on the 65735 and 94 on the 65816. Fourteen players and 3 staff members of the Russian soccer team, Pakhtakor Tashkent were killed.
## 3023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a wooded area after all four engines flamed out. Fuel contamination.
## 3024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft lost control went into a spin and crashed after an uncommanded flap extension at FL270.
## 3025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane undershot the runway and crashed.
## 3026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into the sea after taking off.
## 3027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane was transporting company employees when it hit Surveyor Mountain 7 minutes after taking off from Klamath Falls. The plane hit trees along the crest of a mountain ridge along the flight path. Crew error. The crew's decision to undertake a direct point-to-point high cruise speed flight at low altitude.
## 3028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft hit a mountain at an altitude of 2,000 ft. during an approach in poor weather. Crew's misjudgement in selection of a low altitude flight profile and inadequate ATC assistance.
## 3029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Struck high ground in thick fog.
## 3030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed while attempting touch and go landings.
## 3031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft was on finals when it suddenly turned right and descended in a right wing-down attitude, striking the ground and cartwheeling into trees.
## 3032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft overran the runway and crashed with the left wing and tail separating before the aircraft came to a rest. The crew touched down too far down the runway at a speed higher than normal after a non-stabilized final approach. The crew did not fully apply the braking systems after a touchdown under known adverse conditions.
## 3033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane crashed after engine failure for undetermined reasons. Improper flap configueration. Plane overloaded. Hurried departure. Inadequate flight training.
## 3034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane crashed on takeoff. Improper loading.
## 3035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft struck a vehicle after landing on a closed runway in fog. The tower warned the flight three times about the closed runway. Non-compliance with the meteorological minima for the approach procedure, as cleared.  Failure to comply with the aircraft's operating procedures during the approach phase, and landing on a runway closed to traffic.
## 3036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While en route from Chicago to Washington an explosive device detonated in the baggage compartment. The aircraft was flying at an altitude of approximately 34,500 feet, when the flight crew experienced a noise which they described as a thump. Smoke subsequently filled the cabin and the aircraft was forced to make an emergency landing at Washington-Dulles Airport. The bomb was planted by the Unabomber, a man who had been accused of attacks over an 18-year period. He was arrested in April 1996 and subsequently received a life sentence.
## 3037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane descended below the decision height without having established ground contact and crashed into a wooded area.
## 3038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During the descent the aircraft attained a high airspeed and high rate of descent and disintegrated in flight. A progressive failure in the aircraft's electrical system leading to the disabling or erratic performance of some critical flight instruments and flight instrument lighting while the flight was operating in night instrument meteorological condition. As a result of these conditions, the flight crew could not resolve the instrumentation anomalies to determine proper aircraft attitude reference, and became disoriented and lost control of the aircraft. The crew's efforts to regain control of the aircraft imposed aerodynamic loads which exceeded design limits of the aircraft and caused it to break up in flight.
## 3039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After being airborne about a half an hour a cabin attendant reported a fire in the aft cabin area. Seventeen minutes later the aircraft crashed into a rocky desert while attempting an emergency landing. The blaze may have been started by a passenger possibly from a leaking kerosene stove carried aboard by a Haj pilgrim passenger.
## 3040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into the slopes of Mt. Erebus while on sightseeing flight to Antarctica. An incorrect computer-stored flight plan resulted in a navigational error directing the flight towards Mt. Erebus. Because of overcast, the crew descended below authorized altitude. Contributing to the accident was the crew's inexperience with flying the Antarctic route. Information about the navigational errors was suppressed by officials.
## 3041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shifting cargo caused the pilot to lose control and crash into a hotel.
## 3043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Impacted a mountainside at an altitude of 3400 m.
## 3045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the jungle on a domestic flight 20 miles from its destination. Severe thunderstorms associated with windshear and  a hurricane is believed to have caused the crash.
## 3046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Cubuk Hill in fog, two minutes away from landing at the airport.  The crew had deviated from the localizer course while on an ILS approach in poor weather conditions.The aircraft was named "Trabzon."
## 3047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the side of a hill after a go-around.
## 3048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Struck high ground in poor visibility while en route.
## 3049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane was on a 45 minute fight from Shreveport to Baton Rouge Louisiana. The aircraft climbed past its assigned altitude and veered to the northeast. The FAA  tried to contact the aircraft without success. Fighter jets was scrambled to intercept the plane but observed no one at the controls and got no response to radio calls. The plane rose to an altitude of 41,600 feet and headed out to sea. The plane eventually ran out of fuel, descended to about 25,000 feet, went into a spin and crashed into 1,100 feet of water. No wreckage or remains were ever recovered. The official cause remains unknown although it is believed the occupants lost consciousness due to oxygen deprivation. Louisiana State University football coach Robert "Bo" Rein, 34, was killed.
## 3050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed. Continued VFR flight into adverse weather conditions.
## 3051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into a mountain during a landing attempt in fog and snow. Inoperative ground radar, inoperative ILS. The aircraft was named "Shiraz."
## 3052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hit high ground at 2,700 ft. in poor weather while on approach.
## 3053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a building while attempting an emergency landing following the loss of one engine.
## 3054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while attemping to land.
## 3055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The helicopter experienced uncontrollable overspeeding, became airborne, lost power and crashed.
## 3056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a sea wall just 2 feet short of the runway while attemping an emergency landing.
## 3057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A bicyclist riding on the runway led the pilot to initiate a premature liftoff resulting in a stall. The plane was carrying paratroopers.
## 3058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft undershot the runway and bounced twice. The two outboard engines broke loose and the wingtips were ripped off. A fire broke out and spread rapidly. Pilot error.
## 3059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While attempting to land at Warsaw, the crew initiated an overshoot procedure after there were indications that the landing gear was not down. When thrust was applied, the No. 2 engine disintegrated, damaging two other engines and severing the rudder and elevator control lines. The plane crashed one-half mile from the runway threshold. Metal fatigue in the No. 2 engine turbine disc. The dead included 22 members of the U.S. boxing team and Polish singer Anna Jantar. The aircraft was named Mikolaj Kopernik.
## 3060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into hilly terrain after the left wing exploded. Cause unknown. The plane was returning to Incirlik Air Base.
## 3061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The right engine failed while taking off. The plane plunged to the ground, struck a helicopter, a small plane, four parked cars, and slammed into a hanger and burst into flames. The engine failed for undetermined reasons.  Improper emergency procedures. The pilot did not properly configure aircraft and  land immediately.
## 3062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the sea. Fatigue fracture of the main rotor.
## 3063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane crashed into a hill while landing during a thunderstorm. The pilot misjudged his speed and distance and failed to initiate a go-around. Improper flight supervision and control of the engines.
## 3064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed when attempting an emergency landing after the starboard main gear broke on take-off.
## 3065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hit by  a U.S. Marine Corps RH-53D Sea Stallion helicopter during a hostage rescue operation while on the ground.
## 3066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed into a mountain 5,500 ft. high at 300 mph during an approach to Tenerife. The pilot, while in a holding pattern, took the aircraft in an area of high ground not maintaining the correct altitude. Lack of communication between the pilot and co-pilot.
## 3067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft entered a thunderstorm, was caught in a downdraft and struck the ground 8 nm northeast of Bangkok International Airport. The pilot directed the aircraft into a thunderstorm in an early dissipating stage.  The aircraft was severely affected by a downdraft and lost altitude rapidly. At that time, the altitude of the aircraft was 1,500 ft. and the pilot could not maintain altitude. Procedural error by the pilot. Was not tuned to weather warning, did not use his weather radar and flew into an area of severe weather.
## 3068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in the Tapecua mountains.
## 3069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Accidentally shot down by anti-aircraft fire.
## 3070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deviated from their course to avoid a thunderstorm and crashed into a cloud covered mountain.
## 3071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After penetrating a thunderstorm massive amounts of water cause both engine to lose power. Although the engines were restarted the crew could not recover and crashed into a field. Engine failure due to massive ingestion of water into both engines. Crew error. Unwise decision to enter an area of thunderstorms. Critical weather not disseminated.
## 3072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Two Libyan MiG aircraft concealed themselves from radar detection by flying closely to the DC-9. When this was discovered, an attempt was made by either French or US aircraft to intercept the MiGs. It was believed that a shot fired at the MiGs accidentally struck Itavia Flight 870. The aircraft exploded and crashed off the island of Ustica. A report released in 1994 stated new evidence pointed to an explosive device aboard the aircraft causing the crash.
## 3073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed and burned in a field, two minutes after takeoff reaching a height of only 500 ft. Windshear.
## 3074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed into a mountain in poor visibility.
## 3075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed after continued VFR flight into adverse weather conditions. No windshield wipers, unreliable attitude indicator and inoperative turn needle.
## 3076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft touched down in water 1,000 ft. short of the runway.
## 3077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The flight experienced a fire in the aft cargo compartment  6 minutes after taking off from Rilyadh. The plane returned to the airport and landed but because of a delay in evacuating the plane, all aboard were killed by smoke and fire. Half a minute before landing the captain decided not to order an emergency evacuation.  When he landed, he did not stop immediately but instead proceeded to make a normal landing delaying the fire equipment from putting out the fire. It took a full twenty-three minutes after touchdown before the doors were opened. The failure of the captain to prepare the cabin crew for immediate evacuation upon landing and his failure in not making a maximum stop landing on the runway, with immediate evacuation.
## 3078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A section of the tail separated in flight and the aircraft crashed into a swamp. Broken spigot fitting, which is part of  the elevator torque tube assembly. The part was not repaced as required.
## 3079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed after being struck by lightning
## 3080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While en route a wing separated from the cargo plane which led to loss of control.  The wing attachment bolts failed in turbulence.
## 3081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into the Atlantic Ocean about 3.5 nm SW of West End Settlement in low ceiling and thunderstorm activity. The cause was unable to be determined. Contributing factors include flight into thunderstorm activity, a malfunctioning pitot tube and improper supervision by airline management.
## 3082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed on takeoff after losing one engine.
## 3083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into the desert after taking off. Report of an in-flight fire.
## 3084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed shortly after taking off.
## 3085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by Afghan guerrilla forces as it prepared to land.
## 3086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Descended at an excessive sink rate at a banked angle until it crashed to the ground as it prepared to land at Cairo Airport.
## 3087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undershot runway and crashed while landing in fog. Crew error.
## 3088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into a mountain at 9,500 ft. while descending to land. Continued VFR flight in deteriorating weather at low altitude in a mountainous area.
## 3089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane entered a steep bank shortly after takeoff and crashed. Complete engine failure/flameout No.1 engine. Powerplant failure for undetermined reasons. Pilot-in-command  failed to obtain/maintain flying speed. Improper emergency procedures
## 3090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft broke-up in flight in bad weather.
## 3091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A fire and explosion took place 5 minutes after taking off. The explosion was possibly caused by a bomb placed in the rear section of the aircraft.
## 3092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Two passengers were sucked out of the plane after a tire exploded in the wheel well causing damage to the fuselage.
## 3093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Stalled, crashed shortly after taking off.
## 3094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      During an instrument approach, the aircraft descended below 3,500 ft. and impacted rising terrain became airborne, went over a hilltop and came to rest 1,380 ft. further on. A fire started in the area of the right engine and spread throughout the fuselage. A premature descent to minimum descent altitude based on the flightcrew's use of an incorrect distance measuring equipment frequency and the flightcrew's subsequent failure to remain at or above MDA.
## 3095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed shortly after taking off approximately 10 miles north of Leningrad.
## 3096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed in rain, fog, windshear.  Pilot distracted as a result of a major electrical system failure. Undetected deviation from flightpath.
## 3097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The main rotor disk failed from a fatigue fracture while attempting to land.
## 3098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a tug boat and barges while on approach in heavy rain and wind and broke in two.
## 3099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The military transport crashed into Subic Bay, 15 miles west-northwest of Cubi Point Naval Air Station where it had taken off an hour earlier and where it was on approach to land. Witnesses saw the aircraft flying at a low altitude just before crashing into the sea and exploding in flames.
## 3100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As the plane was taking off, one of the engines failed and after climbing to 500 ft., the aircraft plunged to earth and exploded in flames.
## 3101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hit the ground short of the runway in snow and fog.
## 3102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Separation of a propeller blade caused a forced landing resulting the the plane crashing and burining.
## 3103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane flew into the ground while trying to avoid bad weather.
## 3104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While climbing through 3,800 ft., a Loon collided with the cargo plane penetrating the windshield. The copilot was killed and the captain sustained serious injuries. Debris from the windshield were ingested by the No.2 engine which had to be shut down. The pilot returned to the airport for a successful emergency landing.
## 3105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A midair collision occurred 2 nm east-southeast of Loveland, Colorado at 13,000 ft.. Two killed and 3 injured on the Cessna and 13 killed on the Jetstream. The failure of the Cessna pilot to establish communications with the Denver Center and his climbing into controlled airspace above 12,500 ft without an authorized transponder. Contributing factor was the fact that existing regulations did not prohibit parachute jumping in or immediately adjacent to federal airways.
## 3106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed during final approach. Hudbay Oil Co. charter.
## 3107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a mountainside. Icing.
## 3108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While cruising at FL 210, the pitch trim moved to the full nose-down position. Gravational forces from the resulting dive led to the break-up of the aircraft.
## 3109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into a river bed after two missed approaches and while in a holding pattern. Severe turbulence and thunderstorms where occurring in area. Loss of control of the aircraft and impact with the water by an error of the pilot in assessing the meteorological conditions on crossing through a zone of extremely violent cumulonimbus clouds. Windshear.
## 3110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shot down by a surface-to-air missile.
## 3111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into a mountain at 8,800 feet obscured by clouds.
## 3112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a mountain in fog.
## 3113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft hit the ground shortly after takeoff.
## 3114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The crew informed ATC they could see the field but crashed 30 km from the airport.
## 3115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The the right rear door  of the cargo plane detached and struck the horizontal tail plane and became lodged on the leading edge. Control was lost, and the aircraft entered a steep dive. During the dive, the wings and tail plane failed due to overstressing.
## 3116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane was brought down after a Soviet fighter jet crashed into the tail of the Canadair. The plane had strayed into Soviet airspace.
## 3117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Part of the right wing separated from the plane after the aircraft entered an area of heavy rain and severe turbulence and went into a spiral dive 8 minutes after takeoff.
## 3118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into a mountain. Controlled flight into terrain.
## 3119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed short of the runway while attempting to land after a severe vibration required the crew to shut down the engine and feather the propeller.
## 3120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While landing in adverse weather conditions, the aircraft landed right of the runway, bounced and struck the ground. The fuselage broke in two and caught fire. Thunderstorms and strong turbulence in the area associated with a tropical air mass.
## 3121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft experienced in-flight structural failure. Severe corrosion in belly of plane led to a pressure hull rupture and disintegration of the plane.
## 3122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Midair collision with a Soviet Air Force TU-16. The only surviving passenger, a 20 year old woman was found in a forest 3 days later. Poor communication between civilian and military ATCs.
## 3123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in the jungle on a mountain peak. Flying VFR in meteorological conditions below minima.
## 3124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flew into trees short and to the right of the runway, crashed and caught fire. Crew descended below minimums without visual contact with the ground.
## 3125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft was unable to gain altitude upon taking off. After turning left the plane struck a hill. Overloaded.
## 3126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Midair collision with a military Mi-8 helicopter (CCCP-22268). Thirty-three killed aboard the Yak-40.
## 3127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed short of the runway. The plane was carrying infantry troops.
## 3128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The fighter crashed into a village after the pilot ejected from the plane.
## 3129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into Tir Square while on approach to land. Killed were Iran's Defense Minister and other military officals.
## 3130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A loss of control, possibly initiated by an unexpected encounter with moderate to severe clear air turbulence, which caused the aircraft to depart the narrow flight envelope boundaries in which it was operating and from which recovery was not effected.
## 3131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft entered an area of severe turbulence and a tornado which resulted in the separation of the right wing and in-flight break up.
## 3132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain.
## 3133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After executing a turn to avoid traffic the cargo plane struck the ocean. Pilot misjudged the altitude and clearance.
## 3134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft took off, lost altitude, settled back on the runway and overshot the runway. The aircraft was overloaded. Other factors were the pilot misjudged the distance and speed during the takeoff and lack of proper pre-flight planning.
## 3135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The flight struck a mountain during an emergency descent due to explosive decompression. Crew's failure to follow approved emergency procedures.
## 3136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane acquired excessive vertical speed and descended below the glideslope while attempting to land. The aircraft impacted terrain in an open field and slid across frozen ground for about 300 m. The high descent rate could not be countered by applying maximum elevator trim. Malfunctioning elevator.
## 3137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed after takeoff.
## 3138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Engine failed during takeoff. The cargo plane crashed while returning to the field.
## 3139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into a mountain during an approach to Camp dell Oro Airport in heavy fog. The crew was not properly prepared for the approach. The minimum altitude and maximum speed limits of the holding pattern were probably not retained. Imprecise language used by the crew and air traffic controller.
## 3140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the water. Improperly loaded aircraft, weight and center of gravity.
## 3141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the sea.
## 3142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Struck high ground.
## 3143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into high ground 22 km from the airport. Continued VFR flight into IFR condtions.
## 3144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into the 14th St. bridge and the Potomac River and sank shortly after taking off from Washington National Airport. The aircraft reached a peak altitude of 300 ft. The flight crew's failure to use the engine anti-icing system during takeoff. Failure to de-ice the plane a second time before takeoff and taking off with snow/ice on the airfoil surfaces of the aircraft. Ice which accumulated on the engine pressure probes resulted in erroneously high Engine Pressure Ratio (EPR) readings. When the throttles were set to takeoff EPR, the engines were actually developing significantly less than takeoff thrust. The crew's inexperience in icing condtions was a contributing factor.
## 3145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down by rebel forces.
## 3146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While landing on an icy runway, the aircraft touched down 2,800 feet beyond the displaced threshold and slid off the end of the runway into shallow water with the nose section detaching. The minimal braking effectiveness on the ice-covered runway. The crew landed without sufficient information as to runway conditions. Lack of FAA regulations. The pilot's decision to retain autothrottle speed control throughout the flare and the consequent extended touchdown point on the runway contributed to the severity of the accident.
## 3147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A malfunction of the No. 1 engine feathering system caused the aircraft to lose control and crash.
## 3148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain before a planned paratroop drop.
## 3149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into Mt. Halla while on approach to land in poor weather. Possible microburst windshear.
## 3150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed in dirzzle and snow while en route.
## 3151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Struck Mt. Ipao on Panay Island.
## 3152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft flew into shallow water, 100 yards meters short of the runway, after a struggle between a mentally ill captain and the co-pilot and flight engineer. The plane hit approach-light stanchions extending above the bay waters after which the nose broke off. During the approach, the captain, known to have mental problems, put the inboard engines into reverse in an attempt to destroy the aircraft while the co-pilot and flight engineer battled to restrain him.
## 3153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane crashed into high ground while on apporach to land.
## 3154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft made an emergency landing near a reservoir after a fire erupted in the cockpit while the aircraft was en-route under IFR conditions. The fire spread to the cabin and destroyed the aircraft after impact.  The deficient design of the isopropyl alcohol windshield washer/deicer system and the inadequate maintenance of the system which resulted in an in-flight fire. The ignition source was not determined.
## 3155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed while on a flight from Berlevåg to Mehamn after the failure of the tail fin and rudder in moderate turbulence.  Overload due to a combination of clear air turbulence, mountain wave and the pilots spontaneous improper actions. There is some controversy surrounding this crash including the possiblity the aircraft was shot down by or collided with a British NATO Harrier jet fighter.
## 3156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed 40 miles northwest of Chicago O'Hare Airport where it was to have landed. Exploded and dove in an almost vertical attitude from a height of 13,700 ft. into a wooded area, exploded and burned. Most probably overpressurization under the cargo floor and ignition of fuel vapor.
## 3157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Randy Rhoads, 25, lead guitarist for heavy metal star Ozzy Osbourne was killed when the plane in which he was a passenger crashed into a tour bus and a house. The pilot was attempting to buzz Osbourne's tour bus when after several attempts, the left wing struck the side of the bus puncturing it in two places approximately half way down the right side.  The plane was thrown over the bus, hit a pine tree, severing it approximately 10 feet up from the bottom, before it crashed into the garage of a  house. The plane was an estimated 10-11 feet off the ground traveling at approximately 120 - 150 knots during final impact. Several other members of the group were inside the bus but were not hurt. The pilot,  Andrew Aycock's medical certificate (3rd class) had expired, making his pilots license invalid. All three aboard, Rhoads, Rachel Youngblood, the groups hairdresser and the pilot were killed. Poor judgement by the pilot in buzzing the bus and misjudging clearance of obstacles.
## 3158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane overran the runway in heavy rain, crashed into a field and burned while attemping to land.
## 3159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain during poor weather conditions.
## 3160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed on a snow covered mountain slope in a steep left bank in overcast and snow showers. Continued VFR flight into IFR conditons.
## 3161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Failure of the No.4 engine followed by separation of the engine and propeller of the No.3 engine.  Overpressurization of the right wing resulting in an explosion and in-flight fire. A Mayday was received from the aircraft before it fell and crashed into mountainous terrain and burst into flames. Attachment bolts to support the No. 4 engine had not been installed.
## 3162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft struck a mountain in heavy rain during a landing attempt.
## 3163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed under unknown circumstances.
## 3164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the ocean during an approach 2 km short of the runway.
## 3165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lost a wing and crashed.
## 3166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The helicopter, carrying troops from one ship to another during the Falkland Islands war, crashed into the Atlantic Ocean. Possible bird strike or component failure.
## 3167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft broke in two after a hard landing. The pilot's misuse of rain repellant caused an optical illusion.
## 3168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The helicopter crashed into the sea.
## 3169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed in poor weather conditions after taking off with paratroopers.
## 3170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed into a 2,500 ft. mountain (Serra da Aratanha) during an approach in heavy rain and fog. Despite two altitude alert system warnings and the co-pilot's warning of the mountains ahead, the captain continued to descend below the minimum descend altitude. Non-observance of air traffic and carrier's procedures.
## 3171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed into the tower during an approach in adverse weather conditions.
## 3172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The crew initiated a go-around after a heavy landing and a subsequently bounced lifted off the runway but descended back onto the ground and broke up. Deliberate reduction of engine power by the pilot 12 seconds prior to first impact due to altitude unawareness resulting in a high rate of descent and very hard landing. The aircraft was named "Gaurishankar."
## 3173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft flew into a plume from a volcanic eruption at 37,000 feet during the night. All engines failed and the windshield lost transparency because of pitting. The first engine was restarted at 12,000 feet, followed by the other three and the plane landed safely at Jakarta. The aircraft was named "City of Edinburgh."
## 3174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            From an altitude of 30,000 ft., a malfunction occurred causing the aircraft to crash 125 miles from its destination. In-flight failure and jamming of stabilizer screw-jack mechanism due to wear.
## 3175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed and burned in field shortly after takeoff. Failure of the aircraft's power plant fire warning system due to design deficiencies which resulted in false fire indications in both engines.
## 3177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed during a thunderstorm, 29 seconds after taking off from New Orleans International Airport. The plane reached an altitude of 95 to 150 feet and then began to descend and crashed into trees and houses bursting into flames. Microbust induced windshear. Limited capability of current ground-based low-level windshear detection technology. The aircraft was named "Clipper Defiance."
## 3178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Takeoff was aborted at V1 when the crew heard unusual sounds from the No.1 engine. The aircraft overran the runway and came to rest against a wall and some vehicles. Misjudged speed and distance and delayed action in aborting the takeoff.
## 3179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              During the filming of "Twilight Zone, The Movie", a helicopter crashed, killing actor Vic Morrow, 53, and two child actors. The helicopter was hovering low over a make believe Vietnamese village when an explosive charge from the special effects hit the tail rotor of the helicopter sending it crashing to the ground. One child, Rene Chen, 6, was crushed to death with the right skid. Vic Morrow and the other child, Myca Dinh Le, 7, were decapitated. Criminal charges against the production company were eventually dismissed in a much publicized trial. The civil trial ended in awards of 2 million dollars to the families of each of the children and $700,000  to the estate of Vic Morrow.
## 3180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A sixteen-year-old boy was killed when a bomb detonated under a seat cushion. The explosion caused minor damage and the plane landed safely at Honolulu. The bomb was placed onboard by Mohammed Rashed, a Jordanian terrorist with the May 15 Organization.
## 3181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hit high ground in poor weather.
## 3182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Rolled to the right and crashed from an altitude of 500 ft. shortly after becoming airborne.
## 3183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ground collision. Eleven killed on the LET and none on the Tupolev.
## 3184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Flew into a mountain in the Andes after the pilot became disoriented in a low ceiling.
## 3185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane ran out of fuel on the third approach in poor weather.
## 3186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed helicopter experiencing catastrophic mechanical failure and separation of one of the rotors. The aircraft was carrying French and German sky divers as part of Mannheim's 375 birthday celebration. Bearing failure in the forward transmission pack.
## 3187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed during takeoff after intense vibration caused by a blown retreaded tire. The crew aborted the takeoff above VR and overran the runway. They also  failed to apply reverse thrust symmetrically.
## 3188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft swerved to the right after landing, sideswiped a water tower, crashed into a building and continued into a revine where it exploded and burned. Failure of the control mechanism on the No.1 engine reverser.
## 3189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The helicopter crashed into the sea.
## 3190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flew into a mountain while descending for a landing.
## 3191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a mountain. Flying under VFR in IFR conditions, navigation error and lack of adequate training.
## 3192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane flew into a hill while descending to land. The pilot may have had a physical imparement.
## 3193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While on approach, the aircraft suddenly banked to the left and went into a steep descent and crashed.  Inadequate flight procedures by the pilot in command after experiencing a loss of power in the left engine.  Inadequate flight planning by the pilot-in-command in coordinating the adoption of measures and applying procedures to successfully remedy a stall condition caused by total loss of power in the left engine when the aircraft was flying at low altitude on final approach to land.
## 3194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter was shot down by Sandinistan rebels.
## 3195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inadequate and untimely actions of the crew in retracting  the flaps after takeoff, which resulted in severe loss of height and collision with obstacles. Overloaded,
## 3196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A passenger's cigarette caused a fire in the cabin which led to an oxygen tank exploding.
## 3197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane landed 1,725 feet beyond the runway threshold, right wing down, veered to the right until the right propeller struck a 2 to 3 foot snow bank. The blade separated from the engine and penetrated the cabin. Proper alignment not attained by pilot in command. Terrain condition, snow bank. Lack of NOTAM. Improper snow removal.
## 3198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After taking off the cargo plane rolled to the right with wings vertical to the ground until it crashed into a field. The flight crew's failure to follow procedural checklist requirements and to detect and correct a mistrimmed stabilizer before the aircraft became uncontrollable. Contributing to the accident was the captain allowing the second officer, who was not qualified to act as a pilot, to occupy the seat of the first officer and to conduct the take-off.
## 3199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The flight originated in Tripoli and stopped in Istanbul before beginning a 40-minute flight to Ankara's Esenboga Airport. The aircraft crashed short of the runway in fog, snow and poor visibility. Windshear.
## 3200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An overheated APU led to a fire and loss of control of the aircraft.
## 3201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the sea.
## 3202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pilot decided to climb and continue to fly VFR in deteriorating weather. The plane crashed in an area of rain, turbulence and thunderstorms. Continued VFR flight in poor weather and a physical impairment due to lack of oxygen when flying at high altitude.
## 3203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft landed past the runway threshold, experienced a hard landing in fog, slid off the runway and broke up. Improper in-flight decisions and inadequate supervision of the flight.
## 3204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While attempting to land, the cargo plane came in too steep and fast, bounced on landing, crashed and burned. Loss of control following ground contact due to anunstabilized approach. Impairment of the flightcrew's judgment, decision making and flying abilities by a combination of physioIogical and psychological factors.
## 3205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lost control of the aircraft and crashed in a snow storm. Continued VFR flight in IFR conditions.
## 3206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The No.2 engine failed during climbout forcing a return to the airport. While on the  base leg the aircraft lost altitude and crashed. High Pressure fuel pump shaft broke due to pump seizure. The remaining engine could not produce enough power because the fuel datum trimmer wasn't reset in accordance with the flight manual.
## 3207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The crew deviated from course while descending to land. Navigational error. ATC procedural error in not identifying the planes position.
## 3208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Both aircraft, flying in tandem, crashed into the side of a mountain. A third aircraft brushed trees and managed to remain airborne.
## 3209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed near an ammo depot.
## 3210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   One of the aircraft's engines failed shortly after takeoff and the plane landed heavily on muddy ground and broke in three.
## 3211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into St. John's River just shy of the Jacksonville Naval Air Station's main runway. Shortly after takeoff, one of the engines burst into flames and the crew was trying to make it back to the air station.
## 3212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was preparing to land at Ban ta Khli Air Base when it was waved off because the runway was not clear. The plane plunged to earth 700 ft. past the runway. Engine failure was suspected.
## 3213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Procedural error by maintenance crew caused O-ring seal to be left off all three engines, causing all oil to leak out in flight. One engine shut down at first sign of trouble, followed by failure of other two engines. First engine restarted at an altitude of 3,000 feet and ran long enough to make a safe landing at Miami 9 minutes later.
## 3214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The flight tried to land at Klyuchi Air Base in below-minima weather conditions with heavy snowfall at night.
## 3215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft failed to gain altitude and overran the runway. Crew did not follow checklist procedures.
## 3216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane was on a flight from Houston to Toronto with an intermediate stop at Dallas - Fort Worth.  An in-flight fire in the rear lavatory, of unknown origin, forced the plane to make an emergency landing at Cincinnati International Airport. Fatalities occurred from smoke inhalation and a flash fire that erupted when exit doors were opened. Underestimation of the fire severity and conflicting fire progress reports to the captain delayed a quicker emergency landing. Canadian folk singer Stan Rogers, 33,  killed. He was going home after attending the Kerrville Folk Festival in Texas. He died in the fire while helping other passengers to safety.
## 3217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The domestic flight crashed into the Formosa Strait after the right engine caught fire shortly after taking off.
## 3218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After experiencing a strong vibration, the number 4 prop separated and struck the aircraft causing a major gash in the bottom of the aircraft. This resulted in decompression of the cabin and jamming of the flight controls. Using the autopilot, which uses separate cables, the crew was able to maintain level flight, but not turn or adjust the throttles..  As the flight crew kept trying heavy control inputs, they worked the cables loose enough to regain some control. Diverting to Anchorage, they were barely able to descend by stopping a second engine.  On the second attempt they were able to get low enough to land safely. The cause of the prop separation was not determined since it fell into the ocean
## 3219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain
## 3220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed under unknown circumstances
## 3221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While flying at a low level during the aircraft stalled and crashed.
## 3222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into Fouta Djall Mountain.
## 3223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The jetliner scraped a mountian peak, exploded in flames and slid down a ravine coming to rest at the foot of a mountain. The plane was attempting to land in the Andean city of Cuenca. Under-qualification of pilot.
## 3224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into the English Channel.
## 3225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft took off from Montreal bound for Edmonton with less than half the fuel required to make the trip. A computer known as the "Fuel Quantity Information System Processor"  was not working properly so the ground crew made manual calculations for the amount of needed fuel. However, they used pounds/liter for the specific gravity factor instead of kilograms/liter. This was first model of aircraft of Air Canada to use kilograms. The aircraft ran out of fuel at 41,000 feet. With only standby instruments (magnetic compass, artificial horizon, airspeed indicator and altimeter) and no slats or flaps, the plane landed safely on a 7,200 ft. runway at Gimli, a former Air Force base converted into a racing drag strip. The plane became known as the "Gimli Glider."  The TV movie Falling from the Sky: Flight 174 was made about this incident in 1995.
## 3226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a cliff in the Grand Canyon on a sightseeing flight.
## 3227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed an burned after striking mountain  while attempting to land. Procedural errors.
## 3228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On a flight from Alaska to South Korea, the airliner drifted off course and twice penetrated Soviet airspace.  During the second penetration, the airliner was shot down by a Russian Su-15 Air Force fighter with air-to-air missiles. The aircraft crashed into international waters in the Sea of Japan. U.S. Representative from Georgia Lawrence McDonald killed. Because of an improper navigational setting the plane drifted off course. There was a U.S. spy plane in the vacinity of the 007 flight. The 007 plane was mistaken for the spy plane. The fighter pilot was ordered by Soviet command to shoot down the plane. Two air-to-air missiles were launched by the  fighter and struck the Boeing 747. Cabin pressure was lost and the aircraft suffered control problems, causing the plane to go into a dive and break up, crashing into the ocean.
## 3229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed en route. NY industrialist Georgel Cogar, 51, among those killed.
## 3230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Collided with a Chinese Air Force aircraft while taxing.
## 3231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed  into the desert after a distress message and during an emergency landing attempt. Detonation of an explosive device in the baggage compartment.
## 3232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the sea.
## 3233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After two missed IFR approaches the aircraft struck the ground short of the runway threshold during a third VFR approach.
## 3234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Struck trees on high ground after losing the No.1 engine during take off.
## 3235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Two minutes out of Springfield, the left generator suffered a complete mechanical failure. The first officer mistakenly shut down the right generator and all attempts at bring it back to life failed. Although the plane could be flown safely on batteries for about 30 minutes the captain decided to continue on towards Carbondale, thirty-nine minutes away. The batteries lasted for thirty-one minutes. The aircraft lost all power, turned blindly 180 degrees and crashed in a rural area.
## 3236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A passenger committed suicide by opening the right rear door and jumping out at 3,500 ft.
## 3237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The airliner crashed immediately after takeoff.  Shot down by rebels with a surface to air missile.
## 3238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft touched down short of the runway while on a VFR approach in a snowstorm. The nosegear and one of the main landing gear legs broke away from the fuselage and the aircraft caught fire.
## 3239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land at Madrid, the crew intercepted the wrong ILS track which caused the pilot to initiate a right turn short of the VOR beacon. The aircraft impacted a series of hills during which the right wing broke off, the aircraft cartwheeled and broke into 5 pieces and came to rest upside down. Procedural errors by the crew including the pilot not knowing his precise position before descending, failure of the crew to take corrective action after a warning from the  ground proximity warning system and deficient teamwork on the flight deck.  The aircraft was named "Magnus Viking," LN-RNA and dry-leased from SAS.
## 3240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed 18 nm short of the runway after attaining a nose-high attitude in poor visibility and caught fire. Crew may have been preoccupied with landing gear trouble.
## 3241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While taking off, the B-727 struck the DC-9 on the runway in poor visibility, fog and snow. Because of poor visibility and inadequate signs and markings the, DC-9 inadvertently wandered on the runway being used by the B-727 to take off. The airport had no ground radar. Fifty-one aboard the 727 and all 42 aboard the DC-9 were killed. Mexican actress,  María "Fanny Cano" Damián, 39, among those killed.
## 3242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After liftoff, the aircraft entered a 90 degree bank, struck power lines and crashed into buildings. Failure of the No.3 engine during a climb out with the No.4 engine operating at idle.
## 3243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The left wing contacted the ground after the pilot attempted a go-around. The plane cartwheeled and crashed. Runway is not oriented to correspond with the prevailing winds. The aircraft was overloaded by 840 lbs and was below that prescribed to take off. Lack of weather forcast.
## 3244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The airliner crashed on approach in adverse weather. Instead of a go-around the pilot put the plane in a tight turn to the right with a high slip angle, leading to a loss of airspeed. After descending through decision height the pilot attempted a go-around but the plane rolled to the left and lost altitude. After the bank angle reached 90 degrees the aircraft crashed short of  the runway.
## 3245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed due to mechanical problems.
## 3246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The helicopter crashed on takeoff. Crew error.
## 3247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The attempts at taking off failed because of poor engine performance. On the third try power was lost in both engines and an emergency landing was attempted on a highway. The left wing struck a light pole. Jet-A fuel was used when refueling the aircraft, instead of aviation gas.
## 3248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft struck power lines and crashed into a forest during a snowstorm while attempting to land.  A go-around was attempted at 300 ft. but the plane struck power lines and crashed 2.5 miles short of the runway. The crew descended below decision altitude while trying to make visual contact with the runway.
## 3249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After the No. 2 engine failed on takeoff, the pilot  tried to land but the propellers struck the runway and the aircraft ran off the runway into a ditch.
## 3250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed after the elevator failed. Disconnection of the linkage of the elevators control rod.
## 3251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After taking off from rwy 23, the aircraft crashed ssw of the airport about 6300 ft from the departure end of the runway wy & about 1800 ft to the left of the runway centerline. Impact occurred while the aircraft was in a steep descent. The wreckage path was scattered along a heading of 035 deg from the initial impact point. The aircraft was demolished by impact & fire & no preimpact part failure or malfunction was found that would have caused the accident. Cause undetermined.
## 3252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed after a hijacker detonated a hand grenade when the pilot tried to land.
## 3253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One of the helicopters was hit by guerrilla mortar fire and lost control, crashing into the other helicopter.
## 3254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land at JFK, New York, the aircraft touched down 4,700 feet beyond the threshold, slid off end of runway and came to rest in a tidal waterway. The crew's disregard for prescribed procedures for monitoring and controlling of airspeed during the final stages of the approach and decision to continue the landing rather than to execute a missed approach. Overreliance on the autothrottle speed control system which had a history of recent malfunctions.
## 3255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tried to make an emergency landing. Touched down, lifted off, stalled and crashed.
## 3256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the jungle.
## 3257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shortly after the cargo plane took off, the engines began to backfire, the plane lost altitude, the right wing clipped trees and the plane crashed.
## 3258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a wooded mountainside while flying VFR. Pilot error.
## 3259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Slowed to 90 knts and soon after began to descent at 5,400 fpm and disappeared from radar and crashed into the sea. The wreckage was never found.
## 3260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Midair collision.  Same aircraft type, same airline. One of 17 killed aboard PT-GKL and all 18 aboard PT-GJZ were killed. PT-GJZ crashed out of control but PT-GKL was able to make a forced landing without its No.1 engine on a river after which it sank.
## 3261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a village approximately 80 miles from Cairo, killing 19 on the ground.
## 3262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo aircraft's entry into an unusual attitude and the inability of the flight crew to analyze the flight condition before there was a complete loss of control. Although the precise reason for the loss of control was not identified, an undetermined failure of a component in the No.2 vertical gyro system, perhaps involving the amplifier and associated circuitry, probably contributed to the cause of the accident by incorrectly processing data to the co-pilot's approach horizon. The inflight structural failure of the aircraft was due to overload.
## 3263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      According to witnesses, the aircraft made a normal approach to Rwy 33 with no apparent abnormalities. However, when it was about 200 ft over the approach lights, they heard an increase in the engine thrust & the aircraft's descent stopped. Two witnesses thought the aircrew initiated a go-around. Immediately thereafter, the aircraft began an apparent level turn to the right. As it turned thru about 90 deg of turn, the bank angle had increased to nearly 90 deg, the aircraft's nose dropped & the plane crashed in a nose low attitude & burned. Malfunction of spoiler system for reasons undetermined.
## 3264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The on-demand air taxi flight departed for garden city with one passenger. The reported weather at the approximate time of the accident indicated low clouds, thunderstorm activity including rain and lighting. One witness stated that he observed the helicopter flying at an altitude of approximately 60 to 80 feet above the water. The helicopter wreckage was found the next day on the beach. Continued VFR flight into IMC. Improper altitude.
## 3265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft flew into heavy rain and a cloud shrouded hill after the pilot abandoned IFR and descended VFR. The plane was carrying journalists.
## 3266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the Pacific Ocean off the coast of Marinduque Island.
## 3267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Failure of the No. 4 engine caused the No. 3 engine to failue due to debris. Debris also started a fire in the cargo hatch. The crew was overcome by smoke and cyanide, lost control and crashed.
## 3268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While turning from its base leg onto the final approach the fight controls suddenly collapsed and the nose of the plane pitched up. The pilot attempted to maintain control  of the aircraft by using the throttle and flap controls but it collided with a vehicle and terminal building.  A rusted elevator control cable broke. Improper maintenance  procedures. Total failure of the elevator control due to corrosion.
## 3269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Banked to the left shortly after taking off and crashed into the ocean. Aircraft overloaded and improperly loaded. Inexperienced pilot. Water contamination of fuel.
## 3270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane flew into severe weather and hail penetrated the oil radiatiors. Power was lost in all four engines and load limits were exceeded during an emergency descent. The plane broke up and crashed.
## 3271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed in the water, 1,800 ft. short of the runway on a second landing attempt after a go-around on a VOR approach.
## 3272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    During takeoff the crew lost the No. 1 engine. The plane struck utility poles and crashed through the roof of a building. Missing spark plug from the No. 1 engine in the No. 14 cylinder.
## 3273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain while en route.
## 3274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A head-on midair collision occurred at 3, 400 ft. near San Luis Obispo Airport . The Beech was climbing and the Rockwell was descending. Two aboard the Rockwell aircraft were killed along with 15 aboard the Beech.  Failure of the pilots of both aircraft to follow the recommended communications and traffic advisory practices for uncontrolled airports in alerting each other to their presence. Underlying the accident were the physiological limitations of human vision and reaction time.
## 3275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When taxing tin preperation to takeoff, a compressor disc in the No.2 engine failed. Debris punctured the wing and fuel tank causing an uncontrollable fire that destroyed the aircraft.
## 3276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into Mt. Musaka.
## 3277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Lost both engines while taking off and crashed  wheels up in a field. Fueled with jet fuel by accident.
## 3278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After an engine failed in flight. The crew tried to make an emergency landing but over shot the runway and crashed.
## 3279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed during takeoff. Overloaded
## 3280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While taking off, the cargo plane was unable to gain altitude and crashed into buildings at the end of the runway. Improper calculation of center of gravity, load distribution and maximum takeoff weight for existing runway and weather conditions.
## 3281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down by Afghan rebels.
## 3282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Struck a tower while on approach in fog.  Weather was below VFR minima and not reported to the pilot because of a lack of observation and communications facilities at Fort Franklin. The decision of the pilot to continue the approach in fog.
## 3283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While landing, the crew noticed something on the runway, took evasive action and crashed into two cleaning vehicles. The flying control officer (ATC)  fell asleep and did not inform the controllers cleaning vehicles were on the runway.
## 3284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The air ambulance struck a mountain in near zero visibility and snow bounced twice and came to rest in a canyon. The VFR flight was attempted in mountainous terrain in marginal weather conditions. The aircraft was flown at an altitude which did not provide terrain clearance and the aircraft struck amountain for undetermined reasons.
## 3285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shot down by enemy fire.
## 3286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane went missing in the Pacific Ocean while en route.
## 3287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into high terrain.
## 3288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Spatial orientation caused by failure of the artificial horizon.
## 3289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After taking off, the aircraft went into a steep dive, crashed and burned 7,800 ft. beyond the departure end of the runway. Malfunction of the elevator control system or elevator trim system. The reaction of the flight crew to correct the pitch control problem overstressed the left elevator control rod, which resulted in asymmetrical elevator deflection and overstress failure of the horizontal stabilizer attachment structure.
## 3290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed in flames, two minutes after taking off from a military base.
## 3291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into mountain in poor weather off the intended course.
## 3292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed while attempting an emergency landing after the No. 3 engine caught fire. Failure of a  compressor.
## 3293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft hit Mt. Illimani at an altitude of 19,600 feet after being cleared to descend during an approach to La Paz. The crew did not follow the prescribed airway. Navigation error. Controlled flight into terrain.
## 3294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane executed a missed approach because it was too high. The copilot mistakenly lined up with nearby Fairfax Airport to land. The captain took over and entered a steep climb for a go-around. The plane stalled and entered a dive and crashed into a water treatment plant. Improper IFR procedure. Airspeed not maintained which led to an inadvertent stall.
## 3295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed after overshooting the runway in rain and fog.
## 3296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The airliner crashed after takeoff. Failure of the artificial horizon and obstruction of aileron control due to shifted cargo.
## 3297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The helicopter crashed in open terrain during a turn to reverse direction. Witnesses stated the aircraft was heading north and was on a converging course with high tension lines that were about 80 to 100 ft high and the belly counted spotlight was illuminated when it passed overhead. The helicopter impacted snow covered terrain in a steep descending bank to the right at a high rate of speed on a southerly heading. The power lines showed no evidence of having been struck. Pilot did not maintain directional control.
## 3298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed while returning to the airport after reporting severe vibrations. While attempting to land, the aircraft crashed into a  field, bounced and slid into mobile homes. A ground handler forgot to close an air start access door. The crew's failure to control and monitor the flight path and air speed of the aircraft after detecting the vibration.
## 3299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the Caribbean sea, 8 miles northwest of the airport where it was scheduled to land.
## 3300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain at 11,500 ft.  In rainand fog.  Flying under VFR when conditions changed to IFR.
## 3301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into a mountain at 8,500 ft. while descending to land at Buga. Continued VFR flight into deteriorating weather conditions.
## 3302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed shortly after taking off from Minsk.Double engine failure due to ice ingestion.
## 3303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into trees while attempting a go-around in poor weather. Improper minimum descent atlitiude and missed approach. Improper inflight decision. Improper missed approach. Minimum descent altitude not maintained.
## 3304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft descended in an uncontrolable dive, from 41,000 to 9,500 ft. after the crew shut down an engine.  The captain, preoccupied the malfunctioning engine, didn't properly monitor instruments and over relied on the autopilot and did not use his rudder to keep the plane from rolling . The autopilot disengaged after it could not handle the excessive roll caused by the shut down engine. The captain failed to make the proper flight corrections to recover the aircraft. After a terrifying series of inadvertent aerobatics, the plane leveled off at 9,500 feet and managed to land safely at San Francisco. Forces during the inverted spin were estimated to be from +6G to -4G. The landing gear was forced out through the closed doors, breaking the doors, which flew back and took out part of the rudder and elevator.
## 3305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into an antenna on Mt. Oiz. Incorrect interpretation of Ground Proximity Warning System. The captain was heard shouting "shut up" at the GPWS as it announced "pull up."  Overconfidence in altitude alert system. Incorrect interpretation of its warnings.
## 3306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed after taking off. The plane was not able to return to the airport after experiencing an engine failure.
## 3307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Struck a mountain in poor weather during a third practice approach.
## 3308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stalled during a training exercise and crashed.
## 3309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The domestic flight crashed into a mountain while attempting to land at Florencia in rain and dense fog.
## 3310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After an aborted landing attempt the aircraft struck a mountain in poor weather conditions.
## 3311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft hit high ground during good weather conditions and after transmitting an emergency message that they had lost both engines.
## 3312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While cruising at FL 350 a loud noise was heard followed by a severe jolt. The No. 3 engine separated from the aircraft. A damaged O ring allowed leakage from the forward lavatory waste drain valve. Four gallons of fluid leaked and froze on the exterior of the plane and then broke away in chunks and smashed into the engine. They plane landed safely.
## 3313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane lost an engine on talkeoff nosed down and crashed.
## 3314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After a fuel transfer problem the plane crashed while trying to make an emergency landing in snow. Poor weather and failure of the crew to follow proper procedures with the auxiliary fuel system.
## 3315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Midair collision as the Tupolev-134A prepared to land and the Antonov An-26 just took off.  Violations by the civil approach and military controllers. Misidentification of both aircraft. Seventy-one killed on the TU134 and twenty-three on the Antonov.
## 3316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter crashed into the East China Sea.
## 3317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft's tail struck a hill 1,500 feet from the end of the runway after which an emergency crash landing was made.
## 3318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed after losing the No. 1 engine. Fuel starvation. Pilot had the fuel selector for the No. 1 engine in the off and feathered position.
## 3319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft was hijacked while en route from Athens to Rome over Italian airspace. U.S. Navy diver Robert Stethem was murdered aboard.
## 3320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane stalled and crashed into an emergency vehicle while making an emergency landing attempt after an engine caught fire. A faulty fuel injection nozzle caused a blow torch effect damaging the compressor turbine vane ring and causing thermal fatigue and loss of one of the turbine blades.The resulting imbalance ruptured the starting control bypass fuel return line.
## 3321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft broke up in flight and crashed into the ocean. Detonation of an explosive device in the forward cargo hold. Terrorist working in Vancouver, Canada, checked baggage with bombs onto two flights. One bag transferred at Toronto onto flight 182. The other would have been transferred at Tokyo onto another Air India flight, but exploded at the airport killing 2 baggage handlers. The aircraft was named " Emperor Kanishka."
## 3322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The crew climbed to the cruising altitude of FL380  at an airspeed of which is close to stall speed. During cruise flight vibrations started because of the low airspeed but were assumed by the crew to be  caused by engine surges. They reduced power to idle, causing the airspeed to drop. Trying to maintain altitude, the airplane eventually stalled, went into a flat spin and crashed.
## 3323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the Amazon jungle in poor weather, after the crew reported a fire in the No. 3 engine. The last words from the aircraft was "We're falling."
## 3324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While on a flight from Fort Lauderdale, FL to Dallas/ Forth Worth, the aircraft crashed while making an landing attempt in thunderstorm activity. The plane touched down 6,000 feet short of the runway and 360 feet to the left of the runway centerline, became airborne again, struck a car killing the driver, crossed the highway and crashed into two water tank reservoirs. Microburst induced windshear. The flightcrew's decision to initiate and continue the approach into a cumulonimbus cloud which they observed to contain lightning. Lack of training for avoiding and escaping from low-altitude windshear.
## 3325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft suffered an aft pressure bulkhead failure at 23,900 ft. The aircraft had severe control difficulties with loss of all controls and eventually after 40 minutes, collided with a mountain. Improper repair of the  bulkhead while being supervised by Boeing engineers after a tail strike in 1978. Worst single plane disaster in aviation history. Kyu Sakamoto, 43, famous for his Japanese song "Sukiyaki" was killed in the accident.
## 3326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unknown circumstances.
## 3327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As the plane reached FL230, water was spilled on the autopilot panel and the crew had to disengage the autopilot because the stabilizer trim wheel started to rotate. Control was lost as the plane pitched up and down. Control was regained at 1,000 ft. and an emergency landing was carried out.
## 3328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            During takeoff from Manchester, failure of the No. 9 combustor on the port engine resulted in its ejection from the engine and fracturing of the fuel tank access panel and resulting fire. The fire spread into the cabin incapacitating and killing passengers due to toxic smoke. Thermal metal fatigue of the combustor. Slow braking, using reverse thrust and turning the aircraft so it stopped with fire upwind of the fuselage, all helped to feed the flames. The front starboard side door was farthest from flames but jammed when there was a partial premature chute deployment, and  the crew spent time trying to unjam it, while toxic smoke accumulated in the cabin, before starting evacuations through port side door.  The aircraft was named "River Orrin."
## 3329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While on approach, ATC noticed the flight was east of course and the crew was given instructions to correct.   The crew then tried, unsuccessfully to intercept the glideslope. The plane struck trees and crashed short and right of the runway centerline. The pilot's continuation of an unstabilized approach which resulted in a descent below glideslope. Improper IFR procedure by pilot. Missed approach not performed. Decision height not identified. Samantha Smith, 13, along with her father were killed. She became famous for writing to Soviet leader Yuri Andropov about her fear of nuclear war. She later visited him in Moscow.
## 3330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed while trying to land with 3 engines.
## 3331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shot down by rebels with a ground-to-air missile while flying at FL130.
## 3332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft stalled and dove into the ground as it  took off.  Failure of right engine after compressor spacer failure precipitated by a fatigue crack. The crew's improper use of flight controls in response to the catastrophic failure of the right engine during a critical phase of flight which led to an accelerated stall and loss of control of the airplane. Contributing to the loss of control was a lack of crew coordination in response to the emergency.
## 3333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down by Afghan rebels.
## 3334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed en route after a fire in the No. 1 engine which led to the seperation of the outer wing.
## 3335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lost power and spiraled into the ground after takeoff. Contaminated fuel. Overloaded.
## 3336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The pilot of the cargo plane stayed at a low altitude after taking off in IMC conditons and crashed.
## 3337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After attaining 5,000 ft. the cargo plane lost control crashed into Botany Bay after taking off from Sydney.
## 3338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into a mountain slope after taking off in bad weather. Instructions to climb normally were delayed because of traffic.
## 3339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed into mountains while en route.
## 3340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane struck high ground while en route. Pilot error. Altitude not maintained. Improper clearance.
## 3341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane overfew the runway and crashed one mile beyond the end.
## 3342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed during a test flight. The elevators locked soon after takeoff.
## 3343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into Mt. Sibayak.
## 3344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hijacking. While on the ground at Malta to refuel the aircraft was stormed by Egyptian forces. During the fight, several hand grenades were thrown into the cabin causing a fire.
## 3345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shot down by South African anti-aircraft fire.
## 3346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft stalled and crashed during takeoff. Two-hundred-forty-four members of the 101st Airborne Division from Fort Campbell, Kentucky  were killed in the accident. There is controversy surrounding this crash. The majority opinion of the board was that the cause of the sequence leading up to the stall and crash could not be determined, with icing a possibility. The minority opinion was that the crash was possibly caused by detonation of an explosive device of unknown origin in a cargo compartment which led to an in-flight fire and loss of control of the aircraft.
## 3347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into a forest.
## 3348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crash landed into a field and struck a pole then continued into trees after dense smoke filled the plane and cockpit. The fire most likely started in a defective cabin heater but was not determined for sure. Singer Rick Nelson, 45, fiancée Helen Blair, 27, soundman Clark Russell and the members of his back-up group The Stone Canyon Band, Andy Chapin, 20, Rick Intveld, 22, Bobby Neal, 38, and Patrick Woodward, 35 were killed. Both pilots survived after climbing out the cockpit windows. Nelson had purchased the DC-3 in May 1985 from Jerry Lee Lewis and the craft had been forced to make two emergency landings in the previous six months. Nelson and his band were en route to perform at the half-time festivities at the Cotton Bowl.
## 3349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After initiating an overshoot and attempting to land for a second time, the plane crashed into a hilly area in the jungle. There were low lying clouds in the area.
## 3350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The purpose of the flight was to take a news crew to a location to cover a story. The news crew had attempted to hire another helicopter, but that operator refused due to forecast low visibility. This pilot, however, agreed to fly. Although he was certified for instrument flight in airplanes, the pilot was not qualified for instrument flight in helicopters, nor was the helicopter certified for instrument flight. The helicopter crashed & burned approximately 100' from the highway near a power line crossing. Impact occurred while the helicopter was in a shallow descent, heading away from the highway & parallel with the power line. Continued VFR flight into IMC. Overconfidence in personal ability.
## 3351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The crew accidently tried to take off from a taxiway. The takeoff was aborted but the aircraft overran the runway and collided with a embankment and broke in two. There was heavy fog in the area.
## 3352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane tried to land at Los Mochis but had to divert to Las Lomitas because of fog. The airport was not approved for commercial flights and the plane crashed into a hill near the airport while attempting to land.
## 3353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane crashed while attempting to make a forced landing.
## 3354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into the sea during an attempted go-around after a missed landing attempt due to a burst nose gear tire.
## 3355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft entered a left bank and turn, stalled and crashed 5 miles short of the runway. Failure of the autofeather sensor circuit breaker caused propellers to feather.
## 3356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After a missed approach due to bad weather, the plane was cleared for an ILS approach but crashed in a wooded area, short of the runway. The flight crew's continued descent of the airplane below the glideslope and through the published decision height without obtaining visual reference of the runway for undetermined reasons.
## 3357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into high ground at 1, 900 ft. while flying IFR in rain.
## 3358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A fatigue initiated crack in the number nine cylinder head caused the engine to run rough and lose power. While the pilot was manoeuvring for the precautionary landing in whiteout conditions, the aircraft crashed. At impact, the fuel cells ruptured, and a fire erupted which destroyed the aircraft.
## 3359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane descended below minima weather conditions, undershot the runway, overturned and caught fire.
## 3360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The jet fighter crashed into a school shortly after taking off after experiencing engine failure.
## 3361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed while making an emergency return to the airfield after experiencing engine failure on takeoff.
## 3362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While climbing through 29,000 feet, an overheated tire exploded in the wheel well after takeoff and damaged the hydraulic and electrical systems of the aircraft. The plane lost control and crashed. The tire had been serviced with air rather than nitrogen. The air, under high temperature and pressure, resulted in a chemical reaction within the tire itself which led to a explosion of the tire.
## 3363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Detonation of a explosive device in the passenger compartment causing four passengers to be sucked out.  The plane landed safely at Athens. The plastic explosive was left under a seat by a woman carrying a Lebanese passport.
## 3364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lost a wing in heavy turbulence at low altitude.
## 3365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into a 8,500 ft. mountain in poor weather.
## 3366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into a hill following an engine fire.
## 3367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Detonation of an explosive device in the rear section of the cabin while on the ground and passengers were boarding. The aircraft was named City of Colombo.
## 3368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Both helicopters crashed into a rice paddy after experiencing a mid-air collision.
## 3369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed in the vicinity of Day Mountain in heavy rain and low clouds.
## 3370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Flew into the side of a mountain in poor weather. Controlled flight into terrain.
## 3371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed short of runway and collided with a building during a sandstorm.
## 3372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The crew mistook Laphroaig for Port Ellen and crashed into a hill. Decision to allow the handling pilot to carry out a visual approach in unsuitable meteorological conditions. An error in visual navigation was a contributory factor.
## 3373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Midair collision. Inadequate visual lookout on the part of  both aircraft. Twenty killed on the de Havilland and  five on the Helitech. The failure of the flightcrew of both aircraft to see and avoid each other for undetermined reasons.
## 3374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed in a forest after an in-flight fire caused by baggage that ignited in the rear cargo hold led to loss of contol of the aircraft.
## 3375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during takeoff.
## 3376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into the sea in poor weather conditions.
## 3377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the jungle in poor weather conditions as it approached Durzana Air Base.
## 3378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by SPLA rebels with surface-to-air missiles shortly after takeoff.
## 3379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On takeoff the cargo plane pitched up, rolled inverted and crashed. Improperly loaded. Alcohol impairment of the pilot and co-pilot.
## 3380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A midair collision occurred between a DC-9, attempting to land at LAX  and a Piper at 6,560 ft. over Cerritos, California. The Piper struck and knocked the horizontal and vertical stabilizer off the DC-9. The Piper fell into an unoccupied playground.  The DC-9 crashed into a neighborhood destroying eleven homes and damaging seven others. Sixty-four on the DC-9, three on the Piper who were all decapitated and 15 on the ground were killed. The pilot of the Piper inadvertently entered the LAX Terminal Control Area. The controller was distracted by another small aircraft in the area. The inadvertent and unauthorized entry of the PA-28 into the Los Angeles Terminal Control Area. The limitations of the "see and avoid" concept to ensure traffic separation under the conditions of the conflict.
## 3381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While on the ground, four hijackers opened fire on the passengers and crew and threw grenades among them, killing 16 passengers, one crew member and one ground crew member. The aircraft was named "Clipper Empress of the Seas."
## 3382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Overran the runway and crashed.
## 3383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     On a delivery flight the aircraft struck a cloud covered mountain at 4,300 ft. Crew did not follow the prescribed course.
## 3384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane lost altitude and crashed inverted. The use by the carrier of a non-approved device designed to raise the elevator during loading operations which was not properly stowed by the flight crew and which lodged in the controls, preventing the flight crew from controlling the airplane during take-off.
## 3385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into river on takeoff.
## 3386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shiraz Airport was attacked by Iraqi aircraft. Passengers were deplaning at the time of the attack.
## 3387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in the Lembombo mountains during a storm. President Samora Machel, president of Mozambique, killed. The aircraft descended below minima even though the crew did not have visual contact with Maputo. A GPWS warning was ignored and the plane hit high ground crashing onto a uphill slope. Navigational error. GPSW ignored. There is speculation that the plane was lured away from the correct flight path by a pirate radio beacon broadcasting on the same frequency as the Maputo Airport, disorienting the pilot.
## 3388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane made a hard landing, crashed and burst into flames after a straight-in hard landing without leveling off.
## 3389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The helicopter was contracted by NBC to make daily highway traffic observations in the New York City area. The pilot and passenger, Jane Dornacker, a NBC radio traffic reporter, were flying in a northerly direction along manhattan's west side at an altitude of about 75 feet. Witnesses observed the aircraft's main rotor blades stop, the aircraft descended rapidly, struck the top of a chain link fence at a river pier, crashed into the HudsonRiver and sank in 15 to 20 feet of water. Investigation revealed the sprag clutch was inadequately lubricated, had 'rolled over' in the opposite direction of its design and the sprag assembly was damaged. Several sprags and both activating springs were broken and different size sprags were installed. An unauthorized, overhauled clutch had been installed in the aircraft. Dornacker had survived another helicopter crash earlier in the year.
## 3390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed short of the runway on approach, broke up and landed inverted. Crew error. The aircraft was allowed to descent below MDA. Crew did not properly monitor the altitude.
## 3391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Either mechanical failure, weather or ground fire from Contra rebels brought the helicopter down.
## 3392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Struck the side of a mountain near the Pakistani border. Crew error. Descent below minimum safe altitude with a defective altimeter and in spite of warnings from the ATC.
## 3393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopoter crashed into the North Sea while carrying oil workers back to Sumburgh. Rotor failure.
## 3394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down by Afghan rebels.
## 3395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed after landing on the wrong runway in fog. The crew did not understand the English instructions that the right runway was closed for repairs.
## 3396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The No. 2 engine failed due to severe icing conditions 30 minutes after leaving Lanzhou. With the prop feathered, the plane crashed before reaching the airport.
## 3397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hijacking.  While on a flight from Baghdad to Amman, hijackers exploded a hand grenade in the passenger cabin. While making an emergency descent a second hand grenade exploded in the cockpit causing the plane to lose control crash, break in two and catch fire.
## 3398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft banked ninety degrees and crashed short of the runway. Loss of control due to mechanical failure. Use of a unsecured nonstandard flap attachment pin.
## 3399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The domestic flight crashed off the island of Bioko and sending a distress message. Engine failure.
## 3400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed in the jungle while returning to Abidjan after taking off with the No. 1 engine on fire.
## 3401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed after taking off from Johannes IV Airport after attempting to return for an emergency landing. The crew radioed they were having technical difficulties three minutes after taking off. While attempting to return to the airport the plane crashd. Mechanical malfunction.
## 3402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Midair collision with a Mooney M-20 at 7,000 ft. Ten killed on the Swearingen and none on the Mooney.  Procedures and directives not followed by the Mooney pilot. Lack of navigational vigilance by the Mooney instructor pilot which led to the authorized intrusion into the Salt Lake City airport radar service area. Contributing factor was the absence of a Mode-C transponder on the Mooney airplane and the limitations of the air traffic control system to provide collision protection.
## 3403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While taking off, the aircraft banked sharply to the left and crashed. Encounted a wake vortex from another aircraft.
## 3404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ditched into the sea in poor weather conditions.
## 3405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shot down by a Stinger missile by Afghan guerillas.
## 3406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While approaching to land the plane suddenly yawed to the left, rolled right and struck ground left of the runway. It then skidded into 3 ground vehicles and caught fire. The captain's inability to control the airplane in an attempt to recover from an asymmetric power condition at low speed following his intentional use of the beta mode of propeller operation to descend and slow the airplane rapidly on final approach for landing. The fatalities were attributed to a post crash fire, lack of fire-blocking material, and poorly designed aircraft components. Improper use of powerplant controls. Improper maintenance adjustment.
## 3407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane struck the side of a mountain while setting up for the approach. The ATC didn't monitor the plane for at least  2 minutes after observing the plane taking a wrong course. When the ATC tried to contact the plane to tell them of the mistake the crew never responded because communications in the vicinity of the mountain blocked the signal.
## 3408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Stalled and went into a spin during a low-level refueling practice. The stall was propagated by the wake of a B-52.
## 3409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Dean Paul "Dino" Martin, 35, son of entertainer Dean Martin was killed when the Phantom jet he was piloting crashed into the San Bernardino Mountains. Permission was given by March Air Force Base ATC to perform a "maximum climb" takeoff. The aircraft was seen disappearing into a scattered cloud ceiling at 4,700 feet.  Radar contact was lost 9 minutes into the flight. The crash site was found on the 3rd day of searching in the San Bernardino Mountains. An investigation revealed the aircraft flew, inverted, into a solid wall of granite between two mountain peaks at an altitude of 3,750 feet  and at an estimated speed of 560 mph. The aircraft was literally pulverized into the granite. The "maximum climb" takeoff, g forces associated with this type of flight and the dense cloud cover negatively affected the pilots ability to know his position and aircraft attitude.
## 3410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shot down by a Pakistani F-16 jet fighter firing an air-to-air missile.
## 3411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed on approach during heavy rain after hitting an antenna. Windshear.
## 3412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane flew into the ground short of the runway despite warnings from the controller. Improper IFR procedure. Disregarded decision height. Disregarded warnings.
## 3413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane lost the No. 2 engine while taking off and crashed into trees and caught fire. Poor in-flight planning. Emergency procedures not followed. The right engine did not have the latest welding process and failed causing a uncontained turbine failure.
## 3414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shot down by rebels shortly after taking off.
## 3415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Improper maintenance in setting propeller flight idle blade angle and engine fuel flow resulting in a loss of control from an asymmetric power condition. A factor contributing to the accident was the pilot's unstabilized visual approach.
## 3416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The No. 2 engine failed, causing an engine fire, cabin decompression, damage to the  No. 1 engine, loss of  elevator control and damage to the electrical system. A fire in the cargo hold was not detected because of damage to the fire warning system. While attempting to return to Warsaw and attempting a turn to land, the aircraft crashed into a forest, 9 miles short of the runway. The cause of the engine failure was an overheated bearing. The aircraft was named Tadeusz Kosciuszko.
## 3417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane lost the left wing while in a holding pattern. The left wing failed under normal flight loads as a result of a fatigue crack in the center section lower wing skin. Anomalies in the radiographs taken during mandatory non-destructive testing inspections were not correctly interpreted.
## 3418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into high terrain in poor weather.
## 3419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a ditch while attempting to land at Ruteng.
## 3420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a ravine while attempting to land.
## 3421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shot down by rebel forces with a surface-to-air missile.
## 3422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a gorge near the Jerache River  while en route on a domestic flight in adverse weather conditions.
## 3423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft landed at a high rate of speed and a go-around was initiated but then aborted. The aircraft overran the runway, crashed into trees and caught fire.
## 3424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into mountains at 8,200 ft. 20 minutes after leaving Heho.
## 3425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed into Mt. Ugu in monsoon rains and heavy fog while preparing to land at Baguio.
## 3426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft was doing a drop and pulled up too late. The airplane skidded 1,000 yards down a dirt runway and struck a military vehicle, killing an Army soldier. The plane then impacted trees and broke up.
## 3427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hijacked while en route from Rome, Italy to Paris, France. The hijacker killed one male passenger when the plane landed at Cointrin Airport in Switzerland to refuel, after which the plane was stormed by security personnel.
## 3428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane crashed on a roadway into a restaurant after taking off  in adverse weather conditions. Overloaded. Cargo shifted on takeoff.
## 3429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The landing gear failed after the aircraft touched down 520 meters short of the runway, broke in two and caught fire.
## 3430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft stalled and crashed during takeoff from Detroit Metropolitan Wayne County Airport. After liftoff, the wings of the airplane rolled to the left and right  and then the aircraft collided with obsticales northeast of the runway when the left wing struck light poles and the roof of a rental car agency. A 4-year-old girl, Cecilia Cichan, was the only survivor. Slats and flaps not extended. Crew's failure to use taxi checklist to ensure flaps and slats were extended. Lack of electrical power to the aircraft takeoff warning system. The unit may have been turned off by pilot due to nuisance alarms.Cecelia is now married and earned a Psychology degree from the University of Alabama. Although she has made no public statements or attended annual memorial services regarding the tragic crash, she corresponds with some of the crash victims’ loved ones.
## 3431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft stalled and crashed into the ocean after the crew's attention was diverted to concern over another aircraft. Failure of the crew to monitor their airspeed. The pilot added power and raised the gear after the stick shaker activated but did not execute a recovery before hitting the sea.
## 3432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during takeoff.
## 3433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shot down by Afghan rebels on approach.
## 3434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane landed too far down the runway, overran the runway, struck runway lights went through a fence and broke up.
## 3435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed while attempting to make an emergency landing.
## 3436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into a ridge at 1, 500 ft. in heavy rain while attempting to land at Nyaung-U Airport .
## 3437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shortly after taking off from Milan and passing through FL147, the aircraft nosed down and crashed into a mountain, in icing conditions. Icing of the wings.
## 3438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane overran the runway while attempting to take off crashed into a building and was destroyed.
## 3439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The military plane attempted to make an emergency landing at Indianapolis International Airport after having a flameout 30 miles east of Indianapolis. The controller apparently gave bad directions which led to the pilot attempting to circle the airport. He couldn't make a landing and ejected at 500 ft,. The Corsair hit the top of a Bank One building about one mile from the runway, went airborne again for 250 ft.' and hit the front of a 7-story Airport Ramada Inn. The engine and cockpit went into the lobby, the wings into the next floor above. Twenty thousand pounds of fuel ignited killing nine people in the hotel's lobby (a 10th died later). The pilot survived.
## 3440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shot down by rebels.
## 3441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while taking off in a snowstorm. Failure to obtain taxi clearance, confused the ground controller when the plane reached the runway. The plane was not cleared to take off until 27 minutes after de-icing. During takeoff, the first officer overrotated and with the icing, the plane stalled, crashed, and overturned. Both captain and first officer were inexperienced in their respective jobs.
## 3442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crash landed 200 yards short of the runway while attempting to land at Homer Airport. Failure of the crew to supervise the loading of the aircraft which resulted in a shift of the center of gravity which caused the plane to lose control when the flaps were lowered for landing.
## 3443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While over the Indian Ocean the crew contacted Mauritius approach control and reporting fire and smoke aboard. Three minutes after the last transmission the plane the plunged into the ocean 150 miles northeast of Mauritius. The fire caused incapacitation and disorientation of the crew, in-flight break-up and loss of control of the aircraft.  The fire originated in a front pallet on the right side in the upper deck cargo hold. The fire of unknown origin possibly (1) incapacitated the crew; (2) caused disorientation of the crew due to thick smoke; (3) caused crew distraction; (4) weakened the aircraft structure, causing an in-flight break-up; (5) burned through control cables or ; (6) caused loss of control due to deformation of the aircraft fuselage. It has been rumored that an unstable substance, not listed on the manifest, was illigally being shipped and started the fire though this has never been proven.
## 3444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed while on a flight from Abu Dhabi to Bangkok. Detonation of an explosive device in the passenger cabin left by two passengers who exited  the plane at Abu Dhabi. A 75 year old man and Korean woman were arrested as they tried to use fake passports to fly to Rome. While under guard, the man bit into a cyanide capsule and died. The woman, a North Korean agent, confessed to the crime.
## 3445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed  into a top of a tree 10 km from the airport, about 18 minutes after taking off,
## 3446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A fired USAir employee, David Burke, after leaving a goodbye message to friends, shot both pilots with a .44 Magnum pistol. While the aircraft was cruising at 22,000 feet over the central California coast, the cockpit crew heard two shots in the passenger cabin and radioed a frantic message to air traffic controllers: "There’s gunfire aboard." Moments later, the plane entered a high-speed nosedive and smashed onto the ground at 700 mph at 5,000 g's . Investigators sifting through the wreckage were able to retrieve the plane’s cockpit voice recorder, which subsequently revealed the sounds of a commotion in the cockpit, three more shots, the groan of the pilot or co-pilot, and then a final shot.
## 3447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane was observed during a fly-by to check that the landing gear was down. After attempting another approach the aircraft crashed into the sea. All members of the Alianza Lima soccer team killed. The pilots' lack of experience flying at night and misreading the manual for procedures in emergency situations.
## 3448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into Mt. Munay at 5,000 ft. while approaching Maria Cristina for landing.
## 3449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the Atlantic Ocean while en route for reasons unknown.
## 3450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed short of the runway and struck trees in fog after being diverted due to the weather.
## 3451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed while attempting to land on an oil rig. Improper planned approach. Clearance not maintained.
## 3452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Disappeared between Samarinda and Berau, Indonesia.
## 3453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft was off the ILS sidebeam and crashed into a hill on approach in poor weather. The crew used the wrong VOR and ILS. Pilot overconfidence and co-pilot inactivity during the approach.
## 3454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Struck Mt. Colorado in poor weather.
## 3455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Broke in two after a heavy landing. Crew error. Co-pilot was flying the plane against requirements that the pilot fly the plane.
## 3456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed 10 minutes before its scheduled landing. Fire in and failure of the No. 4 engine led to separation of the pylon and engine and loss of control of the aircraft. Overheating of the feathering oil. Poor maintenance procedures.
## 3457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed while attempting to land in adverse weather conditions five miles short of the runway.  The captain choose a direct VOR/DME approach instead of the safer ILS. The copilot lacked the ability to land the tricky approach. The pilot who was not flying the plane, did not observe the copilot was flying a too steep of an approach. The NTSB isssued a report that stated that the captain was a heavy user of cocaine and traces were found in his blood and urine.
## 3458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed in mountains.
## 3459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane stalled and crashed after a loss of engine power on takeoff. The engine throttles were reduced at  a critical stage of the takeoff for undetermined reasons, probably by the crew.
## 3460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into a mountain.
## 3461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane was struck by lightning and suffered a complete electrical failure after which the right wing broke off during an uncontrollable descent.
## 3462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane crashed into a reservoir shortly after taking off in low visibility and ceiling. The failure of the flight crew to maintain a proper flight path because of the first officer's inappropriate instrument scan, the captain's inadequate monitoring of the flight, and the flight  and the flight crew's response to a perceived fault in the airplane's stall avoidance system.
## 3463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft made a hard landing beside the runway, broke up and caught fire. Crew error. Visual contact with the runway was lost as the aircraft descended through the decision height.
## 3464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into mountain 20 kms E of Kyrenia Turkey while on approach. Crew error. Pilot discontinued IFR approach and descended ignoring mountains ahead. Realizing his mistake, he tried to climb and turn left but struck the mountain.
## 3465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed and burned 8 miles from Jan Smuts Airport while attemping to land. Detonation of a bomb consisting of nitro-glycerine and ammonium nitrate. A mineworker who heavily insured himself was thought to have committed suicide.
## 3466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed after hitting power lines while making an approach to Orly. Electrical system failure.
## 3467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The two helicopters collided in mid-air in the dark and crashed on the Fort Campbell military base. Pilot error.
## 3468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft struck a mountain at 6,200 feet after taking off in mist and haze. The crew took off under VFR conditions during adverse weather conditions. Inappropriate presence of a non-crew pilot in the cockpit and his great talkativeness distracting part of the crew which resulted in carelessness and disorientation in monitoring the heading and altitude necessary to maneuver the plane. VFR flight into IFR conditions.
## 3469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  During a second attempt to take off an engine on the cargo plane failed causing the plane to crash at the end of the runway.
## 3470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hijacking. Two hostages killed on the ground.
## 3471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by Afghan guerillas with an anti-aircraft missile.
## 3472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed after fire broke out at FL90 and an emergency descent was made. A leak at the right booster pump was the source of the fire.
## 3473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain during descent  in poor weather.
## 3474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shot down with a surface-to-air missile.
## 3475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft suffered separation of the top of the fuselage resulting in explosive decompression and severe structural damage. Fflight attendant C.B. Lansing was sucked out of the opening in the fuselage and her body never recovered. The plane named Queen Lili'uokalani, made a safe emergency landing at Kahuiui Airport on Maui. Failure of Aloha Airline's maintenance program to detect the presence of disbonding and fatigue damage which led to failure of the lap joint at S-10L and the separation of the fuselage upper lobe. Contributing factors were the failure of Aloha Airline's management to properly supervise its maintenance crew as well as the failure of the FAA to properly evaluate the Aloha Airlines maintenance program and to assess the airline's inspection and quality control deficiencies. In addition the maintenance program underestimated the need for inspections with the large number of pressurizations/depressurizations and humid salt air climate the plane was subjected to.
## 3476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a hillside during approach in foggy weather. The crew started the approach to 4NM too early. Navigation error. Pilot error.
## 3477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft encountered heavy rain and hail which resulted in flame-out of both engines. Attempts to restart engines were unsuccessful. The aircraft landed safely in a grassy field between a drainage ditch and levee with no power. Water ingestion due to heavy rain from a level 4 thunderstorm caused failure of both engines. A contributing cause of the incident was the inadequate design of the engines and the FAA water ingestion certification standards which did not reflect the waterfall rates that can be expected in moderate or higher intensity thunderstorms.
## 3478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed.
## 3479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While landing the cargo plane pitched up for a go-around causing cargo to shift and the plane to lose control and crash.
## 3480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The airliner crashed 3 miles short of the runway in poor visibility. Crew's overconfidence and  incorrect in-flight planning.
## 3481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane was scheduled to perform a series of fly-bys at an air show. The plane was to descend to 100 ft. altitude with landing gear and flaps extended. The automatic go-around protection (Alpha Floor Function) was inhibited for the maneuver. During the maneuver, the plane descended thru 100 ft. to an altitude of 30 feet and hit trees at the end of the runway. The aircraft was totally destroyed by the successive impacts and violent fire which followed. The pilot allowed the aircraft to descend through 100 ft. at slow speed and maximum angle of attack and was late in applying go-around power. Unfamiliarity of the crew with the landing field and lack of planning for the flyby.
## 3483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The civilian Iranian airliner was shot down by the U.S. Navy vessel U.S.S. Vincennes with surface-to-air missiles. The Vincennes was protecting other civilian ships in the area from Iranian gunboats. The Vincennes responded to hostile action taking place against a ship by Iranian gun boats. However, orders to the captain were to send a helicopter to investigate but maintain position. In fact, the ship headed towards the hostilities and penetrated 2nm inside Iranian territorial waters and after the helicopter was fired upon, engaged the enemy boats. The ill-fated airliner was delayed in leaving Bandar Abbas because of a problem with the passport of a passenger. Soon after taking off the target appeared on the radar of the Vincennes. Because the plane was late and confusion of time zones, the crew was not expecting an airliner in the area. When the target was first identified, it squawked both 2 (military) and 3 (civilian). The reason for this was the radar tracker ball was left in the vicinity of the Bandar Abbas airport and the radar was picking up both the airliner and a military F-14 jet fighter at the same time. Playing it safe, the plane was misidentified as a F-14 Iranian fighter. The aircraft did not respond to 10 radio challenges from the Vincennes. However, 7 were on military frequencies which the airliner could not pick up. Three were on the civil emergency frequency addressed to the so called military F-14. When the plane was nearing 10 miles from the ship, it was reported to the captain that the aircraft was descending. At that time the surface-to-air missiles were fired destroying the aircraft. At the inquiry computer data showed that the plane was never descending and actually was ascending at a steady rate. Incredibly, a military investigation concluded that although the U.S. government regretted the loss of human life, the captain and crew were not at fault and acted properly in shooting down the airliner.
## 3484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shortly after taking off the crew of the cargo plane experienced failure of the No. 4 engine and a fire. While attemping to return to the airport control was lost and the plane crashed.
## 3485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane ran out of fuel and crashed into a dirt bank . Fuel starvaion. Open drain valve inside the No. 4 engine led to the loss of fuel.
## 3486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on approach.
## 3487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed on takeoff from Sophia airport en route to Varna. Possible crew error. The stabilizer was set in the full "Down" position, instead it was supposed to be set between 2.5-3 degrees in "the Up" position.
## 3488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shot down by a surface-to-air missile.
## 3489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed shortly after taking off from Bahawalpur 60 miles near the Indian border. Act of sabotage. Detonation of a low level explosive device or incapacitating gas. U.S. Ambassador to Pakistan, Arnold Raphel, 45, and Muhammad Zia ul-Haq 64, killed. A recent report states that the accident was caused by the failure of the elevator control system due to a mechanical failure.
## 3490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The crew failed to set the altimeters to the proper setting while landing. The plane descended until it contacted trees, broke up and caught fire. Crew fatigue was a factor.
## 3491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed while taking off.
## 3492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The right outboard flap of the plane hit the approach lights of Runway 31. The right main landing gear collapsed and the aircraft ran off the runway into the harbor.
## 3493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft stalled and crashed during takeoff, hitting a ILS localizer antenna, 1,000 feet beyond the end of the runway. Crew error. Improperly set flaps and slats. Failure of the takeoff safety warning system.
## 3494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane disappeared after taking off from Uruapan. Wreckage was found in the western Sierre Madre mountains.
## 3495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed during approach in heavy rain and thunderstorms short of the runway. The crew descended below minimum altitude while over the outer marker. The plane lost height due to a microburst induced windshear when passing under a thunderstorm on final.
## 3496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The positioning flight took off with one bad engine. Another engine failed and the plane crashed and burst into flames.
## 3497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During takeoff, the aircraft ingested numerous pigeons into both engines. One engine lost thrust almost immediately and the second lost thrust during the emergency return to the airport. The aircraft crashed while trying to land. Engine failure due to ingestion of 10-16 Columba Guinea birds.
## 3498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Accidentally shot down by Pakistani anti-aircraft fire after straying out of Afghan air space.
## 3499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo flight crew decided on a visual approach, ignored the GPWS warning and flew into a mountain.
## 3501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The sightseeing  plane crashed into a hotel shortly after takeoff. The left engine had failed following a fatigue fracture in the engine's oil pump drive shaft.
## 3502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed after returning from Sawyer AFB in Michigan.
## 3503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Undershot runway and hit  a building while performing a third landing attempt in fog. The crew's lack of adequate preparation in the procedure for a non-precision approach, especially in crew coordination, altitude callouts and their continued descent beyond MDA without having located the runway visual markings. Crew fatigue.
## 3504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane hit an electrical mast, 5 miles short of runway during an approach in fog and burst into flames. Error on the part of pilot-in-command as well as co-pilot due to non adherence to procedures under poor visibility conditions.
## 3505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed short of the runway. Controlled flight into terrain.
## 3506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed shortly after taking off from Manco Capac airport at Juliaca. The pilot tried to return to the runway but crashed in a high nose-up attitude into a pasture. The plane broke in two and burst into flames.
## 3507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane attempted to make an emergency landing due to engine failure, struck a ditch and caught fire.
## 3508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft struck trees 2,400 feet next to the runway while approaching in deteriorating weather conditions. A power failure caused all light to go out at the airport.
## 3509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While taking off the nose pitched down the plane descended and crashed to the ground and caught fire. Inadvertent activation of the Stall Avoidance System resulting in the stick pusher activation at a crucial altitude.
## 3510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While attempting to land in mist and poor visibility the aircraft hit a  pylon and burned. VFR flight in IMC
## 3511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft struck the ground while the crew was in the base leg turn. Crew procedural errors. The radio altimeter warning was not set and the outer marker was not used during the approach.
## 3512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Accidently struck by a surface-to-air missile by the Polisario.
## 3513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shot down by a Pakistani jet fighter while en route.
## 3514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A midair collision occurred between a soviet transport on an earthquake relief mission and a military Mi-8 helicopter.  As the transport approached for a landing in the darkness it struck the helicocopter.  Seventy-seven of 78 aboard the transport were killed. All five aboard the Mi-8 survived. The crew had used an incorrect altimeter setting.
## 3515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After 2 missed approaches at Cairo the plane diverted to Luxor but crashed into a residential neighborhood while attempting to land. Forced landing. Fuel exhaustion.
## 3516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The airliner disappeared from radar shortly after leveling off at FL 310 while on a flight from Heathrow Airport, London,  to New York. The aircraft broke up with two main sections of wreckage coming down in the town of Lockerbie. Detonation of an explosive device in the forward cargo area planted by terrorists.  Musician Paul Jeffreys killed. The aircraft was named "Clipper Maid of the Seas."
## 3517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While en route and climbing through FL 280, a vibration was felt and the smell of smoke was detected.  A fan blade on the No. 1 engine detached and caused a compressor stall and vibration of the aircraft. The crew throttled back the No. 2 engine and the vibration stopped. Soon after it was decided to shut down the No. 2 engine. While attempting to land, power was lost in the No. 1 engine, the aircraft stalled and crashed into trees 3,000 ft. short of the runway. The crew mistakenly shut down the wrong engine, lost power in the disabled engine and was unable to maintain flight in the final approach.
## 3518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed in flames after taking off from Dyess Air Force Base. Failure of the water injection system during takeoff.
## 3519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft entered a fog bank after taking off from Rangoon and hit a tree and caught fire.
## 3520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After a second takeoff attempt the cargo plane banked to the right until it crashed into the water.
## 3521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The airliner hit a mountain while attempting to land at Santa Maria. The crew mistakenly continued to descend through 3,000 ft. which it was cleared to. Because of a overlap in communications, the tower did not notice the mistake. The aircraft continued to descend and did not comment or react to warnings from the GPSW for 7 seconds. The aircraft then hit Pico Alto mountain at an altitude of 2,000 ft.  Procedural errors by the flight crew and ATC. Descent of the aircraft below minimum sector altitude. Transmission from the tower of a QNH value higher than the actual value.
## 3522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane descended below minimums and impacted trees and a hill. Non-standard phraseology used by Kuala Lumpur ATC, causing the crew to misinterpret the instructions.
## 3523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After leaving Honolulu, on a flight from Los Angeles to Sydney, Australia, the loss of an improperly latched forward lower lobe cargo door resulted in explosive decompression and loss of power in the No. 3 and 4 engines. Nine passengers were sucked out of the plane and lost at sea. The plane landed safely. The cargo door opening was attributed to a faulty switch or wiring in the door control system which permitted electrical actuation of the door latches towards the unlatched position after initial door closure and before takeoff. As a failsafe, the latches should have been blocked from moving by a mechanism called a "locking sector" (one on each latch), engaged manually by a lever after the door is closed.  However, the locking sectors as designed were not strong enough and could be overcome by the motors which was a design flaw right from the introduction of the747.  This was finally recognized as serious, after a non-fatal failure in 1987, but installing stronger locking sectors required taking each plane out of service 10 hours, and the FAA had allowed airlines 18 months so they could do it during other maintenance procedures.
## 3524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane crashed after its initial climb. Icing.
## 3525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed after striking radio tower while on approach.
## 3526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While flying from Thunder Bay, Ontario to Winnipeg, Manitoba, the plane crashed on take-off from Dryden, Ontario. The aircraft failed to gain altitude, settled back down on the runway and then took off for a second time clipping the tops of  trees, causing debris to clog the engines leading to the plane crashing. The aircraft was being refueled with one engine running because of an unserviceable APU. Since no external power unit was available at the airport the engine could not be shut down and deicing could not be performed. The captain's decision to take off  in deteriorating weather conditions with an accumulation of snow and ice on the wings.  Decision not to de-ice the plane before taking off. The failure of the Canadian air transport system in placing the crew in a situation where they did not have the resources to make a proper decision.
## 3527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While landing the cargo plane pitched down and crashed short of the runway. A loss of control due to the improper in-flight decisions by the crew and the undetected accumulation of ice on the leading edge of the horizontal stabilizer, during flight in a forward centre of gravity condition and exacerbated by the extension of full landing flaps.
## 3528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The loss of control of the airplane for undetermined reasons following the in-flight opening of the improperly latched cargo door. Contributing to the accident were inadequate procedures used by Evergreen Airlines and approved by the FAA for pre-flight verification of external cargo door lock pin manual control handle, and the failure of McDonnell Douglas to provide flight crew guidance and emergency procedures for an in-flight opening of the cargo door. Also contributing to the accident was the failure of the FAA to mandate modification to the door-open warning system for DC-9 cargo-configured airplanes, given the previously known occurrences of in-flight door openings.
## 3529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed and burned in mountainous terrain during a troop lift mission. Came in for a landing at an extreme high bank until it crashed to the ground. Pilot error.
## 3530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed into houses during a steep approach. Crew error. High speed approach. Deep stall. This was the Boeing 707 used in the movie "Airport" in 1970.
## 3531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After being cleared on a heading for Valence, the aircraft continued on its current heading until it struck a mountain at 4,100 feet. Crew error. Navigational error. Controlled flight into terrain.
## 3532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while en route.
## 3533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo flight suffered the shifting of cargo after takeoff cause the plane to take a nose-high attitude, stall and crash into houses.
## 3534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed after the pilot radioed he was making an emergency landing with engine problems.
## 3535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While on approach the plane pitched up, went into a steep dive and crashed short of the runway. Aircraft improperly loaded causing a shift in the center of gravity.
## 3536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft hit a tree and crashed during a third landing attempt in fog. The crew descended below the published minimum altitude. Despite concerns about possible landing equipment failures the crew was determined to make a landing and not divert to another airport as they were running out of fuel. They could not get an ILS signal and ignored a Ground Proximity Warning System alarm 60 seconds prior to the crash by turning it off 10 seconds after it started its warning. About 20 members from the Dutch soccer team "Colorful 11" from Surinam were killed.
## 3538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain.
## 3539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The pilot aborted the takeoff at liftoff after it was discovered the rudder and elevator were jammed. When the command was given to apply reverse thrust  the flight engineer switched off the engines by mistake. The aircraft overran runway, collided with obstacles and caught fire. Jammed rudder and elevator.
## 3540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A ramp door opened in flight causing loss of control of the aircraft. The plane crashed into a hill.
## 3541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountainside in the remote Andean highlands shortly after leaving San Ramon. Overloaded.
## 3542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into houses on takeoff and exploded.
## 3543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane landed short of the runway on the third landing attempt, overran the runway and collided with an embankment.
## 3544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed after takeoff.  Shot down by a surface-to-air missile.
## 3545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Unable to gain altitude the positioning flight struck powerlines and crashed. Failure of the pilot-in-command  to assure that the aircraft maintained a climb profile after takeoff. Factors related to the accident were: dark night, the crew's lack of visual perception at night, the PIC's lack of rest (fatigue) and the copilot's failure to attain remedial action.
## 3546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shortly after departing from runway 15l at the Baltimore-Washington International Airport, the pilot transmitted that he had an emergency consisting of a fire under his side panel. He reported he was going to circle & land. According to witnesses, flames & smoke were in the cockpit area. The aircraft started a gradual descent during a left turn. Subsequently, it crashed into a house.
## 3547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into costal cliffs while on an ice observation flight.
## 3548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Catastrophic failure of the No. 2 (rear) engine while en route from Denver to Chicago, with total loss of all three hydraulics systems due to damage. The aircraft maneuvering with only the thrust of the engines, crashed while attempting to land at Sioux City. Failure to detect a fatigue crack in the No. 2 engine resulting in the disintegration of the fan disk and loss of all three hydraulic systems. The  failure was traced back to a manufacturing defect in the fan disk, which had microscopic cracks due to impurities. Subject of the 1992 TV-movie "Crash Landing: The Rescue of Flight 232."
## 3549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into jungle shortly after taking off.
## 3550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In heavy rain the aircraft bounced twice, crashed through a concreate wall, overran the runway, crossed a road and struck several cars.
## 3551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mid-air collision between two helicopters.
## 3552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shot down either by rebel forces or friendly fire. A missile struck one of the engines and the plane crashed while attempting an emergency landing.
## 3553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into the sea.
## 3554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed short of the runway while landing in fog. Failure of the captain to land without analyzing the weather data.
## 3555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo lost altitude shortly after lifting off and crashed and broke up in  Manukau Harbor. The training captain's failure to monitor the aircraft's climb flight path during the critical stage of the climb after take-off.
## 3556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into Mt. Kerkis in poor weather after deviating from course on approach. The crew was flying VFR in IFR conditons. The aircraft was named Isle of Minos.
## 3557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft took off from Addis Ababa to see how much food was reaching the famine-stricken area of western Ethiopia.  The plane crashed into a mountain in poor weather conditons at an altitude of  3,600 feet.  The crew flew into an area of bad weather at a very low altitude and failed to maintain visual contact with the ground.  U.S. Representative George Thomas "Mickey" Leland, 45, killed.
## 3558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the face of a mountain. Undetermined.
## 3559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was flying from Hattiesburg to Gulfport. The non-instrument rated pilot lost control of the aircraft after encountering instrument meteorological conditions resulting in the airplane spiraling into the ground in a wooded area.  U.S. Representative from Mississippi, Larkin Smith, 45, was killed.
## 3560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lost power and crashed into a river shortly after taking off from Shanghai.
## 3561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into Himalaya Mountains en route from Gilgit to Islamabad.
## 3562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A series of navigation errors led to the aircraft running out of fuel and crashing into the jungle. The crew was working with a filight plan that showed the course in tenths of a degree  instead of in the usual whole degrees. When the flight plan indicated 0270 degrees, the crew should have been flying at 027 degrees. Instead they flew at 270 degrees (west).Therefore, the crew flew in  the wrong direction, even though Belem was north of Maraba and the sun was setting right in front of them. Then they assumed they had overshot Belem and flew straight back east. Then they began following a river which they assumed was the Amazon which would lead them to Belem, but it was the Xingu river. Finally, they  tuned in a radio station and homed in on it assuming it was a Belem station, which it wasn't.
## 3563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into navigational towers and residential houses shortly after takeoff in heavy rain and high winds. Decision of the pilot in command  to fly after an abrupt deterioration in weather conditions.
## 3564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into the sea after an in-flight breakup. Severe vibration caused by worn bolts causing the rudder to jam and the tail to collapse. Bolts used to attach the fin to the fuselage were found to be counterfeit and wore much faster that genuine bolts.  Official PC: The accident was caused by loss of control due to the destruction of primary control surfaces in the tail section, which, in turn, was caused by aeroelastic oscillations initiated by abnormal clearances in the vertical stabilizer attachments to the fuselage structure. The condition of the attachments was a result of excessive wear in pins and sleeves used in this structural joint. The pins and sleeves were of an inferior quality and did not satisfy specified values for hardness and tensile strength. They had also been installed and inspected using sub-standard maintenance procedures. Undamped oscillations in the elevator contributed to the structural failure of the empennage."
## 3565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into trees while attempting to land at night, in fog. Improper IFR procedures and failure to maintain minimum descent altitude.
## 3566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed while making an approach to Bintuni.
## 3567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While climbing through FL 350, 46 minutes after takeoff, a bomb exploded in a container in location 13-R in the forward cargo hold. The aircraft disintegrated and crashed into the desert. A Congolese man, who boarded at Brazzaville and disembarked at Ndjamena was believed to have brought the bomb aboard.
## 3568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An explosion occurred in an overheated fuel pump while shuting down the engines.
## 3569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During an aborted takeoff,  the aircraft overran the runway, hit a wooden approach lighting pier and came to rest partially submerged in shallow water in Bowery Bay. The failure of the captain to exercise his authority in a timely manner to reject or continue the troubled takeoff which was initiated by a mistrimmed rudder.
## 3570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Exploded in mid-air and crashed during a thunderstorm and heavy rain.
## 3573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane struck trees, losing part of a wing after initiating a go-around. The crew continued with the approach beyond the missed approach point without establishing the required visual references.
## 3574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft bounced and came down on its right wing tip while attempting to land. The controls were damaged and after an attempted go-around and reaching a height of 200 ft., the plane rolled to the left and crashed into trees on a hill. Improper pilot techniques and crew coordination during the landing attempt, bounce and attempted go-around.
## 3575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Failure of the autopilot caused the plane to enter a spiral descent. Attempts to pull the plane out caused the aircraft to break-up in midair and crash into a swamp.
## 3576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A dry  fuel pump led to the ignition of fuel vapors.
## 3577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft took off, made a left turn and crashed into trees.  Improper planning and decision by the pilot-in-command and failure of the crew to maintain runway alignment and clearance from the high obstructions beside the runway. Contributing factors included weather conditions, dark night, lack of runway edge lights, lack of visual perception by the pilots and trees beside the runway.
## 3578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In-flight separation of a main rotor blade of the helicopter due to fatigue failure of the main rotor blade spar, which originated at a manufacturing induced scratch (tool mark) that was the result of inadequate quality control.
## 3579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into mountain after takeoff.
## 3580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into the Caspian sea after reporting an engine fire.
## 3581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Descended below minima and struck a mountain. Did not heed GPWS warnings. Incorrectly set altimeter.
## 3582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft landed short of the runway in heavy rain and high winds after returning to the airport. The crew did not follow the proper approach procedure.
## 3583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed while attempting to land in poor weather. Controlled flight into terrain.
## 3584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane hit a 7,000 ft, mountain 10 minutes after taking off. The flight crew used an incorrect departure procedure.
## 3585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft collided with terrain near Halawa Bay, Molokai, Hawaii, while en route on a scheduled passenger flight from the Kahalui Airport, Maui, to Kaunakakai Airport, Molokai. The decision of the captain to continue flight under visual flight rules at night into instrument meteorological conditions, which obscured rising mountainous terrain. The victims included eight members of Molokai High School's volleyball team and staff.
## 3586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed on a beach following engine failure.
## 3587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hit a mountain.
## 3588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane collided with  trees 180 m from the Inner Marker.  Weather was below minima with a 80 m cloud base and 2000 m visibility in haze and snow.
## 3589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Two helicopters transporting bus accident victims collided in mid-air.
## 3590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed during takeoff after losing the left engine, directional control and overrunning the runway and catching fire.
## 3591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane burst into flames and crashed shortly after taking off from El Dorado Airport. Detonation of an explosive device placed on the floor on the starboard side of the passenger cabin at seat 15F which ignited fuel vapors in an empty fuel tank. The bomb was placed by members of the drug cartel headed by Pablo Escobar in an attempt to kill presidental candidate Cesare Gaviria. He was not aboard the flight.
## 3592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while landing.
## 3593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft was making a night, VOR instrument approach to Runway 28.  Visual meteorological conditions prevailed, except for some parts of the airport which were obscured by low cloud.  Approaching Runway 28, the aircraft was too high to land and the pilot chose instead to enter a right downwind to land on Runway 10.  At approximately 400 feet above ground level on final for Runway 10, the aircraft entered some clouds, the base of which were reported by the tower operator to be at 10 meters.  The aircraft continued its descent, initially striking some trees about 400 feet short of the runway, then shearing off one of the main landing gear on a hillside road about 200 feet prior to the runway.  The aircraft, under full power and nose up, began to climb, but rolled inverted and crashed at the threshold of Runway 10.  The wing fuel tanks were ruptured and the fuselage, trailing fire, slid across the runway and stopped on the parallel taxiway.  A fire ensued and airport fire and rescue crews put out the fire within 10 minutes.  Both pilots and one passenger were killed by impact and the remaining four passengers were taken to the hospital with moderate injuries.  The primary cause of the accident was the pilot's decision to descend without visual reference to the surface.  A contributing factor was the negative affect on crew performance that resulted from not using oxygen at 12,000 feet during the flight from Ciudad Guayana.
## 3594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the sea 4 miles Northwest of the Island. Unknown cause. There was sever turbulence and windshear in the area.
## 3595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The crew inadvertently selected "Beta Range" on the propellers at 800 feet. The aircraft then stalled and crashed into the river.
## 3596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The passenger flight crashed into a jungle shortly after taking off.
## 3597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft was observed sinking fast while attempting to land at Pasco. The aircraft suddenly nosed over and crashed short of the runway. The crew's decision to continue an unstabilized instrument landing system approach that led to a stall, most likely of the horizontal stabilizer, and loss of control at low altitude. Contributing to the accident was the air traffic controller's improper vectors that positioned the aircraft inside the outer marker while it was still well above the glideslope. Contributing to the stall and loss of control was the accumulation of airframe ice that degraded the aerodynamic performance of the airplane.
## 3598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed in poor weather conditions. Rumors suggest the plane was shot down.
## 3599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision. Five killed on ZA-DAX, ZK-DQF landed safely.
## 3600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ditched into the Java Sea after experiencing mechanical problems with the right engine and being unable to maintain altitude. The crew shut down the engine and feathered the propeller but could not maintain altitude despite jettisoning luggage out of the aircraft.
## 3601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A fire in the rear cargo hold and fire warning in both engines forced the plane to crash land in a snow laden field. The plane broke up after striking irrigation equipment. Short circuit in the electrical wiring.
## 3602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed about 4,500 feet up on 7,250 ft. Pico Blanco Mountain, 10 miles southwest of San Jose, five minutes after taking off in a driving rainstorm. Continued VFR flight into IFR condtions.  The aircraft was not  equipped with a GWPS.
## 3603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane crashed into a 14,200 ft. Mount Massive 50 feet below the summit  while en route. Diversion of the pilot's attention, resulting in an in flight collision with terrain during normal cruise flight.
## 3604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed into El Junquito Hill 5 minutes after taking off and burned. Most likely cause was reduced visibility, rain and low overcast.
## 3605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into Mt. Ringani after being diverted en route to Denpasair, Bali, due to bad weather.
## 3606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft was put in a series of extended holding patterns as it approached New York.The crew informed ATC they were running out of fuel but did not declare an emergency and were cleared to land. After a missed approach and during  a go-around, the plane ran out of fuel and crashed in a wooded area. The captain speaking very little English and communicating through the first officer, at no time declared an emergency. The first officer used the term "we need priority" several times, rather than declaring an emergency. The ATC did not realize the peril of the aircraft. Failure of the crew to properly communicate the emergency situation to the ATC. Although blame was placed squarely on the crew there are several reasons why ATC should have  taken some responsibility for the accident. ATC was trying to land too many planes at once given the weather and number of missed approaches and aborted landing that were taking place. The plane was put in an extended holding pattern on three different occasions. The crew was not told of wind shear below 500 ft. which led to the aborted landing attempt. The plane was passed between three different controllers as it came out of its holding pattern to land. Each time the crew had to repeat their fuel situation.  The crew did say "we are running out of fuel" numerous times only to be taken on a wide circling pattern after the first attempt at landing was aborted. Although the major blame was placed on the crew, in the end, the FAA paid 40% of compensations to the passenger's families.
## 3607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Antonov crashed after failing to find the destination airport at night.
## 3608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rain and high winds caused the aircraft to crash 50 miles from it's destination of Brazzaville.
## 3609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In light snow, the cargo plane was unable to gain altitude and crashed into trees. The failure of the pilot to de-ice the airplane prior to departure, and his decision to make the takeoff at a weight that exceeded both the maximum structural takeoff weight and the reduced takeoff weight allowed for icing conditions resulting in an inadvertent stall.
## 3610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane took off at night in snow was unable to gain altitude, make a steep descent and crashed into trees. Loss of control in-flight after the airplane stalled during climbout. The stall resulted from a loss of lift due to a contaminated wing surface. Contributing to the accident was the failure of the pilot to de-ice the aircraft prior to departure.
## 3611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Struck Mt. El Saluda at 5,000 ft., near Image, after announcing a go-around with intentions of diverting to their alternate.
## 3612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed after an aborted landing following landing  too fast and 2/3rds down the runway. The pilot attempted a go-around, became airborne but stalled and crashed into houses and a car killing two people.
## 3613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On final approach, the aircraft descended below the normal approach profile until it hit the ground 2,300 ft. short and 200 ft. to the right of the runway centerline. The co-pilot's (in this case check captain's) flight director was left in the Open Descent Idle Mode instead of the Vertical Speed Mode, the prescribed setting for an approach and landing.The aircraft could not maintain the correct flight path at idle power. Failure of the crew to realize the gravity of the situation and respond immediately towards proper action of moving the throttles, even after the radio altitude call-outs.
## 3614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Suddenly dove into a field as it prepared to land at Likouala.
## 3615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While on an ILS approach, the cargo plane encountered icing conditions. Subsequently it entered a steep descent and crashed short of the runway. The accumulation of structural ice and subsequent stalling of the aircraft. The icing condition was a related factor.
## 3616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After the pilot ejected safely, the aircraft crashed into two trucks killing 50 people on the ground.      
## 3617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into the sea after takeoff.
## 3618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane descended below the minimum safe altitude and struck a 7,000 mountain in poor weather.
## 3619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             During takeoff, close to V1 the takeoff was aborted. The aircraft overran the runway and crashed.
## 3620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane stalled while on final and crashed while on approach after being ordered by ATC to discontinue the approach. Pilot error.
## 3621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shot down with a missile fired by UNITA rebels.
## 3622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Control of the aircraft was lost when the push-pull rod to the elevator failed in heavy turbulence. The plane crashed into the sea.
## 3623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shortly after taking off, the plane crashed into the ocean three miles south of the Panamanian island of Contadora after experiencing problems with the No. 2 engine leading to loss of altitude and control of the aircraft. The engine failure was caused by bird ingestion.
## 3624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The propeller of the No. 3 engine separated which struck the No.4 propeller leading to a crash.
## 3625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed into a rice field after an engine failed during a landing attempt and the plane attempted to take off again, crashing outside of the airport boundary.
## 3626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While on VOR approach the aircraft flew into the ground.
## 3627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a mountain in poor weather while en route.
## 3628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft experienced engine failure on takeoff at about V2 and crashed into houses 8 km SE of the airport.
## 3629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed 3  miles short of the runway on approach, striking trees. The accident was attributed to a lack of coordination between the crew during the approach and their lack of experience on the type of aircraft.
## 3630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                During a low level flight the crew lost reference with the ground and crashed.
## 3631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There was an explosion in the center fuel tank while the aircraft was being pushed back for flight. Ignition of vapors in the empty center tank probably resulted from faulty wiring. Several causes have been presumed including chafed insulation on the wiring for the center fuel tank float level switch and damaged insulation on the wiring of the nearby wing anti-ice valve.
## 3632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed shortly after taking off. The aircraft never gained more than 400 feet in altitude and crashed into houses killing four people. Failure of the right engine, after which, the pilot  made an immediate right turn, stalled the aircraft and crashed. Failure to maintain adequate flying speed and altitude due to the pilot's inability to properly perform the specified emergency procedures following a malfunction of the right engine immediately after take off. Failure of the engine.
## 3633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot switched to VFR in IFR conditions, struck trees 1 km short of runway in heavy ground fog. Pilot error.
## 3634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane failed to gain altitude and crashed into a parked helicopter.
## 3635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While en route, at FL 173, a large section of windshield  fell away from the aircraft. The decompression pulled the captain out from under his seatbelt. Despite trying to hold onto the yoke, the captain was sucked out into the opening. A steward in the cockpit was able to grab hold of his legs. Another steward was able to strap himself into the vacant seat and aid in holding onto the captain's legs. The co-pilot wearing full restraints made an emergency landing at Southampton. The captain remained half way out of the aircraft for 15 minutes and suffered only frostbite and some fractures. Improper bolts used to replace the windshield two days earlier.
## 3636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Struck a ridge in poor weather 35km from Port Morseby while en route to Woltape.
## 3637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down by rebel forces.
## 3638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed during an emergency landing.
## 3639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into a cloud covered mountain at 2,520m, 22km from its destination.  Premature descent.
## 3640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed shortly after takeoff. Mechanical failure or possibly shot down.
## 3641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Four helicopters were being used to night transport a concert group. The helicopter in question remained at a lower altitude and crashed into terrain soon after taking off into fog. Blues guitarist Stevie Ray Vaughan, 35 was killed. Eric Clapton was originally going to be on the helicopter but gave his seat to Vaughan. Failure of the pilot to attain adequate altitude before flying over rising terrain. Factors related to the accident were: darkness, fog, haze, rising terrain, and the lack of visual cues that were available to the pilot.
## 3642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Just after taking off, the aircraft drifted to the left and clipped trees eventually crashing 3,000 ft. past the end of the runway. Possible inadvertent deployment of a thrust reverser.
## 3643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed after loosing the No. 2 engine.Failure of the pilot to maintain adequate altitude after becoming distracted with an engine problem. Loss of power in the No. 2 engine for unknown reasons.
## 3644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft ran out of fuel and crashed into the sea. The last message that was heard from the crew was they were low on fuel and preparing to ditch.
## 3645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the sea 80nm southwest of its departure point. According to ATC tapes, the crew was being incapacitated by hypoxia prior to crashing.
## 3646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft undershot on approach and crashed 1,700m short of the runway.  It is reported that the crew, who was apparently fatigued, failed to correctly follow procedures. The accident happened at night.
## 3647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The predeparture check lists were carried out by the first officer, while the captain arrived late. The aircraft s taxied out immediately and it is presumed that the crew did not carry out the pretakeoff checklist. The airplane took off,  entered a steep climb and turned right. Shortly afterwards the plane dove into the sea. Both pilots had very little experience on Bandeirante planes.
## 3648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed short of the runway into a Eucalyptus tree while making an approach to Runway 11 in heavy fog.  The pilot's improper IFR procedure. His failure to maintain the minimum descent altitude for the adverse weather was a related factor.
## 3649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shortly after taking off a hijacker entered the cockpit and demanded to be flown to Hong Kong. The captain circled for 30 minutes and after a struggle in the cockpit, attempted to land at Guangzhou, hitting the runway hard, clipping a B-707, crashing into a B-757, filpping over and bursing into flames. Eighty-two aboard the B-737 and 46 aboard the B-757 were killed. Later figures suggest the death toll was 132 and included the hijacker and driver of a vehicle.
## 3650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft experienced severe turbulence after entering overhang of a thunderstorm at FL 310. Three passengers received serious injuries. One passenger died 20 days after the accident. Failure of the captain to follow procedures by allowing the aircraft to continue into the overhang anvil of a thunderstorm. Failure of the passengers to abide by instructions concerning the use of seat belts. Failure of the flight attendants to enforce the use of seat belts.
## 3651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Disappeared en route. Wreckage found 6 years later in the Andes.
## 3652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Struck the ground 2.5 miles short of the runway at a high rate of speed in rain and reduced visibility. Pilot error. Continuing VFR flight in IFR conditions.
## 3653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft continued to descend after intercepting the glide slope and hit high ground 6 miles from the airport. False indication of VHF NAV on unit No.1 in the aircraft. Possible misread altimeter by the pilot-in-command. Lack of GPWS warning in the cockpit. Crew was not aware of the possibility of incorrect indications in the NAV equipment in use. Non-compliance with basic procedural instructions during the approach. ATC  did not observe the leaving of the cleared altitude of 4,000 ft.
## 3654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a jungle mountain, Mt. Los Farllones, in poor weather. Controlled flight into terrain.
## 3655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed landed after experiencing severe turbulence and engine failure.
## 3656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After receiving a runway change, the crew executed a missed approach.  They became confused on which way to go. They entered an area of clouds and heavy rain, became disoriented and descended in a left wing down attitude until they impacted the ground at a coconut plantation. The pilots experienced spatial disorientation which resulted in improper control of the aircraft. Numerous procedural errors and poor cockpit discipline by the crew. The pilot flew into weather conditions where he had no visual reference. Lack of cross-checking and monitoring of altitude. Improper monitoring the flight instruments.
## 3657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed into the sea during a storm.
## 3658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ground collision in dense fog. The 727 was on its takeoff roll when the DC-9 taxied onto the active runway. Improper crew coordination aboard the DC-9.  Failure to stop and alert ATC of positional uncertainty. Eight killed aboard the DC-9. None aboard the B-727.
## 3659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Undershot the runway by 4km on a second approach, hit powerlines and crashed in fog.
## 3660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The helicopter crashed into the sea.
## 3661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into Paramo Mucuti Mountain, 35 miles from it's destination of Merida. The last message from the pilot was he was unable to land because of adverse weather conditions and was declaring an emergency. The flight was transporting a funeral party for a Navy flyer killed a few days before. The only survivor was another Navy flyer who had also survived the earlier accident.
## 3662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane made a forced landing during poor weather conditions and crashed into trees on a ridge. All passengers survived but one elderly passenger died while waiting for rescue.
## 3663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shot down by a surface-to-air missile during operation Desert Storm.
## 3664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Skywest Metroliner was told to taxi into position for takeoff and hold. The ATC became preoccupied with another aircraft that departed the tower frequency. A Wings West aircraft reporting "ready for takeoff", caused some confusion because the controller didn't have a flight progress strip in front of her. The strip appeared to have been misfiled at the clearance delivery position. The USAir, which was cleared to land, struck the rear of the Metroliner. After the collision, both planes slid off the runway into an unoccupied fire station and burst into flames.The failure of the Los Angeles Air Traffic facility management to implement procedures that provided redundancy comparable to the requirements contained in the National Operational Position Standards and the failure of the FAA ATS to provide adequate policy direction and oversight to its ATC facility managers. These failures created an environment in the Los Angeles ATC tower that ultimately led to the failure of the  controller to maintain awareness of the traffic situation, culminating in the inappropriate clearances and the subsequent collision of the USAir and SkyWest aircraft. Twenty-two killed aboard the USAir and all 12 aboard the Metroliner. One additional person died 31 days after the accident making it 35 killed.
## 3665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft flew into the summit of Mt. .Othrys at 4,000 ft. while preparing to land at Nea Anghialos Airport.
## 3666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into the side of Mt. Paso Macunaa at 5,000 ft. in a jungle region of eastern Ecuador in poor weather. Controlled flight into terrain.
## 3667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane stalled during takeoff cart wheeled and crashed. The failure of the flight crew to detect and remove ice contamination on the airplane's wings, which was largely a result of a lack of appropriate response by the Federal Aviation Administration, Douglas Aircraft Company, and Ryan International Airlines to the known effect that a minute amount of contamination has on the stall characteristics of the DC-9 series 10 airplane. The ice contamination led to wing stall and loss of control during the attempted takeoff.
## 3668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane overran the runway on approach and sank in Beagle Channel in the sea.
## 3669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by surface-to-air missile launced by UNITA rebels.
## 3670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While on final approach to Colorado Springs, the aircraft suddenly rolled to the right and pitched nose down until it reached an almost vertical attitude before hitting the ground. Uncommanded deflection of the rudder caused by the jamming of the main rudder PUC servo valve. The rudder malfunction forced the rudder to go in the opposite direction the pilots commanded it to go. First female pilot to die on the flight deck of a major U.S. airline.
## 3671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed into the Las Torres plateau in the Andes mountains on a flight from Maracaibo to Santa Barbara de Zulia. The mountain was shrouded in clouds. Controlled flight into terrain. The point of impact was considerably off course.
## 3672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft hit rising terrain near the top of Mt. Otay, 8 miles NE of Brown Field at an elevation of 3,300 feet shortly after taking off. Improper planning/decision by the pilot. Failure of the crew to maintain proper altitude and clearance over mountainous terrain and the failure of the copilot to adequately monitor the progress of the flight. Seven members of the Reba McEntire band were killed.
## 3673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane was shot down by a surface-to-air missile.
## 3674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed while attempting to land in poor visibility caused by oil fires during the Persian Gulf War.
## 3675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The two aircraft collided at an altitude of 3,000 ft. while conducting training exercises off the coast of southern California.  Both planes crashed into the sea. Loss of situational awareness, one crew misunderstanding the others intentions or a previous understanding made by radio contact may have led to the accident. Thirteen aboard 159325 and 14 aboard 158930 were killed.
## 3676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft overran the runway and crashed into concrete blocks. Crew error. Did not follow proper procedures during landing.
## 3677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane climbed to an altitude of 150 ft. and then crashed into the ground about half-a-mile from the airport. Engine failure.
## 3678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the plane's nose gear indicator light did not illuminate a helicopter was dispatched to verify the nose gear was down. While making the inspection, the helicopter's blades accidentally hit the bottom of the plane sending both aircraft into the ground, killing all aboard both aircraft. Pennsylvania Senator H. John Heinz III was killed in the crash along with two children playing outside an elementary school. Two killed aboard the Bell and 3 aboard the Piper. The poor judgment by the captain of the airplane to permit the in-flight inspection after he had determined to the best of his ability that the nose landing gear was fully extended. The poor judgment of the captain of the helicopter to conduct the inspection and the failure of the flight crew of the helicopter to maintain safe separation.
## 3679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crash landed on a frozen lake after the crew flighing VFR, entered a snow storm.
## 3680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Just after turning onto final approach, the aircraft suddenly rolled left until the wings were perpendicular to the ground and crashed in a nose down attitude 2 miles short of  the runway. Malfunction of the left engine propeller control unit which allowed the propeller blade angle to go below the flight idle position. Contributing to the accident was the deficient design of the propeller control unit by Hamilton Standard and the approval of the design by the FAA . Texas Senator John Tower, 66, his daughter and astronaut Manley "Sonny" Carter were among those killed.
## 3681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into the sea after taking off from Hiva Ou and experiencing engine failure. The crew didn't recognize the failure and concentrated on the low oil pressure warning. The approach was abandoned at the very last moment it was decided to carry out an unprepared ditching. The crew's performance may have been impacted by alcohol consumption.
## 3682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Mt. Klabat in heavy fog while descending for a landing.
## 3683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The airplane crashed into a wooded area about 8 minutes after takeoff. Detonation (or pre-ignition) in the number 1 cylinder, which resulted in erosion (burning) of the number 1 piston and subsequent loss of engine power. A factor related to the accident was: the lack of suitable terrain for an emergency landing.
## 3684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Eight minutes after takeoff the No. 2 engine failed.  The pilot turned back but crashed 1 mile short of the runway.  The passengers were told to throw out cargo after which unfortunately they all moved towards the tail leading to a loss of control.
## 3685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undershot the runway and broke in half after a hard landing. Crew error. A rapid rate of descent, leading to landing gear failure. The accident happened durining daylight in a rain shower.
## 3686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After three missed approaches the cargo plane ran out of fuel and crashed.
## 3687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Twelve minutes after takeoff the crew received a visual REV ISLN advisory warning which indicated that an additional system failure may cause deployment of the No. 1 engine thrust reverser. No action was taken since the manual indicated "No Action Required". Just before reaching FL 310 during a climb, there was an uncommanded deployment of the No. 1 engine thrust reverser. The aircraft stalled, went into a steep high speed dive, broke apart at 4,000 feet and crashed into the jungle 70 miles northwest of Bangkok. Failure of the reverse thrust isolation valve. Following the accident Boeing made modifications to the thrust reverser system. The aircraft was named Wolfgang Amadeus Mozart.
## 3688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft ditched 1.25 miles off Grada Zuma, following a reported engine failure.
## 3689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed on takeoff after the No. 1engine overspeeded and failed.
## 3690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Following several attempts to land the pilot decided to hold until weather conditions improved.  Contact was lost with the plane and it flew into the ground. Visibility was reduced by low lying fog.
## 3691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane diverted to Sokotu due to poor weather. After circling for an hour, unable to locate the air field, the aircraft ran out of fuel and had to make a forced landing. The landing gear was torn off and the plane broke up during the ground slide.
## 3692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane crashed into the Gulf of Finland shortly after taking off.
## 3693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While attempting to land the pilot continued VFR flight in IFR conditions and collided with a hill.
## 3694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft was shot at by drunken police in an attempt to stop it for a search when mistaken for drug smuggling. As the plane ascended through 75 ft. bullets penetrated the forward fuselage killing the pilot and copilot.
## 3695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While the aircraft was on approach, it entered an area of thunderstorms. The aircraft rolled left and pitched up as the aircraft approached level flight. The aircraft then stalled and started to descend. The descent couldn't be arrested and the aircraft crashed into a residential area, destroying two homes and two automobiles.  Decision by the pilot-in-command to continue instrument approach into thunderstorm conditions resulting in loss of control of the aircraft. The pilot and one passenger survived the accident.
## 3696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After taking off, fire was reported in the landing gear well. The aircraft crashed while trying to return to the airport. Loss of hydraulics and electrical systems after a fire, started in the wheel when two tires disintegrated due to under inflation of one tire. This caused a fire which ignited years of accumulated flammables in the DC-8's wheel well leading to an uncontroable fire. The plane was allowed to leave with an under inflated tire. Twenty minutes prior to departure, the Nationair lead mechanic made a request for nitrogen to inflate the low tire. Nitrogen was not readily available and a delay would probably have occur procuring it. The Nationair project manager, without conferring with the flight crew, released the plane.
## 3697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Flew into a hillside 7 minutes after taking off from Nogougou. Spatial disorientation.
## 3698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ditched into the sea while on approach.
## 3699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane crashed in a rainstorm.Premature descent.
## 3700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into high ground during approach to Imphal. The crew failed to follow the correct approach course.
## 3701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed while en route, flying VFR in deteriorating weather. The pilot attempting to operate VFR in IFR conditions.
## 3702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While maneuvering in remote mountainous terrain, on a dark night, with light drizzle and patchy clouds, the helicopter collided with a mountain. The wreckage scattered on a heading opposite the flights destination. The helicopter was destroyed by a post crash fire and there were no noted mechanical failures or malfunctions. The pilot's failure to maintain clearance from terrain.
## 3703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shortly after takeoff the left engine failed. The aircraft began to lose height in a left turn and crashed along the banks of Mentaya River.
## 3704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into the jungle after double engine failure. Both engines didn't develop full power and were feathered on impact.
## 3705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In-flight loss of the leading edge of the left horizontal stabilizer. Forty-seven screw fasteners that would have attached the upper surface of the leading edge assembly for the left side of the horizontal stabilizer were missing. Work was scheduled on both the right and left leading edges of he horizontal stabilizer. Screws were removed from both the right and left side. A later shift decided not to do the left side but did not know the earlier shift removed the left side screws. Lack of compliance with FAA approved maintenance procedures.
## 3706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane struck trees, crashed and caught fire on takeoff. Overloaded
## 3707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After experiencing a nose gear problem and attempting to return to the airport the cargo plane made a premature descent and struck Mount Arey.
## 3708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane lost control and crashed into a mountainside while en route. Failure of the first officer to maintain control of the aircraft after becoming spatially disoriented and his exceeding the design stress limits of the aircraft. Factors related to the accident were: the lack of two pilots in the cockpit, darkness, and instrument meteorological conditions at flight altitude.
## 3709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane lost engine power due to fuel exhaustion during approach and made a forced landing 1,450m short of the runway.
## 3710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into the Gulf of Finland 5 minutes after taking  off. Unknown cause.
## 3711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into Mt. Nashua at 4,100 ft. during a descent in heavy rain and fog while attempting a visual approach. Controlled flight into terrain.
## 3712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The pilot tried to make an emergency landing back at the airport when the No. 2 engine began to overspeed. A belly landing was made in a field and the aircraft broke up and caught fire.
## 3713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed into buildings during an attempted emergency landing after an engine caught fire during  take off.
## 3714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter was destroyed when it struck Kumaraden Hill at 4,600 ft. while on a scenic flight.  The passengers included EDELCA president and members of his family.
## 3715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was not able to land at Sampit due to smoke and haze.  The plane held for 3 hours waiting for an improvement after which contact was lost.  The plane was never found.
## 3716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter struck the top of a 223 foot high transmission tower, crashed and exploded in flames, 27 miles northwest of its departure point in high winds and heavy rain. The pilot's intentional flight into known adverse weather, continued flight into instrument meteorological conditions, and improper altitude.  Rock promoter Bill Graham, 60, was killed.
## 3717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into the ground 12nm from the runway at about 1,500 ft.  Rescue of the survivors was conducted in Arctic twilight under poor weather conditions. Controlled flight into terrain.
## 3718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down by rebel forces.
## 3719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed into a mountain during daytime in poor weather. Failure of the crew to follow the correct approach path.
## 3720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed on takeoff hitting power lines and roof tops before coming to rest in a market square. Uncontained failure of the right engine.
## 3721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crash landed in poor weather conditions. Icing.
## 3722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into a mountain in zero visibility.
## 3723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The helicopter impacted the ground 8 nm from it's destination airport in fog and low visibility. The decision of the pilot to continue night low level flight in forecasted adverse weather conditions. Contributing to the accident was the foggy weather and dark night conditions which restricted the pilot's visual outlook.
## 3724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane overshot the runway and crashed into trees.
## 3725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While on approach to Bugulma, the plane yawed to the right. The crew decided to go around but crashed 800 m short and to the right of the runway. Horizontal stabilizer icing.
## 3726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Flew into the side of a hill towards the end of the flight while flying VOR.  The crew flew along the wrong valley.
## 3727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sightseeing tour struck a hill at 2,000 ft. while making a left turn in turbulence. Poor crew coordination. Overloaded.
## 3728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft reached an altitude of 3,000 feet and then made an emergency descent, clipping trees and made a belly landing in a field, breaking into 3 parts but staying together. Failure of both engines. Improper deicing of the aircraft led to chunks of ice breaking off and being ingested into both engines, leading to engine failure.  The crew was not trained to recognize and correct engine surges, which occurred when the ice struck the engines.The aircraft was named Dana Viking.
## 3729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane crashed on takeoff  after losing the No. 3 and 4 engines due to corroded midspar fuse pins. The No. 3 engine broke loose first striking the No. 4 engine.
## 3730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft hit a mountain while on approach to Strasbourg. The crew was making a non-precision approach to runway 05. Design deficiencies with the rate-of-descent mode selector switch. The captain inadvertently selected 3,300 fpm descent on approach (displayed as 33) instead of 3.3 degree flight path angle (displayed as 3.3 in the same place on the panel) and this went unnoticed. The plane was slightly off course due to ATC error. No GPWS was installed. Both pilots had little time in an Airbus 320. There was inadequate training for non-precision approached. The electronic locator beacon was destroyed in crash, putting survivors at risk for over 4 hours before the wreckage was located.
## 3731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Exploded and crashed after being hit by a surface-to-air missile. Highest death toll in a commercial helicopter crash in aviation history.
## 3732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft descended below MDA in poor weather and struck Taquari Hill which was obscured by clouds.
## 3733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into trees during its approach. The crew mistook the hotel lights for runway lights. Pilot error and malfunctioning equipment. Founder of Club Med and his son convicted of involuntary manslaughter in connection with this accident.
## 3734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After a missed approach by the copilot the captain took over but also executed a go-around.  He became spatially disoriented. When in a low nose and left bank attitude, control of the plane was transferred back to the first officer who began leveling the wings and raising the nose of the airplane. Impact with the ground occurred before the recovery was completed. The failure of the flight crew to properly recognize or recover in a timely manner from the unusual aircraft attitude that resulted from the captain's apparent spatial disorientation, resulting from physiological factors and/or a failed attitude director.
## 3735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A passenger died of cholera while en route.
## 3736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane failed to gain altitude, cleared a fence and crashed to the ground. The wet runway contributed to the failure lift off in a timely manner.
## 3737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed during a severe thunderstorm.
## 3738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane was de-iced two times while at the gate. Thirty-five minutes elapsed between the last de-icing and takeoff during which ice accumulated on the wings. After liftoff, the plane stalled, crashed and came to rest inverted and partially submerged in Flushing Bay. Failure of the airline industry and FAA to provide flight crews with procedures compatible with departure delays in conditions conducive to airframe icing and the decision by the flight crew to take off without positive assurance that the airplane's wings were free of ice accumulation after 35 minutes of exposure to precipitation following de-icing. The ice contamination on the wings resulted in an aerodynamic stall and loss of control after liftoff.
## 3739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The crew deviated from the ILS localizer during an approach to  Runway 33R and struck 2,000 foot Mount Hymittus. The pilot didn't comply with the procedures for an ILS approach and attempted a visual approach. The pilot confirmed "established on the ILS localizer," but he was not on the localizer course. The crew waited too long before performing a missed approach.
## 3740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed into high ground 5 km short of the runway in poor weather during a VFR approach.
## 3741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Could not land due to a sandstorm, ran out of fuel and made a forced landing in the desert. Crash landed in the desert, 62 miles southeast of Sarra. Among the passengers was Yasser Arafat.
## 3742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into the sea after losing the No. 1 engine after reaching 1,500 feet after takeoff.
## 3743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The left engine failed while taking off from Eastleigh Air Base. The pilot attempted to return but poor visibility caused him to overshoot the runway. He tried to realign himself but stalled and crashed to the ground.
## 3744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into mountains at Daulo Pass, 10km from its destination while on approach in poor weather.
## 3745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane, carrying parachutists, lost power and crashed 200 ft. past the runway. The pilot's inadvertent feathering of the wrong propeller following an engine power loss and the failure of the operator to assure that the pilot was provided with adequate training in the airplane. Water contamination of fuel in the airport storage tanks. Lack of fuel quality control procedures.  Improper fuel servicing and exceeding the gross weight forward center of gravity limits of the airplane.
## 3746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               During a sight seeing tour the aircraft hit a mountain on the island of Maui. The captain's decision to continue VFR into IFR conditions that obscured mountainous terrain and failure to properly use available navigational aids  to remain clear of terrain.
## 3747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed in unstable weather while en route from Manshahr to Tehran.
## 3748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Twenty minutes after leaving Panama, the aircraft changed course to miss an area of thunderstorms. It then went into uncontrolled high speed dive and broke up at FL 100. Intermittent failure of one gyro caused non-synchronization of attitude indicators. Crew responded by selecting one gyro for both artificial horizons, but selected the wrong one. The selector control operated the opposite way from the one they had trained on. Failure to cross-check against standby indicator. Pilot came out of a left bank and continued into a right bank that eventually rolled the aircraft and caused it to go into a steep dive from which recovery was not possible.
## 3749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft lost control on final approach and crashed in a nose-down into the ground. Failure of the beta blocking device for undetermined reasons. The first officer's inadvertent activation of the power lever aft of the flight idle position and into the beta range, resulting in a loss of airplane control.
## 3750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed while on approach after the crew was distracted by a intermittent compartment warning.
## 3751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A missed approach was followed by the left wing and landing gear hitting the runway which led to a stall and crash, right of the runway. Crew error.
## 3752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Possibly shot down by LTTA  rebel forces as it attempted to land a the Elephant Pass Army Garrison.
## 3753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cargo shifted as the cargo plane took off causing a high nose attitude which led to loss of contol. Inadequate security of the cargo which shifted rearward during the takeoff roll. Factors which contributed to the accident were: the over gross weight condition, and the improper alteration of the tie down rings by the overhauling maintenance facility.
## 3754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cashed and burned after taking off. Fuel starvation.
## 3755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed while in a holding pattern and attempting to land at Aden Airport during a sandstorm.
## 3756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Overran the runway while trying to take off and crashed into buildings. Overloaded. Center of gravity too far forward.
## 3757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On approach, the cargo plane went off course while trying to circumnavigate a thunderstorm and impacted a mountain.
## 3758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into Mt. Lataboy at 2,800 ft. during an approach to Ambon in a severe rainstorm.
## 3759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Flew into a mountain in poor weather on a positioning flight.
## 3760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Immediately after liftoff, the stick shaker activated. The takeoff was aborted but the aircraft ran off the runway and caught fire. A defective stall warning system. A design flaw that allowed the defective stall warning system to go undetected. Failure of TWA's maintenance program to correct a repetitive malfunction of the stall warning system, and inadequate crew coordination between the captain and first officer that resulted in their inappropriate response to a false stall warning.
## 3761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plan was to land at Kathmandu straight in from the south. After experiencing difficulty in deploying the flaps, the captain stated they were too high to come in for a direct landing. He asked to go around and make the approach again. The ATC did not have radar service. After some confusing exchanges between the tower and the aircraft, the captain instead of making a 180 degree turn towards the south, continued the turn to 360 degrees and headed north again. The aircraft eventually flew into a near vertical mountain wall at 240 knots. In the final seconds, the captain interpreted  the Ground Proximity Warning System warning as false. The accident was caused by a combination of occurrences, errors and actions by the captain and ATC. Specifically, the initial problem with the flaps, the lack of radar service, the captain trying to performing too many duties instead of relying on his co pilot,and the use of non-standard phraseology.
## 3762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft failed to gain altitude after lift-off, touched down again and overran the runway bursting into flames 2,000 feet past the runway. Wrong takeoff configueration.
## 3763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into a lake in the Chacaltaya mountains during poor weather conditions.
## 3764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft was on a test flight after replacement of all primary flight control cables. The aircraft took off, rolled to the right and crashed. Inadequate maintenance and inspection by the operator's maintenance personnel, and the failure of the pilot-in-command to assure proper travel direction of the airplane's primary flight controls after being made aware of the nature of the maintenance performed.
## 3765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While en route, one of the aircraft's engines lost power. The pilot declared an emergency and attempted to carry out a forced landing but the aircraft struck trees and crashed.
## 3766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft took off at too steep of an angle during a test flight, stalled, rolled to the right and crashed in a nose-down, right wing low attitude.
## 3767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed 1.5 miles from the airport during approach. Poor landing coordination by the flight crew.
## 3768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane was unable to maintain altitude after taking off, crashed into trees and caught fire.  The co-pilot became distracted while trying to operate an inconviently placed intercom switch and the aircraft to lose height and drifted to the right.
## 3769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While attempting to land the nose gear tire blew out causing the plane to veer off the runway, break in three and catch fire. The pilot died after he was trapped in the cockpit.
## 3770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While taking off the helicopter cashed into trees and burst into flames.
## 3771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Struck a mountain. The pilot inadequately evaluating the en route weather conditions, and the pilot making the in-flight decision to continue VFR flight into adverse weather conditions. Factors in this accident were the inability of the pilot to see and avoid the mountainous terrain due to the thunderstorms.
## 3772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane crashed into the Atlantic Ocean while en route.
## 3773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed short of the runway after attempting an emergency return to the airport after takeoff. Engine failure.
## 3774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into power lines at 40m during an approach to land.
## 3775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft attempted to ditch into a canal after two engines failed on takeoff. After a third engine failed, the aircraft crashed into a marsh. Fuel contamination.
## 3776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane hit cloud covered high ground while attempting to land, 9 nm short of the runway at Bhattedanda hill. The pilot began the descent too early and had miscalculated the aircraft's altitude. Failure of the crew to follow prescribed procedures.
## 3777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shortly after taking off from Schiphol Airport, while climbing through 6,500 feet, the No. 3 engine separated with its pylon from the aircraft and damaged the leading edge of the right wing. The No. 3 engine separated in such a way that the No. 4 engine and pylon also separated from the wing. During an attempted return to the airport, the aircraft crashed into a 11 story building in the Bijlmermeer residential district. The design and certification of the B-747 pylon was found to be inadequate to provide the required level of safety. The system to ensure structural integrity by inspection failed. The separation of the No. 3 engine was initiated by fatigue (corrosion) in the inboard midspar fuse pin. This led to loss of the No. 4 engine and pylon and damage to several systems which ultimately led to loss of control of the aircraft.
## 3778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Struck power lines and crashed.
## 3779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed 45 miles southeast of Lanzhou while attempting to return to the airport after experiencing engine failure.
## 3780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane veered off the runway and crashed while attempting to land at night with just the headlights of several trucks.
## 3781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft was descending in heavy rain when it crashed into Mt. Papandayan.
## 3782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed on takeoff. The aircraft became airborne but then stalled and crashed. Engine failure.
## 3783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The float-plane crashed into the lake after experiencing engine failure while en route.
## 3784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed 1,600m short of the runway threshold while attempting to land at Chita.
## 3785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The rotor blades hit an oil rig in the Arabian Sea.
## 3786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After climbing to a height of 800 ft. the plane dove into the ground. Improper loading and overloaded.
## 3787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed into a hilly area while landing during a severe rainstorm.  Failure to supply an adequate weather report or interpret the report correctly. Failure to appreciate the severity of the weather encountered on route and to take appropriate evasive action. Failure to provide adequate airfield approach aids to support the all weather operations required.  Failure to maintain adequate terrain clearance.  Poor Air Traffic Control.
## 3788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into an 850 meter high peak while on approach to Puerto Plata. Controlled flight iinto terrain.
## 3789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into a 7,000 ft. mountain, 15 miles from the airport while on apporach. Malfunction of the thrust lever which caused a loss of control of the aircraft.
## 3790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The two aircraft on a training mission and refueling collided in darkness at 25,000 ft. and crashed to the ground. Seven killed on 65-0255 and 6 on 66-0142
## 3791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in the Sierra Madre mountains shortly after taking off.
## 3792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft flew into high ground at 8,800 ft. while positioning for an approach to Goma.The accident happened in darkness. Premature descet,
## 3793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shot down by a surface-to-air missile by Georgian rebel forces.
## 3794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While attempting a second landing in high winds, during a storm, the aircraft's wing tip hit the runway resulting in the aircraft departing the runway and causing a fuel tank to explode. The high rate of descent in the final phase of the approach and the landing made on the right landing gear which exceeded the structural limitations of the aircraft.The crosswind, which exceeded the aircrafts limits and which occurred in the final phase of the approach and during landing. The combination of both factors caused stresses which exceeded the structural limitations of the aircraft. In addition, there were four moments when the pilots should have decided to abort the landing and do a go-around. This because the runway was flooded with water, the plane had left the flight path and was unstable during landing. In addition, the pilots did not properly correct for the windshear, flew too slowly and made errors with the automatic pilot.
## 3795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision with an Libyan Air Force fighter at 3,500 ft.
## 3796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The pilot was transporting personnel within a remote mountain valley in support of the commercial filming of celebrity skiers. The skiers had been filmed as they skied down a ridge, and were being flown back to the top of the ridge line. During the third go-around following three attempts to land on the ridge top landing site, the helicopter disappeared into a cloud bank and impacted the ridge at the 8,500-ft level. The pilot's continuation of VFR flight into instrument meteorological conditions, and his decision to continue his landing attempts under the adverse weather conditions.
## 3797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While approaching Charles de Gaulle Airport,  a preceding Korean Air, Boeing 747 blew a tire on landing and the runway was closed. The crew had to use another runway but the aircraft entered a high sink rate and flew into the ground 5,500 feet short of the runway.
## 3798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The No. 2 engine lost power on takeoff. The aircraft crashed into a swamp 800m beyond the end of the runway, broke up and caught fire.  Flaps were found to be retracted.  Right propeller did not autofeather and had to be feathered manually.
## 3799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane struck a mountain while descending in fog and poor visibility.
## 3800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After takeoff, the cargo plane, banked sharply went nose-down and crashed.
## 3801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While attempting to takeoff the cargo plane overran the runway and struck vehicles. Overloaded.
## 3802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into Mt. Kapur 67nm from Medan in poor weather conditions with thunderstorms. The plane has not been found. Pilot was flying at 8,500 ft., below the published minimum safe altitude.
## 3803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Midair collision with an Iranian Air Force fighter while taking off. One hundred thirty-one killed on the Tupolev and one killed on the Su-24.
## 3804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The helicopter crashed while en route. Overloaded and poorly maintained.
## 3805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane attempted to return to the airport after an engine caught fire but crashed in a field.
## 3806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft disappeared shortly before it was due to land and is believed to have crashed into the sea. Prior to the loss of contact, the flight had appeared to be proceeding normally. The accident occurred during daylight and in heavy rain.
## 3807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft shuttered violently after takeoff,  rolled to the left, then right and crashed. Icing. Loss of roll controllability due to contamination on the wings with ice. Failure to de-ice the plane before taking off.
## 3808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed approximately 30 minutes after takeoff in rain.
## 3809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The No.2 engine and pylon separated from the aircraft at 2,000 feet. The plane landed safely. The engine separation was due to an encounter with severe or possibly extreme turbulence and a fatigue crack.
## 3810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Hooters Restaurant private plane crashed 0.5 miles outside the Outer Marker while attempting to land at the Tri-Cities airport near Bristol, Tennessee. NASCAR Winston Cup Champion Alan Kulwicki, 38, killed. Failure of the pilot to follow procedures concerning use of the engine inlet anti-icing system while operating  in icing conditions, which resulted in ice ingestion and loss of engine power. Failure of the pilot to maintain airspeed while coping with the engine problem.
## 3811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into the sea after departing Caracas on a test flight.
## 3812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The slats were inadvertently deployed while at FL 330. The aircraft progressed through several pitch oscillations and lost 5,000 feet in altitude. Inadequate design of the flap/slat actuation handle that allowed the handle to be easily and inadvertently dislodged from the UP/RET position, thereby causing extension of the leading edge slats during cruise flight.
## 3813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While cruising at FL240, a fracture of the propeller hub resulted in the separation of a propeller blade and damage to the engine, nacelle, wing and fuselage causing significant degradation to aircraft performance. The aircraft was incapable of maintaining altitude and crashed into a silo while attempting to make an emergency landing. South Dakota Governor George Mickelson, 52, killed.
## 3814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Flew into the side of Marz Mountain while descending.
## 3815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         During take off, the aircraft failed to climb and struck a vehicle on a public road just beyond the end of the runway. The aircraft was substantially damaged and the pilot elected to carry out a forced landing. During the attempted landing, the aircraft struck powerlines, crashed and burned. Pilots error in initiating late rotation and following wrong rotation technique, and failure of the NAA to regulate the mobile traffic on the Beed road during the flight hours.
## 3816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the sea after taking off from Libreville Airport. An engine fire led to loss of control of the aircraft.  All eighteen members of the Zambian national soccer team killed.
## 3817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed into a hill in poor visibility, low clouds and fog.
## 3818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While landing, undershot the runway and struck a vehicle. Improperly loaded.
## 3819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed under unknown circumstances.
## 3820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane hit Mt. Paramo Frontino at 12,300 ft. while on approach to Maria Cordova Airport. Errors by the crew and the ATC. The aircraft descended into mountainous terrain before actually reaching the Abejorral NDB beacon. The VOR/DME had been sabotaged by terrorists and not in service.
## 3821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane impacted a hill while on visual approach to El Yopal.
## 3822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   On final approach at low speed the left wing dropped and touched the ground during a stall or deliberate low left turn. The plane cartwheeled and broke up.
## 3823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo aboard shifted after takeoff, the plane nosed up, stalled and crashed.
## 3824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The crew reported they were diverting due to thunderstorms. Soon after the aircraft crashed after encountering severe turbulence.
## 3825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane overran the runway while attempting to land in rain and reduced visibility and crashed onto a beach.
## 3826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by Abkhazi forces.
## 3827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter crashed while attempting to land in a confined area of the infield of the Talladega Super Speedway. The pilot of the helicopter, NASCAR race car driver Davey Allison, 30, killed. The pilot's poor in-flight decision to land downwind in a confined area that was surrounded by high obstructions, and his failure to properly compensate for the tailwind condition.
## 3828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed into a lake after it was unable to get airborne while attempting to takeoff. Mechanical failure. Flaps selected but did not extend.
## 3829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft hit Mt. Ungeo at 800 ft. while on approach after two missed landing attempts in high winds and heavy rain. Captain's decision to land in weather that had fallen below minima.
## 3830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft ran low of fuel while en route and crashed during the subsequent attempted forced landing on open ground in the jungle. The aircraft strayed off course after encountering poor weather conditions.
## 3831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft flew into a hillside during a visual approach to Bharatpur. The accident happened in daylight and good weather, however,  the mountains were shrouded in clouds.
## 3832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane crashed 1/4 of a mile short of the runway, while on approach. the captain had decided, for no particular reason, to  land from the west, requiring a sharp turn just before the runway to stay within the US-controlled military base. He then became fixated on sighting the strobe light marking the border, not having    been informed that it was not working. Primary cause was impaired judgment, decision-making, and flying abilities of the captain and flight crew due to the effects of fatigue.
## 3833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A sudden pitch-up during approach led the crew to go-around.  The pitch-up continued until the plane stalled and crashed.  Improperly loaded baggage shifted the center of gravity beyond the acceptable limit.
## 3834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While taking off, the aircraft, overloaded by 3 times the number of people the plane was designed for, never got airborne, overran the runway and crashed into the Pyanj river. The crew was coerced into taking off by armed men who commandeered the plane.
## 3835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft skidded off  the end of the runway while landing. The crew was made aware of windshear at approach end of runway but not of poor water drainage on the runway nor a change in wind direction. A very light touch of the runway surface with the landing gear and lack of compression of the left landing gear leg to the extent understood by the aircraft computer as the actual landing, resulted in delayed deployment of spoilers and thrust reversers. The delay was about 9 seconds. Thus, the braking commenced with delay and in a condition of heavy rain and strong tailwind the aircraft did not stop on the runway. The aircraft was named "Kulbach."
## 3836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into the sea. Shot down with a missile by Abkhazi separatist rebels.
## 3837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft was hit by a missile then crash landed on the runway. Terrorist act  by Abkhazian rebels.
## 3838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was on a senic flight of the Mt. Cook area and impacted Franz Josef Glacier at 4,500 ft. The aircraft became trapped in a narrow valley and as the pilot attempted to turn around within the valley the aircraft stalled while it was in a steep bank.
## 3840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While landing during a rainstorm, the aircraft went off the end of the runway, into a swamp, collapsing the landing gear and breaking the fuselage into three sections.
## 3841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft descended below minima during a localizer approach, without a glideslope, struck the top of trees and crashed into a swamp in heavy rain showers and strong winds.
## 3842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft took off and made a low right turn, struck trees and crashed. The crew most likely lost situational awareness and as a result did not detect the increasing deviation from their intended flight path. Contributing factor was the loss of AC power to some of the flight instruments the reason for which could not be determined.
## 3843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed short of the runway while landing in dense fog, hitting power lines and a wall. The autopilot disconnected during approach and re-engaged with the vertical speed mode at 800ft/min.
## 3844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while in a holding pattern and after running out of fuel. The crew did not follow a standard holding pattern.
## 3845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The airliner crashed and exploded after an aborted landing at Ohrid Airport. The aircraft was diverted to Ohrid because of bad weather. Violation of airport traffic pattern. The flight had earlier carried out a missed approach but the crew had reportedly failed to follow the normal procedure and as a result lost situational awareness. The VOR beacon not working. Misunderstanding because air traffic controller spoke Macedonian while the crew used Russian and English in their transmissions.
## 3846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While on approach, the aircraft collided with trees and terrain 3 miles from the runway threshold in fog and freezing drizzle. Delay by the captain to start the descent which led to a breakdown in crew coordination and the loss of altitude awareness by the flightcrew during an unstabilized approach in night instrument meteorological conditions.
## 3847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Four minutes after taking off the pilot reported he was having engine problems and was returning. The aircraft subsequently crashed onto a frozen lake, 7.7nm from the airfield in darkness.
## 3848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Midair collision. The Twin Otter, which was descending inbound to Dakar, collided with a Gambia Airways aircraft which had just taken off. The Twin Otter crashed into the sea. Failure to maintain assigned altitude. Three killed aboard the Twin Otter. The YS-11 was able to land safely.
## 3849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on approach to Phongsavanh Airport after striking trees in heavy fog.
## 3850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Flew into the side of Mt. Manase at 2,000 ft., 21nm from the airport  during a VOR approach to Naga. The pilot descended too low in heavy rain and zero visibility.
## 3851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft stalled and crashed in fog when the tail struck the runway as the pilot attempted a go-around as it landed at Gyumri.
## 3852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed during takeoff following a fire in the No. 2 engine and subsequent loss of the two remaining engines. Faulty air starter unit. Crew took off ignoring the "starter warning light" thinking it was false.  The crew underestimated the severity of the situation due to shortcomings in the operational documentation.  Breakup of the No.2 engine starter, damaging fuel and oil lines and causing a fire.
## 3853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft stalled 1.2 miles east of runway 28L during an ILS approach. An aerodynamic stall occurred when the flightcrew allowed the airspeed to decay to stall speed following a poorly planned and executed approach characterized by an absence of procedural discipline. Improper pilot response to the stall warning including failure to advance the power levers to maximum and inappropriately raising the flaps. Flightcrew's inexperience in a  "glass cockpit" automated aircraft.
## 3854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on approach the nose pitched up, the aircraft stalled and crashed short of the runway. Icing of the horizontal stabilizer.
## 3855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane struck trees and high terrain after losing three engines during severe icing. Multiple engine failures occurred as a result of flight in extreme icing conditions. Incomplete performance of the emergency drills by the crew, as a result of not referring to the Emergency Checklist, prejudiced the chances of successful engine re-starts. Crew actions for securing and re-starting the failed engines, which were not in accordance with the operator's procedures, limited the power available. The drag from two unfeathered propellers of the failed engines and the weight of the heavily iced airframe resulted in a loss of height and control before the chosen diversion airfield could be reached. Poor Crew Resource Management reduced the potential for emergency planning, decision making and workload sharing. Consequently, the crew had no contingency plan for the avoidance of the forecast severe icing conditions, and also was unaware of the relative position of a closer diversion airfield which could have been chosen by making more effective use of air traffic services.
## 3856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane struck Cerro Carpich at 4,000 ft., 6 minutes after leaving the airport at Tingo Maria.
## 3857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft overran the runway and came to rest at the edge of the east river, after an aborted takeoff. Failure to turn on the pilot/static heat system resulting in erroneous air speed indication. Though heavily damaged, the plane was repaired and put back into service.
## 3858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed during touch-and-go exercises. Application of wrong rudder by trainee pilot  during engine failure exercise. Captain did not guard/block the rudder control and give clear commands as instructor so as to obviate the application of wrong rudder control by the trainee pilot.
## 3859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into sea after a shell exploded in one of the gun barrells.
## 3860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down with a missile by Armenian forces while en route.
## 3861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After discharging passengers the sea plane took off, the nose pitched up and crashed. Failure of the pilot-in-command to assure the bilges were adequately pumped free of water, which resulted in the aft center of gravity limit to be exceeded, and failure of the aircrew to follow the checklist. A factor related to the accident was the water leak.
## 3862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane lost a right engine during takeoff. The plane tried to return to the airport but crashed. The failure of the pilot-in-command to maintain airspeed. Factors to the accident were: cylinder fatigue, dark night and stall encountered.
## 3863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lost an engine while taking off and then lost a second engine and crashed 1,300 ft. beyond the runway.
## 3864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed after a captain allowed his child to manipulate the controls of the plane. The pilot's 11 year old daughter and 16 year old son were taking turns in the pilot's seat. While the boy was flying, he inadvertently disengaged the autopilot linkage to the ailerons and put the airliner in a bank of 90 degrees which caused the nose to drop sharply. The co-pilot pulled back on the yoke to obtain level flight but the plane stalled. With his seat pulled all the way back, the co-pilot in the right hand seat could not properly control the aircraft. After several stalls and rapid pull-ups the plane went into a spiral descent. In the end the co-pilot initiated a 4.8g pull-up and nearly regained a stable flight path but the aircraft struck the ground in an almost level attitude killing all aboard. The aircraft was named Glinka, after Mikhail Glinka, the father of Russian music.
## 3865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed shortly after takeoff. The ingestion of foreign material (snow) in the engine, which resulted in a flameout (loss of engine power). Factors related to the accident were: the adverse weather conditions (snow falling & high density altitude), the lack of snow covers to protect the engine intakes while parked and awaiting for the weather conditions to improve, improper planning/decision by the pilot and the company/operator management, inadequate information in the flight manual, and the lack of suitable terrain for an emergency landing.
## 3866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Shortly after taking off, due to a false warning light, the captain idled one engine (contrary to the checklist) and  assumed they had an engine problem and returned to the airport. While attempting to land, the aircraft rolled to the right, pitched up, stalled and crashed. Inadequate use of the flight controls during an asymmetric go-around resulting in loss of control. Contributing factors were insufficient understanding of the flightcrew of the SAAB 340B engine oil system, lack of awareness of the consequences of an aircraft configuration with one engine in flight idle and poor crew resource management.
## 3867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down by a missile. President of Burundi, Cyprien Ntaryamira and president of Rwanda, Juvenal Habyarimana were killed.
## 3868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Struck Mt. Lozan, at 13,400 ft. which was obscured by clouds 47 minutes after taking off. Controlled flight into terrain.
## 3869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shot down by friendly fire during the Gulf War. Thirteen killed on each helicopter.
## 3870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into Mt. Saran 30 minutes before it was scheduled to land in poor weather condtions.
## 3871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While on ILS approach to Nagoya Airport, at an altitude of 1,000 feet, the first officer inadvertently triggered the TOGA (take-off-go-around) lever. The crew tried to override this situation by turning off the autothrottle and reducing air speed. The aircraft stalled, hit the runway tail first and burst into flames. The plane crashed because of an extreme out of trim configuration brought about by the fact that the tailplane setting had moved automatically and undetected to a maximum nose-up position. The plane climbed at a steep angle until it stalled. The crew could have saved the aircraft even in the final seconds had they reverted to basic flight procedures and switched off the autopilot.
## 3872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft was destroyed when it undershot the runway during a visual approach to Sao Gabriel and stuck trees.
## 3873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed while making an emergency landing following engine trouble.
## 3874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed shortly after taking off after double engine failure.
## 3875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The helicopter crashed into The Mountain of the Stone Slab at an elevation of 800 ft. Pilot error in proceeding towards high ground in heavy fog below a safe altitude.
## 3876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane broke-up in flight 10 minutes after taking off. Auto-pilot induced oscillations caused the aircraft to shake violently. The autopilot yaw-channel was accidentally connected to the bank control and the bank-channel to the yaw controls.
## 3877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft flew into high ground during a go-around. The accident happened in darkness and in poor weather with rain and heavy clouds. The accident was attributed to the pilot's failure to follow the established go-around procedure correctly.
## 3878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft struck Mt. Kalora at 2,300 feet while on a visual approach to Palu. The accident happened in generally good weather but with reduced visibility in clouds and haze at the mountain.
## 3879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed in poor weather conditions 0.8 nm south of the threshold of runway 1R at Dulles International Airport while attempting a ILS landing. Poor airmanship and relative inexperience of the captain in initiating and continuing an unstabilized instrument approach that led to a descent below the authorized altitude without visual contact with the runway environment. Contributing to the cause of the accident was the lack of a GPWS on the airplane.
## 3880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed on approach 3 miles short of the runway into a wooded area with flaps and landing gear still retracted.
## 3881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shot down by Afghan troops.
## 3882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed after demonstrating a simulated engine failure on takeoff. Caused by a number of factors relating to the test and actions of the crew none of which singley would have caused the crash. Unexpected mode transition to altitude acquire mode during a simulated  engine failure resulted in excessive pitch, loss of airspeed, and loss of control. Pitch attitude protection not provided in altitude acquire mode.
## 3883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crash landed on the runway in adverse weather, after a second landing attempt, breaking the landing gear and sliding off the side of the runway.
## 3884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into trees and a private residence after a  missed approach during adverse weather conditions. Microburst induced windshear. Crew's inability to recognize windshear and microburst conditions.  The flightcrew's decision to continue an approach into severe convective activity that was conducive to a microburst. The flightcrew's failure to recognize a windshear situation in a timely manner. The flightcrew's failure to establish and maintain the proper airplane attitude and thrust setting necessary to escape the windshear. The lack of real-time adverse weather and windshear hazard information dissemination from air traffic control.
## 3885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter crashed into the water. All survived but were not equipped with life vests and 3 passengers drowned. Failure of the engine-driven fuel pump, which resulted in the loss of power, and the lack of aircraft flotation equipment. Factors related to the accident were: flight over water adjacent to terrain that afforded no suitable forced landing site, and the lack of a passenger briefing by the operator on the location and operation of life preservers
## 3886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into high ground while on approach to land.
## 3887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ran off the end of the runway and crashed. The crew used the normal and emergency brake systems at the same time which resulted in the aircraft having no brakes at all.
## 3888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed on a wooded hillside shortly after taking off from Colon after a bomb exploded aboard.
## 3889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The helicopter crashed 5 minutes after taking off from Kilo Lima.
## 3890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed and burned while attempting to land with an engine fire in poor visibility and heavy rain.
## 3891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Continued VFR flight into IMC.
## 3892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft overran the runway and caught fire while landing during adverse weather conditions.  The approach was flown with slats/flaps at 15/20 degrees due to suspected windshear. Crew error. There was a struggle and argument between the captain and co-pilot during the last seconds of the landing as to whether they should go-around.
## 3893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The pilot flew into a blind box canyon and crashed while attempting to turn around. Improper in-flight planning /decision by the pilot and his failure to remain clear of mountainous terrain. The box canyon and proximity of mountains were related factors.
## 3894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The non-instrument rated commercial pilot was en route at 2000 feet msl on a night VFR flight when he reported an inadvertent encounter with instrument meteorological conditions. The helicopter (N124NH) subsequently crashed in a wooded area while in a steep descent. Continued VFR flight into IMC.
## 3895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft entered a steep dive from 16,000 ft. and crashed 10 minutes after taking off from Agadir. The pilot was blamed for disconnecting the autopilot and deliberately causing the crash and committing suicide. This was challenged by the Moroccan Pilot's Union.
## 3896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on approach, the aircraft went into a sudden nose dive from 6,000 ft. and crashed into a wooded ravine 6 miles northwest of Pittsburgh International Airport. The accident was caused by a loss of control of the aircraft resulting from the movement of the rudder surface to its blowdown limit or an uncommanded rudder reversal. The rudder surface deflected in a direction opposite to that commanded by the pilots as a result of a jam of the main rudder PCU servo valve secondary slide to the servo valve housing offset from its neutral position and overtravel of the  primary slide. The most likely sequence of events that led up to the accident included the jamming of the PCU servo valve, the application of light left rudder followed by hard right rudder which caused the rudder to reverse in the opposite direction the pilot commanded it to go.  The application of hard right rudder was possibly initiated because the plane flew into the wake vortex of a B-727 which rolled the plane to the left.  Rudder hardover is normally corrected with the stick (ailerons) but because the plane was flying at the crossover speed of 190 knots with flaps 1, using the stick would not correct the situation. When the right rudder was applied the rudder went to its fullblown left position causing the plane to roll further left, stall and go into a dive. Some speculate if the pilot-in-command pushed forward on the yoke to gain some speed rather than pull back, the accident possibly could have been avoided. Blame was not placed on the crew because there was no mention of this type of recovery by the manufacturer nor was there any training for such an occurrence.
## 3897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft few into the side of a hill during heavy rain, high winds and severe turbulence.
## 3898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Just as the plane took off there was a pitch-up and stall resulting in the plane crashing into the water. The down elevator control cable failed at station 367 due to corrosion. The failure resulted from salt water induced corrosion. The aircraft had recently undergone a periodic inspection but the damage had apparently not been discovered.
## 3899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After circling for almost an hour and a half and aborting four landing attempts in adverse weather conditions, the aircraft ran out of fuel and crashed.
## 3900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane lost control shortly after becoming airborne, began losing altitude and ditched 500 meters from the runway. The No. 4 prop pitch control system failed.
## 3901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After three landing attempts at Tura, the crew diverted to Vanavarva because of bad weather. The aircraft ran out of fuel and crashed on a river bank about 40 km from Vanavera.
## 3902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed after experiencing engine failure.
## 3903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane failed to gain altitude, overran the runway and crashed. Crew error.
## 3904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane landed short of the runway bounced, collapsed the landing gear, veered off the runway and crashed into another plane and vehicles.
## 3905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thirty-five minutes after taking off from Isfahan, the aircraft made an uncontrolled descent after losing power in both engines and crashed into a mountain.
## 3906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exploded in mid air while en route, 60 km northeast of Brasilia. A load of munitions being carried on the aircraft exploded.
## 3907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down by rebel forces.
## 3908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane suddenly pitched down and collided with a hill. Icing.
## 3909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pitched up and crashed on takeoff. Overweight and improperly loaded.
## 3910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft was in a holding pattern and was descending to a newly assigned altitude of 8,000 feet when it experienced an uncommanded roll and excursion and crashed during a rapid descent. Icing. The design of the rubber de-icing boot was insufficient to deal with icing on the wings. Sudden and unexpected aileron hinge movement reversal, that occurred after a ridge of ice accreted beyond the deice boots while the airplane was in a holding pattern during which it intermittently encountered supercooled cloud and drizzle/rain drops, the size and water content of which exceeded those described in the icing certificication envelope. The airplane was susceptible to this loss of control and the crew was unable to recover. Contributing factor was the French Directorate General for Civil Aviation's inadequate oversight of the ATR42 and ATR 72, and its failure to take the necessary corrective action to ensure continued airworthiness in icing conditions and failure to provide the FAA with timely airworthiness information developed from previous ATR incidents and accidents in icing conditions.
## 3911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed into the sea off of Cozumel while en route in poor weather condtions.  Fuel exhaustion.
## 3912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane crashed into a mountain a 4,000 ft.
## 3913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The pilot delayed landing to avoid a pedestrian on the runway, overran the runway and crashed into Saposoa River breaking up.
## 3914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While en route, the cargo plane made an uncontrolled descent and crashed. Loss of aircraft control at night by the pilot for unknown reasons.
## 3915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a mountain in poor weather conditions.
## 3916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During its takeoff roll, the DC-9 collided with the Cessna, which was waiting for clearance to take off.  The ground collision took place in the fog. The Cessna pilot mistakenly thought he had clearance to enter the runway. Two aboard the Cessna were killed, none were killed aboard the DC-9.
## 3917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shot down by UNITA rebel forces.
## 3918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 An explosive device detonated at FL 300 under a seat in the passenger cabin blowing a two square foot hole in the cabin floor and killing one passenger in seat 26K. The bomb was placed on the plane by Ramzi Yousef, an Al-Qaeda terrorist, on the flight from Manila to Cebu. The explosion occurred on the second journey of the flight from Cebu to Tokyo. The plane made a safe emergency landing at Okinawa in spite of damage to the flight controls.
## 3919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed 4 miles SW of runway 5L while on an ILS approach. The captain associated the illumination of the left engine ignition light with an engine failure, suspected an engine flame out and decided to execute a missed approach. This eventually led to a stall and the plane crashed 4 miles SW of the runway threshold. The captain's improper assumption that an engine had failed. The captain's subsequent failure to follow approved procedures for engine failure, single-engine approach, go-around, and stall recovery. Contributing to the cause of the accident was the failure of American Eagle management to identify, document, monitor and remedy deficiencies in pilot performance and training.
## 3920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane lifted off the runway, stalled and hit tail first back on the runway breaking apart.
## 3921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane hit trees and crashed short of the runway while attempting to land.
## 3922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The chartered flight struck a cliff at 6,400 ft. during a flight from a copper and gold mine.
## 3923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After a go-around the plane struck a transmission tower and crashed. The crew allowed the aircraft to descend significantly below the normal approach glide path  in conditions of patchyfog.
## 3924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was hijacked by terrorists. Three passengers and four hijackers were killed when the plane was stormed.
## 3925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into a hill near the airport in driving snow after a fourth landing attempt. Controlled flight into terrain.
## 3926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed after the pilot reported a loss of cabin pressure.
## 3927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft disappeared while en route from Bima, Sumbawa Island to Ruteng, Flores Island, and crashed into the Molo Strait. The accident occurred in daylight, in poor weather.
## 3928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While descending from FL 190, ground witnesses saw fire and sparks aboard the plane before it crashed and exploded. One nine-year-old girl survived. Her mother threw her out of the plane and she landed in some soft-water lilies. Possible electrical fire. Possible faulty altimeter.
## 3929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Took off and crashed into power lines in rain and fog. Continued VFR flight into IMC.
## 3930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The  captain decided to aborted the take-off. However, the aircraft was never brought to a stop and it continued  on overrunning the runway and crashing down a steep slope. Failure of the crew to follow the correct procedure to continue with the rejection of the take-off once that action had been initiated. Lack of crew coordination, insufficient emphasis on emergency training, inadequate enforcement of the requirements of the operations manual and a lack of supervision during loading preparation.
## 3931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane flew into a flock of birds that were injested into the left engine.  The pilot soon after reported an engine fire and that he was returning to the airport.  However, control of the plane was lost and the aircraft crashed.
## 3932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While taking off the aircraft veered to the right and clipped some trees 2,000 ft. past the runway. Overloaded and possible fuel contamination.
## 3933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                On a positioning flight the crew aborted its first takeoff. On the second takeoff the tail struck the ground and crashed back to the ground. The loss of directional control by the pilot in command during the takeoff roll, and his decision to continue the takeoff and initiate a rotation below the computed rotation airspeed, resulting in a premature lift-off, further loss of control and collision with the terrain. The flight crew's lack of understanding of the three-engine takeoff procedures, and their decision to modify those procedures. The failure of the company to ensure that the flight crew had adequate experience, training, and rest to conduct the nonroutine flight. Contributing to the accident was the inadequacy of Federal Aviation Administration oversight of Air Transport International and Federal Aviation Administration flight and duty time regulations that permitted a substantially reduced flight crew rest period when conducting a nonrevenue ferry flight under 14 Code of Federal Regulations Part 91.
## 3934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane flew into high ground while on approach in poor weather conditons. Controllled flight into terrain.
## 3935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Shortly after takeoff in poor visibility and heavy snow, with autothrottles engaged, climb thrust was selected. The right engine throttle jammed and remained at takeoff thrust, while the left engine throttle slowly reduced to idle. The increasing thrust asymmetry resulted in an increasing left bank angle, which eventually reached about 170 degrees. The airplane lost altitude and impacted the ground. Lack of crew response to an extreme nose-down attitude. The investigation concluded that the captain was incapacitated. Just before impact the first officer expressed his concern about the situation of either the captain's incapacitation or the aircraft's attitude and attempted a recovery.
## 3936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft experienced a micoburst while attempting to land at Lagos landing hard on the nosegear. Full power was applied for a go-around but the aircraft veered off the runway and collided with another aircraft.
## 3937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While returning from Anuradhapura and descending through 3,000 ft the aircraft was shot down with a SAM missile by Tamil separatists.
## 3938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The SA-227 collided with the Piper PA-31-350 that was taking off while approaching Sioux Lookout. Neither flight crew saw the other aircraft in time to avoid the collision. The Piper crashed into a  wooded area and the Swearing into Lake Seul. Contributing to the occurrence were the inherent limitations of the see-and-avoid concept which preclude the effective separation of aircraft with high closure rates, the fact that neither crew was directly alerted to the presence of the other aircraft by the Flight Service specialist or by onboard electronic equipment and an apparent lack of pilot understanding of how to optimize avoidance maneuvering.
## 3939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into Cerro Sincholagua mountain at 16,000 ft.  during an approach to Quito. Pilot fatigue may have been a factor.
## 3940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed into a mountain during approach in poor weather.
## 3941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           An engine caught fire shortly after takeoff and the aircraft was not able to make an emergency landing and crashed.
## 3942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The crew had serious problems maintaining their heading after both artificial horizons failed shortly after takeoff. The crew had difficulty controlling the aircraft in turbulent conditions and the plane went into a spiral dive and crashed into a field. One or possibly both of the aircraft's artificial horizons malfunctioned and in the absence of a standby horizon, for which there was no airworthiness requirement, there was no single instrument available for assured attitude reference or simple means of determining which flight instruments had failed. The pilot became spatially disoriented and was unable to maintain control.
## 3943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 3944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ditched in the sea just offshore, after losing an engine on approach. The pilot was not rated for that aircraft type and had very little experience.
## 3945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As the plane approached  Runway 25,  the right main landing gear did not extend. While the captain continued the descent the co-pilot carried out the landing gear alternate extension checklist. The plane descended below the minimum safe step-down altitudes for the approach and struck the top of a ridge line. The captain did not ensure the aircraft intercepted and maintained the approach profile during the non-precision instrument approach. The captain's  unwise decision to get the landing gear lowered without discontinuing the instrument approach. The captain's distraction from the primary task of flying the aircraft safely during the first officer's attempt  to correct a landing gear malfunction.
## 3946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Flying VOR the plane ran into poor weather and the pilot decided to return however crashed into trees while attempting to land.
## 3947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed in poor weather condtions.
## 3948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft, carrying members of a local soccer club crashed 10 miles short of it's destination. Adverse weather conditions and overloaded.
## 3949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed while landing in heavy rain. Overshot runway, landing long, and collided with a concrete culvert.
## 3950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After the cargo flight encountered problems en route, the crew tried to return to Santo Domingo but crashed.
## 3951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane lost two engines during its flight to Tabubil and subsequent diversion to Kiunga and crashed short of the runway.
## 3952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed on takeoff onto a beach in shallow water. An in-flight fire that originated near the rear cargo hold is believed to have started in a passenger's luggage from some type of flammable liquid.
## 3953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane lost control during takeoff in heavy rain and veered off the runway crashing into a banana plantation.
## 3954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft, carrying a French medical team, crashed while attempting to land at Antananarivo. Double engine failure.
## 3955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shortly after takeoff the plane rolled to the left and struck the ground. Failure of the No. 1 engine.
## 3956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               During the takeoff cargo shifted in the plane causing the aircraft to lose altitude and crash into power lines.
## 3957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Mt. Chichontepec volcano at 5,900 ft. at night during heavy rain and thunderstorms. Possible damage to the aircraft's DME due to lightning. Confusion between the pilot and ATC due to bad weather and a diversion. The Ground Proximity Warning System had sounded and power was applied but too late.
## 3958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed into Mt. Komawa at 9,200 ft. in poor weather. Found 8/14/95.
## 3959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into Nevado de Huila at an elevation of 14,500 feet.
## 3960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after taking off from Atlanta on a flight to Gulfport, the aircraft experienced propeller separation in the left engine while climbing through FL 180. The aircraft hit trees, crashed into a field and burned while trying to make an emergency landing at West Georgia Regional Airport. The in-flight fatigue fracture and separation of a propeller blade resulting in distortion of the left engine nacelle, causing excessive drag, loss of wing lift, and reduced directional control of the airplane. The fracture was caused by a fatigue crack from multiple corrosion pits that were not discovered by Hamilton Standard because of inadequate and ineffective corporate inspection and repair techniques, training, documentation and communication. Two died of their injuries after the accident.
## 3961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While en route the cargo plane flew into a 4,800 ft. mountain. The pilot's continued VFR flight into instrument meteorological conditions. The weather was a factor.
## 3962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      During a low flying turn manuve, at an air show, the pilot caused the plane to stall and crash into the water. The captain made an error in judgement in modifying one of the display manoeuvres to the extent that he stalled the aircraft at a height and attitude from which recovery was impossible.
## 3963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After climbing to 18,400' msl, the pilot reported a turbocharger problem & reversed course. He said he 'may lose the left engine' & that he was unable to maintain altitude. He diverted to an alternate airport. During a right turn onto final approach, the airplane was observed to cross (overshoot) the extended centerline of the runway. It continued in a right turn back toward the centerline, and then entered a left turn to intercept the inbound course. The turn steepened, and then the airplane entered a spin & crashed 1/2 mile short of the runway. Failure of the pilot to maintain adequate airspeed, while maneuvering on approach, which resulted in an inadvertent stall/spin and uncontrolled collision with terrain. Factors relating to the accident were: the pilot allowed the aircraft weight and balance limitations to be exceeded; the pilot's lack of recurrent training in the make and model of airplane; inadequate maintenance/inspection of the engine exhaust systems; a warped and leaking exhaust system flange on the left engine, which resulted in a loss of power in that engine; and the pilot's improper use of the flaps.
## 3964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed short of the runway in rain, fog and reduced visibility after diverting from another airport and two landing attempts.
## 3965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed after running out of fuel.
## 3966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The pilot reported an instrument problem after taking off from Ratmalana Airport and was returning for an emergency landing when the plane fell from 8,000 feet and crashed into the sea.
## 3967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Following a visual approach, the aircraft landed long and fast and overran the end of the runway into a shanty town while attempting a go-around.
## 3968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed into mountains after a premature descent.
## 3969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft suffered multiple bird strikes in the No. 1 and 2 engines just after taking off when it flew into a flock of 100 or more Canada Geese. The crew initiated a slow climb and began to dump fuel. The aircraft attained a maximum altitude of 250 ft. before it started to descend. The plane impacted a hilly wooded area less than a mile from the runway, broke up, exploded and burned.  Ingestion of Canada geese into the Nos.1 and 2 engines. Lack of adequate procedures to reduce bird hazards. The crew was not warned about observations of birds in the area by the ATC.
## 3970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed through the ice while attempting to land and sank in shallow water. The weather conditions were below minima and the helicopter exceeded its maximum takeoff weight.
## 3971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on an intercept heading for the final approach and in straight-and-level flight, the aircraft crashed into the side of a 1,047 ft, mountain in heavy fog. The pilot progressively lost situational awareness while attempting to navigate in conditions of low visibility or in cloud and was unaware of the rapidly rising terrain in his flight path.
## 3972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thirty minutes into the flight the aircraft was not able to maintain altitude after oil pressure was lost in the No. 1 engine. Crashed into trees.
## 3973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter crashed into mountains at Barskoon Pass while en route.
## 3974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into a 8,000 ft. mountain  in the Sierra Grande range while climbing en route from Comodoro Rivadavia to Cordoba in heavy rain and strong turbulence. The passengers included military personnel and their dependents.
## 3975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft touched down halfway down the runway, veered off the runway where dry grass caught fire under the aircraft and eventually spread destroying the aircraft.
## 3976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into the Indian Ocean while attempting to land at Palay Air Force Base. Most likely shot down by Tamil rebels.
## 3977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed at sea disappearing while en route. Debris found near Labuan Island.  Strong winds and thunderstorms were in the area at the time.
## 3978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land the cargo plane struck light posts and crashed into a field.
## 3979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane went into a dive and crashed 6 km short of the runway into a swamp during a second attempt at landing. Loss of power in the No. 1 engine.
## 3980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed shortly after takeoff while attempting to make an emergency landing after the pilot reported problems with the left engine. Vibration caused nuts to work loose from the engine turbine which resulted in engine failure. No fault was found with the right engine and it is believed that it may have been inadvertently shut down by the crew.
## 3981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into mountainous terrain while en route. Crew error. Fuel-feed selected from wing tanks on one side only, causing an imbalance and banking to the right. The autopilot was able to counteract the imbalance for approximately 35 minutes into the flight.
## 3982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed and burned shortly after takeoff after reaching a height of 500 ft. Combination of overloading and icing.
## 3983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane, chartered by the UNITA rebel movement, stalled and crashed shortly after takeoff from Jamba. Overloaded by 40 passengers. One report stated baggage shifted to the rear of the plane.
## 3984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While on a flight from Miami, FL to Cali, Columbia the aircraft crashed into Mt. El Deluvio 38 miles north of Cali while attempting to land. On approach, the crew was requested to report over Tulua VOR which they already passed. This confused them and they decided to go direct to Rozo beacon. Entering the abbreviation "R", incorrectly steered the plane towards Bogota. More than a minute into the  turn the crew steered manually toward Cali, but this now took them into the path of a mountain. Crew error. Lack of situational awareness, failure to adequately plan and execute the approach, failure to realize that the FMS had turned the aircraft toward mountains. Crew also neglected to retract the speed brakes after the Ground Proximity Warning System alert.  Lack of adequate radar. Different  Flight Management System naming convention from that published in navigational charts.
## 3985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diverted from Madang to Bagasin, overran the runway and crashed.
## 3986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After losing an engine the plane began to lose altitude and ditched in the Atlantic Ocean 30 km southwest of Bridgetown.
## 3987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft failed to gain altitude after taking off from N'Dolo Airport and ran off the runway and crashed into a market square. The plane was overloaded by 595 lbs. The aircraft certification was revoked and crew did not have authorization to fly. The number killed on the ground varies widely from different sources. The number of fatalities, 225, is derived from the publication Weekly Mail and Guardian in an article covering the court trial of the pilots, charging them with the deaths of 225 people. Some sources quote as many as 350 died.
## 3988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed 4.5 miles short of the runway while making an approach to Kano. Claimed to be shot down by the United Front for Nigeria's Liberation.
## 3989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shot down by Tamil rebels and crashed into the Indian Ocean.
## 3990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The No. 1 engine failed or power was reduced after takeoff followed by loss of the second engine. With the gear down and flaps extended,  the crew lost control of the aircraft and crashed 1.2 miles past the runway into a soccer field killing 24 on the ground.
## 3991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane was unable to gain altitude while attempting to takeoff, overran the runway and hit power lines and a conrete barrier. Inadequate pre-flight planning and preparation by the PIC, his failure to ensure the aircraft was properly loaded within limitations, his failure to use proper flaps for takeoff, his failure to use ADI (Antidetonation Injection) assisted takeoff, and his resultant failure to attain sufficient airspeed to climb after takeoff. Factors relating to the accident were: the high density altitude, and the PIC's lack of experience in the make and model of airplane.
## 3992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane crashed into the Atlantic Ocean, 21 km north of Puerto Plata, shortly after taking off. Incorrect airspeed indications resulting from a clogged pitot tube. The readings were greater than the actual airspeed resulting in the crew reducing  power and leading to a stall. Failure of the crew to recognize the activation of the control column shaker as a warning of an imminent stall. Failure of the crew to carry out the procedures to recover the aircraft from the stall and restore lift.
## 3993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The helicopter was shot down.
## 3994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shortly after lifting off of the ground, the aircraft rolled to the right and struck the ground ending up inverted in a ditch.
## 3995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed SW of Khartoum while attempting an emergency landing after reporting an in-flight out of control fire.
## 3996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed in rain and poor visibility while on approach.
## 3997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into a hillside several miles from the airport while attempting to land. The pilot reported flying at 9,500 ft. when the aircraft was actually flying 8,640 ft. Controlled flight into terrain.
## 3998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed and exploded north of it's destination in heavy fog after flying into a mountain ridge.
## 3999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the sea while approaching an oil rig to land in strong winds.
## 4000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft strayed off course and hit St. John Hill at an altitude of 2,200 feet, 16km SE of Dubrovnik while attempting to land in poor weather conditions. U.S. Secretary of Commerce, Ron Brown, 55, killed. Crew error.  Failure of the crew to comply with directives that required a review of all instrument approach procedures, not approved by the Defense Dept. Preflight planning errors, combined with errors made during the flight by the crew. Rumors persist that the accident was a result of sabotage.
## 4001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane, carrying 57 tones of detergent, crashed into a mountain at an altitude of 2,900 feet. The airplane descended through clouds to an altitude of 900m and flew into the side of a mountain, 300m below the summit.
## 4002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After holding for 30 minutes the aircraft undershot the runway during a visual approach and crashed into the sea in heavy fog.
## 4003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Seven- year-old trainee pilot, Jessica Dubroff, accompanied by her father (a passenger) and the pilot-in-command, were engaged in a trans-continental record attempt involving 6,660 miles of flying in 8 consecutive days. The plane departed towards a nearby thunderstorm in deteriorating weather. Witnesses describe the plane's climb rate and speed as slow and they observed the aircraft enter a roll consistent with a stall. The plane's gross weight was 84 pounds over the maximum limit. Pilot's improper decision to take off into deteriorating weather conditions when the airplane was overweight resulting in stall caused by failure to maintain airspeed.
## 4004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After a number of failed landing attempts during a sandstorm, the aircraft made a forced landing in a local suburb crashing into a building.
## 4005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    On a positioning flight the aircraft flew into a mountain.
## 4006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into high ground while attempting to land at a mine airstrip in turbulence and stong gusty winds.
## 4007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed 18 miles NW of Miami airport  in a remote part of the Everglades. Shortly after taking off, after the crew reported fire and smoke in the cabin and cockpit. The in-flight fire was caused by activation of one or more oxygen generators in the forward cargo hold. The generators were outdated, improperly labeled, lacked safety caps and were prohibited from being transported on a passenger flight. The loss of control resulted either from flight control failure or incapacitation of the crew due to extreme heat and smoke.  Candi Kubeck was the first American female commercial airline captain to be killed in a crash. San Diego Chargers running back Rodney Culver, 26, and his wife were among the passengers killed as was singer, songwriter Walter Hyatt, 46.
## 4008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into a ridge line shrouded in clouds while en route.
## 4009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed during a second attempt at landing
## 4010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed during takeoff.
## 4011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The training flight crashed into a field during touch-and-go landings.
## 4012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The two helicopters collided in mid-air while flying in formation. The pilots may have possibly been  stressed fatigued and inadequately prepared and were flying too low to see the target.
## 4013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft overran the runway after an aborted takeoff. The fuel line in the No.3 engine was sheared and caught fire after the fanblade of the first stage HP turbine separated. During the slide the No. 1 engine and landing gear were lost ane the plane came to rest in a ditch. Three passengers were trapped in the wreckage and overcome by toxic fumes after a fire started. Pilot error. Improper procedures used by the captain after engine failure.
## 4014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed into a mountain after deviating off course during a landing attempt.
## 4015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Fan disk separation in the left engine. Pieces of the engine penetrated the passenger cabin killing two passengers. The fan hub for the left engine was found to be fractured and went undetected at time of manufacture. The crack should have been detectable during inspection but was missed.
## 4016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Just after beginning its final approach, the aircraft crashed into the side of a  mountain at about 9,200 feet in rain and poor visibility.
## 4017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft flew into a Bandi Hill while descending inbound to Kulu in heavy fog.
## 4018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed and burned while attempting to land at Eindhoven Air Base. The aircraft collided with a large flock of lapwings and starlings, causing failure of the No. 1, 2, and 3 engines after which the port wing hit the ground and the plane exploded in flames. Aboard were members of a  Dutch Army Band returning from Italy.
## 4019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed 150 ft. short of the runway.
## 4020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While on a flight from New York to Paris, France, the aircraft exploded at  FL 130, broke up and crashed into the Atlantic Ocean off Long Island, N.Y. The NTSB determined that the probable cause of the accident was an explosion of the center wing fuel tank resulting from ignition of the flammable fuel/air mixture in the tank. The source of ignition energy for the explosion could not be determined with certainty but, of the sources evaluated by the investigation, the most likely was a short circuit outside of the center wing tank that allowed excessive voltage to enter it through electrical wiring associated with the fuel quantity indication system.  To say that numerous government agencies acted strangely and suspiciously would be an understatement.  A great deal of evidence was either suppressed or ignored. Rumors persist that the plane was brought down by a missile, either by the Navy conducting exercises in the area or by terrorists.
## 4021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Soon after takeoff, the No. 3 engine caught fire in the cargo plane. The pilot tried to return to the airport for an emergency landing but the right wing seperated and the plane crashed. Fatigue failure of the master connecting rod, which originated from corrosion pitting, subsequently compromised the engine crankcase, and resulted in a fire; and failure of the flight crew to follow emergency procedures by pulling the fire handle before feathering the propeller, which diminished the effectiveness of the fire suppression system.
## 4022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A straight-in visual approach to Mergui was being attempted when the aircraft entered a squall line of heavy rain. The aircraft then started to lose height quickly, undershot the runway by 800ft. And crashed into a ravine.
## 4023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After touching down, the cargo plane bounced twice and continued to the end of the runway, became airborne but crashed terrain. For unknown reasons, a decision was made to overshoot even though insufficient runway remained for acceleration, take-off, and climb. Likely contributing directly to the decision to overshoot was the difficulty in controlling the aircraft on touchdown.
## 4024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After taking off the  No. 2 engine of the cargo plane caught on fire. The pilot tried to land the plane in a river bed. The number 2 engine separated from the aircraft as a result of an intense fire in the wing. The loss of the engine rendered the aircraft uncontrollable, and the pilots were forced to land in the river.
## 4025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane struck a mountain. Failure of the crew to monitor the aircraft's position and flight path relative to high terrain surrounding Jackson Hole Airport.
## 4026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route, flew into the side of a mountain. The pilot probably made a navigational error because of restricted visibility in fog and light drizzle and entered the wrong valley, and he delayed his decision to reverse course until he was unable to avoid the weather.
## 4027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After taking off from Belgrade, the plane experienced electrical problems and returned to the airport. After dumping fuel and circling for 3 hours, the plane crashed into a corn field 800m short of the runway.
## 4028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed 7 nm short of the runway into Operafjellet Mountain at an altitude of 2,900 ft. while attempting to land in poor weather. The crew did not use the usual approach which includes a turn over the ocean, but rather took a route that led through a narrow valley. Inadequate planning, unsatisfactory crew resource management and monitoring, not discontinuing the approach when procedural uncertainties existed and limited knowledge of the operating language and the actual airspace. The passengers were mainly Russian coal miners headed for a Russian mine on one of the Norwegian islands.
## 4029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shortly after takeoff from Texel, a connecting rod bearing in the No.1 engine failed. The prop was feathered.  Soon after, a part of the feathering mechanism failed and the prop started windmilling causing drag. The aircraft rapidly descended and crashed onto a mud-flat. The accident was initiated by a combined failure of the left engine and the left feathering system. The accident became inevitable when the flight crew allowed the speed to decrease below stall speed and lost control of the aircraft at an altitude from which recovery was not possible.
## 4030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into the ocean 28 minutes after taking off from Lima, Peru. Pieces of adhesive tape were found covering the static ports, placed there by personnel during aircraft maintenance and cleaning, causing the malfunction of the airspeed indicators and altimeters. The crew was not able to correctly determine their altitude and airspeed and with no ground reference over water and at night, crashed into the sea. An employee did not remove the adhesive tape from the static ports, nor was it detected by any number of people, including the captain, during the preflight inspection. A maintenance worker was tried and convicted of negligent homicide for failing to remove the adhesive tape and received 2 years in jail.
## 4031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on take off.
## 4032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While attempting to land the landing lights malfunctioned causing the cargo plane to veer off the runway and crash into a house.
## 4033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane struck trees and a house while making a second attempt to land. Poor communication and lack of training for the crew. Poor planning approach, the decision to leave late in the second round.  Structural deficiencies in engine control.
## 4034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane, carrying flowers and frozen fish crashed into the Dolorosa district, bursting into flames shortly after taking off. One engine caught fire during the climb-out.
## 4035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In a heavy snowstorm, the aircraft landed short and right of the runway striking three Mil Mi-8 helicopters and bursting into flames.
## 4036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed shortly after takeoff into a residential area striking a building. Uncommanded deployment of the thrust reverser on the right engine caused the plane to roll right and lose control.
## 4037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed into a mountain 1 hour after take off, at an altitude of 900 ft., in strong winds, while on approach to Santa Elena.
## 4038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed mid-way along its scheduled 50 minute route. The aircraft went into a roll and lost control after taking evasive action to avoid another aircraft. The plane was flying almost at the speed of sound when it crashed and disintegrated. ATC error. The controller thought he had cleared to aircraft to FL100 but the aircraft was still flying at FL240.
## 4039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The pilot reported that an engine failed just as he started to descend for a landing. He later informed ATC he could not feather the propeller. The  aircraft subsequently crashed and burned in a field.  The accident was due to inappropriate management of the flight following jamming of the propeller in an intermediate position after the right engine crankshaft ruptured. The inappropriate management was due to the pilot’s relative lack of experience on this aircraft type, his false notions about the aircraft’s performance and about the existence of a flight level to maintain level flight with an unfeathered propeller and an heavy aircraft and a series of misjudged strategies to attempt to continue the flight then to land at Limoges when the aircraft’s altitude no longer made this possible.
## 4040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Midair collision 17 km W of New Delhi.  The Saudi 747 had just taken off from New Delhi airport ascending to 14,000 feet while the Il-76 was descending. Three hundred twelve aboard the B-747 and thirty-seven aboard the Il-76 were killed. The Il-76 descended below its assigned altitude. The death toll was reduced from 351 to 349 after Kazakstan Airlines reported 37 aboard rather than 39. Neither aircraft was equipped with an Airborne Collision Avoidance System. The 747 had taken off from Delhi and had been cleared to climb to FL140.  Meanwhile, the IL76, which was inbound to Delhi on the same airway, had been cleared to descend to FL150. However, due to a misunderstanding, the pilot and most of the cockpit crew of the IL76 believed the flight had been cleared to continue down to FL140. The Indian accident report attributed the failure of most of the IL76 crew to correctly understand the situation due to their lack of a working knowledge of English. Also contributing to the crew's decision to continue the descent below their clearance limit were poor cockpit resource management, a lack of leadership by the captain, a lack of co-ordination between the crew and a general casual attitude to the conduct of the flight.
## 4041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lost altitude and crashed while en route in poor weather. Stall of the left wing due to icing.
## 4042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While landing on Runway 13 at Baldwin Field, the United Express collided with the King Air which was taking off on Runway 4. The collision took place where the two runways intersect. Both planes caught fire and rescuers were unable to open the door to the Beech 1900-C because of impact damage. All twelve aboard the United Express and the two pilots aboard the King Air were killed. King Air pilots' failure to use proper communications and "see-and-avoid" procedures at an uncontrolled airport. Involvement of a third aircraft that transmitted unnecessary and inappropriate messages.
## 4043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed 60 miles west of Cape Mendocino in the Pacific Ocean. The crew reported losing an engine, followed by complete electrical failure.
## 4044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft was hijacked shortly after taking off from Ethiopia by three drunken escaped prisoners. They demanded to be flown to Australia, but wouldn't let the pilot stop to refuel. The plane eventually ran out of fuel and ditched 500 feet offshore of Le Galawa Beach on the island of Grand Comoros. When it was aparent the plane was out of fuel, the hijackers fought the pilot for control of the aircraft. In the last seconds aloft, the left wing tip struck the water and the plane crashed into the sea flipping at least once before breaking into several  parts. The water was shallow but many passengers had inflated their safety vests which prevented them from swimming out from under the cabin and they drowned.
## 4045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed shortly after takeoff. Overloaded.
## 4046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into a mountain 5 minutes after takeoff. The plane stalled while trying to clear a mountain.  Overloaded.
## 4047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After experiencing a No.2 engine fire and while attempting to return to the airport, the aircraft's wing struck a building short of the runway.
## 4048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after takeoff  the crew reported they had the right engine on fire. They attempted to return for an emergency landing but the cargo plane crashed right wing low, cartwheeled and burst into flames short of the runway. A fire within the right engine compartment of undetermined cause and the pilot-in-command's failure to maintain airspeed above the aircraft's minimum control speed. A factor contributing to the accident was the dark night environmental conditions
## 4049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed 8km from the airfield after taking off in strong winds and heavy snow.
## 4050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane crashed short of the runway while attempting to land.
## 4051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The cargo plane struck mountainous terrain after experiencing a stall during tests. The inappropriate control inputs applied by the flying pilot during a stall recovery attempt, the failure of the non-flying pilot-in-command to recognize, address and correct these inappropriate control inputs, and the failure of Airborne Express to establish a formal, functional evaluation flight program that included adequate program guidelines, requirements and pilot training for performance of these flights. Contributing to the cause of the accident were the inoperative stick shaker stall warning system and Airborne Express DC-8 flight training simulator's inadequate fidelity in reproducing the airplane's stall characteristics.
## 4052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane was on a positioning flight when it struck rising terrain while making an approach to land. The captain's failure to maintain situational awareness, which resulted in the airplane being outside the confines of the instrument approach; and the crew's misinterpretation of a step-down fix passage, which resulted in an early descent into rising terrain. Factors included the captain's misreading of the instrument approach procedure, the crew's rushed and incomplete instrument approach briefing, their failure to use additional, available navigational aids, and their failure to account for the winds at altitude.
## 4053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed while en route after the pilot reported an engine fire. Undetected cracks in the engine not detected during routine maintenance.
## 4054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed onto a mountin in high winds and rain after being diverted from another airport.
## 4055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While on approach and attempting to land on runway 3R at Detroit Metropolitan Wayne County Airport, in a snowstorm, the aircraft went into a steep dive and crashed into a field. The accident was caused by the FAA's failure to establish adequate aircraft certification standards for flight in icing conditions.  Contributing to the accident were the flightcrew's decision to operate in icing conditions near the lower margin of the operating airspeed envelope (with flaps retracted), and Comair's failure to establish and adequately disseminate unambiguous minimum airspeed values for flap configurations and for flight in icing conditions. In addition, Embraer's manual for the aircraft specified correctly that the deicing boots should be activated as soon as icing occured.  But the pilots were trained by Comair's manual, which specified waiting until ice was about 1/2 inch thick.
## 4056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While en rote the plane experienced engine trouble. The crew decided to divert to Sparrevohn. While attempting to land the plane encountered strong turbulence from surrounding mountains. Although full power was applied to the good engine the plane crashed into terrain. Loss of the right engine propeller control oil, which led to an overspeed of the right engine and propeller, and necessitated a shut-down of the right engine; and failure of the pilot to maintain adequate altitude/distance from terrain during visual approach for a precautionary landing at an alternate airport. Factors relating to the accident were: fluctuation of the left engine power, premature lowering of the airplane flaps, and an encounter with adverse weather conditions (including high winds, severe turbulence, and white-out conditions) during the approach.
## 4057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After being in a holding pattern for over an hour the plane hit trees and a  power line and crashed 700m short of the runway. Failure to maintain the aircraft above the Minimum Descent Altitude while the aircraft was not positioned in the final landing phase.
## 4058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed shortly after taking off fromTambacoumba after losing power in the left engine. Fuel contamination.
## 4059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane took off from Luanda bound for Cafunfo in northeastern Angola when it disappeared en route.  Witnesses later stated the plane appeared to be in trouble and flying at a low altitude before it crashed.
## 4060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The two military helicopters crashed into each other while taking off in darkness killing all aboard.
## 4061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft touched down hard. The right main landing gear collapsed causing the plane to veer to the right and end up in a wooded area. The first officer was killed.
## 4062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flew into a mountain while on approach.
## 4063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed short of the runway in dense fog while attempting to land a second time at Lucapa.
## 4064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane was carrying military personnel and their families and crashed 24 miles NE of Mashhad in the Binalud Heights. The pilot reported engine failure prior the crash.
## 4065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft lost altitude from FL 197 and crashed into a forest while en route from Stavropol, Russia to Trabzon, Turkey. Reports indicated that an in-flight  fire and an explosion led to the separation of the tail section prior to the crash. Superficial mechanical inspection of the aircraft which was carried out without the use of monitoring instruments and subsequent unjustified decision to extend the time between overhauls.  Inadequate monitoring to determine the state of structural elements and detect the presence of corrosion in hard-to-reach areas under the floor of the fuselage. Failure to carry out prescribed anti-corrosion measures on the aircraft structure during overhaul.
## 4066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While landing the aircraft overran the runway, hit a concrete drainage ditch, when through a fence and came to rest on a highway where it caught fire.
## 4067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On a positioning flight, while taking off the plane suffered engine failure, overran the runway and crashed into a vacant building.
## 4068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After making two approaches the pilot decided to head back to the departure airport. He flew north at an altitude beneath minimum radar coverage. The plane impacted the frozen Arctic Ocean in a right bank and at a 60 degree nose-down attitude. The pilot's intentional VFR flight into instrument meteorological conditions and his failure to maintain altitude and clearance from terrain. A contributing factor was the weather conditions.
## 4069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane became airborne but soon lost altitude and crashed to the ground and burst into flames.
## 4070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A stray bullet from training soldiers struck the landing plane, hitting an oxygen cylinder. A fire broke out and control of the plane was lost and it crashed.
## 4071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed after an engine fire.
## 4072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    During the final stage of a visual approach, one of the aircraft's engines failed. The crew failed to correctly identify the problem and because of the flight regime, the propeller did not autofeather. The approach was continued, however, as the aircraft descended through about 2,000ft., power was applied at the start of a go-around. Control was lost and the aircraft crashed.
## 4073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The transport crashed into a mountain.
## 4074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft touched down hard, causing the nosegear to collapse. The pilot chose to to go-around. The aircraft climbed away but shortly after, the pilot declared an emergency and attempted to land on the runway in the opposite direction. The aircraft crashed on the runway, broke up and caught fire.The accident happened in poor weather with heavy rain associated with local thunderstorm activity.
## 4075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed shortly after taking off. Fire in the cabin.
## 4076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed while attemping to land. Windshear. Lack of windshear equipment at the airport.
## 4077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shortly after taking off the cargo plane crashed into the ocean. The pilot lost control when he encountered severe weather conditions soon after taking off.
## 4078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shot down by rebels.
## 4079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     An explosion caused explosive decompression and a six-foot hole in the side of the fuselage. One passenger was sucked out and killed.  A small bomb containing only 7 ounces of explosives was placed under a passenger seat.  It is reported that the police believed the bomb was planted as part of a failed suicide attempt by one of the passengers.
## 4080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed into the ocean 4 miles off the coast shortly after takeoff. Possible failure of the left engine during takeoff.
## 4081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft developed engine trouble (left engine caught on fire) shortly after taking off.  While attempting to make an emergency landing at Sulaiman AFB, the plane clipped roof tops of a housing project and crashed into a nearby field.
## 4082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Crashed into Mt. Yasirua in poor weather. Navigational error. No published instrument flying procedures. No GPS used for primary navigation.
## 4083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Overshot the runway in heavy rain and came to rest in brush.
## 4084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft touched down at excessive speed, far down the runway threshold, bounced twice and overran the runway.
## 4085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into Nimitz Hill, 3 miles short of Runway 06R, while making a non-precision approach in heavy rain to A.B. Won Guam International Airport. The runway glide slope system was inoperative. In addition, the Minimum Safe Altitude Warning system (MSAW) was also not working due to a software problem. The captain’s failure to adequately brief and execute the non-precision approach and the first officer's and flight engineer's failure to effectively monitor and cross-check the captain’s execution of the approach. Contributing to these failures were the captain's fatigue and Korean Air's  inadequate flight crew training. Contributing to the accident was the Federal Aviation Administration's (FAA) intentional inhibition of the MSAW at Guam and the agency's failure to adequately manage the system.
## 4086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Immediately after taking off the plane went into a nose-high attitude, stalled and crashed to the ground. The probable cause of the accident, which resulted from the airplane being misloaded to produce a more aft center of gravity and a correspondingly incorrect stabilizer trim setting that precipitated an extreme pitch-up at rotation, was (1) the failure of Fine Air to exercise operational control over the cargo loading process and  (2) the failure of Aeromar to load the airplane as specified by Fine Air. Contributing to the accident was the failure of the FAA to adequately monitor Fine Airs operational control responsibilities for cargo loading and the failure of the FAA to ensure that known cargo-related deficiencies were corrected at Fine Air.
## 4087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft flew into a mountain and exploded in flames after a missed approach and while executing a go-around in rain and high winds. The pilot turned right instead of left when initiating the go-around.
## 4088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Collided with a Cessna 206 (OB-1450) and crashed 3 miles from the airfield. Six killed on the Pilatus and 6 on the Cessna
## 4089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane was on a flight from Ho Chi Minh City to Phnom Penh when it crashed while making an approach to Pochentong International Airport in heavy rain. The plane clipped palm trees and exploded in flames after crashing into a rice paddy, one-half mile from the runway. The only survivor was a one-year-old boy. Pilot error. The captain failed to heed the warnings of the flight engineer and first officer that the plane was flying too low and failed to abort the landing.
## 4090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Struck tree tops and crashed into Lambir Hill while on approach to land at Miri.
## 4091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was destroyed when it flew into a hillside during an approach to Uvira.
## 4092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Midair collision at 39,000 ft. The Tupolev 154 aircraft was flying at the wrong cruise altitude which caused the midair collision. Twenty-four killed aboard the Tupolev and 9 aboard the C-141. Contributing factors included weak flight-following procedures of the Luanda ATC and  poor regional ground communications.
## 4093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into mountainous terrain 15 minutes before it was due to land at Medan on a flight from Jakarta. The aircraft crashed 20 miles from the airport. Combination of ATC errors in directing the plane in the wrong direction into mountainous terrain and the crew setting and using their instruments incorrectly. Contributing to the accident was impared visibility due to smoke from forest fires in the area.
## 4094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Collided with terrain at the 9,900 foot level on the Uncompahgre Plateau. The pilot's failure to maintain sufficient airspeed for undetermined reasons while maneuvering the airplane near maximum gross weight and aft center of gravity in or near instrument meteorological conditions, which resulted in a loss of control and entry into a stall/spin.
## 4095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed  near Nuevo Berlin, a town on the banks of the Uruguay River, after changing its route to avoid heavy rain and hail. A crater 25 feet deep crater was created where the plane crashed into the earth.  Icing of the pitot tubes. The pitot tubes froze after the aircraft passed through 49,000 ft. giving false speed readings leading to loss of control of the aircraft.
## 4096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed in poor weather after a go-around.
## 4097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft had just finished performing 3 touch-and-go landings at Monterey Peninsula Airport. Shortly after taking off a fourth time, witnesses heard the engine make popping noises, bank to the right, pitch up, and go into a steep dive from about a  500 foot altitude and crash into the sea about 150 yards offshore. Singer John Denver, 53, who was piloting the plane, was killed. Denver, an experienced pilot with over 2,800 flying hours, had only a little over an hour in the experimental plane. The accident was caused by the inadvertent application of right rudder by the pilot as he attempted to manipulate the fuel selector handle. The unmarked fuel selector handle in this aircraft was located in a hard to reach area behind the pilot's left shoulder, instead of between his legs. This required removing his harness and reaching behind. While turning around, he inadvertently pressed down on the plane's right rudder pedal causing the aircraft to roll and go into a dive.  Contributing factors were, Denver took off with too little fuel in one tank which led to the necessity of switching to his backup tank. Also it was difficult to determine how much fuel was in the tanks due to the unmarked fuel quantity sight gauge.
## 4098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed during a landing attempt.
## 4099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A few minutes after takeoff a distress call was received from the aircraft after which it ditched into the sea 200 yards offshore. The pilot's disregard for lateral fuel loading limits, his improper removal of frost prior to takeoff, and the resulting inadvertent stall/spin. Factors involved in this accident were the improper asymmetrical fuel loading which reduced lateral aircraft control, the self-induced pressure to takeoff on time by the pilot, and inadequate surveillance of the company operations by company management.
## 4100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The military aircraft, bound for Vladivostok, crashed into a residential neighborhood twenty seconds after taking off. All four engines failed after the computer system began shutting them down shortly after takeoff.  Design flaw which led to uncoordinated operation of the high-pressure compressors.
## 4101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed during the second approach right of the approach path. While the aircraft was being manoeuvred at a very low level in marginal weather, it descended after an abrupt turn and flew, in controlled flight, into the terrain. Crew procedural error. The aircraft was 1,000 pounds heavier than the maximum allowable weight.  The GPS installed in aircraft was not approved as a primary navigational aid.
## 4102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 During take off, shortly after the landing gear was retracted, one of the aircraft's engines lost power and the propeller autofeathered. The aircraft rolled to the right, struck trees and crashed inverted.
## 4103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft crashed and burned while making an attempt to land. A number of errors by the crew resulted in the acccident. Not maintaining the height indicated during the last contact with the ATC. Not following instructions from the ATC. Crew fatigue and turbulence in the area contributed to the accident.
## 4104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into Mt. Olympus while approaching Salonica, during a second attempt to land. The plane was holding at 3,300 feet due to heavy traffic. Tower tapes indicate that after the missed approach, the crew reported they were heading north when they actually were heading west. An investigation revealed the crew had poor training, flew too low, didn't know how to use the radar equipment and failed to declare an emergency after they missed the landing strip. A second crash occurred when a C-130 transport plane on its way to pick up troops to assist in the search, crashed into Pastra Mountain.
## 4105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane disappeared off radar screens and shortly after, crashed into the Musi River. The plane, almost brand-new, cruising in good weather and with an experienced crew, suddenly left normal flight from 35,000 feet and crashed at a high rate of speed into the Sumatran jungle. The right wing and parts of the rudder separated from the aircraft before it crashed. The Indonesian National Transportation Committee found that there was insufficient evidence to find a cause for the accident. The U.S. National Transportation Safety Board strongly disagreed and stated the jet's cockpit voice recorder was intentionally disconnected and its flight controls placed in a nose-down position most likely by the captain. While the U.S. NTSB stopped short of using the term suicide, its dissenting report made it clear it believed the crash was the result of actions by the captain. In July 2004 a California jury found the manufacturer of the PCU valve that controls rudder responsible for the accident after the valve was located and showed defects which may have led to a rudder hardover.
## 4106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed in the Pastra mountains while searching for the wreckage of an Aerosweet Yak-42 that was missing.
## 4107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Went missing while en route. May have been shot down.
## 4108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Two hours into the flight, at FL 310, the plane received reports of severe clear air turbulence in the area and the seat belt sign was turned on. Moments later, the aircraft suddenly dropped around one hundred feet seriously injuring many passengers and causing damage to the aircraft. The plane landed safely back at Tokyo, but  one passenger died of her injuries.
## 4109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into dense jungle, 4 miles short of its destination in heavy fog.
## 4110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fog and low visibility forced the plane to divert to divert to Brno. After a missed approach the aircraft crashed 3.5 km short of the runway threshold and was destroyed.
## 4111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft  was on a flight from Kandahar to Herat but was forced to return to Kandahar because of poor weather when it crashed into a mountain 70 miles north of Quetta in Khojak Pass. The last message from the pilot was "we are running low on fuel." Crashed due to fuel starvation.
## 4112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed on takeoff after the No. 2 engine failed and caused the aircraft to swerve off the runway and crash into an embankment and burst into flames.
## 4113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Flight 387 originated in Manila on a flight to Tacloban and Cagayan de Oro. The aircraft crashed while on approach to Cagay de Oro into a remote mountainous area.  Wreckage was found near the town of Pagalungan, NE of Cagay de Oro. The last radio message from the pilot was "leveling off at 5,000 feet sir."  The cockpit voice recorder revealed that the GPWS warned of terrain a dozen times just before impact. The crew apparently got lost in a cloud, never realizing they were headed into a mountain. Pilot error, inadequate training standards and deficient equipment.
## 4114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft struck and severed the cable to a gondola causing it to fall 300 ft. to the ground and killing 20 on board. The plane landed safely. Negligence by the crew in flying above the speed limit and well below the prescribed minimum altitude in the area.
## 4115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shortly after taking off the plane lost power in the No. 3 engine followed by the No. 4 engine. The plane rolled to the right, stalled, entered an spin and crashed.
## 4116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed in the Los Hoyos mountains while on a military training flight.
## 4117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Overshot the runway in heavy fog and crashed into the Sobat River.
## 4118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft was attempting to land at Taipei's international airport in rain and fog when the crew requested a go-around. The plane crashed into a residential neighborhood, ripping the roofs off several structures, skidding into a rice paddy and bursting in flames. DFDR data showed complete autopilot disengagement just after landing clearance. This was  followed by an attempted manually flown go-around with falling airspeed and a pitch-up of 40 degrees followed by a gain of 1,000 feet in altitude, total stall and a dive resulting in impact with the ground. Pilot error.
## 4119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane struck the approach lights as it took off from Runway 3, then struck a hill and disintegrated.
## 4120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed in the sea, 11 km off Hsinchu, shortly after taking off from Hsinchu. Instrument failure and loss of power in the aircraft's right engine in turbulence.
## 4121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane was descending for a landing at Kabul on visual when it struck 3,000 ft. Sharhi Baranta Mountain, 300 feet below the summit in dense fog and rain.
## 4122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft overran the 6,888 ft. runway, went through a concrete perimeter fence, crossed a small river and hit a karaoke house before stopping near a market. The plane was (legally) released from Manila with the No. 1 reverser deactivated. The plane landed mid-runway and the crew incorrectly used the No. 2 reverser to try and stop the plane causing it to veer to the right. The No. 2 engine was then to set to forward thrust steering the plane back on the runway.  A go-around was attempted but it was too late and the aircraft overran the runway.
## 4123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A Peruvian air force plane carrying villagers stranded by flooding crashed while attempting to land at Piura Airport. The pilot tried to glide the plane after losing an engine but crashed near a shantytown 2 kilometers from the airport. The plane began losing altitude after an engine failed and crashed into a drainage canal and broke in two. Engine failure.
## 4124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shortly after taking off the cargo plane experienced a fire in the No. 2 engine. The plane crashed while attempting to make an emergency landing on a road.
## 4125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft, leased from TAME, crashed atop fog covered Cerro el Cable mountain and exploded into flames, three minutes after taking off from Bogota's El Dorado airport. The aircraft was leased to Air France by TAME airlines. The crew did not turn in the proper direction after reaching the Romeo non-directional beacon even though the flight crew acknowledged an air traffic controller's warning that they were off course.
## 4126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft was chartered by the Los Angeles-based Occidental Petroleum Corporation. The plane crashed in light rain, while on final approach, in a swampy area, three miles short of Andoas. There were reports of a lightning flash preceding the accident.
## 4127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed shortly after taking off in a sandstorm.
## 4128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft struck a jungle covered mountain at 1,800m, after making a premature descent to land during a heavy rainstorm.
## 4129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The helicopter's skids contacted a high-tension static ground wire about 150 feet above the ground. The pilot's failure to maintain altitude while operating in adverse weather. A contributing factor was the incoming fog and high tension static wire.
## 4130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into the side of a mountain at 2,800m,  13 minutes after taking off from Erdenet. The plane, designed to carry a maximum of 19 passengers, was carring 26. Overloaded.
## 4131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Flight 420 took off from Montreal's Dorval Airport on a flight to Peterborough  About 12 minutes after take off, at an altitude of 12,500 feet, the crew advised ATC that they had a hydraulic problem and requested clearance to return to Dorval. The crew then advised ATC that the left engine had been shut down because it was on fire. The crew decided to proceed to Mirabel International Airport. Then crew then advised ATC that the engine fire was out. On final for Runway 24, the crew advised ATC that the left engine was again on fire. The landing gear was extended on short final, and when the aircraft was over the runway, the left wing broke upwards. The fuselage inverted, struck the runway and slid 2,500 feet and came to rest on the left side of the runway.  PC: The crew did not realize that the pull to the left and the extended take-off run were due to the left brakes' dragging, which led to overheating of the brake components. The dragging caused overheating and leakage, probably at one of the piston seals that retain the brake hydraulic fluid. When hydraulic fluid leaked onto the hot brake components, the fluid caught fire and initiated an intense fire in the left nacelle, leading to failure of the main hydraulic system. When the L WING OVHT light went out, the overheating problem appeared corrected; however, the fire continued to burn. The crew never realized that all of the problems were associated with a fire in the wheel well, and they did not realize how serious the situation was. The left wing was weakened by the wing/engine fire and failed, rendering the aircraft uncontrollable.
## 4132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The helicopter impacted a mountain on a sightseeing trip. The pilot's decision to continue VFR flight into deteriorating weather conditions consisting of lowering ceilings and visibility in mountainous terrain, which resulted in the inadvertent entry into instrument meteorological conditions and a collision with a mountainside. A factor in the accident was the failure of the chief pilot, who had directly observed the deteriorating weather conditions, to direct the following pilots to avoid the area.
## 4133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane lifted off from the runway, slowly sank and impacted the sea. The plane was grossly overloaded.
## 4134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane crashed short of the runway.
## 4135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While on an ILS approach, the cargo plane struck a hill.
## 4136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed into a volcano.
## 4137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane was flying lower than 500 ft. prior to attempting to land. After a missed attempt the plane landed on the water and soon after water entered the cockpit and the plane broke up. Possible collision with debris which caused the doors to collapse inward.
## 4138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              During a training flight, the crew of the cargo plane stopped one engine, stalled and crashed. The loss of control of the aircraft due to an excessive reduction of speed at low height, after having extended the landing gear, with an intermediate flap position, and with the right engine stopped and its propeller pitch close to feather.
## 4139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft ditched in the Manacapuru River while en route from Tefe to Manaus. The pilot had reported an engine problem about 20 minutes earlier.
## 4140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Midair collision. The Beechcraft was on a flight from Lyon to Lorient, approaching Lorient, when it requested permission to fly over the ocean liner Norway. While circling the Norway, it collided with the Cessna. One killed aboard the Cessna, 14 aboard the Beechcraft.  The pilots of the Beechcraft decided to deviate from their course in order to give passengers a view of the ocean liner Le France. This is unusual but not forbidden. They also descended to 2,000 feet, below the level of radar detection. Both planes approached each other within blind spots. Failure of both pilots to "see and avoid" each other under VFR conditions.
## 4141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shortly after taking off the plane pitched up, stalled and crashed to the ground. The  pitch-up was caused by an uncommanded downward movement of the horizontal stabilizer. This was due to a partial detachment of the actuator forward bearing support fitting due to the non-installation of required hi-lok fasteners.
## 4142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The pilot made three low passes over the water in an attempt to land at Kincolith. On the fourth approach, the aircraft touched down, apparently in a controlled manner, and skipped on the water surface. The floats then dug into the water followed by the right wing, which was severed from the fuselage on water impact. The aircraft quickly overturned and came to rest inverted with only the bottom of the floats visible. All five occupants drowned. On touchdown, the floats struck the water and caused a flying attitude that the pilot could not control before the right wing dug in and the aircraft overturned. Contributing to the accident were conflicting wind and water conditions at the time of the occurrence.
## 4143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Blew a tire while landing causing the plane to to run off the runway and crash.
## 4144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While en route, the aircraft experienced double engine failure. The plane ditched into Foveaux Strait. Five passengers were rescued, but four passengers and the pilot did not have lifejackets and did not survive. The double engine failure was possibly related to fuel management.
## 4145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft crashed in a remote mountainous area at an elevation of 12,000 feet while on a flight from Jomsom to Potokari. Radio contact was lost 5 minutes after takeoff from Jomson.
## 4146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane took off in a steep angle, rolled to the left and crashed and burned. The taking off with the elevator trim set to the full nose-up position. This resulted in the nose of the aircraft pitching up after rotation, causing the pilot to lose control of the aircraft.
## 4147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft was on a flight from Rangoon to Tachilek when it was diverted to Heho due to poor weather conditions. After the aircraft was reported missing, wreckage was found on Payakha Mountain, near Manibagi. It was five days before officials announced that the plane had crashed as an effort was made to hide the accident. There are reports that some survived the crash, only to be tortured and  murdered by nearby villagers who thought it was a military plane.
## 4148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed and burned during takeoff from Quito. The crew tried and failed twice to take off. On the third attempt, the plane struggled to gain altitude, rising a few feet, but settled back to earth plowing past the end of the runway and crashing into an auto body shop and coming to rest in a soccer field. The accident was caused by the late decision of the crew to abort the takeoff.
## 4149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft was on a flight from JFK Airport, New York to Geneva, Switzerland when the crew reported smoke in the cockpit and requested an emergency landing at Halifax. The plane began dumping fuel and preparing for an emergency landing when it disappeared from radar and crashed into the Atlantic Ocean southwest of Halifax. A fire in the entertainment system wiring started in a hidden area above the cockpit ceiling when arcing ignited the cover material made of thermal insulation blankets. This set off an in-flight fire that spread and increased in intensity until it led to the loss of the aircraft.. It was determined that  aircraft certification standards for material flammability at the time of the accident were inadequate. Dr. Jonathan Mann, researcher in the fight against AIDS and Joseph LaMotta, son of boxing champion Jake LaMotta, killed in the crash.
## 4150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shot down by UNITA rebels 30 minutes after taking off.
## 4151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed while attempting to cross a mountain pass, following two other company airplanes in conditions described as five to seven miles visibility, 700 feet ceilings, clouds hanging on the mountainsides, and misty rain. The pilot's failure to maintain adequate airspeed which resulted in an inadvertent stall. Unfamiliarity with the geographic area, the low clouds, his becoming disoriented, and the blind canyon into which he flew. The audible stall warning circuit breaker was found in the pulled (disabled) position.
## 4152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft was returning to a ramp with it's brakes on fire when it struck another aircraft and caught fire.
## 4153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into a hill in a forest 20 miles north of Nador and 12 miles from its destination as it made an approach for Melilla. Controlled flight into terrain.
## 4154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed to the ground while making a final turn for landing in low clouds, reduced visibility and strong, rapidly veering wind conditions associated with the approach of a severe thunderstorm.
## 4155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ten minutes after taking off from Jaffna, the plane disappeared from radar. The aircraft crashed into the sea 35 nm north of Mannar. The plane was shot down by LTTE (Liberation Tigers of Tamil Eelam) rebels.
## 4156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sightseeing plane, after a flight over Angel Falls, crashed short of the runway into a swamp.
## 4157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed into the jungle after the rear engine was hit by a Russian  SA-7 missile, fired by Tutsi rebel forces shortly after the plane took off from Kindu Airport bound for Kinshasa.
## 4158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While attempting to take off, the aircraft struck a military bus as it crossed the runway.
## 4159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed in the Rwenzori mountains.
## 4160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into mountainous terrain in fog and rain 44 minutes after leaving Playa Grande, Guatemala. The plane was returning from doing a medical clinic for 3 days in the remote jungles of Playa Grande where no one had seen a doctor before.
## 4161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft, carrying freight and seven passengers, crashed and burned, 25 km from Krasnoyarsk, 4 minutes after taking off in a snowstorm. Icing.
## 4162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The homebuilt plane was attempting to land at Lee Airport in Maryland when it crashed into Beard's Creek.  coming to rest  inverted in 18 feet of water. Actor, William Gardner Knight, 56, who was piloting the aircraft was killed. The pilot's failure to maintain adequate altitude/clearance from the trees. Contributing to the accident was the pilot's unfamiliarity with the geographic location and dark night conditions.
## 4163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed into the St. Lawrence River in shallow water, 2km from the runway after taking off from Point-Lebel.
## 4164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed 2 miles southwest of Surat Thani Airport. The accident occurred in poor visibility and heavy rain. After a third landing attempt, the plane could not gain altitude and crashed into a paddy field. First reports suggest the aircraft stalled and pancaked into the ground tail first. Spatial disorientation when the nose pitched up sharply during a nighttime approach in stormy weather. Pilot error.
## 4165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The leased aircraft was shot down by UNITA rebels as it flew at FL 150 carrying relief supplies.
## 4166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After encountering a vehicle on the runway, the crew attempted a go-around but the aircraft touched down in a nose-high attitude and crashed.
## 4167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane crashed in fog and poor visibility while attempting to land.
## 4168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed in dense jungle, 25 km from the departure town of Huambo. Heavy fighting was reported between government forces and UNITA rebels at the time of the crash.
## 4169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        he United Nations-chartered plane was shot down by UNITA rebels, 20 minutes after takeoff from Huambo.
## 4170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          During approach the cargo planel,assumed a nose-high attitude, stalled, hit a house and crashed into a field short of the runway. The aircraft was operated outside the load and balance limitations
## 4171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After completing an air refueling mission the plane pitched upward, stalled and crashed.
## 4172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after taking off, the cargo plane began to lose altitude until it hit trees, went off a cliff and crashed to a valley floor. The accident flight was not conducted in accordance with the night obstacle clearance requirements of Canadian Aviation Regulation. The Kelowna Flightcraft company operations manual did not reflect the restrictive conditions imposed on night visual flight rules (VFR) flight by CAR 705.32. Such information might have prevented the accident by ensuring the crew's awareness of those night obstacle clearance standards.
## 4173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After initiating a go-around, the aircraft veered left and commenced a shallow climb before suddenly rolling right and descending steeply onto a tidal flat. The pilot initiated a go-around from final approach because of a vehicle on the airstrip. The left propeller showed little evidence of rotation damage. The reason for a possible loss of left engine power could not be determined. For reasons that could not be established, the pilot lost control of the aircraft at a low height.
## 4174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane, on a relief mission to Bluefields was waved off from landing because of a blocked runway. While navigating around for another landing attempt, the aircraft crashed into mountainous terrain.
## 4175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane was on a flight to Lucapa, when it was forced to return to Luanda due to engine trouble. While approaching Luanda, the aircraft crashed into the Cazenga district of Luanda destroying five houses.
## 4176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed 15 minutes after taking off from Hoskins en route to Kandrian. The aircraft broke-up in midair after encountering severe weather and crashed into a oil palm plantation in flat terrain.
## 4177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     After taking off, the cargo plane lost the No. 3 engine. The crew tried to return to the airport but the plane lost altitude and crashed.
## 4178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft was on a flight from Chengdu to Wenzhou when it crashed into a field while on approach to Wenzhou Airport. Witnesses saw the plane nose-dive into the ground from an altitude of 2,300 feet and explode. A self-locking nut, other than a castle nut with cotter pin as specified, had been installed at the bolt for connection between the pull rod and bellcranck in the elevator control system. The nut screwed off, resulting in bolt loss, which led to the loss of pitch control.
## 4179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft touched down briefly, overran the runway and crashed into the sea in strong winds.
## 4180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While approaching New Delhi Airport, the plane suddenly veered off its landing path and crashed into a building site and careened into a water tank reservoir. A witness said the plane came in very low and crashed, exploded and burned after severing power lines. A heavy layer of fog covered the area prior to the crash. The crash site was 1.5 miles from the airport.
## 4181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed into Huirotico Hill. Wreckage found 4 days later.
## 4182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On approach, the crew of the cargo plane descended to MDA and initiated a go-around after the runway was not seen.  On the second approach the captain descended below MDA and  the aircraft struck the ground in controlled flight 2 nm short of the runway. The aircraft was destroyed. The captain decided to descend below the minimum descent altitude without the required visual references. After descending below MDA, both pilots were preoccupied with acquiring and maintaining visual contact with the ground and did not adequately monitor the flight instruments; thus, the aircraft flew into the ice.
## 4183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The pilot-in-command lost control during touch-and-go landing and crashed.
## 4184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft departed Adana to pick up Turkish pilgrims. The plane crashed 9 minutes after taking off in poor weather conditions. Severe weather probably contributed to the cause of the accident. Pitot anti-icing system was probably not activated because of missed checklist items. The crew failed to recognize the cause of erratic airspeed indications and failed to use other cockpit indications for control and recovery of the aircraft.
## 4185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed into La Caida Hill in fog, 10 minutes from its destination. The aircraft was off course.
## 4186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shortly after taking off  and after getting into a disagreement with the first officer about the planes altitude, the captain pushed down on the control column and the plane entered a rapid descent. Both crew members tried to recover from the dive but were unable to gain control and the plane crashed into the ground and was destroyed.
## 4187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed into the ocean during a heavy rain. It is reported that the flight had appeared to be proceeding normally until impact with the water.
## 4188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while attempting to take off.
## 4189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Failed to gain altitude while taking off and crashed. The plane was on a positioning flight to pick up passengers.
## 4190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane was on a flight from Dallas/Fort Worth, Texas to Little Rock, Arkansas. While attempting to land at Little Rock Airport, the flight encountered heavy thunderstorms, rain and strong winds. The aircraft landed fast and hard, skidded off the end of the runway and struck a landing light tower, breaking into three parts and bursting into flames. Crew's decision to continue the approach despite severe thunderstorms in the area and crosswinds that  exceeded American Airlines' guidelines. The crew did not arm the automatic spoiler system before landing or manually deploy the spoilers after touchdown. Fatigue, the crew had been awake for nearly 16 hours.
## 4191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 4192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 4193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The sightseeing helicopter impacted a glacier.The pilot's continued VFR flight into adverse weather, spatial disorientation, and failure to maintain aircraft control. Factors associated with the accident were pressure by the company to continue flights in marginal weather, and the "flat" lighting leading to whiteout conditions.
## 4194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft was 19 miles or six minutes out of Goroka when it crashed into a hillside. At the time of the crash, the pilot was in routine communication with Goroka and gave no indications of any problems.
## 4195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        During the takeoff the engine failed and the plane crashed into trees. The most likely accident scenario during the second take-off is that water contamination migrated from the center fuel tank to the engine, resulting in a loss of engine power.
## 4196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane was shot down by UNITA rebels.
## 4197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft, carrying freight, flew into the side of a fog covered ridge, 8 km E of Sittwe, while on approach to Sittwe.
## 4198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft developed engine trouble shortly after taking off and returned to the airport. The plane made a steep descent and struck an embankment of the Guatiquia River.
## 4199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane crashed into the Champadevi mountains at an altitude of 7,500 ft. The plane was flying too low.  Failure to the adhere to Standard Instrument Departure Procedure by the crew and failure of the controllers to warn the flight.
## 4200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While on approach, the cargo plane hit a wall, 400 meters short of the runway.
## 4201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft, piloted by John F. Kennedy Jr., 38, crashed into the sea approximately 34 miles west of Martha's Vineyard while en route from Fairfield, New Jersey to Martha's Vineyard, Massachusetts. Killed along with Kennedy were his wife Carolyn and her sister Lauren Bessette. Kennedy's failure to maintain control of the airplane during a descent over water at night, which was a result of spatial disorientation. Contributing factors in the accident were haze, and the dark night.
## 4202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Two minutes after taking off from Haneda Airport, a man carrying a knife forced a flight attendant to take him in the cockpit of the plane.  A fan of computer flight-simulation games, he stated he just wanted to fly a real plane.  After forcing the co-pilot out of the cockpit he ordered the captain to fly to a U.S. Air Force base in western Tokyo. When he refused, he stabbed the captain and seized the controls. After a sudden drop in altitude, the co-pilot and an off duty crew member entered the cockpit and overpowered the hijacker.  A one point the plane plunged to within 984 feet of the ground. The plane ultimately  landed safely but the captain died of his injuries.
## 4203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed into Patascoy mountain at 7,000 ft. on a reconnaissance flight over drug producing areas.
## 4204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane crashed into a mountainside at an altitude of about 1,800 feet about 15 minutes after taking off from Nausori Airport bound for Nadi International Airport. The plane was observed by witnesses flying low prior to the crash. The wreckage indicated the aircraft descended until the right wing hit a line of trees at the 1,300 ft. elevation. It was determined the captain had insufficient sleep prior to the flight and had consumed an  excessive amount  antihistamine both of which may have influenced his performance. Published operational standards by Air Fiji, inadequate for the particular type of aircraft.
## 4205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft, which was chartered from the Cape Verde Coast Guard, crashed into a cliff near Ponta do Sol airfield in the Cape Verde Islands in fog and rain. The plane was returning to the island of Sao Vicente where it originally departed  due to poor weather conditions over the destination city. The pilot possibly lost visibility due to the fog and rain and crashed into a cliff in Santo Antao.
## 4206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While making a landing in strong winds and rain, the pilot-in-command disconnected the autopilot but left the autothrottle engaged. The aircraft, with a weight close to the maximum landing weight permitted, stabilized slightly low on the glideslope. An attempt was made to flare but the aircraft landed hard on its right landing gear and the No.3 engine touched the runway. The right main landing gear and right wing separated. The MD-11 then inverted and skidded off the runway in flames. Probable Cause: The commander's unability to arrest the high rate of descent existing at 50 ft. RA. Contributory Causes:  The commander's failure to appreciate the combination of a reducing airspeed, increasing rate of descent, and with the thrust decreasing to flight idle. The commander's failure to apply power to counteract the high rate of descent prior to touchdown. Probable variations in wind direction and speed below 50 ft RA may have resulted in a momentary loss of headwind component and, in combination with the early retardation of the thrust levers, and at a weight only just below the maximum landing weight, led to a 20 kt loss in indicated airspeed just prior to touchdown. A possible contributory cause may have been a reduction in peripheral vision as the aircraft entered the area of the landing flare, resulting in the commander not appreciating the high rate of descent prior to touchdown.
## 4207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A fire in the front portion of the cabin, in the overhead luggage compartment, caused thick black smoke to accumulate in the cabin.  Accidental ignition of gas taken aboard in 2 bleach and softner bottles, stored in a overhead locker.
## 4208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft struck power lines 2,000m past the end of the runway after a second attempted go-around.
## 4209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While attempting to take off from Jorge Newberry airport, the crew aborted takeoff, overran the runway, skidded across a service road and crashed into several cars and into a golf course, bursting into flames.  The crew forgot to extend the wing flaps to initiate take-off, and ignored the alarm that advised them of the error in configuration for take-off. The pilots did not maintain a sterile cockpit, sharing a cigarette and socializing with a flight attendant.
## 4210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While on approach to Tribhuvan International Airport, the aircraft struck a telecommunication tower with its left wing and crashed onto slopes of a wooded area, 6 miles southwest of the airport.
## 4211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft touched down hard, bounced, and made a second heavier touchdown causing substantial damage to the nosewheel and its supports. The Boeing 757 left the runway at high speed, approximately 1,000m from the second touchdown point. It then ran 343m across flat grassland beside the runway, before going diagonally over a substantial earth mound adjacent to the airport boundary, becoming semi airborne as a result. Beyond the mound it hit a number of medium sized trees and the right engine struck the boundary fence. The aircraft then passed through the fence, re-landed in a field and both main landing gears collapsed. It finally stopped after a slide across the field. One passenger, who had been admitted to hospital with apparently minor injuries and discharged the following day, died five days later from unsuspected internal injuries.
## 4212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Experienced pitch oscillations during descent and crashed while landing. Inadequate risk assessment of the pitch feel malfunctions. Overriding of the A/P on the pitch channel by the crew.
## 4213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane crashed while on approach.
## 4214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed just after maintenance personell replaced parts and were testing the plane.
## 4215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The helicopter, crashed into the water shortly after liftoff from the 88 foot tall helideck located 35 miles offshore. The landing was soft and gentle but the helicopter rolled over inverted in the water.
## 4216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed during a rainstorm.
## 4217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane scheduled to fly from Orlando, Florida to Dallas, Texas flew out of control for 1,500 miles before nose-diving into a grassy farm field in South Dakota, after running out of fuel. The plane's altitude varied between 22,000 and 51,000 feet during the flight. A possible pressurization failure, as indicated by frosted windows, observed by fighter jet pilots trailing the plane, may have killed all aboard. Pro golfer, Payne Stewart, 42, killed. Incapacitation of the flight crewmembers as a result of their failure to receive supplemental oxygen following a loss of cabin pressurization, for undetermined reasons. Possible contributing factor: The emergency checklist was written in such a way that it did not direct the crew first don their face masks.
## 4218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane took off from JFK at 1:19 a.m. bound for Cairo, Egypt. Thirty-three minutes later, after attaining an altitude of 33,000 feet, it was observed on radar in an extremely rapid descent. The aircraft was observed in a 66 degree dive at 483 knots. The descent continued to 16,700 feet after which the aircraft climbed to 24,000 ft.   After that, the plane began a second dive and broke up at around 10,000 ft. crashing into the Atlantic Ocean, 60 miles southeast of Nantucket Island.  The aircraft was named Thutmosis III. The accident was caused by the relief first officer's flight control inputs which caused the airplane's departure from normal cruise flight and subsequent impact with the Atlantic Ocean. The reason for the first officer's actions were not determined by the NTSB. One could conclude the actions were deliberate in an attempt to commit suicide.
## 4219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane was on a flight from Tujuana to Mexico City, with stops at Guadalajara and Uruapan. After reaching Uruapan, seventy-eight passengers deplaned.One minute after taking off from Uruapan, the crew declared an emergency without saying what was wrong. A few minutes later the plane went into a steep dive and crashed in a mountainous area 3.3 miles south of the airport. Some witnesses stated the plane was on fire before it hit the ground. TAESA's operation license was suspended due to the incident, which prompted inquiries regarding the airline's safety and maintenance procedures.
## 4220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane was on a flight from Rome, Italy to Pristina, Kosovo with a stop at Tirana, Albania. The plane disappeared from radar and crashed about 10 miles north of Pristina into a hill in poor weather. The plane was a U.N. charter flight on a routine humanitarian mission to distribute food. Lack of procedural discipline and vigilance during flight in mountainous terrain. Improper tracking by the military ATC. Crew fatigue.  Inoperable GPWS.
## 4221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane was taxiing for takeoff when a gust of wind caused the rudder to become fully deflected to the left. The captain continued the takeoff despite suggestions from the crew to return to the gate. Shortly after lifting off the runway the plane yawed to the left and collided with the airport perimeter wall, bursting into flames.
## 4222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft apparently flew into a mountainside towards the end of a flight from Manila to Cauayan in rain and poor visibility.
## 4223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed  2,900 ft. short of the runway causing extensive damage. The pilot was unable to get the aircraft airborne following the impact. Weather was below minima. Crew failed to monitor their instruments, became spatially disoriented and failed to arrest a high rate of descent. Pilot was inexperienced.
## 4224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed 30 minutes after leaving Ponta Delgada, Sao Miguel Island bound for Horta, Faial Island in the Azores. The plane lost contact with the Horta control tower 10 minutes before it was scheduled to land.  Witnesses said the plane was flying very low before they saw the plane crash into Mount Esperanca on the island of Sao Jorge.
## 4225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While attempting to land at La Aurora International Airport, the aircraft overshot the runway, rolled down an embankment and crashed into houses in the La Libertad section of the city. Witnesses say the plane was unable to stop after it began its landing too far down the runway. The crew failed to initiate a go-around after overshooting on a wet runway with insufficient deceleration to make a safe stop. Leased from AOM.
## 4226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after taking off the ADI comparator alarm sounded three times. Shortly afterwards, the warning sounded a further two times. As the captain initiated a procedural turn to the left, the comparator warning sounded 9 more times.. The aircraft then banked left progressively and entered a descent until it struck the ground in a 40 degree nose down attitude at a high rate of speed. The pilots did not respond appropriately to the comparator warnings during the climb after takeoff from Stansted despite prompts from the flight engineer. The commander, as the handling pilot, maintained a left roll control input, rolling the aircraft to approximately 90 of left bank and there was no control input to correct the pitch attitude throughout the turn. The first officer either did not monitor the aircraft attitude during the climbing turn or, having done so, did not alert the commander to the extreme unsafe attitude that developed.
## 4227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was hijacked and subsequently flown to Amritsar, India, Lahore, Pakistan, al-Minhar Air Base, Dubai and Kandahar, Afghanistan. The hijacking lasted 7 days. One crewmember was killed.
## 4228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While on approach, after circling for 40 minutes and 5 miles from Valencia Airport,  the aircraft crashed into the Tocuyito mountain range and exploded in flames. The airport at Valencia was being used as operations at Simon Bolivar International Airport, Caracas had been disrupted by flooding in the region.
## 4229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed 5 minutes after taking off from Simara.  The aircraft was observed not following the usual route into the mountains.
## 4230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While on a positioning flight the aircraft crashed into the Black Sea after stating they were diverting to Ankara Turkey.
## 4231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       During a visual approach the aircraft stalled and pancaked 400 ft. short of the runway.
## 4232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed shortly after taking off, 8 km from the airport in light rain. After departing, the captain turned the aircraft to the right instead of to the left. The first officer advised the captain he should be turning right and ATC also asked about the direction taken. ATC then cleared the aircraft for a right turn. Soon after, the pitch decreased rapidly accompanied by a marked speed increase and plane entered a high speed, high-rate, spiral descent and crashed into an open field. The flight crew reacted inappropriately to the change in departure clearance SID ZUE 1Y by ATC. The first officer made an entry in the FMS, without being instructed to do so by the commander, which related to the change to the SID ZUE 1 standard instrument departure. In doing so, he omitted to select a turn direction. The captain dispensed with use of the autopilot under instrument flight conditions and during the work-intensive climb phase of the flight. The captain took the aircraft into a spiral dive to the right because, with a probability bordering on certainty, he had lost spatial orientation. The first officer took only inadequate measures to prevent or recover from the spiral dive.
## 4233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft was on a flight from Tripoli to Marsa el-Brega Libya ferrying oil workers. As the twin engine plane approached Marsa El-Brega, the crew experienced a double engine failure and ditched into the sea. Failure of the crew to use the anti-icing system which led to the ingestion of melting ice into both engines causing failure of both engines.
## 4234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft was not able to maintain altitude after taking off and crashed into a house. The aircraft was overloaded. Lack of safety instruction to passengers. Flaps not properly selected. Took off without clearance.
## 4235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed into the Atlantic Ocean three minutes after taking off from Felix Houphouet-Boigny Airport.  A few seconds after lifting off the ground the stall warning sounded and continued for about 20 seconds until it was manually turned off by the crew. Three seconds later the plane impacted the water. The pilot's response to an alarm that inaccurately indicated the plane had stalled. The pilot failed to complete established procedure for such an emergency. Takeoff conditions also contributed to the accident, which occurred at night, hampering the crew's ability to judge the plane's distance from the sea.
## 4236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed into the Pacific Ocean south of Point Mugu in 650 ft. feet of water while en route from Puerto Vallarta to San Francisco. Radio transmissions from the plane indicated the pilots were struggling with a jammed stabilizer for the last 11 minutes of the flight before nose-diving into the sea. While preparing to make an emergency landing at Los Angeles International Airport control was lost and the MD-83 was seen in a nose-down attitude, spinning and tumbling in a continuous roll, inverted, before it impacted the sea.  Loss of airplane pitch control resulting from in-flight failure of the horizontal stabilizer trim system jackscrew assembly's acme nut thread. The component failed because of excessive wear resulting from Alaska Airlines' insufficient lubrication of the jackscrew assembly. Contributing to the accident were Alaska Airlines' extended lubrication interval and the Federal Aviation Administration's approval of that extension, which increased the likelihood that a missed or inadequate lubrication would result in excessive wear of the acme nut threads and Alaska Airlines' extended end play check interval and the FAA's approval of that extension, which allowed the excessive wear of the acme nut threads to progress to failure without the opportunity for detection. Also contributing to the accident was the absence on the McDonnell Douglas MD-80 of a fail-safe mechanism to prevent the catastrophic effects of total acme nut thread loss. Cynthia Oti, radio financial talk show host, Dean Forshee, guitarist, Jean Gandesberry, columnist, Tom Stockley, columnist were among those killed.
## 4237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed on take off.
## 4238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane lost altitude after taking off and crashed into a auto salvage yard and burned. A loss of pitch control resulting from the disconnection of the right elevator control tab. The disconnection was caused by the failure to properly secure and inspect the attachment bolt.
## 4239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While attempting to land at Burbank Airport, the plane overran the runway, collided with a metal blast fence and an airport perimeter wall and came to rest on a city street near a gas station. The plane touched down at 182 knots, 2,150 feet past the runway threshold, too fast and too far down the runway for the plane to stop in time.  In the accident sequence,  the nose gear collapsed, the forward service door (1R) escape slide inflated inside the airplane and  the forward dual flight attendant jumpseat, which was occupied by two flight attendants, partially collapsed. Two passengers sustained serious injuries and 41 passengers and the captain sustained minor injuries. The flightcrew's excessive airspeed and flight path angle during the approach and landing and its failure to abort the approach when stabilized approach criteria were not met. Contributing to the accident was the controller's positioning of the airplane in such a manner as to leave no safe options for the flightcrew other than a go-around maneuver.
## 4240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft climbed to an altitude of about 100 ft., stalled, lost control and crashed. Ice build up on the wings. Flaps incorrectly set.
## 4241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into a jungle mountainside 15 miles short of its destination while en route. The wreckage was found at the 2,500 ft. level of a 2,790 ft. mountain.  Weather was poor at the time.
## 4242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After lifting off the cargo plane entered a steep, nose-up attitude, banked to the left, and crashed. The pilot lost control of the aircraft while conducting a go-around from a aborted landing on the ice strip.  The aircraft's center of gravity on the accident flight was beyond the aft C of G limit. The crew did not recalculate the aircraft's weight and balance for the second flight. Leaks in the heater shroud allowed carbon monoxide gas to contaminate cockpit and cabin air.
## 4243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed while attempting to land in poor weather.
## 4244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The pilot -in-command made two requests to land because he was low on fuel. While attempting to land, he ran out of fuel and crashed short of the runway. The Cargo plane broke into four parts and crashed into houses.
## 4245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft, leased from a Ukrainian company, overran they runway and crashed into a ditch after an aborted takeoff. Brake failure as the pilot attempted to avoid a hole in the runway.
## 4246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The crew reported engine trouble 10 minutes before it crashed while en route. Members of the Liberation Tigers confessed to firing missiles at the plane.
## 4247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While on finals the training flight pitched up, the right wing dropped, and the airplane struck trees, struck wires, caught fire on a road. The pilot's failure to maintain control of the airplane while on final approach resulting in the airplane striking trees. Factors in this accident were: improper planning of the approach, and not obtaining the proper alignment with the runway.
## 4248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The military flight crashed after losing its engines after striking birds,unable to return to land.
## 4249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft circled Davao airport in an attempt to land but crashed onto a coconut plantation on the mountainous Samal Island. The plane aborted a previous landing attempt because another plane was on the runway. Weather and visibility were good in the area but the landing attempt may have been hampered by low-lying clouds. The last message from the crew was that they were 7 miles from the airport on final approach. Nothing more was heard from the plane. The aircraft disintegrated upon impact near Mt. Kalangan. The elevation of the accident site was about 500 feet above sea level but the plane should have been at a altitude of 1,500 feet.
## 4250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While taking off the plane struck trees at the end of the runway, crashed and burned.
## 4251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               During a landing attempt the crew shut down No. 1 engine and declared an emergency. The plane was told to divert to Lyon Satolas. Power was applied to the remaining engine and the plane banked to the left causing the wing to touch the ground, crash and catch fire. Loss of yaw and roll control which appears to be due to the failure to monitor flight symmetry at the time of the thrust increase on the right engine.
## 4252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed into a cloud covered mountain.
## 4253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While on approach the charter flight hit the ridge of a mountain. Inadequate crew coordination led to the captain's decision to discontinue the instrument approach procedure and initiate a maneuvering descent solely by visual references at night in an area of mountainous terrain. The crew failed to review the instrument approach procedure and the copilot failed to provide accurate information regarding terrain clearance and let down procedures during the instrument approach.
## 4254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The charter flight crashed while on approach in fog and mist.
## 4255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed into a heavily wood area  as it was making a second approach to Wilkes-Barre/Scranton International Airport. Visibility was poor in wind, low clouds and light rain.  While attempting the second approach, the pilot reported both engines had quit but restarted one of them before the plane crashed. Investigation revealed indications of rotation on the left engine at the time of impact but the power level was not known. The right engine and propellers exhibited little or no rotation at the time of impact. Failure of the crew to ensure an adequate supply of fuel for the flight, which led to the stoppage of the right engine due to fuel exhaustion and the intermittent stoppage of the left engine.  Failure of the crew to monitor the plane's fuel state and the flightcrews failure to maintain directional control after the initial stoppage.
## 4256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A hijacker robbed passengers, jumped out of the plane with a homemade parachute and was killed in the jump.
## 4257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 En route and descending at Whyalla,  at 6,000 ft., the pilot transmitted a MAYDAY, reporting that both engines of the aircraft had failed, that there were eight persons on board and that he was going to have to ditch the aircraft, but was trying to reach Whyalla. Three minutes later he reported his position 15 nm off the coast of Whyalla. No further transmissions were heard from the plane and the wreckage was found in Spencer Gulf the next morning. Malfunction of both engines due to the failure of components of the engines. A fractured connecting rod in the left engine led the pilot to increase the power setting in the right engine, leading to the No. 6 piston being holed in the right engine.
## 4258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane made a hard landing, short of the runway and broke in two during a heavy rainstorm.
## 4259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was attempting to land at Whuan's Wanjiatun Airport in thunderstorms and heavy rain when it was struck by lightning causing it to explode and crash. Half of the plane crashed into a farmhouse and the other half crashed near a dike on the Hanjiang River near the village of Shitai, 15 miles from Wuhan. Seven people aboard a boat on the southern bank of the river were killed when they were swept into the river by the impact of the crash.
## 4260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after takeoff the aircraft impacted another plane and crashed to the ground. The failure of the pilot's of both airplanes to maintain a visual lookout while climbing and maneuvering resulting in an in-flight collision and subsequent collision with residences and terrain.
## 4261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Crashed into the sea during a test flight.
## 4262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Engine problems forced the pilot to return to the airport. However, he overshot the runway and crashed into the sea. One passenger was rescued by fishermen. Major General Santiago Madrid, chief of the southwestern military command, killed.
## 4263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane crashed into a heavily forested area 42 miles southeast of Villahermosa. There was fog and rain in the area  at the time.  Flying VFR, deviation to avoid weather resulted in spatial disorientation of the crew which led to descending below a safe flying altitude to clear high ground.
## 4264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane had 19 people aboard when it crashed into a farm after losing the No. 2 engine, two minutes after taking off from Villavicencio.
## 4265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane, on a positioning flight crashed into rugged woods during an approach to land. The pilot's continued VFR flight into IMC conditions, by failing to maintain altitude, and descending from VFR conditions into IMC, which resulted in him subsequently impacting with trees. Factors in this accident were: reduced visibility due to dark night and fog. An additional factor was the pilot was not certified for instrument flight.
## 4266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While attempting to land at Patna, the aircraft was too high and the crew attempted a go-around. During the second landing attempt, the aircraft was again high, veered to left and lost altitude until it crashed into houses in the Gardanibagh district and burst into flames. The cause of the accident was loss of control of the aircraft due to crew error. The crew did not followed the correct approach procedure, which resulted in the aircraft being high on approach. The crew then initiated a "go-around procedure" instead of an "approach to stall recovery procedure" resulting in an actual stall of the aircraft, loss of control and subsequent impact with the ground.
## 4267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After declaring an emergency the cargo plane crew requested the nearest airport. The aircraft soon after descended out of control and crashed on the eastern side of the Meduxnekeag River. The pilot-in-command's failure to maintain minimum control airspeed, which resulted in a loss of control. Factors in this accident were clouds, and a loss of engine power for undetermined reasons, while in cruise flight above the airplane's single engine service ceiling.
## 4268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane lost an engine on takeoff lost altitude and crashed 2 miles east of the airport.
## 4269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The helicopter, on a sightseeing tour, crashed into mountains on the western slopes of Maui at an elevation of 2,850 feet inclement weather.
## 4270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft struggled to gain altitude after taking off from Charles de Gaulle airport. The pilot reported the No. 2 engine failed and struggled to steer towards Le Bourget airfield as smoke and fire trailed the jet's left wing.   The plane was unable to gain altitude, went nose high, stalled and crashed into a small hotel complex.  A metal strip left on the runway by another plane gashed one of the Concorde's tires which blew out sending a piece of rubber into the underside of the wing which sent a shockwave which ruptured a seam in the fuel tank. An electrical severed by another piece of rubber sparked which ignited leaking fuel ignited and started an uncontrollable fire. Power was lost to the No. 1 and No. 2 engines which led to loss of control of the aircraft and subsequent crash. Investigation revealed the metal strip was probably a thrust reverser part from Continental Airlines DC-10-30 , registered N13067 which departed Paris as Flight 055 to Newark. This is the first crash of a Concorde in aviation history. The French government convicted Continental and a Continental mechanic of a crime but an appeals court reversed the decision.
## 4271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed on a training flight.
## 4272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed into the Churia mountain range at 4,300 ft., 20 minutes into a 30 minute flight to Dhangadhi in rain and fog.
## 4273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The helicopter exploded and crashed from a height of 1,000 ft.
## 4274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into a volcano after the pilot reported he was diverting to Puerto Montt because of ice formation on the wings. The wreckage was found 15 days later.
## 4275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The two aircraft collided over a central New Jersey subdivision, scattering debris over a wide area. The Navajo had taken off from Lakehurst Naval Air Station and the Seminole from Northeast Philadelphia Airport.  The Navajo crashed into a two-story house while the Seminole fell into a soybean field. Two pilots and seven passenger were killed on the Navajo as were a pilot instructor and his student on the Seminole. Failure of the pilots of the two airplanes to see and avoid each other and maintain proper airspace separation during visual flight rules.
## 4276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane was approaching Tshikapa and the pilot informed the tower that it was having difficulties with its landing gear. The tower told the pilot to do a low fly-by for an evaluation and then make an emergency landing but the pilot refused and attempted to return to Kinshasa. The plane crashed 40 miles north of Tshikapa.
## 4277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft crashed into the Persian Gulf and exploded in flames while attempting to land at Bahrain International Airport. The crew decided to perform a missed approach after it was determined the aircraft was coming in too high and fast. Instructions were given for a 180 degree turn and climb to 2,500 feet. While performing the missed approach the plane suddenly descended rapidly from an altitude of 1,000 feet and crashed into the shallow waters of the gulf approximately 1 mile from the airport. The accident was a result of a fatal combination of factors, including the captain's failure to comply with standard operating procedures and the copilot's actions in not drawing the captain's attention to the deviations of the aircraft from the standard flight parameters. The captain may have suffered a "spatial disorientation" to ground warning systems, which could have made him falsely perceive the aircraft was pitching up. He responded by making a nose down input, resulting in the aircraft starting to descend, when aircraft warning systems were saying he should increase altitude.
## 4278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flew into Mt. Montezuma.
## 4279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shortly after departing Perth and after the aircraft had climbed through its assigned altitude, the pilot’s speech became significantly impaired and he appeared unable to respond to ATS instructions. Open microphone transmissions over the next 8-minutes revealed the progressive deterioration of the pilot towards unconsciousness and the absence of any sounds of passenger activity in the aircraft. No human response of any kind was detected for the remainder of the flight. Five hours after taking off from Perth, the aircraft impacted the ground 65 km ESE of Burketown, Queensland, and was destroyed. Incapacitation of the pilot and passengers a result of hypobaric hypoxia due to the aircraft being fully or partially unpressurised and their not receiving supplemental oxygen. The investigation could not determine the reason for the aircraft being unpressurised, or why the pilot and passengers did not receive supplemental oxygen.
## 4280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Air Force helicopter was on a domestic flight when it cashed into mountainous terrain 75 km from Colombo. The helicopter’s pilot had contacted air traffic controllers saying he had problems with visibility and was lowering his altitude. Sri Lanka, Muslim Congress leader M. H. M. Ashraff, 52, along with members of his entourage were killed.
## 4281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft overshot the runway near Reynosa, Mexico and crashed into vehicles and houses coming to rest in a canal. The accident happened during a heavy rainstorm. The lights at the airport were out due to the storm and contact with the tower was lost. No passengers were killed aboard the aircraft but four people were killed on the ground.
## 4282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The chartered cargo plane hit tree tops and discintegrated while attempting to land. Although the pilot and the aircraft were certified for instrument flight, the pilot apparently continued to fly in accordance with visual flight rules after encountering marginal weather conditions and reduced visibility. For undetermined reasons, the pilot descended below the elevation of the terrain surrounding the airstrip, resulting in a controlled-flight-into-terrain accident.
## 4283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cause of this accident was the pilot's excessive takeoff rotation, during an aft center of gravity takeoff, a rearward migration of fuel during acceleration and takeoff and consequent shift in the airplane's aft c.g. to aft of the aft c.g. limit, which caused the airplane to stall at an altitude too low for recovery. Contributing to the accident were Bombardier's inadequate flight planning procedures for the Challenger flight test program and the lack of direct, on-site operational oversight by Transport Canada and the Federal Aviation Administration.
## 4284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The twin engine Cessna crashed into a densely wooded area, 30 miles south of St. Louis, 25 minutes after taking off from Parks Airport. The plane was flying in rain and fog when the pilot reported he was at 6,500 feet and having problems with the artificial horizon. Radar contact was soon lost with the aircraft.  Witnesses reported hearing a plane in a dive followed by an explosion.  Wreckage was scattered over a wide area.  Mel Carnahan, 66, Governor of Missouri was killed in the accident along with a campaign aide and his son, Roger, who was piloting the plane.
## 4285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed into a mountain at 4,800 ft., in poor weather, while making an apporach to Sam Neua.
## 4286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Communications were lost with the aircraft as it approached Mt. Tirina at 4,250 feet, preparing to land at Batumi. The aircraft was seen rapidly descending into mountainous terrain. A large explosion followed as the plane crashed somewhere between the towns of  Batumi and Kabuleti in heavy rain. Navigation error made by the crew in the final stage of the landing approach. Error by the Batumi ATC who failed to locate the plane and conform it to the crew. Erroneous data shown by ground radio-technical facilities at Batumi airport.
## 4287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft exploded in midair 20 minutes after taking off from Saurimo. UNITA rebels claimed they shot down the plane.
## 4288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Weather conditions at the time were extremely poor due to typhoon Xiang Sane. A NOTAM issued on Aug 31, 2000 indicated that Runway 05R was closed due to construction between Sep 13 and Nov 22. After reaching the end of Taxiway NP, the plane turned onto Taxiway N1 and then made a 180-degree turn onto Runway 05R and began its takeoff roll. Approximately 3.5 seconds after reaching V1, the aircraft hit construction equipment on the runway, crashed back to the ground, broke up and burst into flames. The pilot attempted to take off from a closed runway. The following factors contributed to the accident. Of three lights used to guide the aircraft onto the correct runway, one was not working and another dim. The airport lacked "guard lights" used to help pilots navigate from the taxiway to the correct runway during times of poor visibility. International regulations require that a large white X be placed on the tarmac at the entrance to a closed runway, but there was none at the entrance of runway 5R. Whether there should have been, in this case, however, is itself a contentious matter as the runway remained open for taxiing.
## 4289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Due to a blown tire on takeoff the pilot aborted the takeoff, overran the runway, came to rest in a cemetery and caught fire.
## 4290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           During takeoff, the cargo plane struck trees, crashed and caught fire. The indicated failure of the right hand AC bus during takeoff with low ceiling. The factors were the low ceiling, night, and the execssive workload the pilot experienced on takeoff with an electrical failure without a second in command.
## 4291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed and exploded in flames into an open field 3 miles from the runway shortly after takeoff.  Engine failure.
## 4292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After climbing through 16,000 ft. the crew descovered cabin pressure could not be maintained and returned to the airport.  After landing the ram air switch failed to depressurize the aircraft. Moments later the left foreward door exploded open ejecting a flight attendant onto the tarmac.
## 4293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Destabilized approach, attempted to establish runway alignment, insufficient altitude, struck a tree. The aircraft crashed and caught fire.
## 4294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Two Antonov 12 planes collided in midair killing all aboard and 6 on the ground.
## 4295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Struck Timika Peak at 11,800 ft. shortly after taking off. Controlled flight into terrain.
## 4296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed on Table Top Mountain while en route. The airplane flightcrew's failure to maintain adequate distance/altitude from mountainous terrain during a departure climb to cruise flight, and the captain's impairment from drugs. Factors in the accident were dark night conditions, and the first officer's impairment from drugs.
## 4297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane caught fire shortly after taking off from Ciudad Bolivar where it had made a refueling stop. The pilot was unable to tell the tower what was wrong before rolling inverted and crashing into a neighborhood south of the city.
## 4298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane was on a charter flight from Jefferson County Airport to Stillwater, Oklahoma. Radio and radar contact was lost 20 - 30 minutes after the plane took off as it reached 23,000 feet. The aircraft crashed at a high rate of speed into the ground on a farm 40 miles east of Denver. There was light snow and 1.5 miles visibility at the time of the accident. Two members and six staffers of the Oklahoma State University basketball team were among those killed. The probable cause of this accident was the pilot’s spatial disorientation resulting from his failure to maintain positive manual control of the airplane with the available flight instrumentation. Contributing to the cause of the accident was the loss of a.c. electrical power during instrument meteorological conditions.
## 4299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While attempting to land at Mitú, the cargo plane's landing gear struck the ground short of the threshold. A go- around was executed but the No. 1 engine was shut down because of low oil pressure. The plane flew over the control tower twice to determine the state of the landing gear. It appeared that part of the left main landing gear was missing. The crew then positioned the plane for an approach and landing. As the plane turned into long final, it struck the ground, crashed in a meadow and caught fire.
## 4300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane experienced asymetrical thrust during takeoff. Rose 200-300 ft., stalled and crashed into trees. An in-flight failure of the left power plant appromately 3 minutes after take-off and inadequate conduct of the crew  so that in short final the airplane stalled and crashed from low height. The failure of the left engine was caused by intergranular fractures of retention posts on the high pressure turbine disk. As a result of incorrect service life recordings the maximum number of cycles had considerably been exceeded.
## 4301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Impacted trees and crashed while attempting to land. The flightcrew not maintaining altitude/clearance during the circling instrument approach. Factors were the pilot in command initiating the flight without proper weather reporting facilities at the destination, the flightcrew not flying to an alternate destination, the flightcrew not following company and FAA procedures/directives, the lack of certification of the second pilot, the operator not following company and FAA procedures/directives, and the dark night and the low ceiling.
## 4302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After losing radio contact with the airport, the aircraft was observed flying low before crashed into a mountainside 2 nm from Jakobkondre.
## 4303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Double engine failure on take off cause the cargo plane to ditch in Firth of the Forth estuary. Icing.
## 4304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane was on a flight from Florida to Oceana Naval Air Station in Virginia when witnesses observed the plane gliding down and losing altitude until it impacted the ground, exploding into flames. Heavy rain and wind were present in the area at the time of the accident. Weight imbalances in the aircraft were the primary cause of the accident as the cargo shifted when the pilot  got up and walked through the plane toward the rear of the plane, unbalancing the aircraft just as it hit severe turbulence. This led to the loss of control and break-up of the aircraft.
## 4305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft exploded and caught fire 35 minutes before its scheduled takeoff. Five members of the cabin crew were the only people aboard the plane at the time. Witnesses said they heard an explosion before flames erupted aboard the aircraft. NTSB investigators reported that the center fuel tank exploded followed by the right tank 18 minutes later. The cause for the explosion was unclear. The center fuel tank is located near air conditioning packs which generate heat, and were running nonstop prior to the explosion.
## 4306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane was hijacked and flown to Medina, Saudi Arabia. The plane was stormed and three people killed.
## 4307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft took off from Prinses Juliana Airport at St. Maarten for a 15 minute flight to St. Jean Airport at St. Barthélémy. While attempting to land at St. Barthélémy the plane veered sharply to the left and plunged straight down crashing into a house and bursting into flames. Weather was good at the time of the accident.
## 4308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While approaching Juanda for the 8th touch-and-go landing the aircraft banked to the left, crashed and caught fire.
## 4309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft was on final approach to Sardy Field when it crashed short of the runway into a hill northwest of the airport killing all aboard. The jet crashed into a small hillside 500 yards short of the runway, jumped over a culvert and crashed into another bluff exploding in flames. Wreckage was strewn over 100 yards. There was light snow and mist reported in the area at the time of the accident. The flight crew's operation of the airplane below the minimum descent altitude without an appropriate visual reference for the runway.  The crew was also under pressure to land before a landing curfew took effect.
## 4310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed on takeoff during a sandstorm, killing Sudan's deputy defense minister and 13 high-ranking military officers.
## 4311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter, carrying members of Full Account, a group searching for the remains of U.S. troops missing in action during the Vietnam War, crashed into a mountainside in heavy fog.
## 4312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed into rugged farm land, 120 miles south of Buenos Aires. Possible icing.  Agostino Rocca, president of the Buenos Aires-based Techint  construction group and German Sopena, managing editor of the Argentine newspaper La Nacion, were among those killed.
## 4313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft went into a steep dive from 17,000 feet and crashed into a field. Hydraulic failure caused by ice.
## 4314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft crashed into mountains about 12 miles south of Sari, 55 minutes after taking off from Tehran on a flight to Gorgan. Shortly before the tower lost contact with the plane the pilot reported bad weather and said he was thinking of returning to Tehran. Transport Minister of Iran, Rahman Dadman, 45, killed.
## 4315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shortly after taking off the plane veered to the right and crashed into a field. Engine failure.
## 4316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed while en route.
## 4317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft returned to Sentani Airport after experiencing engine trouble, skidded off the runway and struck a fence.
## 4318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed and exploded in flames in Siberian woodlands near the village of Burdakovka, about 21 miles from Irkutsk. The aircraft crashed during the third turn in a landing approach to Irkutsk, an intermediate stop for refueling. The first officer was flying the plane, when at 2,600 ft., an audible alarm sounded indicating a wide angle of attack. Eleven seconds later the aircraft swung around 180 degrees and entered a flat spin. The captain ordered the engines at full throttle but it was too late and 22 seconds later the plane hit the ground, belly first, broke up and burned. Incorrect actions of the crew. Due to poor communication between pilots, they put in the wrong parameters while landing causing the plane to descend at the wrong angle. As a result, the plane stalled and entered a spin and crashed.
## 4319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After several delays in taking off, the helicopter crashed into the sea, just off shore, after striking a electric transmission tower. The accident took place in heavy monsoon rains, poor visibility and high winds. The pilot stated he lost control of the helicopter when it was hit by a sudden gust of wind.
## 4320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The aircraft crashed and burned moments after taking off from General Bartholomew Salóm Airport during a National Guard demonstration. The right engine appeared to have failed at a critical stage in the takeoff. There were 8 civilians and 5 military personnel board.
## 4321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane was taking off from Chkalovsky Airport with a load of construction material and cosmetics. After reaching a height of 150 feet, the plane the crashed and burned 1,600 feet past the end of the runway.  The plane was overloaded by 15 tones.
## 4322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane crashed into a hill and broke up. Crew did not follow standard operating procedures. Crew fatigue.
## 4323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The sightseeing helicopter crashed and burned about 3,700 feet up the 5,600-foot Grand Wash Cliffs just outside the boundaries of Grand Canyon National Park. The aircraft was returning to McCarran International Airport where it had originated. Besides the pilot, all victims, including the one survivor, were members of the same family. The pilot's decision to maneuver the helicopter in a flight regime and in a high density altitude environment which significantly decreased the helicopter's performance capabilities, resulting in a high rate of descent from which recovery was not possible. Factors contributing to the accident were high density altitude and the pilot's decision to maneuver the helicopter in proximity to precipitous terrain, which effectively limited remedial options available.
## 4324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After an engine failed the crew declared an emergency and elected to divert to Bukavu but crashed 10 km short of the airport.
## 4325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shortly after taking off the cargo plane crashed into a wooded area about one-half mile from the runway. The pilot's failure to maintain a proper climb rate while taking off at night, which was a result of spatial disorientation. Factors in the accident were the low visibility and cloud conditions, and the dark night.
## 4326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The crew reported that they had a loss of fuel and were going to have to divert to Lajes AFB. Shortly thereafter, they said that they only had five minutes of fuel and probably would not reach Lajes. The Airbus 330, without engine power, glided for almost 20 minutes, descending from for more than 30,000 ft. before landing safely at Lajes Airport. Several tires blew out causing a fire which was quickly extinguished by emergency crews.  Eleven passengers were slightly injured. The leak was caused by a damaged fuel feed pipe that was caused by interference from the aft hydraulic pump. Mechanics did not completely follow a Rolls-Royce service bulletin. In addition, software mistakenly identified the  fuel leak as a fuel imbalance, prompting the crew to respond erroneously to the situation. The official report stated the cause was the pilots responded incorrectly to the fuel leak.  The pilots acted from memory rather than utilizing a checklist, so they never saw a "Caution" note in the Fuel Imbalance checklist that might have caused them to consider that the real problem was not an imbalance but a fuel leak.
## 4327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crash-landed on a highway near Ruiz Picasso Airport in Málaga. While on final approach, the pilot reported failure of the plane's left engine forcing the crew to make an emergency landing.  The plane crashed 1,300 ft. short of the runway. The pilot later died of his injuries.
## 4328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft was hijacked after taking off from Dulles International Airport. The hijackers took control of the aircraft and deliberately crashed it into the Pentagon. It was one of four planes that were hijacked the same day.
## 4329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft was hijacked shortly after it left Logan International Airport in Boston. The hijackers took control of the aircraft and deliberately crashed it into the north tower of the World Trade Center between the 94th and 99th floors at approximately 450 mph.  After 102 minutes, the building collapsed. It was one of four planes that were hijacked the same day.
## 4330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft was hijacked shortly after it left Logan International Airport in Boston. The hijackers took control of the aircraft and deliberately crashed it into the south tower of the World Trade Center between the 78th and 84th floors at approximately 550 mph. After 56 minutes, the building collapsed. It was one of four planes that were hijacked the same day.
## 4331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft was hijacked after taking off from Newark International Airport. The hijackers took control of the aircraft and turned the plane towards Washington D.C.  A struggle ensued between the passengers and hijackers after which the plane crashed at a high rate of speed into a field in the Pennsylvania countryside. It was one of four planes that were hijacked the same day.
## 4332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed 4.4 miles from Kura Airport shortly after a normal takeoff. The plane was flying at about 1,500 feet when it began turning onto a course requested by the air traffic controller. It did not stop turning and suddenly plunged to the ground.
## 4333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While the aircraft was over Belo Horizonte, the cabin depressurized, causing the death of one passenger. The aircraft made an emergency landing at Cofins. Three of the other 77 passengers aboard suffered minor injuries. Pressurization was lost at an altitude of  33,000 feet when the right engine disintegrated, causing pieces of the engine to break two cabin windows.
## 4334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft was taking off from Guatemala's Aurora Airport when it lost power in one of it's engines and crashed to the ground.
## 4335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft exploded in mid-air at 36,000 ft. while  en route over the Black Sea. The plane then nose-dived crashing into the water. The airliner was brought down accidentally by a Ukrainian surface-to-air missile, fired during military exercises.
## 4336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The seaplane crashed into Mollet Lake while attempting to land. The seaplane stalled at an altitude that did not allow the pilot time to recover from the stall. The stall occurred in circumstances conducive to illusions created by drift.
## 4337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The MD-87 aircraft was taking off from Linate Airport in fog and poor visibility when it struck a German Cessna Citation II business jet. The MD-87 rotated for takeoff and did make it into the air for 9 seconds, but was too damaged to sustain flight. The plane then swerved off the runway and  collided with the airport's baggage handling building, bursting into flames. The Cessna,  which was about to take off for Paris, entered the active runway by mistake, after  having been told by the tower to enter a different taxiway and hold short of the runway. One hundred four passengers and 6 crew on the MD-87 and  2 passengers and 2 crew on the Citation were killed along with 4 on the ground. The MD-87 was named Lage Viking.  Caused largely by human error and poorly followed safety procedures and improper terminology used by the tower. Communication between the aircraft and the tower had been "in English and Italian," as opposed to aviation standards that only English be spoken. In addition, despite the poor visibility and inadequately marked airport landmarks, the control tower operators failed to ask the Cessna to read back his instructions to make sure they were understood. There was no ground radar, runway motion sensors were turned off and it took 20 minutes before anyone realized the two planes had collided.
## 4338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane was en-route from Barcelona, Spain to Oran, Algeria, 80 miles off the coast of Valencia, Spain when it informed Valencia ATC it was going to change course in order to avoid bad weather. There was no further contact with the aircraft. Debris was sighted two days later on the water. Electrical power was presumably lost following a lightning strike. Control was lost and the airplane crashed into the sea.
## 4339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shortly after taking off from Dillingham, the aircraft's wing dipped, the nose pitched up, the plane became inverted and crashed to the ground. The weather was clear and windy at the time of the accident. An in-flight loss of control resulting from upper surface ice contamination that the pilot-in-command failed to detect during his preflight inspection of the airplane. Contributing to the accident was the lack of a preflight inspection requirement for CE-208 pilots to examine at close range the upper surface of the wing for ice contamination when ground icing conditions exist.
## 4340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The air ambulance was flown into terrain during an overshoot because the required climb angle was not set and maintained to ensure a positive rate of climb. During the go-around, conditions were present for somatogravic illusion, which most likely led to the captain losing situational awareness.
## 4341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The helicopter was flying very low because the pilot was not instrument rated. The skid hit the water followed by the tail rotor and the helicopter crashed. The pilot's failure to maintain clearance from the surface of an open body of water while intentionally attempting to maintain a very low altitude while in cruise flight. Factors include falling snow, low ceilings, whiteout/greyout conditions, and flat/glassy water.
## 4342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Three minutes after taking off and while in a climbing left turn, at 2,800 ft., parts of the plane, including the vertical stabilizer and rudder, fell from the aircraft. The crew soon lost control of the plane which nose dived and crashed into a residential neighborhood. After flying into the wake turbulence of two aircraft about two minutes into the flight, investigators believe a series of quick rudder swings by the copilot whipped the tail so severely that the fin broke off. The National Transportation Safety Board has found that pilot error was the probable cause. Sharply criticizing American Airlines Advanced Aircraft Maneuvering Program, the Board said that American Airlines' pilot training included a simulator exercise which could have caused the first officer to have an unrealistic and exaggerated view of the effects of wake turbulence, erroneously associate wake turbulence encounters with the need for aggressive roll upset recovery techniques and develop control strategies that would produce a much different -- and potentially surprising and confusing -- response if performed during flight. In addition, because of its high sensitivity, the Airbus A-300-600 rudder control system is susceptible to potentially hazardous rudder pedal inputs at higher airspeed.
## 4343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Residents heard a loud noise and saw flames in the night sky as the aircraft clipped treetops and summer homes before crashing into a snowy forest. Wreckage was spread over a 1.5 mile area. Serious maintenance violations and operational procedures were discovered during the investigation of the accident.
## 4344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane was not able to gain altitude, veered off the runway and crashed. The (undetermined) pilot-at-the-controls' early, and over rotation of the airplane's nose during the takeoff attempt, and his failure to maintain directional control. Also causal, was the captain's inadequate remedial action, both during the takeoff attempt and after the airplane departed the runway.
## 4345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed into a marshy forested area about 2 kilometer short of its destination at Kardla Airport. Several errors by the pilot.
## 4346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft was flying through a mix of rain and snow on final approach, when it crashed in a wooded area, 5.5 miles from Zurich Airport where it was scheduled to land on Runway 28.  At 22.03 the aircraft was descending to 4000 ft. on final approach.  At 22.05 the captain reported reaching the minimum descent altitude and stated he could see the ground. Shortly after, the radio altimeter reported 500 ft. agl, followed by a "minimum" warning. A go-around was ordered, but it was too late and the aircraft struck trees and crashed. American pop singer, Melanie Thornton, 34, killed. Maria Serano Serano and Nathaly van het Ende both 27, and members of the pop-music trio, Passion Fruit, also killed. The pilot had been working more than 13 hours when the accident took place and had also exceeded maximum duty several times in the days preceding the crash. A controlled flight into terrain caused by the captain deliberately descending below the minimum descent altitude without having the required visual contact with either the approach lights or the runway and the copilot making no attempt to prevent the continuation of the flight below the minimum descent altitude. The report revealed that the pilot had failed to perform correct navigation and landing procedures before, but no action had been taken by the airline.  The range of hills the plane crashed into was not marked in the Jeppesen approach chart used by the crew, despite the hilly terrain the approach to runway 28 was not equipped with a minimum safe altitude warning (MSAW) system, which triggers an alarm if a minimum safe altitude is violated, and the airport's means of determining visibility were inadequate for runway 28 and the visual minimums at the time of the accident were actually inappropriate for using the standard approach to runway 28.
## 4347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane contacted the ground 700 meters short of the runway, broke in two and burned.
## 4348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A fire broke out aboard the aircraft while en route at FL290. The crew was preparing for an emergency landing when two explosions tore apart the plane causing it to crash.
## 4349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane may have been shot down by Allied Democratic Forces rebels.
## 4350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft crashed into El Silencio de El manzanillo mountain at 7,800 ft., 3 minutes after taking off in heavy rain and poor visibility from Medellin Airport.
## 4351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed into the Weser River shortly after taking off from Bremerhaven Airport. Three persons were pulled from the river, two of whom died shortly thereafter as a result of their injuries.
## 4352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  After taking off, banked to the left, wing contacted ground, a fire erupted and the aircraft broke up. Failure of the crew to de-ice the wings before takeoff. Possible impairment of crew performance by the combined effects of a non-prescription drug, jet-lag and fatigue were also considered factors.
## 4353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on approach the aircraft struck a hill a few hundred feet short of runway in poor weather.
## 4354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While descending, the cargo plane struck Mount Santa Maria Vieja, 35 km from the airport in fog and poor visibility.
## 4355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   During a landing attempt at Chilpancingo, the aircraft left the runway, struck a concrete perimeter wall, overturned and burned. The government plane belonged to the General Office of the judge advocate.
## 4356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The aircraft suffered a flame out of both engines in torrential rains while on approach  to Yogyakarta. The crew made an emergency landing in the Bengawan Solo River, in shallow water. The plane circled several times before diving in a steep course towards the river. The plane's left wing struck a river bank before it plunged into the water. The reason the crew flew into extreme weather was the heavy rain and hail was shadowed on the radar and blocked from radar view. In addition, the airplane had a partially failed battery which was exhausted by two attempts to restart the engines, producing a total electrical failure. A flight attendant drowned in the shallow water when she jumped from the plane.
## 4357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed into del cerro El Tigre mountain in the jungles of the Amazon at an elevation of 14,700 ft.  The 35 minute flight was transporting oil workers to a remote oil field.
## 4358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed 2km short of the runway  from the Luena Airport while attempting to land in heavy rain.
## 4359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The airliner crashed into the fogbound 15,721 ft. Nevado de Cumbal volcano, in the Andes mountains, near the Ecuador / Colombian border. Air traffic control lost contact with the plane as it circled into Colombian territory to maneuver around snow capped mountain peaks and return to the Ecuadorian border city of Tulcán. The pilot's decision to initiate and continue the flight towards Tulcán Airport while below minimum meteorological conditions established in the company's standard operating procedure.  Inadequate navigation and operation of the aircraft by the pilot in command consistent with entering the holding pattern at the Tulcán NDB with a velocity of 230 knots indicated and with a bank angle of 15 degrees, exceeding the maximum limit of 180 knots stipulated throughout the procedure, and using a bank angle inferior to the recommended 25 to 30 degrees, thereby departing holding pattern obstacle protection, leading to a collision against the Cumbal Volcano.
## 4360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed against the side of a mountain in heavy fog in the Sefid Kouh mountain range while on approach to Khorramabad. The plane was totally destroyed and scattered in small pieces across the mountain. Pilot error.
## 4361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed while attempting to make an emergency landing.
## 4362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane was making an emergency landing after two previous attempts in heavy snow and strong winds when it clipped treetops and crashed into a field, approximately 1.5km short of the runway.
## 4363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A helicopter ferrying U.S. troops in a counter-terrorism exercise, crashed into the sea, 30 minutes before its scheduled arrival at Mactan Island. The helicopter was flying in tandem with another U.S. Army Chinook when it crashed.
## 4364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While en route the cargo plane impacted the side of a mountain at an altitude of 6,167 ft.  Pilot error. The crew did not conform to the VFR that required a track change to maintain the required flight parameters and/or a diversion to a suitable alternate airport.
## 4365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While en-route, 35 minutes into the flight, the bi-plane crashed near Santa Clara. The plane was seen spinning out of control before it hit the ground. A strong gust of wind, possibly a small tornado, tore off the top part of the left wing.
## 4366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed into the ocean while on approach to Runway 27.
## 4367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane crashed into lights near the runway threshold while attempting to land on Runway 24L.
## 4368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed onto a mountain, in fog, wind and rain while attempting to land at Kimhae Airport. A strong southerly wind required the aircraft to make a turn and approach the runway from the north. The aircraft crashed near the peak of Mt. Mulbong, approximately 3 mile north of the runway. The plane bounced three times before hitting the ground and exploding. More than 1,000 trees were uprooted by the impact. The plane was off course when the crew turned on final. The flight crew performed the circling approach, not being aware of the weather minima of wide-body aircraft (B767-200) for landing, and in the approach briefing, did not include the missed approach, etc., among the items specified in Air China’s operations and training manuals.  The flight crew exercised poor crew resource management and lost situational awareness during the circling approach to runway 18R, which led them to fly outside of the circling approach area, delaying the base turn, contrary to the captain’s intention to make a timely base turn. The flight crew did not execute a missed approach when they lost sight of the runway during the circling approach to runway 18R, which led them to strike high terrain (mountain) near the airport. When the first officer advised the captain to ascend again for landing, about 5 seconds before impact, the captain did not react, nor did the first officer initiate the missed approach himself.
## 4369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane was being used by the Penitentiary and Prison National Institute, Inpec, to fly prisoners from Medellín to Popayán. The aircraft had just finished flying 50 prisoners to Popayán when it took off from Popayán to pick up more prisoners. The aircraft nosed into the ground shortly after becoming airborne.
## 4370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter struck power lines and crashed in near-zero visibility. Governor of Krasnoyarsk territory, Alexander Lebed, 52, was among those killed. "Power line, power line!" were the last words of the pilot. Thick fog concealing a frost-covered power line led to the helicopter crash.
## 4371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed into houses, two mosques and a school in the densely populated neighborhood of Gwammaja, approximately  1.2 miles from Kano International Airport, shortly after taking off. There were reports of an engine failure and  fire during the takeoff. Prior to the fatal crash, the aircraft involved in the incident had been grounded on two previous occasions to perform engine maintenance.
## 4372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The jet airliner crashed into a hillside, 4 miles from the Tunis-Carthage airport, as the pilot attempted to make a landing. The plane's landing gear had failed to open during the approach into Tunis-Carthage airport and the pilot had made another circuit before attempting a fresh landing when the plane crashed in heavy rain and high winds. The accident was attributed to the rough weather conditions and the pilot's inability to deal with the situation.
## 4373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The MD-82 crashed into the Dalian Bay, 12 miles east of Dalian airport. The pilot reported a fire aboard the aircraft and the cabin lights were out prior to the plane impacting the water.  The accident was caused by an act of sabotage by a passenger who lit a fire  using gasoline in the cabin. He had bought multiple insurance policies before boarding the flight.
## 4374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed approximately 12 miles from Calabar while attempting to land. All passengers departed at Port Harcourt and only a crew of 5 was aboard. The premature departure of the plane from the normal minimum safe altitude of 2,500 ft. without air traffic controller's clearance until it flew into the terrain. Other contributing factors were the emergence of electrical problem on the aircraft at the commencement of the approach which might have distracted the  pilot  and unfavorable weather conditions of low ceiling and thunderstorms which impaired visibility at the critical time of descent.
## 4375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The flight crashed into the sea, 31 miles NE of the Penghu (Pescadore) Islands in the Taiwan Strait. The plane disappeared from radar while flying at 35,000 ft. approximately 20 minutes after taking off from Chiang Kai Shek Airport. There was no distress call and the weather was good at the time. Military radar revealed the aircraft  disintegrated in midair, breaking into four pieces. Only 175 of 225 bodies were recovered. The carrier  failed to conduct a preventive anti-rust operation in a timely manner every four years. Damage from a 1980 tailstrike was not properly repaired and fatigue cracks formed, which eventually led to a structural failure.
## 4376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed in thunderstorms and heavy rain while en route.
## 4377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The private postal service plane crashed into the Outeniqua mountains, near Outeniqua Pass, after a missed approach to George Airport. The aircraft crashed as it circled for another landing attempting poor weather conditions. Former South African cricket captain, Hansie Cronje, 32, the only passenger aboard, was killed along with the crew. Pilot error. The pilot broke with procedure when trying to land the small cargo plane and failed to heed warnings that the aircraft was too near the ground.
## 4378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The helicopter crashed in poor weather while on its way to a remote town for the symbolic surrender of arms held by Unita rebels. Two top ranking generals were among those killed in the crash.
## 4379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While participating in a night mission to remove U.S. Special Forces troops the plane crashed 2.5 miles from the airstrip. Overloaded. The excessive cargo weight loaded on the aircraft at the Band E Sardeh Dam landing zone.
## 4380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The airliner and cargo plane collided over southern Germany at 35,400 ft. Debris was spread across a 20 mile radius. Fifty-two children on a beach holiday were among the 69 aboard the Tupolev. The Tupolev pilot received contradictory instructions. The collision avoidance warning system (TCAS) told the pilot to ascend followed by an order from the Swiss air traffic controller to descend one second later. The Russian plane did not immediately respond to the tower's order to descend, so he repeated the command 14 seconds later. Thirty seconds later the two planes collided. The Tupolev's TCAS was telling the pilots to ascend. The Boeing's TCAS was telling the pilots to descend. The Swiss air traffic controller was telling the Tupolev's pilots to descend. The air traffic controller that guided the planes had no way of knowing the Russian pilot was receiving contradictory instruction from his cockpit TCAS unless told so by the pilot. Russian aviation officials said the pilot correctly gave precedence to the control tower, but Western aviation experts said pilots are trained to give precedence to the cockpit warning. In addition, the controller was left alone on duty while his partner went on a break and was preoccupied with another aircraft. This was accepted policy at Skyguide, the Swiss air control company. In addition, maintenance crews, working on the computer system, limited the controller's information he was receiving including conflict alert warnings. Sadly, one-and-a-half years later, the controller, Peter Nielsen, was stabbed to death by a Russian man who had lost his wife and two children in the accident.
## 4381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed 2 miles short of the runway into the Guitangola neighborhood of Bangui. The plane was bound for Brazzaville but diverted to Bangui because of mechanical problems. Two survived but succumbed to their injuries.
## 4382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Air traffic control lost contact with the aircraft 15 minutes before it was scheduled to land. The wreckage was found atop a 5,300 ft. mountain, surrounded by thick jungle, 5 miles from its destination.
## 4383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The helicopter was ferrying workers from a gas rig to a oil platform in the North Sea when it crashed into the water at high speed, 28 miles northeast of Cromer. The helicopter was at a height of 320 ft. flying in a south-easterly heading when one of the rotor blades failed.  The accident was caused by a broken rotor blade, caused by fatigue, brought about by a lightning strike three years earlier.
## 4384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft hit a tree and crashed into a hill, 6 miles north of Surkhet in poor weather conditions. Wreckage was strewn over a wide area.
## 4385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Su-76 was performing aerobatics when it crashed into crowd of spectators at an air show at Skniliv Airport in the Ukraine. The aircraft had just performed a steep turn when it appeared to tumble and enter a steep dive from which it failed to recover. The two pilots parachuted to safety.  Pilot error. The pilots ignored their flight plans and performed untried and complicated maneuvers which led to a loss of control. Both received a jail sentence of 14 years.
## 4386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A Russian passenger airliner on a training flight crashed shortly after takeoff from Moscow's Sheremetyevo Airport. After reaching an altitude of about 600 ft., the plane banked hard left, hit the ground and exploded. Sixteen of 18 crewmembers aboard were killed. Two flight attendants survived. Investigation revealed that the stabilizer spontaneously shifted to the full down position two seconds after takeoff. Six seconds after the shift, the captain tried to compensate by thrusting the control stick forward as far as possible, but was unable to regain control of the aircraft.
## 4387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The military plane crashed into a mountain top, approximately 10 miles south of San Juan, Puerto Rico, in rough terrain, while performing low-level training exercises. Witnesses reported the aircraft was flying low and hit some trees before crashing into a ravine, bursting into flames and disintegrating. There was rain and fog at the time of the accident.
## 4388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The military plane developed engine trouble while en route, tried to return to the airport but crashed into a paddy field and was destroyed.
## 4389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Russian transport helicopter, carrying troops, crashed at Russian military headquarter near the capital city of Grozny. Reporting an engine fire, the pilot attempted to make an emergency landing when the helicopter fell from a height of 660 feet and missed the tarmac by 990 feet, crashed and caught fire.  The helicopter was shot down by Chechen guerillas with a shoulder-launched heat-seeking anti-aircraft missile. The missile destroyed the helicopter's right engine and starting a fire on board. The left engine stopped at the same time. The entire hydraulic control system, including the system used to open the rear door was not working, as burning fuel gushed into the cabin trapping people inside. This is the worst helicopter disaster in aviation history.
## 4390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed into a hill 3 miles southeast of Pokhara Airport while on approach. The plane broke into several pieces and bodies and wreckage was scattered over a small area. There was poor weather in the area at the time of the accident. Controlled flight into terrain.
## 4391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The twin prop plane crashed into a cliff in dense fog as it prepared to land at Ayan. ATC lost contact with the aircraft 12 minutes before it was scheduled to land.  The crew made four attempts to land before disappearing off radar. Crew error.
## 4392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed about 1 mile short of the runway in heavy rain and strong winds while attempting to land at Rio Branco Airport. Congressman Ildefonso Cordeiro was among the victims.
## 4393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   One hour after the takeoff , the the plane disappeared of  Curitiba  ATC. The wreckage was found on a farm, around a crater. Unknown cause.
## 4394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The hunting charter crashed inverted in a forest while attempting to land at Agunish River. Because of the geographic and weather conditions, the pilot probably had trouble judging his horizontal and vertical distance with respect to the mountain, and the aircraft crashed.
## 4395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The two Navy aircraft flying in formation in a military flyby, crashed, after their wings collided. One plane crashed into a house under construction while the other crashed onto a field next to a highway. Six crew members on each plane were killed along with 5 on the ground.
## 4396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane crashed 6 miles short of the runway at Findel Airport while attempting to land in heavy fog.  Crew error caused by aborting a "go-around" after being informed by tower of an increase in visibility. A series of non-standard actions resulted in severe loss of airspeed, due to the propeller blades being accidentally switched into reverse position, and subsequent impact short of the runway. Contributing to the accident were errors concerning the implementation of a security recommendation which had been made by the manufacturer to Fokker 50 operators. Also this warning was not adequately communicated to the flight crews of Luxair.
## 4397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Two minutes after taking off, the aircraft went down in a swamp, about 1 mile from Juwata airport. The pilot radioed he was returning to the airport because of an engine failure.
## 4398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on a positioning flight the plane entered an uncontrolled descent and crashed. The pilot's inadvertent flight into mountain wave weather conditions while IMC, resulting in a loss of aircraft control.
## 4399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane experienced failure of the left engine shortly after taking off from Ninoy Aquino airport. The pilot declared and emergency and the aircraft ditched into Manila Bay and breaking up about one-half mile offshore. Fuel starvation. Failure of the pilot and co-pilot to check the fuel valve and failure to observe safety standards and measures.  Poor management and maintenance procedures.
## 4400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed after developing engine trouble while flying from one airstrip to another in the Masai Mara National Reserve. The copilot was the only fatality.
## 4401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft flew into the side of a cliff during it's inaugural flight from Gohu Airstrip in the Finisterre Mountains.
## 4402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While attempting to land, the cargo plane struck trees and crashed into a field. The pilot's failure to maintain control of the airplane during the ILS approach. Factors associated with the accident were the low ceilings, high winds, crosswind, and wind shear conditions that existed.
## 4403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While en route the stall warning sounded and the stick shaker activated. The crew of the cargo plane disconnected the autopilot and tried to gain control of the plane. The plane began to descend from FL170 until it impacted the ocean.
## 4404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While descending to land at Isfanan, the Ukrainian passenger plane crashed in a mountainous area  70 km from Isfanan after losing contact with ground controllers. Improper use of the Global Positioning System by the pilot. The passengers were aerospace scientists and executives.
## 4405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane diverted from it's original route to make an emergency landing at Curitiba after experiencing engine trouble and crashed 3.5km short of the runway.
## 4406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft was in a holding pattern due to bad weather at Anjouan. After weather condtions improved, clearance was given for a final approach. The plane was struck by lightning. A go-around was attempted, but the airplane lost its artificial horizons and gyro compasses as a result of the lightning strike. Control was lost and the plane crashed.
## 4407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The commuter plane was not able to maintain altitude after taking off from Charlotte-Douglas International Airport and crashed into the side of a hanger and burst into flames. The weather was clear, cold and windy, with greater than 10 miles visibility at the time of the accident. The airplane's loss of pitch control during takeoff was the result of incorrect rigging of the elevator control system compounded by the airplane's center of gravity, which was substantially aft of the certified aft limit. Contributing to the cause of the accident was: (1) Air Midwest's lack of oversight of the work being performed at the Huntington, West Virginia, maintenance station, (2) Air Midwest's maintenance procedures and documentation, (3) Air Midwest's weight and balance program at the time of the accident, (4) the Raytheon Aerospace quality assurance inspector's failure to detect the incorrect rigging of the elevator system, (5) the FAA's average weight assumptions in its weight and balance program guidance at the time of the accident and (6) the FAA's lack of oversight of Air Midwest's maintenance program and its weight and balance program.
## 4408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft crashed and broke-up 130 feet short of the runway threshold while attempting to land in heavy fog.  Visibility was less than 200 feet. The pilots insisted on landing at the MDA of 2,800 ft despite insufficient visual reference to the runway and its environment. Bad weather conditions also contributed to the cause of the accident.
## 4409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into 11,500 ft. Coloque mountain at an altitude of 7,550 ft., about 30 minutes after leaving Chiclayo and three minutes from landing at Chachapoyas. Controlled flight into terrain. Crew did not follow standard procedures. Lack of communication between the crew.
## 4410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                On a positioning flight the plane, over Gabon, had problems with its navigation equipment, circled the airport 4 times before crashing into a wooded hillside.
## 4411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane failed to gain altitude during takeoff, hit power lines and crashed inverted into a house. Kenyan Labor Minister, Ahmed Khalif and the two pilots were killed. The plane was grossly overloaded. The plane which weighed 16 tons, was taking off from an airstrip designed for aircraft weighing less than 5.7 tons.
## 4412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane struck ground 2 km short of the runway in heavy fog. The flight crew did not comply with the published non-precision instrument approach. The flight crew conducted user-defined non-precision instrument approaches to Runway 14 at Baucau during flight in instrument meteorological conditions. The pilot in command permitted the aircraft to descend below the MDA.
## 4413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed in the Atlas mountain range at 9,900 feet while en route.
## 4414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shortly after takeoff, the aircraft stalled, crashed and burst into flames in a wooded area. Engine failure.
## 4415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was destroyed during a collision with trees and terrain in Ferguson, Kentucky, while on an instrument approach to Somerset-Pulaski County Airport. The pilot's failure to follow the instrument approach procedure, which resulted in an early descent into trees and terrain. Factors included the low ceiling and the night lighting conditions.
## 4416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed into an 11,500 ft.  mountain in poor weather, about 20 miles from its destination of Kerman. Besides the 18 crew members, the victims included Iran's Revolutionary Guard.
## 4417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane crashed into a mountainside in a remote region near the town of Kohat, about 250 kilometers northwest of Islamabad. Among those killed was Air Force chief Mushaf Ali Mir.  Pilot error. Pilot's premature descent below minima which resulted in the aircraft hitting a cloud covered ridge at 3,000 feet above sea level.
## 4418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While carrying a group of parachute jumpers, the aircraft began to disintegrate in mid-air while flying at an altitude of about 10,000 ft. The tail and left wing separated from the plane before it crashed into an area of deep snow. Many of the skydivers were able to jump out of the plane to safely before it crashed. Crew error.
## 4419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The starboard engine caught fire and failed while the plane was attempting to take off. The aircraft continued about 2,000 ft. past the end of the runway and crashed. The accident was caused by the loss of an engine during a critical phase of flight, the non-retraction of the landing gear after the engine failure, and the Captain, the pilot not flying, taking over control of the airplane before having clearly identified the problem.
## 4420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into a 7,000 ft. mountain three minutes after after taking off.
## 4421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft, owned by a flying club as a rental airplane, was destroyed following an uncontrolled descent into terrain about 2 miles west of New Vienna, Iowa. The improper planning/decision by the pilot to fly into forecast icing  conditions with an airplane not equipped with a certified deicing system. Also casual to the accident was the continued flight in known icing conditions and the pilot not performing flight to an alternate destination. A contributing factor was the pilot's lack of qualification as an air carrier.
## 4422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A large number of military personnel and their family members were sucked out of the plane after the aircraft's back ramp accidentally dropped open in flight. The ramp opened as the pressure system broke down. The crew managed to control the plane and turn it around and land at Kinshasa airport following the accident, which took place 45 minutes into the flight. There is a wide discrepancy in the number killed ranging from 0 to 250.
## 4423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane struck the side of a steep mountain in heavy fog on its third attempt to land at Trabzon to refuel. The pilot reported not being able to see the runway on the first two attempts.  The aircraft charter was carrying Spanish peacekeeping forces back to Zaragoza. Crew error.
## 4424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The airplane was destroyed during a collision with snow-covered glacial terrain following a loss of control during cruise flight, about 40 miles north-northwest of Talkeetna, Alaska. The airplane was being operated as a visual flight rules. The pilot's failure to maintain adequate airspeed which resulted in an inadvertent stall, an uncontrolled descent and in-flight collision with terrain. A factor associated with the accident was rising terrain
## 4425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shortly after taking off the jet nosed into the ground. Malfunction of the trim tab system.
## 4426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Forty miles into it flight the aircraft crashed into the Amazon forest. The aircraft was not certified for IFR flight. Heavy cloud cover existed along the flight route.
## 4427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed short of the runway in fog while on approach to Christchurch Airport. The plane crashed two kilometers from the airport, hitting a farm hedge and sliding across a paddock before smashing into a row of trees.
## 4428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After takeoff, the pilot reported low pressure of oil  in an engine and  decided to return to the airport. The plane made a 270 degree turn in the final approach, stalled  and crashed to the ground.
## 4429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter impacted a lava field on the Pulama Pali in the Volcanoes National Park, Volcano, Hawaii.  A loss of engine power due to the fatigue fracture and separation of the compressor coupling adapter. The fatigue fracture was initiated by fretting on the pilot diameter due to both the inadequate design of the coupling and the coaxial misalignment of the spur adapter gear, compressor-coupling adapter, and compressor impeller during recent engine maintenance where the gearbox was removed and replaced. A factor in the accident was the unsuitable nature of the terrain to make an emergency landing.
## 4430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed onto a road and caught fire 1 km from Brest-Guipavas Airport in France's Brittany region, killing the pilot and injuring three others. There were thunderstorms in the area with 800 meters visibility at the time the accident took place.
## 4431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nose dived into the ground shortly after takeoff near the Shur River.
## 4432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The airlpane is presumed to have collided with the ocean waters of the Cook Inlet, about 7 miles southwest of Anchor Point, Alaska. No wreckage has been located, and the airplane is presumed to be destroyed. A fatally injured passenger was located on July 3, in ocean waters near Anchor Point. An in-flight collision with water for an undetermined reason.
## 4433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Shortly after taking off the air ambulance hit a hill side in the Gamsberg Mountains.
## 4434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The military plane crashed into houses in the Beni Mered neighborhood, west of the Algerian capital, shortly after takeoff from the Boufarik military airport, 25 miles southwest of the capital. Witnesses reported seeing an engine on fire prior to the crash.
## 4435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane crashed on final approach to Belem Airport during a strong  thunderstorm.
## 4436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The helicopter  was landing on the helideck of the ship Toisa Mariner, when the tail rotor collided with the flagpole on the ship. The pilot lost the control and the helicopter crashed into the  sea.
## 4437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane's crew reported technical difficulties (engine failure) 10 minutes after taking off from Port Sudan Airport. The plane crashed into a hillside, 3 miles from the airport as the crew tried to return and make emergency landing. A three-year-old boy was the only survivor.
## 4438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Crashed atop a hill in Chorro del Indio National Park during a descent to San Cristobal.
## 4439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Twenty miles west of its destination, at an altitude of 3,500 ft., the right engine began coming apart and throwing parts out of the cowling. Although the right engine was feathered, flaps and gear retracted and full power applied t the left engine, the plane could not maintain altitude and the pilot ditched the aircraft 15 miles from its destination. All passengers and the pilot were able to exit from the plane before it sank but 2 passengers subsequently died. The in-flight failure of the right engine and the pilot's failure to adequately manage the airplane's performance after the engine failed. The right engine failure resulted for inadequate maintenance that was performed by Air Sunshine's maintenance personnel during undocumented maintenance. Contributing to the passenger fatalities was the pilot's failure to provide an emergency briefing after the right engine failed.
## 4440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed into the eastern slopes of Mount Kenya at an altitude of 16,355 feet as it attempted to fly around Lenana Peak and land in Samburu National Park. Ten American tourists and 2 pilots were killed when the plane hit the mountain 450 feet below the snow covered peak and disintegrated upon impact. Poor visibility may have been a factor.
## 4441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The helilcopter collided with terrain while maneuvering in the Waialeale Crater, Kauai, Hawaii. The helicopter impacted steep upsloping terrain on the northwestern inside crater wall and was destroyed. The pilot's failure to maintain adequate terrain clearance/altitude while descending over mountainous terrain, and his continued flight into adverse weather. Factors contributing to the accident were clouds and a low ceiling.
## 4442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            During a positioning flight the jet crashed into several houses before ending up in a river. The first officer's inadvertent retraction of the flaps during the low altitude maneuvering, which resulted in the inadvertent stall and subsequent in-flight collision with a residential home. Factors in the accident were the captain's decision to perform a low altitude maneuver using excessive bank angle, the flight crews inadequate coordination, and low clouds surrounding the airport.
## 4443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The pilot decided to divert to Tocomita after experiencing engine problems but crashed into trees 100 meters short of the runway.
## 4444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed into the ocean 30.5 miles southwest of Barrow, Alaska. While some wreckage was recovered the pilot and passenger were never recovered.
## 4445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter was flying at a 13-meter height when the pilot pulled up its nose in an attempt to avoid a close obstacle. The maneuver caused the helicopter's rotor blades to swing back, slicing its tail, causing the crash. Sakhalin Governor, Igor Farkhutdinov, was among the casualties.
## 4446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed shortly after taking off from Cap Haitien Airport. Witnesses reported seeing smoke coming out of the back of the aircraft. The plane then nose dived into a sugarcane field and exploded.
## 4447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Shortly after taking off the pilot declared an emergency but the aircraft crashed into Nantucket Sound before he could land. The improper replacement of the forward elevator trim cable, and subsequent inadequate functional check of the maintenance performed, which resulted in a reversal of the elevator trim system and a loss of control in-flight. Factors were the flightcrew's failure to follow the checklist procedures, and the aircraft manufacturer's erroneous depiction of the elevator trim drum in the maintenance manual.
## 4448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft crashed ten kilometers northwest of Summer Beaver one hour after leaving Pickle Lake Airport. Thunderstorm activity was reported along the route.
## 4449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while en route
## 4450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After touching down the aircraft did not brake correctly and overran the runway, crashed into a cemetery and burst into flames. The pilot's misjudged distance and speed during the approach to landing, and his failure to obtain the proper touchdown point resulting in an overrun. A contributing factor was the pilot's failure to abort the landing.
## 4451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sightseeing helicopter, headed for the bottom of the Grand Canyon, hit the face of a cliff and crashed in rugged terrain killing all aboard. Tourists were supposed to board a pontoon boat when the accident occurred 2/3 of the way down the canyon. The pilot's disregard of safe flying procedures and misjudgment of the helicopter's proximity to terrain. Contributing to the accident was the failure of Sundance Helicopters and the FAA to provide adequate surveillance of Sundance's air tour operations in Descent Canyon.
## 4452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Cashed as it approached Gaspé in fog and low ceiling. The pilot descended to the minimum descent altitude (MDA) without being established on the localizer track, thereby placing himself in a precarious situation with respect to the approach and to obstruction clearance. On an instrument approach, the pilot continued his descent below the MDA without having the visual references required to continue the landing, and he was a victim of CFIT (controlled flight into terrain).
## 4453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane disappeared shortly after taking off. Wreckage was found at  2 miles south of Gabriel’s runaway,  in the Amazon forest, 2 days later.  Mechanical failure after the takoff.  Remote area without ATC or radar.
## 4454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While at crusing altitude, one hour after taking off, the aircraft suddenly exploded in midair for unknown reasons.
## 4455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the Caroni River shortly after taking off.
## 4456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Three minutes after taking off from Buenos Aires Airport the crew reported a technical problem and asked to turn around. They were cleared to land on Runway 17 but crashed 30 km southwest of Buenos Aires.
## 4457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While on approach on a positioning flight,  in poor weather, the crew decided to go-around turned left and struck a 1,600 ft. hill.
## 4458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While on approach after an 18 minute holding pattern the cargo plane crashed in a snowstorm on a highway  before coming to rest in Alkali Lake located short of runway. The pilot's failure to maintain aircraft control. Contributing factors include the pilot's failure to divert to an alternate airport, an inadvertent stall, and the snow and icing conditions.
## 4459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The helicopter crashed into a corn field while ferrying troops from Fallujah to Baghdad. The CH-47 helicopter belonged to the 12th Aviation Brigade. The helicopter was shot down by a shoulder-fired missile.
## 4460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The helicopter crashed in the remote outback after colliding with terrain. The helicopter was destroyed in the post crash fire. Visual meteorological conditions prevailed at the time of the accident.
## 4461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The right engine failed one minute after takeoff. The pilot declared an emergency and made a forced landing in a cane field. The plane hit a ridge and slid approximately 100 ft. before coming to rest. A flight attendant and one passenger received fatal injuries.
## 4462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A midair collision occurred between two Black Hawk helicopters. One helicopter was climbing to avoid gunfire when it's rotor struck the other.
## 4463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane struck trees one mile short of the runway. The pilot-in-command's failure to maintain proper glidepath alignment during an ILS approach in poor weather resulting in collision with trees and terrain. Contributing factors were the unreliable status of the primary (NAV 1) ILS receiver (leaving the pilot with only the secondary (NAV 2) ILS receiver), the low ceilings and trees.
## 4464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft suffered a blowout of a tire while taking off for the second time after aborting the first takeoff. The pilot was not able to stop the aircraft and overran the runway and crashed into a small market square
## 4465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into Blackwater Lake shortly after taking off from a remote landing strip.
## 4466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While on approach to , the cargo plane obtained the authorization to descend from 23,000 to 7,000 ft. but  disappeared from radar screen when it struck a mountain. Wreckage was found 5 days later.
## 4467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route and cruising at 24,000 ft. the crew of the cargo plane declared an emergency and tried to return to Chino Airport but the aircraft suddenly nose dived and crashed into the Mojave Desert. A loss of airplane control for undetermined reasons.
## 4468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The B-727 was barely able to climb after taking off from Cotonou Airport. The landing gear struck a building housing electronics, crashed through the barrier fence and broke up along the shoreline adjacent to the airport. The plane was overloaded by 10 tons of cargo which was improperly distributed. The pilot was tried, convicted and sentenced to 20 years in jail by a Lebanese court.
## 4469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shortly after taking off,  the aircraft crashed into the Red Sea, 7 miles south of the airport. There were mostly French tourists on board heading home from the holidays. Possibly, the pilot suffered spatial disorientation and the copilot was unwilling to challenge his more experienced superior, however, no decisive cause was ever found.
## 4470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashed while attempting to land in heavy fog. The aircraft struck a stanchion of approach lights and flipped over, hitting the outside of a wall surrounding the landing area. Crew error.
## 4471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The twin engine aircraft crashed in the southern mountains of Bosnia in poor weather conditions, minutes away from landing at Mostar. Macedonian president, Boris Trajkovski, 47, killed along with 6 aids. Pilot error. The two-man crew misinterpreted crucial flight data in stormy weather.
## 4472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crashed on approach, 2 miles short of the runway while attempting an emergency landing at Sharjah. The plane crashed midway between two residential compounds. The flight data recorder showed that the two engines went into reverse 10 seconds before the accident.
## 4473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shortly after taking off and climbing to about 150 feet, the aircraft pitch down and crashed into a field 4 km from the airport.
## 4474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While on approach and during a turn the pilot suffered a sudden cardiac death. Half way through the turn the airplane began a gradual descent until it impacted the ground. The airplane broke up and burst into flames. The pilot willfully deceived flight medical examiners and suppressed medical information and ingested inappropriate medications for a deteriorating and dangerous health condition.
## 4475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The helicopter impacted terrain while maneuvering in reduced visibility conditions. The pilot's inadvertent encounter with adverse weather, which resulted in the pilot failing to maintain terrain clearance. Contributing factors were the dark night conditions, the pilot's inadequate preflight preparation and planning, and the pressure to complete the mission induced by the pilot as a result of the nature of the EMS mission.
## 4476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed and was destroyed following a loss of control while en route at cruise altitude at 23,000 ft. after encountering unfavorable weather conditions.
## 4477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While on approach the plane hit the ground 300 ft. short of the runway.
## 4478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane crashed just seconds after taking off. It was on a mission of delivering humanitarian aid in Sudan. The cargo shifted after takeoff, causing the cg to change and the plane to stall and crash.
## 4479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While flying in a thunderstorm the plane hit the side of a mountain. One survivor died a few hours after the accident.
## 4480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane dropped off radar at Manaus' Eduardo Gomes International Airport about 10 miles from the runway after it suspended landing procedures to allow another plane carrying sick people on the way to a hospital to land. The plane crashed in dense jungle, making it difficult for rescue crews to reach the wreckage.
## 4481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     About two minutes after takeoff and  while climbing, the aircraft stalled and crashed in a field 10 km from the  airport.
## 4482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed and stalled near the end of the runway while attempting to take off. The aircraft was overloaded.
## 4483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While en route the cargo plane collided with another Let 410 of the same operator. The first aircraft crashed killing both pilots while the second  made a safe landing.
## 4484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on approach to Lukla, the cargo plane crashed into Lamjura Hill in heavy cloud cover. Hazardous behavior and attitudes of the captain such as over-confidence, being care-free, and non-compliance of the regulations caused the accident.
## 4485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft nosedived into the sea about 100 meters off a beach shortly after taking off from Leon Mba international airport. Engine failure forced the plane back towards the airport.
## 4486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The helicopter crashed into a slope of a mountain in a forested area. The helicopter took off from the Sierra Leone capital but never arrived at its destination in the western city of Kailahun.
## 4487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While en route the cargo plane experienced a fire in the right engine which led to a ditching of the plane. The plane sank in 1,000 ft. of water the copilot was rescued but the captain was never found.
## 4488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           During the approach to P-31 oil rig, at an altitude of 500 ft, an alarm sounded for the left turbine after which there was a loud noise. Then the main rotor and right turbine lost rotation and the helicopter crashed in the sea.
## 4489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane diverted to Yongai airport because of bad weather but collided with trees and crashed.The loadmaster was rescued a day later.
## 4490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on approach at night,, the crew reported engine trouble. Shortly after the aircraft crashed on a golf course short of Runway 36R. Fuel starvation resulting from the captain's decision not to follow approved fuel crossfeed procedures. Contributing to the accident were the captain's inadequate preflight planning, his subsequent distraction during the flight, and contributing to the accident was the flightcrew's failure to monitor the fuel gauges and to recognize that the airplane's changing handling characteristics were caused by a fuel imbalance.
## 4491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Air traffic controllers lost contact with the plane as it was returning from the Caribbean island of La Orchila and descending through 9,500 ft. The plane crashed in a mountainous region of northeastern Venezuela in thunderstorms. The plane was carrying a mixture of military and civilian passengers.
## 4492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed 19 minutes after taking off from Moscow. It crashed almost simultaneously with a Volga-Avia Express Tupolov134 which crashed at 22:56. Detonation of an exposive device aboard.
## 4493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed 26 minutes after taking off from Moscow. Witnesses stated they saw the plane explode in midair before crashing. It crashed almost simultaneously with a Sibir Tupolov154 which crashed at 22:59. Detonation of an exposive device aboard.
## 4494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thirty minutes after departure from McGrath, the pilot encountered low visibility due to smoke and fog. After deciding to fly at a lower altitude, the aircraft struck trees and crashed into a forest. Rescue teams found the bodies and the survivors 2 days later. The pilot's inadequate in-flight planning/decision making, his continued VFR flight into instrument meteorological conditions, and his failure to maintain obstacle clearance. Factors contributing to the accident were low ceilings due to smoke, rain, and mist.
## 4495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On final approach the cargo flight crashed in a wooded area 3 km from the runway and was destroyed.
## 4496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter crashed into the Aegean Sea, 5.5 nautical miles off Halkidiki peninsula.  Patriarch Petros VII of Alexandria , Egypt, spiritual leader of orthodox Christians throughout Africa, killed along with other clergy.
## 4497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane hit a heavy rain shower before losing control and crashing into Toruuguero lagoon. The pilot's improper inflight planning which resulted in an inflight encounter with weather (low ceilings and thunderstorms), his loss of aircraft control, and an inflight collision with the ocean during uncontrolled descent.
## 4498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane reported an engine failure and tried to divert to the nearest airport but crashed and burned in a wooded area about 50 km from Kaduqli.
## 4499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane did not gain altitude and ran off the end of the runway and crashed into a forest. The aircraft's lower aft fuselage struck a berm supporting a localizer antenna, resulting in the tail separating from the aircraft, rendering the aircraft uncontrollable. The incorrect V speeds and thrust setting were too low to enable the aircraft to take off safely for the actual weight of the aircraft. The pilots of MKA1602 did not carry out the gross error check in accordance with the company's standard operating procedures (SOPs), and the incorrect take-off performance data were not detected. Crew fatigue.
## 4500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On a night repositioning flight, while en route, the stick shaker activated several times before the plane entered a aerodynamic stall. Almost simultaneously both engines stopped. The crew declared an emergency but the plane did not make the airport, crashed and broke up. PC:  The pilots' unprofessional behavior, deviation from standard operating procedures, and poor airmanship, which resulted in an in-flight emergency from which they were unable to recover, in part because of the pilots' inadequate training The pilots' failure to prepare for an emergency landing in a timely manner, including communicating with air traffic controllers immediately after the emergency about the loss of both engines and the availability of landing sites and the pilots' failure to achieve and maintain the target airspeed in the double engine failure checklist, which caused the engine cores to stop rotating and resulted in the core lock engine condition. Contributing to this accident was the engine core lock condition, which prevented at least one engine from being restarted, and the airplane flight manuals that did not communicate to pilots the importance of maintaining a minimum airspeed to keep the engine cores rotating.
## 4501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           During descent in poor weather, the cargo plane struck a mountain near the airport.
## 4502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A few minutes after takeoff, the cargo plane struck the side Tagbao mountain a few  kilometers from the airport.
## 4503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The turboprop crashed 4 miles south of Kirksville while on approach to Kirksville Municipal Airport. The plane clipped tree tops before crashing on its belly into a wooded area. Data show the plane descending then climbing slightly in the last four seconds before impact. The plane lacked a modern terrain warning system which would have been required equipment the next year. The pilots' failure to follow established procedures and properly conduct a nonprecision instrument approach at night in instrument meteorological conditions, including their descent below the minimum descent altitude before required visual cues were available (which continued unmoderated until the airplane struck the trees) and their failure to adhere to the established division of duties between the flying and nonflying pilots. Contributing to the accident were the pilots' failure to make standard callouts and the current Federal Aviation Regulations that allow pilots to descend below the MDA into a region in which safe obstacle clearance is not assured based upon seeing the airport approach lights. The pilots' failure to establish and maintain a professional demeanor during the flight and their fatigue likely contributed to their degraded performance.
## 4504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Two minutes after taking off, the air ambulance crashed into Otay peak,  in an isolated area of mountains, 8 miles east of Brown Field Municipal Airport. Dark night visual conditions prevailed. The controller's Minimum Safe Altitude Warning System issued and alert during the last two radar returns. The air traffic controller failed to alert the crew to altitude warnings as the plane was on track to fly into a mountain. The controller identified the airplane on the radar screen and instructed crew members to expect clearance above 5,000 feet, but then issued a heading that resulted in a flight track directly into the mountains. The mountain is at 3,556 feet altitude. Also, the flight crew did not follow the recommended departure procedures for taking off at night and in mountainous terrain. Failure of the flightcrew to maintain terrain clearance during a VFR departure, which resulted in controlled flight into terrain, and the air traffic controller's issuance of a clearance that transferred the responsibility for terrain clearance from the fllightcrew to the controller. The controller's failure to provide terrain clearance instructions to the flightcrew, and failure to advise the flightcrew of minimum safe altitude warning alerts. Contributing to the accident was the pilots' fatigue which likely contributed to their degraded decision making.
## 4505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane struck a steep incline in the Bull Mountain area seven miles from the Blue Ridge Regional Airport in heavy fog. Wreckage was confined to an area of approximately 200 ft. long. Killed in the crash were members of the Hendrick Motorsports racing team including the son, brother and two nieces of owner Rick Hendrick. Failure of the crew to properly execute the published instrument approach procedure. A contributing cause was the crew's failure to use all navigational aids to confirm and monitor their position during the approach.
## 4506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft was arriving on runway 09 at Simon Bolivar Airport when it departed the right side of the runway and cashed into the airport fire house. Weather at the time of the accident was poor, with low ceiling and torrential rain.
## 4507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft crashed into a frozen lake in Nanhai Park, 10 seconds after taking off. Ice pollution of the wings of the aircraft led to the accident. Failure to deice the plane.
## 4508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While on final approach, the aircraft struck a light pole located 1.5 mile short of Runway 04 in thick fog and crashed in a nearby field. The flight crew's failure to adequately monitor and cross check the flight instruments during the approach. Contributing to the accident was the flight crew's failure to select the instrument landing system frequency in a timely manner and to adhere to approved company approach procedures, including the stabilized approach criteria.
## 4509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Crashed into a mountain 80 miles west of Bagram while en route. The wreckage site was located a the 14,000 ft. level of a 16,739 ft. mountain. The crew deliberately avoided the standard route and took a joy ride in another direction, eventually becoming trapped in a canyon and slamming into a mountainside.
## 4510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While attempting to take off from R31, the aircraft skidded sideways off the runway and went through a perimeter fence, ripping the cockpit from the fuselage and bursting into flames. There was light snow falling with fog and reduced visibility at the time of the accident.  Also, the pilot chose to take off from a 7,500 ft. runway rather than wait for the 10,000 ft. runway to be plowed. The youngest son of NBC sports chairman Dick Ebersol and actress Susan Saint James killed. St. James had just exited the accident vehicle before it took off. The flightcrew's failure to ensure that the airplane's wings were free of ice or snow contamination that accumulated while the airplane was on the ground, which resulted in an attempted takeoff with upper wing contamination that induced the a subsequent stall and collision with the ground. A factor contributing to the accident was the pilots' lack of experience flying during winter weather conditions.
## 4511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While attempting to land, the plane overran the runway and crashed through the airport barrier fence, into a rice field, broke in two and  came to rest at a cemetery, 300 meters beyond the runway. Bad weather and a malfunctioning spoiler may have caused the crash.
## 4512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed while en route in mountainous terrain.
## 4513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A forward emergency exit opened in flight causing one of the crew members to be sucked out. An emergency landing was made in Jeddah.
## 4514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The crew was performing a mail flight under Total Linhas Aéreas from Sao Paulo-Guarulhos airport to Uberaba. While on final approach at night, the cargo plane crashed into houses located short of runway and burned.
## 4515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft disappeared from radar as it was attempting to land. It crashed into a hill 6 miles from its destination. Poor weather conditions existed at the time of the accident. Crew error. Ground proximity warning disabled. Artificial horizon not working.
## 4516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter was on a counter-narcotics mission when it crashed in heavy fog.
## 4517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane diverted to Keene due to poor weather. During the final approach at night, the plane hit the ground short of Runway 02 and was destroyed.
## 4518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter crashed in rain and a sandstorm.
## 4519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane was attempting to land in a snowstorm when it turned left and descended until it crashed a mile from the airport.
## 4520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane was flying at a low level when it was hit by enemy fire. The right wing separated from the fuselage and the plane lost control, crashed and was destroyed.
## 4521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Unable to land at Kabul because of a blizzard, the crew tried to reach Peshawar, Pakistan but crashed into 11,000 ft. Chaperi Mountain near Kabul.
## 4522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After developing fuel system problems the cargo flight carrying humanitarian goods, was advised to land at Aad Babaker. The plane did not make it and crashed 15 km east of Khartoum.
## 4523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While on approach the business flight descended through IMC until the left wing contacted the ground. The plane crashed into a field and burned. The plane crashed because the pilots failed to notice the airplane had slowed to an unsafe speed and allowed the plane to stall. In addition, there was a thin layer of ice on the aircraft's wings. The flight crew's failure to effectively monitor and maintain airspeed and comply with procedures for deice boot activation on the approach, which caused an aerodynamic stall from which they did not recover. Contributing to the accident was the FAA's failure to establish adequate certification requirements for flight into icing conditions, which led to the inadequate stall warning margin provided by the airplane's stall warning system.
## 4524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While on approach to Runway 29 the aircraft crashed on a mountain.
## 4525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On final approach, the aircraft crashed into the sea 100 meters off shore, 400 meters short of runway.
## 4526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed into a wooded area short of the runway and was destroyed.
## 4527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on final approach, the air ambulance crashed into the sea at night and in poor visibility.
## 4528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The  Russian turboprop carrying oil workers, crashed into the ground and caught fire while on final approach to Varandey in heavy fog.  The plane’s crew tried to make an emergency landing five kilometers away from the airport. The moment the plane touched the ground, the plane fell to one side broke up and caught fire.  Pilot error.  Lack of coordination among the crew and the blinding whiteness of the snow that disoriented the pilots, apparently causing them to perform a wrong maneuver.
## 4529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane, after takeoff and climbing lost altitude and crashed into Lake Victoria.
## 4530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The small airliner crashed while taking off from the Colombian Caribbean Island of Old Providence. The aircraft climbed to a height of about 100 feet and then lost control and crashed into a hill.
## 4531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While on a training mission the aircraft crashed into a mountainous area and was destroyed.
## 4532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed while en route on a one hour flight. The wreckage was found 5 days later.
## 4533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Soon after experiencing a hard landing an engine began burning while the aircraft was taxiing. The plane then skidded of the runway and fell into the Kan River. One of the passenger's infant fell into the river and drowned while exiting the aircraft.
## 4534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shot down.
## 4535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While taking off on a training flight, the twin engine aircraft stalled and crashed near a petroleum facility near the airport.
## 4536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane entered a spiral descent and broke up. It found the captain noticed a fuel imbalance and opened the crossfeed. This resulted in the plane being flown at a large sideslip angle while still under autopilot control, by means of the rudder trim mechanism. Forty-seven seconds after the cross flow was opened, there was a  "bank angle" warning, followed by a warning chime that was presumably a warning they were straying from their correct altitude. The autopilot disengaging, probably due to a servo reaching its torque limit. This meant that there was no compensation applied for the rudder trim input, and the plane entered a roll and steep descent, disintegrating around FL 199. The investigation found poor visibility at night in low cloud was a factor in preventing the pilots realizing sooner.
## 4537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane was heading for the town of Isiro when it lost radio contact. As it was returning to Kisangani its propeller hit a tree and the plane lost control.
## 4538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed as it was preparing to land at the remote Aboriginal community of Lockhart River on Cape York peninsula. The plane was flying in heavy rain and strong winds when it crashed. The wreckage was found in rugged rainforest terrain. Controled flight into terrain. The flight crew did not react to the mountain rising up before them. The copilot, who was flying the plane, was not qualified to undertake the instrument landing approach attempted, an RNAV (GNSS) approach.
## 4539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The charter flight crashed a few minutes after takeoff under unkown circumstances.
## 4540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane was on its routine operations of delivering military supplies and food to the drought-stricken parts of Southern and Western provinces of Zambia when the accident occurred.  The plane took off from Lusaka and safely reached Livingstone and Mongu. It had just taken off from Mongu on its way back to Lusaka when it crashed.
## 4541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed into mountains and dense forest. The plane lost contact with the tower 30 minutes after taking off from Goma. The wreckage was found at the bottom of a cliff.
## 4542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed during takeoff after a fire erupted in the No. 1 engine. The crew aborted the takeoff but crashed at the end of the runway.
## 4543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The airliner disappeared from radar and crashed into dense jungle shortly after taking off from Malabala. A witness saw flames coming from the side of the plane shortly after take-off. The plane then tilted and fell, skidded over trees for a distance of about half a mile and crashed. The plane was overloaded. The aircraft was built to accommodate a maximum of 48 passengers.
## 4544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane landed almost half-way down Runway 24, overran the runway, broke in two and caught fire. There was severe thunderstorms at the time of the landing with rain, lightning and hail. All 309 aboard escaped. There were 43 injuries. The pilot landed the plane too far down the rain-slick runway making it virtually impossible to stop the plane before it ran off the runway. In addition, the reverse thrust was not employed until 17 seconds after the wheels touched down.
## 4545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft developed engine trouble while en route from Bari Italy to Djerba, Tunisia The crew contacted Palermo ATC for an emergency landing but ditched into the sea approximately 19 miles north of Palermo. The pilot reported that both engines had failed. Fuel starvation. The maintenance crew incorrectly installed a fuel gauge for a ATR-42 on the ATR-72. Both instruments look very similar. A contributing factor was the failure of the crew to carry out proper emergency procedures once the plane ran out of fuel. In March 2009, an Italian court sentenced the pilot, to 10 years of jail for manslaughter. Prosecutors said that after the plane's engines stopped functioning, Garbi failed to follow emergency procedures, and that he could possibly have reached runway 25 of Palermo "Punta Raisi" Airport, or even the standard runway 20. Witnesses say he succumbed to panic and began praying out loud, rather than attempting to maneuver the plane to the nearest airport.
## 4546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The helicopter crashed at sea about 3 miles off the coast near the island of Naissaar, after disappeared from Tallinn ATC radar 3 minutes after take-off from Tallinn in gusty wind conditions. Failure of the power steering system, caused by coating flaking off from servo pistons. The loosened plasma coating flakes blocked the return valves of the servos, causing the aircraft to abruptly lose its maneuverability
## 4547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While flying at FL340 towards Athens the crew reported problems with their air conditioning system. As the airliner entered Greek airspace ATC lost contact with the plane. Two Greek F-16 fighters were dispatched to intercept the plane. The F-16 pilots reported that one pilot was not in the cockpit and the other was slumped over the controls. They also said oxygen masks had deployed in the cabin. The plane continued on its programmed route to a holding pattern off the coast of Greece and flew in circles for two hours. Meanwhile, at least two flight attendants had stayed awake using portable oxygen bottles but they couldn't get through the locked, terrorist-proof cockpit door. It was only when one engine failed from fuel starvation that the computer-controlled systems aboard the plane unlocked the door. The plane continued on track until it crashed into mountainous terrain about 25 miles north of Athens. CVR tapes showed that a student pilot/flight attendant, Andreas Prodromou, was at the controls of the aircraft and tried to send a Mayday message twice but the radio was set to the wrong frequency. The cabin pressure control had been  left in the manual, instead of auto position by maintenance workers. The error was not picked up by the two pilots during three subsequent check lists. They failed to respond to warnings as oxygen masks fell in the passenger cabin which eventually  led to the two pilots losing consciousness and the plane crashing.
## 4548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While en route, the crew reported engine trouble with both engines and planed to divert to Caracas. The plane began losing altitude and eventually crashed in the Sierra de Perija mountains on the Columbian-Venezuelan border. The autopilot might have reduced engine power too much after a rapid climb to FL330, allowing airspeed to bleed off to the point of a stall. Also the data recorder showed that rather than push the nose over to recover from the stall, the pilots held the yoke to their chests all the way to the ground. It has also been suggesting that a buildup of ice inside each engine's PT2 probe was responsible for the accident.
## 4549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane was about to land at Pucallpa when it ran into strong winds from a tropical storm. The pilot tried to make an emergency landing without its landing gear on a road near the jungle airport. The plane crashed, broke up and caught fire about 2 miles from the airport. Passengers reported heavy turbulence and flames when the plane crashed. The exact cause of the crash is still unknown, but it is believed that the plane was making an emergency landing because of a hailstorm.
## 4550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Seconds after taking off the jetliner shook violently, veered to the left and crashed into a residential neighborhood 500 yards past the end of the runway. It is speculated that the plane was overloaded.
## 4551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While on approach to Runway 31 the plane hit trees, crashed and burned.
## 4552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While en route, a witness saw the plane lose altitude and crash to the ground and disintegrate into pieces north of Brazzaville. Weather was poor with thunderstorms and strong winds.
## 4553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The aircraft carrying troops made a hard landing causing the landing gear to penetrate the fuselage. Two passengers were killed when they exited the plane and ran into the propellers which were still turning.
## 4554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The tower lost sight and contact with the plane about five minutes after taking off from Murtala Muhammad International  airport. The plane crashed about 30 miles north of Lagos.  A storm was passing through the airport at about the time the aircraft took off. A combination of poor maintenance of the plane by the ground crew together with a lightning strike to the right wing of the plane caused the right engine to ignite, causing the aircraft to bank heavily to the left and eventually lose control.
## 4555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The military plane crashed into an apartment building in the Azari district after taking off from Mehrabad Airport. The plane suffered engine failure and was attempting to return for a emergency landing.
## 4556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The jetliner slid off Runway 13C at Chicago's Midway Airport, went through an airport boundary fence and crashed into two vehicles at a nearby intersection, killing a young 6- year-old boy. Heavy snow was falling at the time of the accident. The plane had circled the airport for 30 to 35 minutes before attempting to land. The pilots' failure to use available reverse thrust in a timely manner to safely slow or stop the airplane after landing, which resulted in a runway overrun. This failure occurred because the pilots' first experience and lack of familiarity with the airplane's autobrake system distracted them from thrust reverser usage during the challenging landing. Contributing to the accident were Southwest Airline's 1) failure to provide its pilots with clear and consistent guidance and training regarding company policies and procedures related to arrival landing distance calculations; 2) programming and design of its onboard performance computer, which did not present inherent assumptions in the program critical to pilot decision making; 3) plan to implement new autobrake procedures without a familiarization period; and 4) failure to include a margin of safety in the arrival assessment to account for operational uncertainties. Also contributing to the accident was the pilots' failure to divert to another airport given reports that included poor braking action and a tailwind component greater than 5 knots. Contributing to the severity of the accident was the absence of an engineering materials arresting system, which was needed because of the limited runway safety area beyond the departure end of runway 31C.
## 4557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crash-landed and burst into flames in a lightning storm while attempting to land at Port Harcourt Airport. Pilot error. The crew's decision to continue to approach below the decision altitude without having the runway in sight.  It was recommended to improve the training of Nigerian pilots to recognize and recover from adverse weather conditions including windshear. Also, airports and aircraft should be equipped with instruments to detect windshear. In addition, it was recommended that airports and aircraft be equipped with instruments to detect windshear.
## 4558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The seaplane crashed off Miami Beach next to a jetty as it was taking off. There was an explosion and fire and the right wing separated prior to the plane impacting the water. Examination of the wreckage revealed fatigue cracks in the right wing. The failure of Chalk's Ocean Airways' maintenance program to identify and properly repair fatigue cracks in the wing, and the failure of the FAA to detect and correct deficiencies in the company's maintenance program. Although a 16-inch crack in the wing had been patched, a more significant flaw in a nearby support beam hadn't been repaired. The carrier had no record of patching the crack.
## 4559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed along the shore of the Caspian Sea 8 minutes after taking off from Baku. Instrument failure left the crew unable to control the aircraft.
## 4560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On a positionning flight from Sheremetyevo to Kharkov to pick up passengers, while on final approach, the aircraft crashed in a frozen lake 3 km from runway threshold.
## 4561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed in bad weather.
## 4562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane carrying humanitarian relief items crashed shortly after takeoff. The cause was determined to be engine failure and an overweight and improperly balanced plane.
## 4563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After a flyby to check on a stuck landing gear, the plane suffered a double engine flame-out and crashed into a field in poor weather conditions.
## 4564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A plane carrying peacekeeping soldiers crashed in a snowy forest at an altitude of 2,300 feet after taking the wrong flight path. The plane crashed about 18 miles from its destination of Kosice. Pilot error. The pilot chose to land without the help of the airport's radars, relying only on his own visual contact with the airport.
## 4565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane was on a test flight. While flying in formation with another plane taking pictures the left wing impacted the left wing and engine of the other plane. The plane lost contorl, crashed and burned. The flight crew failed to maintain clearance from another aircraft as they turned to break formation flight while maneuvering. Contributing to the accident was the decision of both flight crews to fly in formation.
## 4566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pilot of the cargo flight reported he had an asymmetric fuel condition. The pilot  asked for a lower altitude and controllers cleared the flight to 4,000 feet. About a minute later the pilot transmitted six "Maydays." The airplane then descended in  a near vertical dive until it crashed into a pasture. The pilot's inflight loss of control following a reported fuel asymmetry condition for undetermined reasons.
## 4567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Twenty minutes after taking off from Macaé, the plane disappeared of Rio de Janeiro radar. The crew was flying VFR in poor weather conditions and changed their route attempting to fly to the coast. The plane crashed in a wooded area, exploded and burned.
## 4568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While on approach the airplane flew into the side of Mount Marsabit which was obscured by clouds.
## 4569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Upon arrival of the cargo flight, the crew indicated a technical problem to ATC and few minutes later the plane crashed in an open field located near N'Djamena,
## 4570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A cargo plane carrying U.S. anti-narcotics officials crashed while attempting to land at Bost Airport in Lashkar Gah. The plane overran the runway and crashed into a residential area after trying to avoid a truck that pulled onto the runway. The pilot pulled up to avoid hitting the truck but was unable to gain sufficient speed to remain airborne.
## 4571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The jetliner crashed into the Black Sea and broke up in driving rain and low visibility after making a second attempt to land. The plane disappeared from radar screens just under four miles from shore and crashed after making a turn and heading toward Adler airport for a landing. Pilot error. The captain, being in a psychoemotional stress condition, made nose down control inputs due to the loss of pitch and roll awareness.This started the abnormal situation. The captain's insufficient pitch control inputs led to a failure to recover the aircraft and caused it to crash. Along with the inadequate control inputs from the captain, the contributing factors of the crash were also the lack of monitoring the aircraft's pitch attitude, altitude and vertical speed by the first officer and no proper reaction by the crew to GPWS warnings.
## 4572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On a climbout after a touch-and-go landing, the aircraft veered to the left, lost altitude and crashed in a wooded area 1 nm northwest of the airport.
## 4573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft disappeared from radar screens while on approach to São Tomé Island. The aircraft crashed in sea a  few km off shore.
## 4574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Witnesses said they heard an explosion and when they reached the crash site they found the plane had crashed into a mountain and the main body of the plane had destroyed a section of bamboo forest, while the tail had dropped onto nearby fields. The plane crashed about 125 miles southwest of Shanghai. Caused by icing, after flying through several icy regions and the plane being overloaded..
## 4575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The military plane crashed into trees past the end of the runway as it tried to land at night at an unlit airport. Chadian rebels however, claim to have shot it down with a surface-to-air missile. The pilot and copilot survived.
## 4576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed into a mountain on the east side of the airport after the pilot executed a go-around. The accident happened 1 kilometer from the airport.
## 4577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane had engine failure and struck a hill as it lost altitude.
## 4578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane was landing at Irkutsk International Airport in rain and low visibility when it veered off and overran the runway, struck a building and burst into flames. It was reported the plane was traveling at a high rate of speed when it landed. Crew error. The mistaken and uncontrolled actions by the crew at the stage of slowing down after landing. The unintentional and uncontrolled movement in one of the engines, which was not detected by the crew in time.
## 4579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane lost an engine during take off, struck power lines and crashed into a wheat field bursting into flames. Possible engine fire.
## 4580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Crashed while en route
## 4581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft was flying in low cloud and poor weather conditions as it approached the airport at Bukavu when it clipped a mountainside and plunged into the forest in flames 9 miles short of the runway.
## 4582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The cargo plane was flying to Benningham for weekly maintenance but was diverted to Albany because of poor visibility. After an aborted first try the plane circled for another attempt but struck a mountainside. The pilot's misinterpretation of the airplane's position relative to the final approach fix, which resulted in the displacement of the descent profile by 6 nautical miles and the subsequent controlled flight into rising terrain. Contributing to the accident were the low clouds.
## 4583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed after reporting engine problems while en route .
## 4584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane disappeared from radar shortly after making a distress call. A distress call was made at FL330 and again at FL100. The aircraft was reportly on fire before it crashed. The plane crashed in a field, 30 miles North of Donetsk and broke-up. Weather forecasters reported thunderstorms and lightning in the area at the time of the crash. The crew pushed the aircraft beyond its limits as they attempted to fly around a thunder storm. The crew steered the aircraft under manual control into an angle of attack that was beyond critical which resulted in  a stall and the subsequent transition into a flat spin and a collision with the ground.
## 4585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The jet commuter was the third of three airplanes to take off that morning. The previous two planes took off from Runway 22 without any problems. The flightcrew was cleard to taxi to Runway 22 and subsequently cleared for takeoff. However, flight 5191 used Runway 26, which is about half the length of Runway 22. The plane accelerated to 137 knots befoe it ran off the end of the runway, ran through an airport perimeter fence and impacted trees on an adjacent horse farm and burst into flames. The takeoff sequence took about 36 seconds.  The aircraft was still on the ground as the plane ran off the runway.The plane came to rest about 1,800 feet past the runway. It was dark with light rain at the time of the accident. The copilot was at the controls but it was the captain who taxied the plane into position for take off. The copilot was the lone survivor. The flight crew's failure to use available cues and aids to identify the airplane's location on the airport surface during taxi and their failure to cross check and verify that the airplane was on the correct runway before takeoff. Contributing to this accident were the flight crew's nonpertinent conversation during taxi, which resulted in loss of positional awareness and the Federal Aviation Administration's failure to require that all runway crossings be authorized only by specific air traffic control clearances.
## 4586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane crashed while attempting to land. The plane's left wing may have come into contact with the ground causing the plane to skid off the runway and catch fire.
## 4587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The NATO supporting aircraft crashed 12 miles west of Kandahar after the crew reported technical problems. The accident was most likely caused by an ignited fuel leak.
## 4588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Eleven high ranking officers were killed when the helicopter crashed to the ground, split in two and caught fire. A North Ossetian militant group called Kataib al-Khoul claimed responsibility for shooting down the helicopter.
## 4589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The military plane crashed en route less than 20 minutes from the end of a one-hour flight, 18 nm from its destination. Ten top ranking military officials were killed in the crash. The weather was poor at the time of the accident.
## 4590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The flight disappeared from radar at 16:50 after leaving Manaus at 15:35, scheduled to arrive at Brasilia at 18:12. While en route the jetliner collided with an Embraer EMB-135BJ Legaacy 600 business jet. The Embraer was able to land safely at Serra de Cachimbo with a damaged wing and tail. Five passengers and two crew members on the Embraer were not injured. All 154 on board the 737 were killed. The flight recorder transcript from the executive jet showed that the pilots were told by Brazilian air traffic control to fly at the same altitude as the Boeing 737 before the planes collided. A Brazilian Air Force investigation concluded that a switched-off transponder on the EMB-135 contributed the plane crash. The report also said flight controllers failed to alert the pilots they were on a collision course and failed to notice the transponder was turned off.
## 4591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While attempting to land, the charter plane skidded off the end of the runway, slid down an embankment and caught fire. One survivor was seriously hurt, eleven others were not seriously injured. Burning fuel in the cabin was the main reason three passengers and one crew member died and six others were badly injured. All six spoilers failed while landing. Even with the failed spoilers, a damp runway and a slight tailwind, there should have been sufficient room to stop. However, when the pilots realized the spoilers had failed, one of them selected emergency braking not realizing that this deactivated the antilock braking system.
## 4592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane belonging to Uzbekistan Airways and carrying Uzbek servicemen, crashed after losing control while attempting to land in poor weather conditions. On it's final approach, fog reduced visibility and the aircraft descended below the MDA. It crashed a few miles from the airport.
## 4593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The jetliner crashed into a corn field about a mile from the end of the runway while attempting to take off from Abuja. The pilot did not heed air traffic controllers' advice to not depart in stormy weather. The pilots’ incorrect actions stalled the plane.
## 4594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft struck a mountain seven minutes before it was scheduled to land in the remote Indonesian province of Papua.
## 4595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane was on final approach when it hit a antenna tower and crashed. Fog and poor visibility prevailed at the time of the accident.
## 4596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft crashed after losing the right engine during a critical point in the takeoff. The plane stalled, veered to the right and crashed in flames. Three survivors later died in the hospital.
## 4597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The air ambulance crashed on a repositioning flight from Loma Linda Medical Center to its home base in Victorville. The pilot and two crew members were killed. No patients were aboard. The pilot's inadvertent encounter with instrument meteorological conditions and subsequent failure to maintain terrain clearance. Contributing to the accident were the dark night conditions, fog, and mountainous terrain.
## 4598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While flying at FL350 the airliner went missing between Surabaya and Manado in poor weather conditions after the pilot reported strong winds. Wreckage was found 5 miles south of Parepare. The accident was caused by the autopilot being accidentally disconnected. The two pilots had been trying to fix a problem with the plane's navigation instruments when they disconnected the autopilot and lost control of the plane. Without the autopilot, the plane went out of control, listing to the right and pitching down. The IRS navigation system was repeatedly reported malfunctioning but was never repaired. This is what initially distracted the crew.
## 4599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane crashed in fog while attempting to land for a second time at Balad Air Base. After the first attempt to land was aborted, the plane crashed 2.5km short of the runway.The plane was carrying Turkish construction workers.
## 4600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The helicopter crashed northeast of Baghdad. Shot down by a combination of several heavy machine guns and a shoulder-fired missile
## 4601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The crew abandoned their takeoff after the loss of an engine due to bird ingestion. The jet overshot the runway and collided with a truck, killing the driver. The landing gear sheared off and the plane came to rest in a field.
## 4602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While attempting to land, the plane overshot the runway, crashed through the airport barrier fence and burst into flames. The cockpit voice recorder revealed that the pilot and co-pilot were arguing over their speed and wing flap angles moments before the crash. An investigator stated the passenger jet was flying at up to 265 mph, almost double the normal landing speed, while attempting to land. The captain ignored the plane’s automated warning system as it sounded alarms fifteen times. He also ignored calls from the co-pilot to go around and make another approach.
## 4603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The helicopter crashed on Kauai shortly after the pilot radioed that he was having problems with the hydraulics. The helicopter hit the ground about 200 yards from it's normal landing pad. The failure of maintenance personnel to properly tighten (torque) the flight control servo lower attachment clevis, and reinstall a functioning lock washer, which resulted in a flight control disconnect and a complete loss of helicopter control. Contributing to the accident was the operator's failure to ensure its maintenance program was being executed in accordance with Federal regulations.
## 4604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The helicopter was flying low near the coast when there was a loud bang and parts, including the tail rotor, fell into the ocean. The helicopter then hit trees and a fence as it spiraled down into an open field. The fatigue failure of the tail rotor blade root fitting due to a manufacturing defect which resulted in the separation of the tail rotor system and loss of tail rotor control. A contributing factor to the accident were the trees that the helicopter struck during the autorotation.
## 4605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Fifteen minutes before arriving at its destination  the crew informed ATC about a technical problem and that they were losing altitude. Few minutes  later, the twin engine plane crashed into an open field.
## 4606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While attempting to land in heavy fog, the airplane contacted the ground 400 m short of the runway. The left wing hit the ground and separated from the fuselage. The plane then rolled over inverted and the fuselage broke apart. The accident can be blamed on both the controller, who did not inform the pilot about the reduced visibility in time due to organizational problems, and on the pilot, who did not give the dispatcher the correct information about his landing trajectory and, consequently, did not decide to stop the landing procedure and try to take another approach at the time he should have done so.
## 4607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane, carrying African peacekeepers, was struck by an anti-aircraft missile shortly after taking off from Mogadishu Airport. The aircraft lost a wing into the Indian Ocean and shortly thereafter crashed in the eastern outskirts of Mogadishu.
## 4608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane landed at Kato and could not take off because of bad weather. Twenty minutes after eventually taking off the plane crashed into mountains while en route. A mother and her five-year-old son walked for about 16 hours through Guyana's jungle to safety after surviving the crash.
## 4609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The helicopter was carrying out a missiion with two other aircraft when a rotor blade struck an object while attempting to land. Conflicting reports say the helicopter may have been shot down by Chechnyan rebels.
## 4610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The plane crashed in a dense, swampy forested area, 5 km from Douala Airport, moments after taking off in stormy weather. The plane was just six months old.  After take off, the plane was banking right and the pilot did not notice the inclination, but when he did, he banked the craft further right. The pilot released the flight controls for nearly one minute without engaging the auto pilot, which could have corrected the banking angle, then at 34 degrees. However, his intervention worsened the tilt. The captain grabed the controls, appeared confused about the attitude of the airplane and made corrections in an erratic manner increasing the banking angle to 50 degrees. When the bank angle increased to 70 degrees, the captain stated "we are crashing." The first officer told him to level the aircraft, but quickly corrected himself and said "left, left, left captain. The aircraft  then plunged nose down into a mangrove swamp.
## 4611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Collided with a truck while attempting to make an emergency landing on a road. French soldiers aboard were with  the Sinai's peacekeeping force, the Multinational Force & Observers.
## 4612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   An engine on the cargo plane caught fire shortly after taking off. An emergency return attempt to the airstrip was unsuccessful and the plane crashed into a nearby forest.
## 4613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Crashed into dense jungle shortly after taking off from Pampa Hermosa. The plane hit a hill and split in two.
## 4614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed and burned on the airport runway while attempting to land. It was shuttling passengers between Sierra Leone's coastal capital of Freetown and Lungi Airport.
## 4615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The pilot issued a distress signal within five minutes of taking off from General Mitchell International Airport in Milwaukee, requesting an emergency return to the airport. The plane then crashed into Lake Michigan two miles off shore. The plane was carrying an organ transplant team. The pilot reported to ATC he had runaway trim prior to the accident. The pilot's mismanagement of an abnormal flight control situation through improper actions including lack of crew coordination and failing to control airspeed and to prioritize control of the airplane. The event was controllable if the captain had not allowed the airspeed and resulting control forces to increase while he tried to troubleshoot the problem. By allowing their airplane's speed to increase while engaging in poorly coordinated troubleshooting efforts, the pilots allowed and abnormal situation to escalate to an emergency.
## 4616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While en route to a forest fire, the helicopter crashed into dense forest on a mountain at an altitude of 6,100 feet.
## 4617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed shortly after taking off into a swamp coming to rest upside down. A parliment member of the Democratic Republic of Congo was killed.
## 4618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed into Phnom Damrey Mountain at an elevation of 1,640 feet, about 5 minutes from its destination of Sihanoukville.
## 4619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The crew undershot the runway and blew two tires on landing, causing the landing gear to collapse and one wing to dip and touch the runway. The plane then veered out of control, overran the runway and crashed into cars and a building.
## 4620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The small cargo jet blew a tire and failed to take off, barreling onto the Culiacán-Navolato highway and crashing into cars, coming to a stop after hitting a building.
## 4621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The twin engine plane crashed shortly after taking off from a gravel airstrip at Muncho Lake. One passenger was killed.
## 4622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The jet airliner crashed while attempting to land in heavy rain at Congonhas airport. The plane skidded off the end of the runway across a major roadway and struck a gas station and building, bursting into flames.  The right engine had a malfunctioning reverser. In this situation, the correct procedure was for the pilot to retard both throttles to idle and then advance both throttles to reverse, as if he had no problem with the reversers. The former procedure, which was changed by Airbus, was to take both throttles to idle, and then advance just the throttle corresponding to the engine with the operating reverser. It was changed by Airbus because there had been several incidents where the pilot forgot to bring both throttles back to idle, leaving one engine reversed and the other thrusting forward. The downside to this change was it would lengthen the stopping distance. The pilot was so concerned about the short and slippery runway that he chose to switch to the old procedure and got it wrong. A contributing factor was the heavy rain and wind and the fact that the newly resurfaced runway had not had grooves installed yet.
## 4623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed shortly after taking off after an engine failed. The pilot was trying to return for an emergency landing.
## 4624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The single engine aircraft crashed onto a heavily forested mountain, 30 miles east of Ketchican while on a sightseeing trip over Misty Fiords. The pilot's decision to continue under visual flight rules into an area of instrument meteorological conditions. Contributing to the accident was the pilot's inadequate weather evaluation and the FAA's inadequate surveillance of the commercial air tour operator.
## 4625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane, carrying 9 tons of cargo, crashed 4 km from the runway as it was attempting to take off from Domodedovo airport. The aircraft slammed into a field shattering debris over a wide area.
## 4626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Soon after taking off the plane began loosing altitude and veered to the right until it crashed into the sea 1 mile beyond the runway. Loss of pitch control of the aircraft following a break in an elevator cable.
## 4627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The float plane crashed on land into a tree, 200 feet from shore, while attempting to land. High winds were in the area at the time of the accident. The  pilot's poor decision-making and inadequate planning. To avoid the rising waves, the pilot decided to take off toward the sheltered interior of the bay, toward the rising terrain, in a direction he had never attempted before. As the pilot attempted to turn the aircraft around, the airplane hit a downdraft, which held it from climbing above the closing landscape and caused the plane to stall about 60 feet over the ground.
## 4628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After a normal landing, the slats were retracted,and the mechanism came to rest as usual against the fuel tank.  On the right wing, a stop bolt that had come loose was pushed into the tank, breaching it.  The leaking fuel blew away during taxi, but once the plane stopped at the terminal, it spilled straight down and ignited from the engine's hot tailpipe. Everyone was able to evacuate but the plane was destroyed.  Boeing, aware of this failure mode due to past incidents, had ordered the nut at the end of the stop bolt to be glued on but to do this, the maintenance technician had to work awkwardly by feel and had inadvertently lost the associated washer that actually retained the bolt in place.
## 4629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Crashed shortly after taking off from Curitiba
## 4630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crashed most likely due to a mechanical problem while traveling with a second helicopter.
## 4631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane, carrying tin ore, lost one of it's two engines eleven minutes after taking off and tried to return to the airport. Due to strong back winds and a fully loaded plane, the aircraft clipped tree tops and crashed and burned 3 km short of the runway. The plane was overloaded by 3 tons.
## 4632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane, carrying palm oil, overshot the runway, crashed into a petrified lava flow and caught fire.
## 4633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While landing in heavy rain and strong cross winds, the aircraft skidded off the runway, struck an earth embankment and caught fire. The pilot attempted to land, despite 15 warning alarms and his copilot's calls to abort the attempt. Also, the plane was traveling faster and descending more sharply than normal.
## 4634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Crashed while attempting to land and came to rest in a cemetery.
## 4635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While attempting to take off the No. 2 engine failed. The cargo plane crashed into a Congolese neighborhood and caught fire about three miles from the airport. The plane's mechanic was the only survivor aboard the plane.
## 4636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Disappeared while en route.
## 4637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While taking off, an engine on the cargo plane failed after the plane hit a hawk. The aircraft tried to return to the airport but crashed. The plane was transporting goods and foodstuffs for traders and international organizations in Juba. Two Sudanese soldiers were killed on the ground.
## 4638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While making an approach to land, the passenger plane struck a mountaintop and broke apart, 7.5 miles from Isparta Airport. The accident was caused by pilot error as a result of the condition known as spatial disorientation. The pilot is believed to have lost the sight of line for the horizon and instead of trusting the flight instruments, diverted the aircraft to the route where the crash occurred.
## 4639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crashed into the sea while en route. The pilot's decision to continue VFR flight into night instrument meteorological conditions. Contributing to the accident were the operator's failure to adhere to an FAA-approved and mandated safety risk management program, the FAA's failure to provide sufficient oversight of the operator to ensure they were in compliance with the risk management program, the pilot's lack of experience in night winter operations in Alaska, and the operator's lack of an EMS dispatch and flight following system.
## 4640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed into a brushy field, inverted, shortly after taking off in heavy snow. Radar data indicated that it was in a left turn at a ground speed of 109 knots before descending and impacting terrain. The plane was carrying checks and other goods for a banking customer. The pilot's failure to maintain aircraft control and collision avoidance with terrain due to spatial disorientation. Contributing to the accident were low cloud ceiling and night conditions.
## 4641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The commuter airliner crashed into the sea while en route after the pilot reported engine problems.
## 4642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The helicopter crashed 15 miles southeast of Skopje in heavy fog while attempting to land. The aircraft was returning from European Union-led peacekeeping operations in Bosnia.
## 4643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The aircraft was on approach for landing on Runway 27L at Heathrow Airport when at a height of approximately 600 ft and 2 miles from touch down the aircraft descended rapidly and struck the ground, 1,000 ft. short of the paved runway surface, just inside the airfield boundary fence. An investigation showned that the fuel flow to both engines was restricted; most probably due to ice within the fuel feed system. The ice is likely to have formed from water that occurred naturally in the fuel, and should have been melted by the fuel-oil heat exchanger (FOHE).  However, the FOHE did not heat its own inlet  face, and investigation showed that, although the flight was   within the certified operational envelope at all times, a long   period of low fuel flow in an unusually cold environment, followed  by a throttle increase, could cause an ice jam at that point. Corrections in design were made so this would not occur again.
## 4644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While attempting to land, the plane fell to the ground from about 500-650 feet and crashed into a wooded area, 2 miles from the airport.
## 4645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane crashed while en route.
## 4646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Struck a mountain at 13,500 feet and disintegrated shortly after departing Merida. The pilots took off from Merida without waiting for the navigation system to properly initialize. Consequently, they became disoriented in the mountainous terrain surrounding the airport, crashing into the side of a mountain while trying to determine their location.
## 4647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Less than half minute after the taking-off from the Oil Rig P-18,  and while still in low altitude, a failure in the tail rotor caused loss of control of the aircraft by the crew. The helicopter crashed in the sea.
## 4648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The helicopter, carrying United Nations personnel, crashed in hilly terrain, in poor weather conditions and burst into flames.
## 4649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While attempting to land the crew aborted the the approach and executed a go-around. Soon after the plane flew into a hillside.
## 4650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The pilot of the mail plane reported some minor problems before the aircraft disapppeared off radar.
## 4651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Just minutes after the take off the plane tried to return to the airport because of engine problems, but crashed about 100 metres away from the runway. Pilots tried to land the transport, which was carrying a cargo of 2.3 tons of fuel, but a wing struck a fence and electrical wires and the plane crashed and burst into flames. All eight crew members aboard were killed
## 4652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While attempting to takeoff, the plane failed to reach takeoff speed, overran the runway, proceeded through a perimeter fence and cashed into a crowded market.
## 4653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed into the ocean after skidding off the runway in high winds and heavy rain.
## 4654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The helicopter crashed after the tail section hit the tower of the offshore drilling platform while it was attempting to land. The pilot was a trainee flying with an instructor. One survivor succumbed to his injuries soon after the crash.
## 4655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The float plane flipped and crashed as it attempted to land in Lake Chelan near Stehekin Lodge. It appeared the plane's wheels were deployed even though it was landing on water. The pilot's failure to retract the landing gear wheels prior to performing a water landing. Contributing to the accident were the pilot's disabling of the landing gear warning/advisory system and possible fatigue due to his work schedule.
## 4656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The tour helicopter crashed near Banning House lodge in rain and poor visibility. The engine appears to have failed. Loss of engine power during approach for landing due to a fatigue fracture of a power turbine blade.
## 4657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The crew of the cargo plane reported a fire shortly after taking off from Chelyabinsk. The plane crashed in a field while attempting to make an emergency landing, after striking a power transmission line.
## 4658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Chile's national police chief General Jose Alejandro Bernales, 59, and five others were killed when their helicopter crashed into a three story building. The helicopter pitched wildly before crashing into the building.
## 4659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After making a missed approach and during the second attempt at landing at Toncontin Airport, the plane overran the runway, skidded across a street, struck cars and came to rest against an embankment. The runway was wet with rain from Tropical Storm Alma.
## 4660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The medical helicopter crashed into the Sam Houston National Forest while transporting a patient to a Houston hospital. The pilot's failure to identify and arrest the helicopter's descent, which resulted in its impact with terrain. Contributing to the accident was the pilot's inadvertent flight into instrument meteorological conditions, and the limited outside visual reference due to the dark night conditions, low clouds, and fog.
## 4661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While landing in poor weather, the plane skidded off the runway, hit navigation poles and burst into flames. The plane had flown from Amman via Damascus but been turned back once from Khartoum and forced to land in Port Sudan, on the Red Sea, because of bad weather, before being allowed to return to Khartoum. The accident was due to a long flaring distance (900 meters from R/W threshold) on a wet slippery runway without selecting Auto brake and with one deactivated engine reverse in such rainy conditions. The remaining available landing distance turned out to be too short to allow the captain to stop the aircraft before the end of the runway.
## 4662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane took off, reached about 200 feet, rolled over to the right and impacted the ground, nose first. The pilot's failure to remove the flight control lock prior to takeoff. Contributing to the accident was the FAA's failure to issue an airworthiness directive making the manufacturer's previously issued flight control lock service bulletins mandatory.
## 4663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The military helicopter developed a mechanical problem and crashed into a hill while attemping to land.
## 4664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane went missing in an area approximately 60 miles south of Jakarta while on a aerial surveillance mission.
## 4665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane crashed mid-flight after entering an area of thunderstorms. Triple engine failure.
## 4666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The two helicopters struck each other in mid-air and crashed in a wooded area about 0.5 miles from Flagstaff Medical Center. Both helicopter pilots' failure to see and avoid the other helicopter on approach to the helipad. Contributing to the accident were the failure of N407GA's pilot to follow arrival and noise abatement guidelines and the failure of N407MJ's pilot to follow communications guidelines.
## 4667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While taking off, the cargo plane hit an electricity pole, crashed into a field and burst into flames. All four crew members were killed.
## 4668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While attempting to land, the cargo plane, loaded with auto parts, and experiencing engine trouble, crashed splitting into four pieces and scattering debris across an area of about 600 meters in diameter. The pilot was killed and the copilot seriously injured.
## 4669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane carrying a load of flowers had taken off from Bogota when the crew radioed that they had an engine fire. They attempted to return to the airport, but crashed in a field and destroyed a farm house killing three people inside. Double engine failure.
## 4670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While attempting to land on Runway 30, the business jet landed 500 to 1000 feet down a 5,000 ft. runway, overran the runway, passed over a ditch and roadway, slid into a cornfield and broke up. One person survived the accident but died later. The pilots  were both working on insufficient sleep and displayed poor coordination with one another. The pilots failed to account for a wet runway and 8-knot tailwind when they touched down on the 5,500-foot runway, and they should have applied a braking system a full seven seconds earlier than they did.Realizing they were running out of runway, the pilots hit the throttles to try to take off again. Had the pilots hit the lift dump right after touchdown, or landed into the wind, the plane probably could have stopped safely on the runway. The accident was due to the captain's decision to attempt a go-around late in the landing roll with insufficient runway remaining. Contributing to the accident were the pilots' poor crew coordination and lack of cockpit discipline.; fatigue, which likely impaired both pilots' performance and failure of the FAA to require crew resource management training and standard operating procedures for Part 135 operators.
## 4671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The plane crashed in a remote mountanous region of Vancouver Island while en route on a short 30 minute flight. Investigators determined the plane's body broke apart when it hit the ground near Alice Lake, and exposed electrical wires sent sparks into a pool of spilled fuel, starting a fire that consumed the plane. The accident was triggered when the plane stalled and dipped while attempting a steep climb over a ridge.
## 4672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The helicopter was ferrying fire fighters in Northern California's Shasta-Trinity National Forest when it crashed. The four survivors were seriously burned, with two listed in critical condition. The helicopter lost main rotor power during liftoff.
## 4673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter crashed while ferrying a forensic team to the site of a gun battle between Muslim rebels and security forces. The aircraft suffered engine failure and crashed into the side of a hill.
## 4674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While on approach in poor weather the cargo plane struck a telephone line and crashed. Extremely poor weather conditions.
## 4675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The airliner crashed while attempting to takeoff. The plane was able to get slightly airborne before crashing into a ravine at the end of the runway. The plane took off without the crew extending  it's flaps and slats, but the pilots would not have known there was a problem because the alarm did not go off. Malware may have interfered with the warning  alarm software.
## 4676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed shortly after taking off from Manas International Airport.  After 10 minutes, the crew reported a severe loss of cabin pressure and said they were returning when it crashed 6 miles from the airport. The Iran Aseman Airlines flight was being carried out by Itek Air. The forward left cabin door was not closed completely, and that the person who closed it was an engineer who was not listed among those (in the Cabin Attendant Manual) who were supposed to close the door.  A report concludes that the aircraft originally lost cabin pressure due to this.
## 4677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane was on a positioning flight when it flew into the side of Iliniza Volcano.
## 4678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Soon after taking off the pilot radioed he was returning to the airport but the aircraft crashed into a corn field, broke up and burned. The improper (reverse) rigging of the elevator trim cables by company maintenance personnel, and their subsequent failure to discover the misrigging during required post-maintenance checks. Contributing to the accident was the captain’s inadequate post-maintenance preflight check.
## 4679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While attempting to take off, the helicopter struck a crane, crashed on to the deck of the Maersk Resilient oil drilling rig, broke up and fell into the sea 43 miles off Duabi.
## 4680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed into a ravine adjacent to railroad tracks and near an apartment building as it was approaching Perm for a landing. The plane was at 3,600 when contact was lost with the tower. Pilot error. The captain "lost spatial orientation" after he misread an altitude indicator on the instrument panel. The pilot  was determined to be intoxicated.
## 4681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane was attempting to take off from Columbia Metropolitan Airport when it overran the runway, crashed through a perimeter fence, struck antennas and came to rest on an embankment adjacent to highway. The accident was caused by the operator’s inadequate maintenance of the airplane’s tires, which resulted in multiple tire failures during takeoff roll due to severe underinflation, and the captain’s execution of a rejected takeoff after V1, which was inconsistent with her training and standard operating procedures.
## 4682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The medical helicopter carrying victims of a traffic accident crashed in fog at Walker Mill Regional Park. The pilot radioed for help prior to the accident.
## 4683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As the passenger plane came in for a landing, in fog, the main landing gears snagged on a security fence. The plane crashed to the ground and caught fire. The pilot was the only survivor. The cause was the two pilots who misjudged deteriorating weather conditions and flew inside a patch of fog while trying to land at Lukla airport, which is carved into the side of the Himalayas at an altitude of 9,200 feet.
## 4684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The helicopter clipped a radio tower wire, crashed and burned killing all aboard.
## 4685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane, chartered by FedEx, crashed west of Baghdad, shortly after taking off from al Asad air base and after the crew reported a malfunction with the plane.
## 4686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The charter aircraft crashed into a steep hillside on south Thormanby Island 19 minutes after taking off and exploded into flames. Controlled flight into terrain caused by poor weather conditions and the decision by the pilot to fly in such conditions.
## 4687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Airbus A320 was leased by XL Airways of Germany since May 2006. The plane was scheduled to be returned to its owner, Air New Zealand. The plane was ferried to Perpignan, France where it underwent maintenance at EAS Industries. During a second test flight, on approach to Perpignan, at 3,500 feet, radio contact was lost. A controller reported seeing the plane descending quickly in a left bank. The aircraft soon after crashed into the sea and broke up. While attempting to test slowing the airplane to an unsafe speed, the plane's computer failed to automatically recover to safe flight, The plane stalled and crashed. The reason the computer failed was that both angle-of-attack sensors were frozen.The reason water froze in the sensors was the plane had been washed using a firehose without protecting the sensors.
## 4688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane struck the side of El Yunque mountain 2,310 feet, east of San Juan in heavy fog.
## 4689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The helicopter ferrying workers to an off shore drilling platform crashed into the Gulf, 8 miles from Sabine Pass.
## 4690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The charter flight disappeared from radar 35 minutes into the flight and after the pilot radioed a mayday call. Probably crashed into the ocean. Never found.
## 4691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Crashed while attempting to land. The probable cause of this accident was the flight crew's failure to monitor and maintain a minimum safe airspeed while executing an instrument approach in icing conditions, which resulted in an aerodynamic stall at low altitude. Contributing to the accident were 1) the flight crew's failure to follow published standard operating procedures in response to a flap anomaly, 2) the captain's decision to continue with the unstabilized approach, 3) the flight crew's poor crew resource management, and 4) fatigue due to the time of day in which the accident occurred and a cumulative sleep debt, which likely impaired the captain's performance.
## 4692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A helicopter bound for offshore oil fields went down about 75 miles southwest of New Orleans shortly after taking off. The sudden loss of power to both engines that resulted from impact with a red-tailed hawk, which fractured the windshield and interfered with engine fuel controls and the subsequent disorientation of the flightcrrew members. Also the lack of FAA regulations and guidance at the time the helicopter was certificated requiring helicopter windshields to be resistant to bird strikes and the lack of protections that would prevent T-handles from inadvertently dislodging out of the detents and the lack of a master warning light and audible system to alert the flightcrew of low-rotor speed conditions.
## 4693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Either shot down or crashed due to bad weather.
## 4694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane was taking off from La Guardia Airport when both engines were disabled after striking a flock of geese. The crew was able to ditch the plane in the Hudson River, making a soft landing. All 150 passengers and crew of 5 made it out safely before the plane began to sink. No one was reported to be seriously injured.
## 4695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane was being used as an air taxi to ferry passengers between cities when it crashed in the Manacapuru River, 50 miles from Manus. The plane took off under warning of strong winds and rain. The crew asked permission to return shortly after takeoff because they lost an engine. The plane disappeared from radar and lost contact with ATC. The plane crashed into the river when the crew tried to land the plane on an abandoned runway in the town of Manacapuru.
## 4696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The commuter plane crashed while attemptiong to land in rain and sleet, 6 miles northeast of Buffalo Niagara International Airport, were it was scheduled to land. Preliminary evidence suggests the crew selected the landing gear down and set the flaps 15 degrees. Immediately after selecting the flaps the stick shaker activated. The captain then pulled on the controls, slowing the airplane even further causing the plane to stall. Colgan Air officials acknowledged that both pilots apparently were not paying close attention to the aircraft's instruments and failed to follow the airline's procedures for handling an impending stall in the final minutes of the flight. The captain’s inappropriate response to the activation of the stick shaker, which led to an aerodynamic stall from which the airplane did not recover. Contributing to the accident were (1) the flight crew’s failure to monitor airspeed in relation to the rising position of the low-speed cue, (2) the flight crew’s failure to adhere to sterile cockpit procedures, (3) the captain’s failure to effectively manage the flight, and (4) Colgan Air’s inadequate procedures for airspeed selection and management during approaches in icing conditions.
## 4697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The helicopter was carrying firemen to a nearby forest fire when it crashed into a fog shrouded mountain killing all aboard.
## 4698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While attemping to take off from Luxor, the cargo plane slammed to the ground, slid down the runway and caught fire.
## 4699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The plane was on final approach to Runway 18R when it crashed 1 mile short of the runway into a field and broke in three. Nine people were killed and 55 injured. A faulty instrument caused the plane's autopilot to cut fuel to the engines prematurely. Pilots were late to notice warning signals and reacted inadequately.
## 4700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane carrying and water purification equipment crashed into Lake Victoria shortly after taking off. Possibly caused by one or a combination of factors, including loss of engine power, malfunction of the flight control system, pilot impairment, inattentiveness to altitude and inadequate handling of the aircraft. An investigation  found that the navigator used a forged license and that the aircraft and engines were beyond their service life.
## 4701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The pilot reported a technical malfunction and radioed that he was returning to St. Johns. He then radioed a mayday. The helicopter then went down in what was a controlled emergency crash landing. The accident happened about 30 miles off St. Johns. Two main gearbox filter bowl assembly mounting studs made of titanium were found broken. This resulted in the loss of gearbox oil.
## 4702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The plane crashed 500 feet short of the runway while attempting to land at Bert Mooney Airport. The plane took a nosedive and crashed near Holy Cross cemetery. The plane was carrying children and adults from California to a skiing vacation in Montana when it diverted from its planned destination of Bozeman to Butte. The pilot, who did not use a required anti-ice additive in the fuel,continued to fly despite a deteriorating fuel system. In addition, the plane was 600 pounds over it's take-off weight.
## 4703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The fatigued pilot flying the cargo plane flared too late on landing. From his position in the cockpit he was then apparently unable to tell that the main gear had bounced and the tail was rising, so he pitched the plane down to bring the nose to the ground, instead of up to recover from the bounce. The plane bounced again, harder, lost   control, veered to the left, turned over, and was destroyed by fire.
## 4704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The helicopter crashed 35 miles East of Crimond in the North Sea while transporting oil workers. A mayday was received prior to the crash. Catastrophic failure of the main rotor gearbox.
## 4705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While returning from a military training exercise, and attempting to land, the aircraft struck a hanger and burst into flames.
## 4706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane crashed into Gunung Pike mountain while on approach and attempting to land at Wamena Airport. The crew did not appear to have awareness of the aircraft’s proximity with terrain until impact with terrain was imminent. The flight crew did not act on the Enhanced Ground Proximity Warning System aural warnings, and did not conform to the operator’s published operating procedures.
## 4707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed while en route on a ferrying flight. The plane had not been flown for a year.
## 4708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The helicopter was patrolling along the Venezuelan / Colombian border when radar contact was lost.
## 4709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While on approach, the military transport crashed into 4 houses, skidded into a rice field and burst into flames.
## 4710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The cargo plane crashed while on approach to Isiro-Matari Airport.
## 4711 The Airbus went missing over the Atlantic Ocean on a flight from Rio de Janeiro to Paris, France. The plane departed from Rio de Janeiro-Galeao International Airport at 19:03 LT bound for Charles de Gaulle Airport in Paris. The last radio contact with the flight was at 01:33 UTC.  The aircraft left CINDACTA III radar coverage at 01:48 UTC, flying normally at FL350. The aircraft reportedly went through a thunderstorm with strong turbulence at 02:00 UTC. At 02:14 UTC an automated message was received indicating a failure of the electrical system. The plane carried 12 crew members and 216 passengers. The wreckage was finally discovered on April 3, 2011 using unmanned submarines.  Flight447 passed into clouds associated with a large system of thunderstorms, its speed sensors became iced over, and the autopilot disengaged. In the ensuing confusion, the pilots lost control of the airplane because they reacted incorrectly to the loss of instrumentation and then seemed unable to comprehend the nature of the problems they had caused. Neither weather nor malfunction doomed flight, nor a complex chain of error, but a simple but persistent mistake on the part of one of the pilots.    The crew did not realize the plane was in a stall, were insufficiently trained in flying manually, and never informed the passengers that anything was wrong before they plunged into the sea. The captain was on a rest break when the warnings began. The two co-pilots were facing faulty speed readings from unreliable sensors and repeated alarm signals, but fail to explain why the pilots responded the way they did. It's unclear why the co-pilot at the controls maintained a nose-up input - contrary to the normal procedure to come out of an aerodynamic stall. Normally, the nose should be pointed slightly downward to regain lift in such a stall, often caused because the plane is traveling too slowly. A basic maneuver for stall recovery, which pilots are taught at the outset of their flight training, is to push the yoke forward and apply full throttle to lower the nose of the plane and build up speed. The report confirms that external speed sensors obstructed by ice crystals produced irregular speed readings on the plane. Since the accident, Air France has replaced the speed monitors on all its Airbus A330 and A340 aircraft. The BEA said neither of the co-pilots at the controls had received recent training for manual aircraft handling, or had any high-altitude schooling in case of unreliable air speed readings. A stall warning sounded numerous times, and once for a full 54 seconds, but the crew made no reference to it in cockpit exchanges before the jet crashed.
## 4712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The air ambulance crashed into hills while attempting to land in heavy fog about 4 miles from the airport.
## 4713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The military transport went missing while en route and might have crashed due to heavy rain in the mountainous region.
## 4714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While en route and nearing it's destination, the cargo plane crashed into a 9,600 ft. mountain in the Tangma district.
## 4715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed into the Indian Ocean, 10 miles off the coast,while attempting a second approach to Hahaya Airport in Moroni. A 12 year old girl survived the accident. Crew error. The accident was due to inappropriate action by the crew during a non-stabilizing maneuver.
## 4716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The military helicopter crashed en route while transporting troops.
## 4717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The airliner crashed into a field 75 miles northwest of Tehran, 11 minutes after taking off from Imam Khomeini Airport. The plane exploded and disintegrated upon impact. Separation of a piece of the low pressure compressor from the No. 1 engine. Debris from that  hit the aircraft  body, disabling the fuel lines.
## 4718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A civilian contractor's helicopter crashed while attempting to take off.
## 4719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While attempting to land, the plane skidded off the runway and crashed into a wall. Iran's Civil Aviation Organization stated the plane flew too fast during the approach and landing. The usual landing speed for an Il-62 would have been between 145 and 165 mph, however, it landed at a speed of 197 mph. Because of this, the airplane ran off the runway and collided with a wall.
## 4720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Contact was lost with the aircraft 15 minutes after taking off. Debris was found in the Bintang mountains at an elevation of 9,300 feet. The crew did not maintain visual flight procedures when flying below lowest safe altitude, and the aircraft was flown into cloud in the vicinity of gap north west of Oksibil. The accident was consistent with controlled flight into terrain.
## 4721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane skidded off the runway and collided with an unused control tower, killing the pilot.
## 4722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Midair collision between a sightseeing helicopter and Piper Saratoga. Both aircraft fell into the Hudson River after colliding. The private plane approached and hit the the helicopter at almost a 90 degree angle. Both were flying VFR. Six killed on the helicopter and 3 aboard the private plane.
## 4723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The aircraft crashed on the eastern side of the Kokoda Gap, about 11 kms. southeast of Kokoda Airport. The aircraft impacted steep, heavily timbered terrain in a near-level altitude. Significant layers of clouds were in the area between the altitudes of 800 and 18,000 ft. with isolated showers and thunderstorms and embedded Cumulo Nimbus clouds.
## 4724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed 7 miles SE of Brazzaville into a cemetery, short of the runway, while on approach to land. Reports indicate the rear of the plane had been on fire and the aircraft broke up before it hit the ground.
## 4725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed while while pursuing suspected gunmen near the Uzbek border.
## 4726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was on a positioning flight when it suffered an engine failure on take off.  The crew declared an emergency but the plane crashed onto a vacant lot, slid though a  fence and broke up on the grounds of a school, 400 meters from the runway. Instead of shutting down the malfunctioning engine, the pilot switched off the left engine - which was serviceable.
## 4727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The air ambulance crashed shortly after departure after dropping off a patient and while returning to base. The pilot, medic and nurse were all killed. The pilot’s decision to continue the visual flight rules flight into an area of instrument meteorological conditions, which resulted in the pilot’s spatial disorientation and a loss of control of the helicopter. Contributing to the accident was the inadequate oversight of the flight by Omniflight’s Operational Control Center.
## 4728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shortly after take off the crew reported engine problems and requested an emergency return to the airport. The pilot was not able to make the turn and the cargo plane crashed into an abandoned warehouse and burst into flames.
## 4729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane took off, banked to the right and crashed into the desert, 3km from the airport.
## 4730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While on approach, the right engine failed and the pilot was not able to maintain altitude. The plane ditched into the ocean.Nine passengers were rescued but the pilot was not able to leave the sinking plane and died.
## 4731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Crashed 20 miles offshore in the Tartar Strait while on approach.
## 4732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While taking off the aircraft barely rose off the ground, banked to the right and crashed 1.5 km from the airport. Seven crew as well as four members from a replacement crew were on board.
## 4733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fifteen minutes after taking off, the pilot announced that the aircraft had a mechanical problem and was returning to the airport. After coming to a stop, for some unexplained reason, the plane took off again at full power, made a right turn and crashed into the VIP lounge.
## 4734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The medical helicopter crashed and burned about 29 miles northwest of Reno, while returning to its base in Susanville, after dropping off a patient at a Reno hospital. All three crew members aboard were killled.
## 4735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane veered off the runway, crashed and burned after the tail struck the ground as it attempted to take off.
## 4736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The float plane crashed off Saturna Island after taking off from Lyall Harbour. A female passenger and the pilot survived.
## 4737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed into the water shortly after taking off with a cargo of fish and mail.
## 4738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The passenger plane disappeared off radar shortly after taking off from Rafik Hariri International Airport in stormy weather and crashed into the Mediterranean Sea, two miles west of  the village of Na'ameh, Lebanon. The flight crew's mismanagement of the aircraft's speed, altitude, headings and attitude through inconsistent flight control inputs resulting in a loss of control. The flight crew failure to abide by CRM principles of mutual support and calling deviations hindered any timely intervention and correction.
## 4739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The commuter plane crashed while attempting to land, killing the captain and one passenger.
## 4740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While taking off, the crew experienced an engine fire and tried to make an emergency landing but crashed into a residential neighborhood.
## 4741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The helicopter crashed into a military vehicle shortly after taking off from the military airport carrying seven wounded soldiers and its crew of four soldiers. The accident was reported to have been caused by a technical fault.
## 4742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The military jet crashed and was destroyed while attempting to land in dense fog and poor visibility. The crew requested permission to carry out a trial approach to a decision height of 100 m and told the controller to expect a go-around. A few seconds before impact, the autopilot and autothrottle were disconnected in order to execute a go-around. The airplane impacted upsloping terrain at a distance of about 1,100 meters from the runway and 40 m to the left of extended centerline. The immediate cause of the accident was the failure of the crew to make a timely decision to proceed to an alternate airport although they were not once timely informed of the actual weather conditions at Smolensk, which were significantly lower than the established airport minima. Descent without visual contact with ground references to an altitude much lower than minimum descent altitude for a go-around,  in order to establish visual flight. No reaction to the numerous TAWS warnings which led to controlled flight into terrain, aircraft destruction and death of the crew and passengers.  Polish president Lech Kaczynski and his wife were among the dead.
## 4743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The helicopter was flying German and Russian snowboarders during a showboarding tour when it crash, 67 km away from Yelizovo.
## 4744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cargo plane was making a stop at Monterey on its way to Los Angeles when it crashed 1.5 km from the airport, while making a final approach to General Mariano Escobedo International Airport. The aircraft was cleared to land on Runway 11, when the crew decided to abort the landing. The plane then crashed onto Avenida Miguel Aleman roadway, striking a car and killing the driver. The plane then broke apart and burst into flames.
## 4745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           An electrical fire forced the cargo plane's pilot to attempt an emergency landing in a rice field when the plane crashed, broke into pieces, and burst into flames.
## 4746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft crashed and disintegrated one-half a mile from the runway while attempting to land at Tripoli International Airport. Ninety-two passenger and a crew of 11 were killed. A 8 year old Dutch boy was the sole survivor. Failure of the two pilots to coordinate their actions during the initial approach, with the final approach attempted below the minimum descent altitude and the runway not visible. Realizing that the approach had been misjudged, the co-pilot, who was in command, attempted to pull the plane up in order to perform a new landing, which disabled the auto pilot, but the captain had retaken control of the aircraft without informing his co-pilot, leading to the crash. Lack of coordination between the two pilots and the inappropriate application of flight control inputs during the attemped go-around. The length of the trip and crew fatigue was a factor.
## 4747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The plane crashed during poor weather into a forest ,10 minutes after taking off from Godo Olo Air Strip.
## 4748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane crashed in Salang pass, 60 miles north of Kabul. Weather was poor in the general area. It was reported that an early ground proximity warning system was misunderstood by the crew, either due to language problems or because of previous false alerts
## 4749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land at Mangalore Airport, the plane overran the runway, slid down a ravine into a wooded valley, and burst into flames. Despite being warned by the aircraft computers to "pull up, the captain did not heed the warning. He also ignored the co-pilot telling him to go-around,
## 4750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane crashed in a remote area on the Cameroon / Congo border. The plane was carrying executives of the mining company Sundance Resources.
## 4751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The pilot reported a problem with his right engine after take off and tried to return for an emergency landing but crashed into a private field and exploded, approximately 1 mile north of Jean-Lesage International Airport. The aircraft took off with reduced engine power not recommended by the manufacturer. Once the right engine stopped working, the pilots didn't rotate the engine's blades to be parallel with the flow of air, a procedure called feathering that helps to reduce drag. The crew were not properly trained for emergencies, and mechanical defects were not being logged. The company’s license was revoked.
## 4752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The military plane, on parachuting training flight, crashed 2 km from the airport  into a field shortly after taking off. Operational errors upon take-off most likely caused the accident.
## 4753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The passenger plane crashed in the Margalla hills while attempting to land at Benazir Bhutto International Airport. The tower lost contact with the plane as it was about to land in poor weather conditions. Controlled Flight into Terrain, in which aircrew failed to display superior judgment and professional skills in a self created unsafe environment. In their pursuit to land in inclement weather, they committed serious violations of procedures and breaches of flying discipline, which put the aircraft in an unsafe condition over dangerous terrain at low altitude.
## 4754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane took off from runway 6 to practice for upcoming maneuvers. After the initial climb, the pilot made a sharp right turn. As the aircraft banked, the stall warning system activated . Instead of implementing stall recovery procedures, the pilot continued the turn as planned and the aircraft entered a stall from which recovery was not possible. The aircraft impacted a wooded area northwest of the airfield.
## 4755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed into Mount Healy while en route. The pilot's failure to maintain adequate airspeed to avoid a low altitude stall, resulting in a loss of control and collision with terrain.
## 4756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane crashed while on approach to Igarka Airport in adverse weather conditions. Crew tried to land in below weather minimums. Execution of an approach in conditions worse than the weather minima of the airfield, aircraft, and pilot. The failure of the crew to take a timely decision for a missed approach when the plane descended below the minimum safe height in the absence of reliable visual contact with approach lights and runway lights. This caused the aircraft to strike trees and the ground in controlled flight.
## 4757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The floatplane, carrying passengers to a fishing site crashed into a brush and rock covered mountainside in light rain and fog. Former Alaska U.S. Senator, Ted Stevens, was among those killed.The NTSB found the probable cause to be the pilot’s temporary unresponsiveness for reasons that could not be established from the available information. There was no mechanical problem with the plane and that weather was not likely a factor in the crash.
## 4758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The airliner crashed onto the runway and broke in two during a major storm. One hundred twenty four people were injured. One passenger died of a heart attack and a 11- year-old girl died later of head injuries. Execution of the flight below the angle of approach, due to a misjudgment of the crew, believing to be much higher, leading the aircraft to fly a typical trajectory of a 'black hole' illusion, which was experienced during the night-time approach to a runway with low contrast surrounded in bright focused lights, aggravated by bad weather of heavy rain.
## 4759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed in the water off Katmai National Park. Only fragments of the plane were foud. No bodies were ever found. The probable cause was undetermined.
## 4760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The crew decided to divert to Simara Airport due to poor weather conditions at Kathmandu. Contact with ATC was lost when the plane crashed into a hillside at 9,000 ft., 20 miles SSW of Kathmandu. The crew members became disoriented after they lost contact with the ATC due to failure of both generators and the exhaustion of the backup battery.
## 4761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The plane overshot the runway while landing and burst into flames. The pilot violated aviation rules during the descent, did not locate the runway before landing and abandoned the crashed aircraft.
## 4762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The plane crashed 2km from the airstirp and impacted a house as it attempted to land following a go-around. A passenger brought aboard a crocodile hidden in a sports bag. The crocodile escaped, causing a panic among passengers who all rushed to one end of the plane. This caused an imbalance in the aircraft which led to loss of control and a crash.
## 4763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The helicopter crashed while taking off on a counter-drug mission, killing all 10 soldiers on board. They were searching for a group of suspected drug traffickers in southwestern Apure state.
## 4764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane crashed 10 km North of Dubai Airport shortly after taking off. The plane was attempting to return to the airport when the accident happened. The data recorder indicated there was smoke or fire coming from the cargo area. The cargo plane's pilots struggled to see their primary flight instrument displays as thick smoke filled the cockpit. The pilots could  not manually control the plane’s elevation and direction, probably because cables running above the likely location of a cargo fire lost tension. The fire began near where a shipment of lithium batteries were stored.
## 4765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Seconds after taking off from Fox Glacier airstrip, the aircraft crashed and burned in a field. Investigators blamed an overloaded plane and too much weight towards the back of the plane.
## 4766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While en route, the passenger plane crashed and burned in a storage yard of a steel foundry, six miles SE of Puerto Ordaz Airport, after the pilot reported having problems controlling the aircraft.
## 4767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The military helicopter crashed while en route. There were no reports of enemy fire prior to the accident.
## 4768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The military helicopter crashed after hitting power lines.
## 4769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed into a mountainside about 18 miles east of Kabul Airport.
## 4770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane experienced an engine failure 5 minutes after taking off causing the aircraft to crash.
## 4771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While the plane was en route, the pilot radioed an emergency message. Contact was lost and the plane crashed into mountainous terrain. All 61 passenger and 7 crew were killed.Icing  in combination with crew errors in handling the situation.
## 4772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plane, carrying Italian oil company personne,l suffered an engine failure on climb-out and was attempting to return to the airport when it nose-dived and crashed near a residential area in Gulistan-e-Jauhar.
## 4773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The helicopter, which was delivering workers to a drilling site, crashed and burned while attempting to land, after the tail rotor became entangled in wires.
## 4774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The cargo plane, carrying 31 tons of relief supplies for Sudan, crashed into buildings of the Naval Housing Colony while attempting to return to runway 07R shortly after taking off from Karachi. The cause of the occurrence was uncontained failure of the 2nd stage disk of LP compressor of Engine # 4 due to fatigue fracture which resulted in in-flight fire and damage to adjacent areas of right wing / flaps to an extent that flight could not be sustained.
## 4775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                About 80km out from Moscow, the crew reported losing all three engines, electrical power and navigation equipment. They decided to divert back to Moscow. Visual contact with the ground could not be established until breaking through the overcast at 500 feet. The aircraft landed, skidded off the runway and broke into three pieces. Unintentional shutdown of supply tank booster pumps when the flight engineer carried out manual fuel transfer procedures during the climb, leading to instantaneous oscillation of fuel flow to the engines and their speed, a shut down of the outer engines and power supply problems in the aircraft for 2 minutes 23 seconds due to the failure of three generators. Failure to use all the possibilities by the crew to restore engine power;
## 4776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane crashed into Palunge Hill after its right wing clipped the mountaintop while en route.
## 4777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The passenger jet caught fire and exploded as it taxied for take off. Three passenger were killed and 43 injured during the evacuation. Electrical short.
## 4778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The accident happened after the plane was unable to land because of poor weather conditions and was attempting a go-around. The aircraft crashed 5 miles from the Orumiyeh airport in a snowy field..
## 4779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When the crew encountered dense fog, limiting visibility, the pilot aborted the landing and was in the process of a go-around when the plane crashed into the sea.
## 4780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Metroliner made an approach to Runway 17 in low visibility and the crew decided to go-around. A second attempt to land on Runway 35 was also unsuccessful and resulted in another go-around. During a third landing attempt on Runway 17, the aircraft crashed adjacent to Taxiway C and came to rest upside down. A fire soon erupted. Four passenger and both crew members were killed. Improper crew coordination and procedures led to loss of control of the aircraft. A contributing factor was inadequate maintenance causing the two engines to develop unequal thrust.
## 4781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The small airlilner crashed into a hill at an elevation of 2,000 feet while on approach in poor visibility. Windshear.
## 4782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane was approaching Runway 17 at Pointe-Noire Airport when it crashed in the Mvou Mvou residential area and was destroyed.
## 4783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The plane operated on behalf of the United Nations Organization Stabilization Mission and was leased from Geogian Airways. While attempting to land in rain, thunderstorms and strong winds at Kinshasa, the plane missed the runway and crashed. Twenty eight passengers and crew of 4 were killed. One passenger survived. he inappropriate decision of the crew to continue the approach, in face of extremely inclement weather being displayed on their weather radar. Lack of adequate supervision by the Operator to ensure that its crew complied with established procedures including weather avoidance procedures and stabilized approach criteria.
## 4784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The helicopter crashed into a hill as it attempted to land at a high altitude helipad Six, including the copilot escaped with minor injuries..
## 4785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The airl taxi crashed about one minute after taking off from Manaus Airport.
## 4786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The turboprop had been circling Kaimana Airport for about 15 minutes when it crashed into the sea, 400 meters offshore, in poor weather conditions.
## 4787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The domestic scheduled passenger flight crashed 12.5 miles north of Prahuaniyeu while en route, after transmitting a distress call. All 19 passengers and crew of three aboard were killed. Inadequate flight planning. Inadequate operational decision making on the part of the pilot. Loss of situational awareness from the flight crew.
## 4788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The airliner crashed while on final to Petrozavodsk in heavy fog, landing 1 kilometers short of the runway. The plane soon broke up and caught on fire. Factors in the accident: heavy fog. The crew could not see the runway's ground lights, but did not decide to turn away and make another attempt at landing. The plane hit nearby trees before crashing. Cooperation among the crew during the landing attempt was poor, with the pilot subordinating himself to the navigator and the co-pilot effectively excluded from decisions. The navigator was intoxicated.
## 4789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While flying at 12,500 feet, the cargo plane crashed into a mountain peak, exploded and burned about 15 miles from Bagram. The aircraft was loaded with fuel for the International Security Assistance Force in Afghanistan.
## 4790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The airliner crashed and broke up after missing the runway while attempting to land at Bangoka International Airport. There was heavy rain, thunderstorms and limited visibility at the time of the accident.
## 4791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After reporting an engine fire in the left engine, the pilot attempted to make an emergency landing at Strezhevoy but ditched into the Orb River. Both pilots were not certified to fly. The captain's license was revoled and the first officer had not finished his requalification exam.
## 4792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The regional airliner had taken off from Runway 18 after which the pilot reported that he wanted to return for an emergency landing. He then stated he was attempting a forced landing on the beach of Boa Viagem but instead the plane crashed into a vacant lot and burst into flames near the beach, 1.2 miles from the runway threshold.
## 4793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The military transport plane crashed in the mountain, 6 miles northeast of Guelmim in bad weather while attempting to land.
## 4794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cargo plane crashed into the sea about 70 miles west of Jeju after the crew reported a fire in a cargo hold. The plane was carrying 58 tons of electronic and machine parts, including lithium batteries.
## 4795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thirty-eight people, including 31 U.S. special forces troops and 7 Afghan soldiers were killed when their helicopter was shot down with a rocket-propelled grenade during overnight operations against Taliban insurgents.
## 4796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After leaving Magdan the crew of the cargo plane reported a fuel leak and an engine fire. While trying to return to Magdan, the plane crashed 6 miels from Omsukchan, 190 miles from its original take-off point. The plane carried 18 tons of cargo.
## 4797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     While on instrument approach and initiating a go-around, the plane hit a hill side 2km east of the runway and broke up into 3 pieces.The crew had initiated the go-around 2 seconds before impact. The late initiation and subsequent management of the descent resulted in the aircraft turning onto final approach 600 feet above the glideslope, increasing the crew’s workload and reducing their capacity to assess and resolve the navigational issues during the remainder of the approach.
## 4798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The helicopter was headed for Mosby to refuel when it crashed in a field 1.7 nm north-northeast of Midwest National Air Center. The pilot, nurse, paramedic and patient were all killed.
## 4799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The aircraft attempted to land at the airport on two occasions, but strong winds prevented it from landing.The aircraft subsequently crashed into the sea 1 kilometre (1,100 yd) off the island on its third approach. One of those killed was Felipe Camiroaga, the most important TV entertainer in Chile.
## 4800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crashed into the jungle while on approach to Runway 14 at Trinidad Airport. After the crew reported they were turning into the final approach, radio contact was lost. The plane was found 2 days later, 10 km from the airport. One passenger survived.
## 4801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane failed to climb after takeoff and crashed into an antenna outside the airport perimeter and came to rest in the Volga River, 1km from the runway. The plane carried the entire Lokomotiv Yaroslavl ice hockey team. Pilot error. Both pilots had experience on the Yak-40 but were assigned to switch between types , contrary to proper practice. They apparently had never learned the correct position for their feet on takeoff. In the Yak-42, and like virtually all other existing Russian and Western planes, a pilot steers the aircraft by pressing the lower part of pedals and activates the brakes by pressing their upper part.But instead of putting his heels on the cockpit floor as required,  One pilot left his feet resting on the pedals, as correct for the Yak-40. This applied the brakes, causing a downward pitch force that  prevented the plane from rotating to take off. They made the fatal mistake of failing to abort the takeoff, but kept applying more upward   pitch with the result that when the plane finally left the ground and the downward pitch force stopped, it went into a stall within seconds.
## 4802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The military plane crashed, broke in two and burned while attempting to takeoff from Huambo Airport. Six persons survived including the pilot and copilot.
## 4803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The pilot of the aircraft participating in an air race lost control and dove into the spectator box seating area disintegrating upon impact. A section of the left elevator trim tab separated in flight. Investigation determined that the looseness of the elevator trim tab attachment screws and a fatigue crack in one of the screws caused a decrease in the structural stiffness of the elevator trim system.
## 4804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While coming in for a landing at Great Slave Lake the float plane hit powerlines, two cars and part of a building.  The pilot attempted to abort the landing after an aircraft float dug into the water. A cross-wind flipped the plane on end and it clipped power lines in front of a building, spinning it 90 degrees. The plane then crashed, floats first, into a façade. The fuselage then rotated on the ground and, the floats demolished two vehicles and came to rest in a parking lot facing back the way it had come.
## 4805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sightseeing flight of Mt. Everest struck terrain while on approach to Kathmandu-Tribhuvan Airport. One passenger survived the accident but died on the way to the hospital.
## 4806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Contact with the plane was lost 10 minutes after taking off from Medan. Wreckage was located near Bohorok, on the slope of a mountain 6,100 feet high. VFR flight into IMC conditions. Lack of crew coordination.
## 4807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While on approach to Madang, the plane crashed into dense forest near the Gogol River, 20 km south of Madang. The two pilots and two pasengers survived the accident. Overspeeding of both propellers. The plane had to be manually flown because the aircraft's yaw damper was unserviceable. Neither pilot noticed the aircraft's speed increasing to its maximum operating speed. The pilot-in-command pulled the power levels of the plane 'quite quickly'. Moments later both propellers over-sped simultaneously. The over-speeding propellers back-drove the turbines in the engines (instead of the engine turbines driving the propellers) and this caused severe damage to the left engine.After the emergency began, the first officer quickly identified the double propeller over-speed. At about the same time, smoke appeared in the cockpit and various aircraft system malfunction alerts activated. The crew did not respond to any of these alerts by implementing the emergency procedures detailed in company manuals and the quick reference handbook.
## 4808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After taking off, the pilot reported problems with the aircraft and began returning to the airport. The plane crashed 900 meters short of Runway 26L. The plane took off even though the passengers reported an oil leak under one of the wings to the crew. Shortly after taking off the captain reported he was returning to the airport due to an oil problem.
## 4809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The sightseeing helicopter, on a tourist excursion of West Maui and Molokai, slammed into a mountainside and burst into flames while flying in heavy rain and winds. The pilot's failure to maintain clearance from mountainous terrain while operating in marginal weather conditions which resulted in impact of the horizontal stabilizer and lower forward portion of the Fenestron with he ground and or vegetation.
## 4810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Mexican presidential helicopter crashed into the side of a hill in low clouds, at a height of 2,600 meters. The helicopter carried the Secretary of the Interior, José Francisco Blake Mora and other government officials.
## 4811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The touring helicopter on a sightseeing flight of the Las Vegas Strip and Hoover Dam, crashed into a mountainside between Lake Mead and Henderson.say Critical steering hardware was disconnected, and the bolt and other tiny parts that should have secured it weren't found on the scene. Records show the mechanism was overhauled the day before but passed multiple inspections on the day of the crash. Inadequate maintenance of the helicopter, including the improper reuse of a degraded self-locking nut, the improper or lack of installation of a split pin and inadequate post maintenance inspections which resulted in the in-flight separation of the servo control input rod from the fore/aft servo and rendering the helicopter uncontrollable.
## 4812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The on-demand air taxi was on a flight to procure an organ for transplantation when it crashed in a wooded area near the Jacksonville Sheriff's Department Aviation Unit. The helicopter was at a height of 30 feet when it struck a 50 ft. tree.
## 4813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane was on approach to land when it crashed in a forest 10km from Namoya.  The airworthiness of this aircraft had expired on June 12, 1993.
## 4814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane just took off and was carrying 2,500 lbs of bread when the pilot radioed he was having engine trouble and returning to the airport. The plane crashed in the Torrecilla Lagoon, killing both pilots.
## 4815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter crashed on the outskirts of Kabul in the Bagrami District. It appeared the plane was trying to make an emergency landing when it crashed into houses killing four people on the ground.
## 4816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After taking off, the plane lost height during the initial climb and crash landed in a snowy field, 1.5 miles past the end of the runway. The impact split the plane into three pieces. Icing. The plane was not deiced before taking off.
## 4817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While attempting to land, the plane impacted terrain about 5 km short of and slightly left of the extended runway center line of Islamabad's runway 30. The plane completely broke up, burst into flamesand came to rest in Hussain Abad Village. The crew were trained to fly the Boeing 737-200 but not the more advanced 737-236 which features an automated flight deck. The aircraft accident took place as a result of combination of various factors which directly and indirectly contributed towards the causation of accident.The primary causes of accident include, ineffective management of the basic flight parameters such as airspeed, altitude, descent rate attitude, as well as Page 75 of 78 thrust management. The contributory factors include the crew’s decision to continue the flight through significant changing winds associated with the prevailing weather conditions and the lack of experience of the crew to the airplane’s automated flight deck
## 4818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The helicopter caught fire and crashed while en route.
## 4819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Russian jet crashed on the slopes of Mount Salak at an elevation of 5,200 ft. The airliner was conducting a demonstration flight to prospective customers. The last radio contact with the flight was at 15:30 when the crew requested a descent from 10,000ft to 6,000ft. Soon after requesting a turn, they flew into the mountain. All 37passengers, 6 crew and 2 Sukhoi officials were killed. Pilot error. The TAWS had sent a 'terrain ahead' warning , followed by six 'avoid terrain' warnings before the crash. The pilot in command switched the TAWS off, assuming there was a database problem. In addition, the flight crew were distracted by a customer in the cockpit and failed to complete a planned turn. Due to inadequate maps, briefing, and low clouds, the crew did not know there were mountains in the area.
## 4820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \tThe plane was attempting to land and went around on final approach to Runway 06. The aircraft joined a left downwind when a wing contacted a hilltop about 900 feet north of the airport.The flight attendant and 5 passengers survived the accident.
## 4821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While on approach to Runway 21 at Kotika International Airport, the cargo plane overran the runway, broke through the perimeter fence, went across a main road and collided with a bus.
## 4822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The plane was about 11 miles from Lagos VOR when the crew declared an emergency reporting engine problems. The plane collided with a power line and crashed into the Iju/Ishaga area of Lagos, 1 mile adjacent to the runway. Double engine failure. Likely  the crew's failure to properly monitor fuel flow and turn on proper fuel pumps.
## 4823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The helicopter was flying back to Cusco after conducting aerial surveillance on a possible site for a hydroelectric project near Puno, in southern Peru when it hit the side of a cliff.
## 4824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane disappeared after being taken on an illegal flight. A group of people were having a party at the airfield near the city of Serov, Russia. They  managed to illegally steal an An-2 plane parked at the airfield. The plane went missing and was found on April 4, 2013, 8 km from Serov. Among those killed were the Chief of Serov city police, three police inspectors, the guard of the airport, a private company guard, a pensionist, a young unemployed man and a local mobile shop owner. The pilot was intoxicated at the time of the accident.
## 4825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane was attempting to land on runway 18 during a training exercise when it crashed about 1 mile from the runway into houses in the Rajawali housing complex.
## 4826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                While en route, the crew of the chartered flight radioed they were making an emergency landing at Masbate Airport due to engine problems. The airplane then crashed into the sea and broke apart off the shores of Masbate Island some 980 ft away from the island's airport. An investigation found that improper maintenance led to the right engine suffering an internal failure, which likely would have caused misfiring and intermittent operation of the fuel pump. The failure was gradual and the aircraft developed engine problems 23 minutes after take off. However, instead of turning back to Cebu, the pilot decided to continue the flight, until the engine failed completely, 37 minutes later and the aircraft crashed during the subsequent attempt to land at Masbate. The investigation determined that the pilot didn't use the correct procedure for trying to land a Piper Seneca with one engine inoperative, in that he lowered the undercarriage and flaps too soon; and that during his last flight proficiency test he had not been tested with respect to flying with one engine inoperative.
## 4827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After an aborted landing, the plane flew into a slope of the Nuba mountains while on approach and attempting to land at Talodi air strip. There was a dust storm in the area at the time. All 26 passengers and crew of 6 were killed including 2 Sudanese ministers.
## 4828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Crashed in a cedar forest, 6 miles from Palana Airport while on approach. There were heavy storm clouds and poor weather at the time of the accident. Both pilots were found to be intoxicated.
## 4829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The plane crash landed on the bank of the Manohara River minutes after taking off from Trinbhuvan Airport. Some witnesses reported seeing the front of the plane on fire before it crashed. Overloading and the lack of performance in the climb phase due to loss of engine power led to a stall.
## 4830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The transport, carrying military personnel and equipment, crashed 25 miles southwest of Omdurman after experiencing engine trouble. The captain reported that both engines stopped working prior to the crash.
## 4831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The small airliner took off from Runway 7 at V.C. Bird International Airport, lost height immediately after becoming airborne and crashed to the ground, nose first. There was heavy rains and lightning at the time of the accident.
## 4832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The military transport crashed into the abandoned Al-Hasaba marketplace about 6 miles from Sanaa International Airport, shortly after taking off from runway 18. The crew was trying to make an emergency landing after an engine failed.
## 4833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane crashed into a dozen houses in the Mselou district in Bazzaville while attempting to land at the local airport. The plane caught on fire and came to rest in a ravine. There was heavy rain and thunderstorms in the area at the time of the accident.
## 4834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The military transport went missing while en route. The wreckage was found in the Drakensberg mountains near Ladysmith in KwaZulu-Natal province, some 210 miles southeast of Waterkloof Air Force Base. There was severe weather at the time of the accident.
## 4835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The charter jet crashed about 60 miles from Monterey Mexico, about ten minutes after taking off. The plane plunged almost vertically from more than 28,000 feet and hit the ground in a nose-dive at a speed that may have exceeded 600 mph. Mexican-American singerJenni Rivera 43, her publicist and make-up artist were among the dead. She had just finished giving a concert in Monterey and was en route to Toluca to tape a Mexican TV show. A sudden and abrupt lack of control during ascent that provoked a sheer vertical drop of the plane that could have been triggered by a problem with the plane’s horizontal stabilizer. The plane was over 43 years old. The pilot, 78 was authorized to only fly as copilot. The copilot was not authroized to fly out of the United States. The copilot was not authorized to fly IFR which the plane was doing at the time of the accident.
## 4836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The military transport crashed 12 miles from the Shymket Airport while making a descent to land, in heavy winds and snow.The fatalities included a crew of seven and 20 border guards, including the acting head of the ex-Soviet nation's border protection service, Col. Turganbek Stambekov
## 4837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The passenger plane crash in a field two miles from Heho Airport and caught fire, after attempting to land in foggy weather. A tour guide and an 11-year-old child on board the plane, and a man riding a motorcycle on the ground were killed. Eleven others were injured.
## 4838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While attempting to land on a snow covered runway and heavy cross winds the plane overran the runway, penetrated the perimeter fence and collided with a highway embankment. The aircraft broke in three. The plane's impact with the highway embankment sent the severed nose sliding over the icy road while the rest of the jet rested just past the airport's fence - its tail linked to the rest of the body by only a tangle of wreckage. There were no passengers on board.
## 4839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The air ambulance crashed and burned north of Ventura near Clear Lake Iowa in ice, haze and misty conditons.
## 4840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The flight disappeared while en route from Los Roques island to Caracas. When the plane was approximately 11 miles from Los Roques Airport, radar showed it began rapidly losing altitude and speed. It is presumed to have crashed in the ocean. The son of Italian designer Ottavio Missoni was among those onboard.
## 4841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The jet crashed in heavy fog outside of Almaty while attempting to land at Almaty Airport for a second time. The aircraft was found in swampy terrain about 1 mile short of the runway threshold.
## 4842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While attempting to land on runway 8 in dense fog, the plane overran the runway , overturned and caught fire. The airplane operated as a charter flight carrying football fans on their way to a match of Shakhtar Donetsk against Borussia Dortmund. Pilot error.  A loss of speed by the aircraft during thelanding approach due to an error of the unprepared crew. The crew had no clearance to land given the weather conditions.
## 4843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The aircraft crashed short of the runway while attempting to land in heavy rain at Goma Airport crashing into the back yards of several houses in the Lake Kivu area.
## 4844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane crashed about 20 miles northeast of Dillingham while on approach to Dillingham Airport. Wreckage was discovered on Saturday with the pilot and copilot fatally injured. The aircraft was badly fragmented in three sections. The flight crew's failure to maintain terrain clearance, which resulted in controlled flight into terrain in instrument meteorological conditions. Contributing to the accident were the flight crew's failure to correctly read back and interpret clearance altitudes issued by the air traffic controller, their failure to adhere to minimum altitudes depicted on the published instrument approach chart, and their failure to adhere to company checklists. Also contributing to the accident were the air traffic controller's issuance of an ambiguous clearance to the flight crew, which resulted in the airplane's premature descent, his failure to address the pilot's incorrect read back of the assigned clearance altitudes, and his failure to monitor the flight and address the altitude violations and issue terrain-based safety alerts.
## 4845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The airliner came down in the ocean, 150 feet short of the runway, while on final approach to Denpasar-Ngurah Rai Bali International Airport. All 101 passengers and crew of 7 survived. Forty-five people were injured.
## 4846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The civilian cargo plane crashed and burned shortly after taking off from runway 03 at Bagram Air Base. The plane was carrying 5 armored vehicles. The airline's cargo operations manual did not explain how to account for the orientation of the tiedown straps when calculating how many were needed, and the inexperienced and uncertified loadmaster used too few straps. When the plane began climbing, the rearmost vehicle, weighing 28,000 pounds, broke free and smashed into the tail, severing two hydraulic  systems and the elevator jackscrew, leaving the plane uncontrollable.
## 4847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The air ambulance helicopter crashed 0.7 miles from its departure point. The pilot, copilot and two paramedics were killed. The helicopter was headed to Attawapiskat to pick up a patient.
## 4848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Crashed during flood relief operations. The passengers were from paramilitary forces.
## 4849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The aircraft crash landed short of the runway while on approach to runway 28L at San Francisco International Airport. The tail section, landing gear, and both engines separated from the fuselage and a fire erupted. Debris was scattered from the ocean front to the runway to where the aircraft came to rest. The plane's voice and flight data recorders show that the aircraft was coming in too slow and too low and that the pilots appear to have increased speed seven seconds before impact. A stall warning sounded four seconds before the crash, and the crew then made an internal decision "to initiate a go-around 1.5 seconds to impact.Two passengers were killed and 182 injured. One passenger was run over by one of the emergency vehicles. The crew's failure to monitor and maintain the plane's airspeed, and its failure to abort the landing when in trouble. The pilot and co-pilot reasonably believed the automatic throttle would keep the plane flying fast enough to land safely, when in fact the auto throttle was effectively shut off after the pilot idled it to correct an unexplained climb earlier in the landing. The flight crew over-relied on automated systems that they did not fully understand.
## 4850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As soon as the plane took off speed began to decline until the plane stalled and crashed.  The probable cause of the crash was the operator’s failure to account for about 420 additional pounds of unspecified cargo, which led to loading and operating the de Havilland DHC3 Otter outside its weight and center-of-gravity limits leading to an aerodynamic stall.
## 4851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed on the runway and caught fire while attempting to land at Mofadisu International Airport.
## 4852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane was on approach when it struck trees, crashed and burst into flames. The flight crew’s failure to properly configure and verify the flight management computer for the profile approach. The captain’s failure to communicate his intentions to the first officer once it became apparent the vertical profile was not captured.
## 4853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The chartered plane crashed minutes after taking off from Murtala Muhammad International Airport.The aircraft lost height, after departing runwal 18L, impacted trees, a brick wall and caught fire. The decision of the crew to continue the take-off despite the abnormal No. 2 Propeller rpm indication. Low altitude stall as a result of low thrust at start of roll for take-off from No. 2 engine caused by an undetermined malfunction of the propeller control unit.
## 4854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While attempting to land, the Twin Otter struck a house located to the right of runway 22. The nose section was destroyed and the right wing broke off. The co-pilot and one passenger were killed. Procedural errors by the captain.
## 4855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The aircraft crashed into the Mekong River 5 miles from Paskse, while on approach to land and after attempting a go-around. The fuselage broke in two and sank into the river. The weather was poor at the time of the accident, with the tail end of Hurricane Nari affecting the area.  A sudden change in weather conditions and the flight crew's failure to properly execute procedure have been identified as the probable causes of the crash. The flight crew's minima of 600 feet was lower than the published minima of 990 feet and the incorrect height of 645 feet as published in the JEPPESEN Chart at that time.After aborting the aircraft's approach at an altitude of around 595 feet, the flight crew executed a right turn instead of a nominal climb as dictated by the airport's VOR/DME missed approach procedure.
## 4856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While landing in heavy rain, the aircraft veered off the runway, caught fire after hitting some brush and came to rest inverted.
## 4857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      After losing power, the helicopter crashed into dense jungle and burst into flames. It was carrying construction materials, 8 military personnel and 13 civilian construction workers. Two military personnel and 6 passengers survived.
## 4858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The aircraft was on approach to runway 26, in light snow, when it crashed and burned in the surrounding forest. Three of the five passengers and the two pilots were killed.  A first-stage turbine wheel blade in the left engine failed due to a combination of metallurgical issues and stator vane burn-through.
## 4859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The airliner went into a nearly vertical dive and crashed onto the runway and disintegrated, after attempting to land a second time. The aircraft hit the runway and burst into flames. The pilot in command, in executing a go-around, apparently placed the plane in an excessive nose high attitude, stalling the plane. Inexperienced crew, poor flight safety standards at the Tatarstan air company and lack of proper control over crew training.
## 4860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The police helicopter crashed into the roof of the Clutha Pub in central Glasgow killing at least 5 patrons along with 3 aboard he helicopter. The helicopter was carrying a civilian pilot and two Strathclyde police officers.
## 4861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The airliner crashed into Bwabwata National Park while en route to Luanda. The plane was found completely burned out with no survivors. The plane went missing in bad weather and poor visibility. The inputs to the auto flight systems by the person believed to be the Captain, who remained alone on the flight deck when the person believed to be the co-pilot requested to go to the lavatory, caused the aircraft to departure from cruise flight to a sustained controlled descent and subsequent collision with the terrain.
## 4862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While performing an ambulance flight, the aircraft crashed under unknown circumstances in a wooded area killing 3 passengers and 2 pilots.
## 4863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The cargo plane, carrying spare parts, crashed into a military army arsenal at Ikustsk-2 Airport while attempting to land. The crew of 6 and 3 technicians were all killed.
## 4864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The air ambulance left Bucharest with a medical team to obtain transplant organs. After experiencing problems with the engines the pilot attempted to make an emergency landing but crashed on a hillside in deep snow. All aboard initially survived but the pilot and a medical student died before the rescue party reached the aircraft.
## 4865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The military transport crashed into a mountainous region approximaely 30 miles southeast of Constatine Airport. Unfavorable weather conditions and storms accompanied by snow were reported in the area. The aircraft was too low on approach and hit the slope of mount Djebel Ta Fertas.
## 4866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The passenger plane crashed into a snow covered mountain and burst into flames while en route from Pokhara to Jamia. Weather was poor at the time of the accident. The PIC lost situation awareness while cruising in IMC, causing the aircraft to collide with terrain.
## 4867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft, carrying a medical team with three patients, was destroyed when it crashed in a field, 20 miles from Tunis-Carthage Airport. The pilot reported an engine on fire prior to the accident.
## 4868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Radar contact was lost with the aircraft 2 hours into the flight at 0240. All indications are that the aircraft changed direction from its flight path and crashed in a remote part of the Indian Ocean southwest of Perth Australia. It is assumed all 227 passengers and crew of 12 perished.
## 4869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The news helicopter crashed and burst into flames shortl after taking off striking three vehicles. One person in one of the vehicles was badly burned. The helicopter Photojournalist Bill Strothman and the pilot were both killed.
## 4870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While on approach, in fog, the jet crashed into an park about half-a-mile north of Saltillo-Plan de Guadalupe International Airport.
## 4871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       While carrying skydivers, the experimental plane went into a spin and crashed and burned in a forest. The pilot and two skydivers were able to parachute to safety with minor injuries.
## 4872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Cargo plane sruck the side of a mountain about 25 miles north of San Vicente del Caguán while en route. The accident was the result of a controlled flight into terrain. The crew failed to evaluate properly the risks and the danger of poor weather conditions and decided to perform the flight in VFR mode.
## 4873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The military aircraft crashed in a wooded area while approaching Xiangkhoung's airport, killing 16 people. Among those killed were defense minister Douangchay Phichit and other high ranking officials. For unknown reason, crew was approaching at a too low altitude.
## 4874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The military transport crashed in a wheat field  near Lugansk Airport after being shot down by anti-aircraft fire.
## 4875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The cargo plane, transporting the mild stimulant known as Khat to the Somali capital, Mogadishu, crashed into a commercial building after taking off from Jomo Kenyatta International Airport. While climbing by night, crew lost control of the aircraft.
## 4876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The helicopter crashed about  40 km west of Hanoi, 15 minutes after taking off during a parachute training mission.
## 4877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A Boeing 777-200 airliner operating as  Malaysia Airlines Flight 17, crashed about 40 miles east of Donetsk, Ukraine. The plane was 90 minutes into its flight, flying at 33,000 feet, when it was apparently hit by a Russian Buk missile. The missile exploded a few feet away from the cockpit .Debris was spread over a wide area. All 283 passengers and crew of 15 were killed.
## 4878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The passenger plane crashed into residential building while attempting to make an emergency landing during inclement weather due to the passing of hurricane Matmo.  The flight recorder revealed that after the the crew lost track of its flight path and moved away from the runway, the plane rapidly lost altitude and crashed to the ground in a period of 7.9 seconds. By the time the two pilots yelled to go around, there was nothing they could do to change the velocity and altitude of the plane in time to prevent a crash. The airport's control tower did not inform the aircraft of local weather conditions.The cause was  pilot error and a failure within the airline to follow safety procedures.
## 4879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Radar contact was lost 50 minutes after the flight took off from Ouagadougou and after the crew diverted from their planned course due to bad weather. Wreckage was found in the northern mali dessert. The plane was on loan from Swiftair. The crew likely did not activate the system during climb and cruise. As a result of the icing of the pressure sensors, the erroneous information transmitted to the auto throttle meant that the latter limited the thrust delivered by the engines. Under these conditions, the thrust was insufficient to maintain cruise speed and the aeroplane slowed down and stalled.
## 4880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After taking off, the passenger banked to the right, lost altitude, and crashed into a residential neighborhood, bursting into flames. The plane appeared to have lost an engine during the takeoff. Excessive load and malfuncioning propeller.
## 4881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The cargo plane crashed in the mountainous southeastern region of Algereia, 15 km south of the airport, shortly after taking off.
## 4882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The cargo plane crashed within the borders of Serengeti National Park not far from the Kenya - Tanzania border, shortly after taking off from Mwanza.
## 4883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While approaching Port Moresby Jacksons International Airport, the unscheduled passenger plane impacted terrain near the top of Mt. Lawes, 7 miles east northeast of the airport in poor weather. The pl;ane was too low for unknown reasons.
## 4884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The air ambulance crashed while transporting a patient from Waurika, Oklahoma to United Regional Health Center. The patient was killed and 3 crew members injured.
## 4885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane impacted a mountainside while en route.
## 4886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The aircraft went missing while en route from Suabaya to Singapore. Contact was lost about 40 minutes after taking off. Before contact was lost, the pilot requested a route change due to weather conditions. Preliminary indications are the plane ran into poor weather and stalled from FL320. The rudder travel limiter faulted 3 times during the flight. On the fourth fault the captain decided to try resetting the system by pulling circuit breakers as he had seen a maintenance technician do on the ground. This caused the autopilot to disengage causing the plane to bank 54 degrees. The the first officer, who was flying, became disoriented and was slow to correct the bank. He then put the plane into a steep climb that caused the aircraft to stall and eventually crash. Records show that the plane flew with that mechanical problem for 12 months preceding the accident.
## 4887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The army transport crashed while attempting to land in fog after hitting electric lines. The Al Nursa front, claimed that it shot down the aircraft.
## 4888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After the aircraft took off, it climbed to 1,300 feet, turned left and began losing altitude and speed. It then, banked to 90 degrees, the wingtip striking a taxi on a roadway and crashed into the Keelung River, coming to rest inverted. The pilot  mistakenly throttled down a still-running engine following a glitch with the other engine. Pilot error.
## 4889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Three French sports figures participating in a reality show were killed along with seven other people when the two helicopters filming the show collided.
## 4890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The jetliner crashed in a remote mountainous area of southern France. The plane was obliterated with no wreckage larger than a small car. According to a flight tracker, the plane fell from 38,000 ft. to 11,400 ft. in eight minutes. The aircraft impacted the ground at a high rate of speed.The copilot locked the captain out of the cockpit and put the plane into a controlled descent until it impacted the ground.
## 4891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Twin Otter crashed while on a sightseeing tour carrying cruise ship passengers. The plane impacted a granite rock face cliff near Ella Lake, about 25 miles northeast of Ketchikan.
## 4892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The military transport crashed shortly after taking off from Soewondo Air Base. Two minutes into the flight, the crew radioed they were having engine problems and returning to the airport. Soon after, the plane went down in a populated area, hitting two empty buildings. The plane was carrying civilian relatives of military personnel.
## 4893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The military transport crashed while en route after the crew reported engine problems. The weather was reported to be poor at the time of the crash.
## 4894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Strong winds forced the crew to enter a holding pattern for 40 minutes. While attempting to land, the pilot touched down half-way down the runway and was unable to stop within the remaining distance. The plane overran the runway and went down an embankment before coming to rest. The copilot was killed.
## 4895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The passenger plane crashed into Tangok mountain located in a remote area of Papua's eastern most provence. There was no distress call from the aircraft. High winds and heavy rain was reported in the accident area.
## 4896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The air ambulance went missing while on a medical flight. Seven people were on board, including two pilots from Algeria, a flight engineer from Congo, three Senegalese medical crew and a French patient.
## 4897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         While on the way to a remote fishing site, the non-sceduled passenger float plane crashed in trees as it attempted to take off. Three of the passengers were killed. The pilot's decision to depart in dark night, visual meteorological conditions over water, which resulted in his subsequent spatial disorientation and loss of airplane control.
## 4898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The military transport crashed while taking off from Jalalabad Airport. Five crew members, 5 passengers and 2 on the ground were killed. The MP’s placement of the hard-shell NVG case in front of the yoke blocking forward movement of the flight controls, the distractions experienced by the MP and MCP during the course of the ERO, and the misidentification of the malfunction once airborne.
## 4899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The aircraft went missing minutes after talking off from the airport. Seven passengers and three crew were on board. Wreckage was located on Mount Latimojong.
## 4900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The cargo plane carrying construction materials, hit the slope of a mountain in Iiaga Pass, 12 km south of Ilaga airport and disintegrated upon impact.
## 4901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Approximate 25 minutes after taking off from Sharem el Sheikh airport, radar contact was lost with the airliner. Wreckage was found near Hasna in the north Sinai. The aircraft was flying at about 30,000 feet when contact with the plane was lost. The aircraft was brought down by a homemade explosive device in the left rear cargo hold. The improvised device was equivalent to 2.2 lbs of TNT.
## 4902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The cargo plane had just taken off from Juba Airport when it had difficulty gaining altitude and crashed into a hill about half a mile east of Runway 13. South Sudan Authorities reported the aircraft was unable to climb because it was overload, and the captain reported to ATC prior to departure he was carrying 12 passengers.
## 4903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sightseeing helicopter crashed into a crevasse on Fox Glacier. The wreckage site was 2, 500 feet up the valley with debris scattered across hundreds of feet.
## 4904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Contact with the helicopter, which was heading to an oil pumping station, was lost 15 minutes after taking off. One of the pilots and a mechanic were among the crew members killed.
## 4905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While en route, the crew of the cargo plan sent a unintelligible mayday message. The plane went into a near vertical dive and disintegrated on impact with the ground. The PC ,while flying at night, one Inertial Reference Unit failed and suddenly the instruments for the pilot flying showed the plane pitching steeply up, which he tried to correct.  Due to the plane's unusual attitude, the instruments went into a "declutter" mode, which among other things removed the indication that the two pilots' instruments were conflicting.
## 4906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shortly after leaving Mogadishu Airport a loud bang was heard in the cabin. There was a loss of pressurization and the plane made an emergency landing back at the airport. A large hole was observed in the side of the fuselage. A bomb containing TNT was detonated in the cabin. The bomber was sucked out of the plane and killed.
## 4907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The plane crashed in the mountainous northern region of Nepal half-way through a 20 minute flight to Jomsom. The plane was relatively new. There was wind and dense fog at the time of the accident. It was determined that the crew deviated from the prescribed route to the left while descending to Jomsom due to the presence of clouds in the area. In doing so, the aircraft descended to 10,000 feet in clouds while flying under visual flight rules (VFR). When the GPWS warning sounded, the crew failed to react immediately and the aircraft hit a cliff at the altitude of 10,700 feet before coming to rest at the altitude of 10,982 feet.
## 4908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The plane went into a steep descent and crashed onto a field in the mountains of the Kalikot district. The plane was reported to be trying to make an emergency landing. Both the pilot and copilot were killed and nine passengers were injured.
## 4909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane, carrying shrimp, crashed less than 5 minutes after taking off from Cox's Bazar Airport. The pilot declaired an emergency and tried to return to the airport but crashed into the shallow waters of the Bay of Bengal just offshore.
## 4910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The crew was conducting sky diving exercises when, an hour into the flight they radioed they were returning to base due to deuterating weather conditions. Shortly thereafter the plane went out of control and crashed in a wooded area. Nineteen passengers and the 3 pilots were killed.
## 4911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      At 2237, at Rostov-on-Don, the crew aborted a landing attempt to Runway 22 due to poor weather conditions. The plane was instructed to enter a holding pattern at 15,000 feet where it remained for a little under two hours. During a second landing attempt, at 3.4 miles from the runway and an altitude of 1,500 feet the crew executed a second go around and climbed to 3,975 feet, after which, the plane went out of control in a nose down attitude and hit the runway at high rate of speed and disintegrated.
## 4912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plane crashed while on approach to Iles-de-la-Magdelen Airport in poor weather conditions. Former Canadian cabinet minister Jean Lapierre, his wife, 2 brothers and sister were among those killed. All five were on the way to a funeral for Lapierre's father. The pilot was flying the plane too fast and too high while on approach to land. The pilot's decision to continue an unstable approach.
## 4913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The helicopter crashed in a wooded hillside while on a sightseeing flight..
## 4914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While on approach, the plane stalled and crased in a wooded area 1 km short of the runway. The accident took place in stormy weather.Three survived, but later died of their injuries. Possible engine failure.
## 4915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The helicopter crashed on the rocky shores of Tuoy Island whle returning to Bergen from Oil platform Gullflex B. All 11 passengers and 2 pilots were killed. A video taken by an eyewitness shows the main rotor separating from the helicopter before it crashed.
## 4916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The plane was en route from Paris to Cairo, flying at an altitude of 38,000 ft. when it made a sharp 90 degree turn to the left, followed by a 360 degree turn to the right as it lost altitude. The aircraft crashed into the Mediterranean Sea approximately 175 miles off the Egyptian coast. Two days after the accident, it is confirmed that ACARS messages reported smoke on board, apparently in the lavatory and also in a technical compartment located under the cockpit.
## 4917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The aircraft was taking part in fire fighting in the region of Bayanday, when under unknown circumstances, it impact trees and crashed in a wooded area.
## 4918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The hot air balloon struck power lines and crashed in a field. The pilot was likely impaired by opioids and sedatives when he ignored weather warnings and flew the ride into a power line.
## 4919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After being cleared to land, the crew informed Dubai tower they were going around. Immediately after being cleared to go-around, the aircraft impacted the runway, losing an engine and catching fire. The plane slid to a stop and all aboard evacuated the plane safely. One fire fighter was killed while fighting the fire.
## 4920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A midair collision occurred between a Cessna 208 and a Piper PA-18 Super Cub just northwest of Russian Mission Airport. Three on the Cessna and 2 on the Piper were fatally injured. Rough terrain complicated removal of the victims.
## 4921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shortly after taking off, the plane banked to the right, lost altitude and impacted the ground just past the airport. French ministry officials on board were attempting to trace routes of illicit trafficking both human and drug, leaving Libya.
## 4922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The crew of the chartered passenger jet declared an emergency as it approached La Union, reporting they ran out of fuel and had an electrical failure. Soon after the plane impacted mountainous terrain approximately 22 miles south of Medellin. Members of the Brazilian Chapecoense soccer team were among those killed. Among the errors made which caused the crash were the decisions to let the plane take off without enough fuel to make the flight safely and then to not stop midway to refuel. The pilot also did not report the plane's emergency until it was too late. In addition, as the fuel was running out, they extended the flaps and gear just before the engines stopped, but this caused enough drag that they could no longer glide to the airport. Since the captain was part owner of the small airline, he was motivated to cut fuel costs because the company was in financial trouble.
## 4923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Indonesian police aircraft crashed in the waters off Kabupaten Lingga, Riau Islands during a 1.5 hour scheduled flight.
## 4924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            While en route, the crew made a mayday call reporting they lost one of two engines. Contact was lost and the plane soon after crashed into mountains near Abbottabad and Havelian.
## 4925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The military plane crashed into mountainous terrain in an eastern section of the country while attempting to land at Warmera.
## 4926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After taking off on runway 24, the cargo jet failed to lift off properly, just cleared the perimeter fence, became airborne, turned to the right, lost altitude and crashed in an open field. One engine suffered a flame-out.
## 4927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The plane, carrying the Alexandrov Emsemble choir, reporters and service men, made a climbout out of Ader, turned back towards the coastline and crashed into the waters of the Black Sea about a mile offshore.
## 4928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 While approaching Bishkek for a fuel stop, the cargo plane crashed past the end of the runway destroying 23 houses. The weather at the time of the accident was freezing fog.
## 4929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The charter flight was just seconds into it's flight when it was observed flying low, before it nose diving into a building at a shopping center and bursting into flames. The pilot made two mayday calls before the aircraft crashed. It is reported the plane suffered engine failure.
## 4930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The helicopter crashed on a highway after hitting a TV tower, six minutes after taking off. The helicopter was carrying an executive of the Eczacibasi group of companies, four of his Russian guests and two pilots.
## 4931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While en route the air transport plane collided with Mount Vumba in poor weather conditions.
## 4932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The cargo plane was destroyed when it crashed while attempting to land on runway 05 at Charleston Yeager Airport. After touching down hard, the aircraft when off the left side of the runway and fell into a wooded ravine.
## 4933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The cargo plane crashed short of the runway threshhold whille attempting to land at Lukla-Tenzing Airport, coming to rest on a steep wooded area close to the airport perimeter fence. Both the pilot and copilot were killed.
## 4934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The transport plane carrying military personnel and their familiies, left Myeik for a return trip to Yangon. The aircraft was at FL 180 when contact by air traffic control was lost 29 minutes into the flight. The plane crashed about 20 miles west of Dawei in the Andaman Sea.  The aircraft climbed to FL180 and proceeded along the coast. It passed two areas with cumulonimbus clouds and the flight crew activated the wing anti-icing. At 13:31 hours an alarm was triggered, indicating engine air inlet icing. At the same time, while flying in the vicinity of another area with cumulonimbus clouds, cross wind increased from 8 knots to 42 knots. In these conditions the aircraft stalled and entered a spin. The flight crew failed to recover from the spin and the aircraft impacted the sea.
## 4935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The medical flight crashed 3 km south of Mount Gambier Airport in heavy fog. The plane had just taken off and was bound for Adelaide with a patient and her daughter. Angel Flight is used to help people in rural areas access medical treatment.
## 4936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While en route, the Marine Corps transport suffered an explosion and structural failure at 20,000 ft., spiraled down and crashed into a soybean field. The investigation determined the cause of the mishap to be an inflight departure of the number four blade from the number two propeller.
## 4937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The aircraft departed Kinshasa and crashed about 20 km NE of Kinshasa.
## 4938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The air ambulance crashed en route shortly after the pilot reported a malfunction in the engine, followed by fire.
## 4939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The cargo plane, carrying French military cargo, crashed in shallow waters along the coastline while on final approach to Abidjan-Felix Houphouet Boigny Airport. The plane was carrying 6 Moldovan crew members and 4 French army personnel. Weather reports indicate that a thunderstorm was passing the airport at the time of the accident.
## 4940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The chartered Cessna was flying tourists from Kilimanjaro to Arusha. The plane circled for 30 minuets due to poor weather conditions before crashing.
## 4941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shortly after taking off, the aircraft lost altitude and descended into trees. All 22 passengers and 3 crew survived but there were several injuries. One passenger died two weeks after the accident.  During the descent, the aircraft encountered icing conditions and the anti-icing and de-icing systems were activated. When the de-icing and anti-icing systems were turned off, residual ice remained on portions of the aircraft.
## 4942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The passenger plane crashed 10 minutes after taking off from Punta Islita into a wooded area. Ten American passengers and crew of 2 were all killed. On 1/12/2018 the companies Air Operator certificate was suspended,  According to a hotel worker that was at the airport during the departure, when the accident airplane took off, it did not make the same right turn as the prior airplane but continued on runway heading into terrain.
## 4943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      While completing a training mission, the airplane crashed in unknown circumstances near the Zhengchang village, in the Guizhou Province.
## 4944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The helicopter was observed making strange manoeuvres before clipping a cliff which snapped off its tail end. The aircraft then plummeted 600ft to the base of a gorge. There were strong winds in the area at the time of the accident.
## 4945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The regional airliner took off from Moscow at 1422. Six minutes later, after reaching an altitude of 6,000 feet, contact was lost with the aircraft. The plane then lost altitude at an accelerated rate until it impacted the ground and disintegrated. Wreckage was scattered over a wide area of over 1 km. Authorities confirmed the aircraft was intact until the time of impact. There were discrepancies between the air speed readings on the captain's side compared to the standby airspeed indicator.
## 4946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The airliner was on approach to Yasuj Airport and descending when it crashed into Mt. Dena, 14 miles north of the airport. Poor weather with fog was reported at the time of the accident.  The crew action which caused dangerous conditions for the flight.  Continuing to the Yasouj airport for landing against the operation manual of the company, due to low altitude ceiling of the cloud and related cloud mass. Descending to unauthorized altitude below minimum of the route and MSA.
## 4947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While on approach to Latakia-Khmeimim Air Base, the military transport plane crashed 1,600 feet short of the runway. The aircraft approached with a tail wind and was caught by a windshear on finals.
## 4948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The sightseeing helicopter suddenly lost power and crashed in the East River. Two passengers were killed. Three other passengers later died in the hospital.
## 4949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After getting clearance to land, the aircraft was observed flying low. Soon after, the plane impacted terrain and caught fire. The cause of the accident was due to disorientation and  complete loss of situational awareness of the crew.
## 4950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Algerian military plane crashed soon after takeoff in a field and burst into flames. The plane was totally destroyed.
## 4951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While climbing to FL320, the No. 1 engine suffered an uncontained catastrophic failure. Shrapnel struck and broke a window which resulted in explosive decompression. A woman passenger sitting in the window seat was partially sucked out of the window. Passengers were able to pull her back in the cabin but she was reported in cardiac arrest and soon after died. The crew declared an emergency and landed safely at Philadelphia airport.
## 4952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Porto Rico Air National Guard plane crashed onto a highway shortly after taking off from Savannah/Hilton International Airport. The aircraft went into a left bank and crashed to the ground. It was flying to Tucson where it was to be decommissioned. The aircraft was over 50 years old.
## 4953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After taking off from runway 06 at Havana-José Martí Airport and while in the initial climb, the airliner initiated a right turn and then descended until it struck power lines and a railway track before disintegrating in a wooded area. The actions of the crew and their errors in the weight and balance calculations, which led to the loss of control and collapse of the aircraft during the takeoff stage.
## 4954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shortly after takeoff from runway 29, the left engine failed and the crew was unable to gain sufficient height. The captain was cleared to make an emergency landing. While approaching runway 29 from the east, the airplane went out of control, struck the roof of a building and crashed in a field located about 6 km southeast of the airport. The flight engineer was killed along with a person on the ground.
## 4955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The vintage aircraft crashed onto Piz Segnas mountain while on a sightseeing flight. The plane plunged almost vertically at high speed and crashed at an elevation of 8,000 ft.
## 4956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The aircraft was approaching for a landing at Chuuk/Weno Airport in rain when it landed in a lagoon 500 feet short of the runway. A passenger was found in the plane 3 days after the accident.
## 4957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The airliner crashed into the Jakarta Sea, 13 minutes after taking off from Soekarno-Hatta International Airport. It was on a short 1 hour flight to Pangkal Pinang. After taking off from runway 25L, the aircraft made a climbing left-hand turn after which the crew radioed a request to return too the airport. The aircraft then showed an erratic pattern of flight and began losing altitude until it crashed into the sea, 9 miles off the Jakarta coast. It was reported the plane had problems the night before on a flight from Denpasar to Jakarta.  It was found that there is a potential for repeated automatic nose-down trim commands of the horizontal stabilizer when the flight control system on a Boeing 737 MAX aircraft receives an erroneously high single AOA sensor input.
## 4958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After taking off and reaching FL200, the crew reported a hydraulic problem and circled back to Georgetown Airport. The aircraft touched down on runway 06 but went off the runway and came to rest against the airport perimeter fence. Six people were injured. One person died of their injuries several days later.
## 4959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cargo plane was operated by the Iranian Air Force. The plane was to land on runway 30 at Payham Airport but instead landed on runway 31L at Fat'h Airport. Runway 30 is more than twice as long as runway 31L.The plane went off the runway, smashed through an airport wall separating the airport from a residential neighborhood, broke up and caught fire. Only the fight engineer survived.
## 4960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ATC lost radar contact with the cargo jet when it was 30 miles southeast of George Bush International Airport. The plane crashed into Trinity Bay and broke apart in muddy water about 5 feet deep.
## 4961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              While on approach to land, the crew contacted ATC and declared an emergency after which the airplane crashed in flames in a palm grove, 35 km south of La Vanguardia Airport. The crew reported engine problems.
## 4962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The internationally scheduled airliner crashed 6 minutes after taking off from Addis Ababa-Bole Airport. The pilot sent out a distress call and was given clearance to return to the airport. The crash site, some 31 miles southeast of the airport, contained a smoky crater with small pieces of wreckage. The accident might have been related to a software error on he Max 8..
## 4963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While the aircraft was in the initial climb, plane lost height and crashed in flames into a house located in a residential area about 400 meters from the airfield.
## 4964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The aircraft crashed while en route on a return trip from Las Vegas to Monterrey, Mexico.
## 4965                                                                                                                                                                                                                                                                                                                        Forty-five minutes after taking off from Moscow's Sheremetyevo Airport, the plane returned to make an emergency landing. About 16-21nm west of Sheremetyevo Airport there was a thunderstorm. The aircraft was climbing through 7,900 feet when an electrical failure occurred, the flight control system degraded to "DIRECT MODE", the autopilot automatically disconnected; the aircraft was in the middle of thunderstorm activity. The captain assumed manual control of the aircraft until the end of the flight. The crew decided to return to Sheremetyevo and performed a manual ILS approach to runway 24L. At the time the aircraft intercepted the glideslope the aircraft’s mass was above the maximum landing weight. The crew deployed the flaps to 25 degrees in accordance with the flight crew operating manual for flight with minimum mode (DIRECT MODE) of the FCS as well as landing above MLW. At 15:26Z the crew set the emergency transponder code. Vapp was determined to be 155 KIAS, the descent on the glideslope was stabilised and without any deviation from Vapp. Descending between 1,100 and 900 feet the crew received 5 cycles of predictive windshear warnings. Descending through 260 feet AGL the aircraft began to deviate below the glide slope, a ‘GLIDESLOPE’ warning occurred. Descending between 180 to 40 feet the engine thrust was increased causing the aircraft to accelerate to 164 knots. At 16 feet AGL the speed was 170 KIAS. A Terrain Awareness Warning System aural signal ‘Retard’ occurred. The engine thrust was reduced to idle. At that point the captain began to apply oscillating pitch inputs with increasing amplitude which changed the pitch angle up to +6 and -2 degrees. The aircraft made a "three point" touchdown 900 meters past the runway threshold at 158 KIAS and a vertical load of +2.55G and bounced up to 6 feet AGL. The spoilers did not deploy. In DIRECT MODE they are not permitted to operate automatically and need to be extended manually, however the spoilers were not manually extended by the crew. Two seconds after the first touchdown the aircraft touched down a second time with the nose gear first at 155 KIAS and +5.85G. The aircraft bounced off again to 18 feet AGL. A third touchdown occurred at 140 KIAS in excess of +5G resulting in the destruction of the construction, a fuel spill and fire.
## 4966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Crashed about 34km WNW of Mechuka.
## 4967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Pakistani military plane, on a training flight, crashed into residential structures in Mora Kalu Village on the outskirts of Rawalpindi. The aircraft was destroyed killing 18 people, including the 2 pilots, 3 crew members and 14 civilians on the ground.
sum_bigram <- bigramData %>% 
  unnest_tokens(bigram, Summary,
                token = "ngrams", n = 2)
sum_bigram %>% 
  count(bigram, sort = TRUE)
##                                  bigram    n
## 1                                of the 2301
## 2                          the aircraft 2223
## 3                             the plane 1531
## 4                          crashed into 1346
## 5                                in the  931
## 6                                to the  845
## 7                                into a  796
## 8                           and crashed  782
## 9                            the runway  766
## 10                            the pilot  764
## 11                             into the  668
## 12                             the crew  650
## 13                           taking off  580
## 14                              to land  555
## 15                               on the  533
## 16                                 in a  523
## 17                        plane crashed  517
## 18                              and the  501
## 19                         after taking  465
## 20                     aircraft crashed  458
## 21                            the cargo  455
## 22                             from the  440
## 23                          cargo plane  426
## 24                        attempting to  418
## 25                           the ground  407
## 26                             en route  388
## 27                     while attempting  383
## 28                               due to  368
## 29                         aircraft was  359
## 30                           failure of  353
## 31                        shortly after  350
## 32                         the accident  348
## 33                               by the  333
## 34                           the flight  331
## 35                              off the  327
## 36                              loss of  318
## 37                             while en  308
## 38                           crashed in  307
## 39                            plane was  302
## 40                             with the  300
## 41                                 of a  299
## 42                           a mountain  298
## 43                                 on a  296
## 44                             while on  287
## 45                   weather conditions  278
## 46                             short of  274
## 47                          the airport  274
## 48                               the no  269
## 49                            the right  259
## 50                             off from  257
## 51                          on approach  235
## 52                        crashed while  233
## 53                             the left  232
## 54                            after the  230
## 55                         an emergency  230
## 56                             during a  221
## 57                         poor weather  221
## 58                               at the  215
## 59                          the captain  209
## 60                              in poor  204
## 61                          approach to  198
## 62                              did not  198
## 63                           failure to  197
## 64                           during the  194
## 65                          airport the  191
## 66                        after takeoff  174
## 67                        minutes after  173
## 68                           of control  170
## 69                             struck a  169
## 70                              was not  169
## 71                               out of  168
## 72                              the sea  168
## 73                                 to a  167
## 74                          crashed and  166
## 75                    emergency landing  166
## 76                       the helicopter  163
## 77                           and burned  161
## 78                       engine failure  159
## 79                              land at  158
## 80                               it was  157
## 81                              was the  157
## 82                            go around  154
## 83                             when the  154
## 84                                at an  152
## 85                           runway and  151
## 86                            in flight  149
## 87                          an altitude  147
## 88                         approach the  145
## 89                              lack of  145
## 90                            shot down  142
## 91                             take off  142
## 92                         the airplane  142
## 93                        crashed after  140
## 94                            failed to  140
## 95                          resulted in  140
## 96                              after a  138
## 97                          stalled and  136
## 98                            an engine  135
## 99                         the approach  135
## 100                         caught fire  134
## 101                          miles from  134
## 102                           flew into  133
## 103                          struck the  133
## 104                          crashed on  132
## 105                              with a  132
## 106                               and a  130
## 107                                by a  130
## 108                         to maintain  130
## 109                             when it  130
## 110                          control of  129
## 111                               in an  129
## 112                          runway the  128
## 113                         into flames  126
## 114                             to make  125
## 115                            in heavy  123
## 116                            that the  123
## 117                        accident was  122
## 118                              in fog  122
## 119                             down by  121
## 120                         altitude of  118
## 121                           below the  118
## 122                      conditions the  115
## 123                              led to  115
## 124                         the failure  115
## 125                                at a  113
## 126                            land the  113
## 127                           was named  112
## 128                         the landing  111
## 129                         were killed  110
## 130                        altitude and  108
## 131                      which resulted  106
## 132                            a flight  105
## 133                              a hill  104
## 134                           caused by  103
## 135                        landing gear  103
## 136                         flight into  102
## 137                              as the  101
## 138                          because of  100
## 139                                no 2  100
## 140                           route the  100
## 141                             a field   99
## 142                                no 1   99
## 143                                a go   98
## 144                            broke up   98
## 145                      final approach   98
## 146                             for the   98
## 147                             hit the   98
## 148                              a fire   97
## 149                          burst into   97
## 150                         pilot error   97
## 151                            pilot in   97
## 152                             and was   96
## 153                          heavy rain   96
## 154                         takeoff the   96
## 155                         the pilot's   96
## 156                     poor visibility   95
## 157                     adverse weather   94
## 158                            rain and   94
## 159                             to take   94
## 160                           to return   93
## 161                            took off   93
## 162                          aboard the   92
## 163                          caused the   92
## 164                         control and   92
## 165                          it crashed   92
## 166                          the engine   92
## 167                               to be   92
## 168                         crashed the   91
## 169                        resulting in   91
## 170                            tried to   91
## 171                       collided with   90
## 172                             crew to   90
## 173                          on takeoff   90
## 174                        lost control   89
## 175                         aircraft to   88
## 176                           and burst   88
## 177                               for a   88
## 178                       engine failed   87
## 179                     aircraft struck   86
## 180                      crashed during   86
## 181                        plane struck   86
## 182                            the time   86
## 183                          and caught   85
## 184                           during an   85
## 185                               hit a   85
## 186                             of fuel   85
## 187                     crashed shortly   84
## 188                             land in   84
## 189                           the crash   84
## 190                          the pilots   84
## 191                         causing the   83
## 192                              one of   83
## 193                           return to   83
## 194                           the water   83
## 195                              was on   83
## 196                             but the   81
## 197                          flight the   81
## 198                              he was   81
## 199                      during takeoff   80
## 200                              end of   80
## 201                         flight from   80
## 202                        right engine   80
## 203                            1 engine   79
## 204                               of an   79
## 205                        attempted to   78
## 206                         overran the   78
## 207                           trees and   78
## 208                          and struck   77
## 209                            fire the   77
## 210                         landing the   77
## 211                         left engine   77
## 212                          right wing   77
## 213                               to an   77
## 214                        while taking   77
## 215                            2 engine   76
## 216                           pilot was   76
## 217                         an approach   75
## 218                           could not   75
## 219                           the ocean   75
## 220                        aircraft the   74
## 221                         approach in   74
## 222                     contributing to   74
## 223                           left wing   74
## 224                    midair collision   74
## 225                           the first   74
## 226                        while flying   74
## 227                               as it   73
## 228                          crew error   73
## 229                           error the   73
## 230                           unable to   73
## 231                            at night   72
## 232                  helicopter crashed   72
## 233                              made a   72
## 234                            over the   72
## 235                            pilot to   72
## 236                             a steep   71
## 237                        contact with   71
## 238                          killed the   71
## 239                             make an   71
## 240                             side of   71
## 241                              the dc   71
## 242                                as a   70
## 243                      the aircraft's   70
## 244                           there was   70
## 245                            was lost   70
## 246                            a wooded   69
## 247                            after an   69
## 248                             fog and   69
## 249                             too low   69
## 250                           a landing   68
## 251                            crew was   68
## 252                         decision to   68
## 253                           heavy fog   68
## 254                            may have   68
## 255                              to fly   68
## 256                          into trees   67
## 257                            slope of   67
## 258                         wooded area   67
## 259                          decided to   66
## 260                         flight crew   66
## 261                             fog the   66
## 262                          ground the   66
## 263                     landing attempt   66
## 264                             part of   66
## 265                             the end   66
## 266                             time of   66
## 267                           was found   66
## 268                           which was   66
## 269                             off and   65
## 270                          airport in   64
## 271                            south of   64
## 272                               was a   64
## 273                           went into   64
## 274                         mountain in   63
## 275                      a thunderstorm   62
## 276                        aircraft hit   62
## 277                       crashed short   62
## 278                          engine and   62
## 279                            the wing   62
## 280                              from a   61
## 281                           have been   61
## 282                          landing at   61
## 283                        runway while   61
## 284                        struck trees   61
## 285                             the air   61
## 286                          ground and   60
## 287                             into mt   60
## 288                 mountainous terrain   60
## 289                        the fuselage   60
## 290                        wreckage was   60
## 291                           and broke   59
## 292                        approach and   59
## 293                             area of   59
## 294                                no 3   59
## 295                        the airliner   59
## 296                        the wreckage   59
## 297                           while the   59
## 298                            a result   58
## 299                  after experiencing   58
## 300                          in command   58
## 301                        low altitude   58
## 302                            on final   58
## 303                          plane lost   58
## 304                            prior to   58
## 305                          vfr flight   58
## 306                          was flying   58
## 307                              a loss   57
## 308                             able to   57
## 309                 instrument approach   57
## 310               international airport   57
## 311                           result of   57
## 312                           the cabin   57
## 313                         the cockpit   57
## 314                         the takeoff   57
## 315                                 â â   56
## 316                            a second   56
## 317                          attempt to   56
## 318                      conditions and   56
## 319                     descended below   56
## 320                             fire in   56
## 321                           killed on   56
## 322                          mail plane   56
## 323                          off course   56
## 324                           plane hit   56
## 325                            the side   56
## 326                         after being   55
## 327                           in flames   55
## 328                      mountain while   55
## 329                            plane to   55
## 330                            the loss   55
## 331                            the tail   55
## 332                            cause of   54
## 333                          landing in   54
## 334                            the area   54
## 335                       the captain's   54
## 336                             to rest   54
## 337                           trying to   54
## 338                           which led   54
## 339                        while making   54
## 340                             an area   53
## 341                         mountain at   53
## 342                            near the   53
## 343                            north of   53
## 344                            the fuel   53
## 345                            the mail   53
## 346                           air force   52
## 347                        aircraft and   52
## 348                        altitude the   52
## 349                        both engines   52
## 350                       cause unknown   52
## 351                            crew did   52
## 352                              ft the   52
## 353                        into terrain   52
## 354                       lost altitude   52
## 355                                no 4   52
## 356                       while landing   52
## 357                       accident were   51
## 358                           entered a   51
## 359                            had been   51
## 360                             km from   51
## 361                         the minimum   51
## 362                             the two   51
## 363                           to follow   51
## 364                            down the   50
## 365                             east of   50
## 366                      flight crashed   50
## 367                             in rain   50
## 368                            making a   50
## 369                           they were   50
## 370                          was killed   50
## 371                          was unable   50
## 372                         weather the   50
## 373                        accident the   49
## 374                          flames the   49
## 375                                 â s   48
## 376                   controlled flight   48
## 377                           flying at   48
## 378                              for an   48
## 379                           of runway   48
## 380                          crashed to   47
## 381                          engine the   47
## 382                         failure the   47
## 383                         high ground   47
## 384                             into an   47
## 385                     missed approach   47
## 386                          route from   47
## 387                           runway in   47
## 388                           the slope   47
## 389                            to avoid   47
## 390                            were the   47
## 391                    aircraft stalled   46
## 392                            and then   46
## 393                            co pilot   46
## 394                 contributing factor   46
## 395                              off in   46
## 396                             rate of   46
## 397                  structural failure   46
## 398                            the fire   46
## 399                          to descend   46
## 400                          before the   45
## 401                             came to   45
## 402                      collision with   45
## 403                            fire and   45
## 404                         followed by   45
## 405                           later the   45
## 406                          soon after   45
## 407                        the military   45
## 408                         to continue   45
## 409                             to gain   45
## 410                           flying in   44
## 411                        northeast of   44
## 412                           pilot and   44
## 413                         terrain the   44
## 414                           the cause   44
## 415                            until it   44
## 416                       aircraft lost   43
## 417                       airport while   43
## 418                         for reasons   43
## 419                       separation of   43
## 420                           the final   43
## 421                            the last   43
## 422                         the weather   43
## 423                         through the   43
## 424                              a high   42
## 425                            a missed   42
## 426                        and exploded   42
## 427                           height of   42
## 428                            of power   42
## 429                        takeoff from   42
## 430                          was caused   42
## 431                           which the   42
## 432                            a height   41
## 433                            and poor   41
## 434                         exploded in   41
## 435                            feet the   41
## 436                      forced landing   41
## 437                         miles short   41
## 438                             to have   41
## 439                             west of   41
## 440                      a contributing   40
## 441                               a low   40
## 442                         bad weather   40
## 443                      helicopter was   40
## 444                          in adverse   40
## 445                          instead of   40
## 446                       plane stalled   40
## 447                         power lines   40
## 448                         takeoff and   40
## 449                              up and   40
## 450                       was destroyed   40
## 451                           and crash   39
## 452                             and hit   39
## 453                          around the   39
## 454                           before it   39
## 455                       first officer   39
## 456                          miles east   39
## 457                              not be   39
## 458                               of mt   39
## 459                           plane the   39
## 460                              the co   39
## 461                         the engines   39
## 462                            the rear   39
## 463                            3 engine   38
## 464                            4 engine   38
## 465                        after losing   38
## 466                       crew reported   38
## 467                        ditched into   38
## 468                           flight in   38
## 469                          leading to   38
## 470                            left and   38
## 471                         miles south   38
## 472                        northwest of   38
## 473                             of both   38
## 474                   severe turbulence   38
## 475                            the nose   38
## 476                       the passenger   38
## 477                      the prescribed   38
## 478                            the same   38
## 479                         air traffic   37
## 480                            area the   37
## 481                         but crashed   37
## 482                          failed the   37
## 483                            from its   37
## 484                        ils approach   37
## 485                           making an   37
## 486                         miles north   37
## 487                  navigational error   37
## 488                             ran out   37
## 489                        the atlantic   37
## 490                            while in   37
## 491                              a safe   36
## 492                         a snowstorm   36
## 493                             and his   36
## 494                           ground in   36
## 495                     its destination   36
## 496                           right and   36
## 497                       safe altitude   36
## 498                           the other   36
## 499               unknown circumstances   36
## 500                              use of   36
## 501                      visibility and   36
## 502                      visibility the   36
## 503                   while approaching   36
## 504                       aircraft flew   35
## 505                       aircraft went   35
## 506                             crew of   35
## 507                           field the   35
## 508                            fuel and   35
## 509                    icing conditions   35
## 510                              make a   35
## 511                       one passenger   35
## 512                        southwest of   35
## 513                            the main   35
## 514                           the wrong   35
## 515                        touched down   35
## 516                    while descending   35
## 517                            a forced   34
## 518                              a turn   34
## 519                         after which   34
## 520                        an explosion   34
## 521                               an in   34
## 522                                dc 9   34
## 523                           engine on   34
## 524                          factor was   34
## 525                       gain altitude   34
## 526                        mountain the   34
## 527                     pilot attempted   34
## 528                      pilot reported   34
## 529                           plane and   34
## 530                      plane carrying   34
## 531              spatial disorientation   34
## 532                          the cessna   34
## 533                        the elevator   34
## 534                      turbulence and   34
## 535                         unknown the   34
## 536                        which caused   34
## 537                      a mountainside   33
## 538                             a stall   33
## 539                  after encountering   33
## 540                            and came   33
## 541                       continued vfr   33
## 542                           crash the   33
## 543                       crashing into   33
## 544                       detonation of   33
## 545                     during approach   33
## 546                         engine fire   33
## 547                            error in   33
## 548                           flight to   33
## 549                               on an   33
## 550                          plane flew   33
## 551                        returning to   33
## 552                            the part   33
## 553                          the rudder   33
## 554                               to go   33
## 555                        was carrying   33
## 556                       airport after   32
## 557                             and fog   32
## 558                              and in   32
## 559                        attempting a   32
## 560                         between the   32
## 561                           cause was   32
## 562                        crash landed   32
## 563                     crashed crashed   32
## 564                      engine trouble   32
## 565                          members of   32
## 566           meteorological conditions   32
## 567                      passengers and   32
## 568                            past the   32
## 569                          plane took   32
## 570                      separated from   32
## 571                        southeast of   32
## 572                           speed and   32
## 573                           the tower   32
## 574                               up in   32
## 575                             was too   32
## 576                            were not   32
## 577                               a few   31
## 578                             a house   31
## 579                         a passenger   31
## 580                             a storm   31
## 581                           above the   31
## 582                            began to   31
## 583                            broke in   31
## 584                           center of   31
## 585                         diverted to   31
## 586                          flight and   31
## 587                         ft mountain   31
## 588                     holding pattern   31
## 589                              in two   31
## 590                          plane went   31
## 591                    runway threshold   31
## 592                        strong winds   31
## 593                          the crew's   31
## 594                         the plane's   31
## 595                             turn to   31
## 596                           until the   31
## 597                    visual reference   31
## 598                         weather and   31
## 599                            went out   31
## 600                             with an   31
## 601                          a building   30
## 602                  aircraft descended   30
## 603                      atlantic ocean   30
## 604                          beyond the   30
## 605                          captain to   30
## 606                         control the   30
## 607                          crashed at   30
## 608                           divert to   30
## 609                            down and   30
## 610                           into high   30
## 611                             lost an   30
## 612                      low visibility   30
## 613                             made an   30
## 614                           nose down   30
## 615                     pilot's failure   30
## 616                     reasons unknown   30
## 617                             sea the   30
## 618                           the wings   30
## 619                        while trying   30
## 620                              a nose   29
## 621                              a tree   29
## 622                          an attempt   29
## 623                          course and   29
## 624                        crashed onto   29
## 625                        engine power   29
## 626                            feet and   29
## 627                         flight fire   29
## 628                          flight was   29
## 629                             from an   29
## 630                      ifr conditions   29
## 631                          miles west   29
## 632                          of gravity   29
## 633                          one engine   29
## 634                     passengers were   29
## 635                          the jungle   29
## 636                              to air   29
## 637                           to divert   29
## 638                           to runway   29
## 639                       under unknown   29
## 640                           under vfr   29
## 641                     visual approach   29
## 642                      visual contact   29
## 643                            was shot   29
## 644                            wing and   29
## 645                            a severe   28
## 646                          a training   28
## 647                    airliner crashed   28
## 648                       an instrument   28
## 649                              and to   28
## 650                             back to   28
## 651                  conditions crashed   28
## 652                         contact was   28
## 653                                dc 3   28
## 654                        elevation of   28
## 655                           fog while   28
## 656                          follow the   28
## 657                      into mountains   28
## 658                       landing after   28
## 659                           lines and   28
## 660                             mid air   28
## 661                           miles off   28
## 662                              of its   28
## 663                           on runway   28
## 664                   premature descent   28
## 665                       the autopilot   28
## 666                          there were   28
## 667                            this was   28
## 668                              vfr in   28
## 669                      warning system   28
## 670                              a left   27
## 671                            a visual   27
## 672                              a wing   27
## 673                            air base   27
## 674                              and an   27
## 675                            and sank   27
## 676                           burned in   27
## 677                        continued to   27
## 678                         control was   27
## 679                        crashed near   27
## 680                         following a   27
## 681                    into mountainous   27
## 682                            not able   27
## 683                            on board   27
## 684                              onto a   27
## 685                        plane landed   27
## 686                             the atc   27
## 687                         the copilot   27
## 688                            the lack   27
## 689                       the propeller   27
## 690                           through a   27
## 691                             to lose   27
## 692                      was attempting   27
## 693                              was in   27
## 694                            was made   27
## 695                         weather was   27
## 696                            10 miles   26
## 697                           along the   26
## 698                              an ils   26
## 699                            and loss   26
## 700                        by lightning   26
## 701                       crashed about   26
## 702                       descent below   26
## 703                 experiencing engine   26
## 704                     fuel starvation   26
## 705                           fuel tank   26
## 706                           high rate   26
## 707               horizontal stabilizer   26
## 708                         in addition   26
## 709                               it is   26
## 710                             land on   26
## 711                           left turn   26
## 712                            lost the   26
## 713                   maintain altitude   26
## 714                       named clipper   26
## 715                             on fire   26
## 716                           plane had   26
## 717                      procedures the   26
## 718                      runway crashed   26
## 719                           stall and   26
## 720                           struck by   26
## 721                       the starboard   26
## 722                              to use   26
## 723                            turn and   26
## 724                             who was   26
## 725                             3 miles   25
## 726                             a small   25
## 727                              a snow   25
## 728                       after leaving   25
## 729                         aircraft in   25
## 730                         airport and   25
## 731                          along with   25
## 732                        an elevation   25
## 733                         because the   25
## 734                        below minima   25
## 735                       bursting into   25
## 736                         crew failed   25
## 737                        crew members   25
## 738                       engine caught   25
## 739                         failure and   25
## 740                       flight crew's   25
## 741                         flight path   25
## 742                         for unknown   25
## 743                          from which   25
## 744                        ground while   25
## 745                              in ifr   25
## 746                              in low   25
## 747                         into houses   25
## 748                         landing and   25
## 749                          landing on   25
## 750                              on its   25
## 751                              over a   25
## 752                           power and   25
## 753                           rolled to   25
## 754                            route to   25
## 755                           shut down   25
## 756                       takeoff after   25
## 757                          the center   25
## 758                      the passengers   25
## 759                          the second   25
## 760                             to loss   25
## 761                           water the   25
## 762                            20 miles   24
## 763                           a descent   24
## 764                          a hillside   24
## 765                             a right   24
## 766                       aircraft took   24
## 767                         among those   24
## 768                        and collided   24
## 769                          and failed   24
## 770                  approach procedure   24
## 771                       both aircraft   24
## 772                         both pilots   24
## 773                         both planes   24
## 774                contributing factors   24
## 775                       crashed under   24
## 776                           dense fog   24
## 777                         descent the   24
## 778                            dive and   24
## 779                          engine was   24
## 780                    explosive device   24
## 781                           found the   24
## 782                         never found   24
## 783                           off after   24
## 784                             out the   24
## 785                            pilot of   24
## 786                   plane disappeared   24
## 787                       resulted from   24
## 788                          the flying   24
## 789                          to takeoff   24
## 790                     unknown reasons   24
## 791                           was never   24
## 792                      while climbing   24
## 793                      altitude after   23
## 794                              at low   23
## 795                         attempt the   23
## 796                       attempting an   23
## 797                            crew the   23
## 798                         descent and   23
## 799               deteriorating weather   23
## 800                       deviated from   23
## 801                        exploded and   23
## 802                          failed and   23
## 803                     flight engineer   23
## 804                          hill while   23
## 805                        minimum safe   23
## 806                         most likely   23
## 807                           pilot did   23
## 808                            power in   23
## 809                           power was   23
## 810                      probable cause   23
## 811                  reduced visibility   23
## 812                        runway after   23
## 813                       runway during   23
## 814                         runway into   23
## 815                           sea while   23
## 816                         the descent   23
## 817                            the port   23
## 818                            time the   23
## 819                            to climb   23
## 820                       was returning   23
## 821                          10 minutes   22
## 822                              a bomb   22
## 823                             a heavy   22
## 824                           a holding   22
## 825                             a ridge   22
## 826                              a spin   22
## 827                      aircraft broke   22
## 828                     airport crashed   22
## 829                   and disintegrated   22
## 830                            and flew   22
## 831                             and one   22
## 832                             and two   22
## 833                         attempted a   22
## 834                       attributed to   22
## 835                           banked to   22
## 836                          cargo hold   22
## 837                           causing a   22
## 838                          crew tried   22
## 839                      deviation from   22
## 840                   disappeared while   22
## 841                          flying vfr   22
## 842                       following the   22
## 843                    for undetermined   22
## 844                          force base   22
## 845                              he had   22
## 846                        impacted the   22
## 847           instrument meteorological   22
## 848                       landed safely   22
## 849                          main rotor   22
## 850                      malfunction of   22
## 851                    navigation error   22
## 852                        overshot the   22
## 853                         pilots were   22
## 854                      resulting from   22
## 855                       route crashed   22
## 856                         running out   22
## 857                          surface to   22
## 858                           the coast   22
## 859                           the flaps   22
## 860                      the horizontal   22
## 861                         the terrain   22
## 862                        those killed   22
## 863                         to properly   22
## 864                             to stop   22
## 865                         towards the   22
## 866                           was being   22
## 867                        was observed   22
## 868                        was reported   22
## 869                            was seen   22
## 870                      while cruising   22
## 871                            year old   22
## 872                            15 miles   21
## 873                             2 miles   21
## 874                              a fuel   21
## 875                       a residential   21
## 876                      aircraft after   21
## 877                         aircraft at   21
## 878                    aircraft entered   21
## 879                        aircraft had   21
## 880                        an attempted   21
## 881                               and 2   21
## 882                         and failure   21
## 883                           and heavy   21
## 884                      and subsequent   21
## 885                         approach at   21
## 886                     before crashing   21
## 887                          clouds and   21
## 888                        continue the   21
## 889                      crew's failure   21
## 890                          days later   21
## 891                          feet short   21
## 892                            found in   21
## 893                              ft and   21
## 894                            ft while   21
## 895                          height and   21
## 896                             hill in   21
## 897                            km short   21
## 898                         landing was   21
## 899                            lost and   21
## 900                          low clouds   21
## 901                            new york   21
## 902                          not follow   21
## 903                         of aircraft   21
## 904                          of descent   21
## 905                          reported a   21
## 906                             rest in   21
## 907                           sea after   21
## 908                          steep dive   21
## 909                          terrain in   21
## 910                      the airplane's   21
## 911                        the controls   21
## 912                        the decision   21
## 913                        the mountain   21
## 914                           the north   21
## 915                            to clear   21
## 916                              to see   21
## 917                     training flight   21
## 918                            turn the   21
## 919                           under the   21
## 920                undetermined reasons   21
## 921                           winds and   21
## 922                           winds the   21
## 923                      wing separated   21
## 924                            30 miles   20
## 925                               a non   20
## 926                             a swamp   20
## 927                             a third   20
## 928                       aircraft made   20
## 929                    aircraft overran   20
## 930                        aircraft ran   20
## 931                    aircraft touched   20
## 932                        an explosive   20
## 933                              at too   20
## 934                           bound for   20
## 935                               by an   20
## 936                  cause undetermined   20
## 937                          cleared to   20
## 938                          climbed to   20
## 939                      combination of   20
## 940                      control system   20
## 941                   crew coordination   20
## 942                        crew fatigue   20
## 943                            crew had   20
## 944                       descending to   20
## 945                    descent altitude   20
## 946                         engines and   20
## 947                        fire crashed   20
## 948                        flight while   20
## 949                              hit by   20
## 950                           hit trees   20
## 951                   immediately after   20
## 952                         impact with   20
## 953                              in mid   20
## 954                           in midair   20
## 955                       initial climb   20
## 956                        into adverse   20
## 957                           landed in   20
## 958                          maintain a   20
## 959                     miles southwest   20
## 960                    minimum altitude   20
## 961                     minimum descent   20
## 962                         monitor the   20
## 963                      mountain after   20
## 964                           night the   20
## 965                           of engine   20
## 966                              of his   20
## 967                             of poor   20
## 968                         pilot tried   20
## 969                         plane broke   20
## 970                      procedures and   20
## 971                            rain the   20
## 972                          right turn   20
## 973                           route and   20
## 974                       seconds after   20
## 975                        survived the   20
## 976                         test flight   20
## 977                            the only   20
## 978               thunderstorm activity   20
## 979                          to monitor   20
## 980                             to poor   20
## 981                          to recover   20
## 982                              up the   20
## 983                            where it   20
## 984                         wing struck   20
## 985                              1 mile   19
## 986                           5 minutes   19
## 987                            a forest   19
## 988                          a military   19
## 989                            a sudden   19
## 990                          after take   19
## 991                         air missile   19
## 992                      aircraft which   19
## 993                           and after   19
## 994                           and avoid   19
## 995                            and crew   19
## 996                            and lost   19
## 997                          and strong   19
## 998                     approach lights   19
## 999                       be determined   19
## 1000                          broke off   19
## 1001                      conditions of   19
## 1002                         crashed en   19
## 1003                           crew and   19
## 1004                          damage to   19
## 1005                   elevator control   19
## 1006                   fatigue fracture   19
## 1007                         forced the   19
## 1008                          ground at   19
## 1009                         high winds   19
## 1010                           in dense   19
## 1011                     in mountainous   19
## 1012                          it struck   19
## 1013                       main landing   19
## 1014                    miles northeast   19
## 1015                    mountains while   19
## 1016                           of about   19
## 1017                          of flight   19
## 1018                              off a   19
## 1019                      pitch control   19
## 1020                         plane made   19
## 1021                      radio contact   19
## 1022                        reasons the   19
## 1023                          river the   19
## 1024                           route in   19
## 1025                          salt lake   19
## 1026                      san francisco   19
## 1027                       snow covered   19
## 1028                           spin and   19
## 1029                            that he   19
## 1030                           that was   19
## 1031                       the airfield   19
## 1032                     the controller   19
## 1033                            the faa   19
## 1034                        the initial   19
## 1035                          the stall   19
## 1036                           the twin   19
## 1037                            time to   19
## 1038                           to stall   19
## 1039                         two pilots   19
## 1040                         veered off   19
## 1041                       went missing   19
## 1042                     wreckage found   19
## 1043                         15 minutes   18
## 1044                           50 miles   18
## 1045                            a cliff   18
## 1046                          action of   18
## 1047                    aircraft landed   18
## 1048                        airport but   18
## 1049                       airport when   18
## 1050                         all aboard   18
## 1051                        allowed the   18
## 1052                        altitude in   18
## 1053                        altitude to   18
## 1054                     altitude while   18
## 1055                         an aborted   18
## 1056                            and low   18
## 1057                          and their   18
## 1058                          and while   18
## 1059                     approach after   18
## 1060                    associated with   18
## 1061                             at sea   18
## 1062                        broke apart   18
## 1063                         burned the   18
## 1064                       burned while   18
## 1065                            but was   18
## 1066                           caused a   18
## 1067                           close to   18
## 1068                     contributed to   18
## 1069                        declared an   18
## 1070                      destroyed the   18
## 1071                    engine problems   18
## 1072                         ever found   18
## 1073                          field and   18
## 1074                        for landing   18
## 1075                         from radar   18
## 1076                             had to   18
## 1077                       improper ifr   18
## 1078                              it to   18
## 1079                            it took   18
## 1080                        killed when   18
## 1081                       level flight   18
## 1082                            low and   18
## 1083                             low to   18
## 1084                   marginal weather   18
## 1085                    miles northwest   18
## 1086                    miles southeast   18
## 1087                      minutes later   18
## 1088                        of altitude   18
## 1089                             of ice   18
## 1090                           onto the   18
## 1091                      pilot decided   18
## 1092                         pilot lost   18
## 1093                         pitched up   18
## 1094                    plane descended   18
## 1095                      plane overran   18
## 1096                         plane then   18
## 1097                 positioning flight   18
## 1098                        rather than   18
## 1099                        should have   18
## 1100                           stop the   18
## 1101                          storm the   18
## 1102                         system the   18
## 1103                         takeoff in   18
## 1104                          that they   18
## 1105                          the andes   18
## 1106                     the flightcrew   18
## 1107                     the instrument   18
## 1108                            the low   18
## 1109                       the probable   18
## 1110                          the third   18
## 1111                   thunderstorm the   18
## 1112                           to crash   18
## 1113                             top of   18
## 1114                        trees while   18
## 1115                     turbulence the   18
## 1116                    unknown crashed   18
## 1117                         was taking   18
## 1118                           1,000 ft   17
## 1119                             500 ft   17
## 1120                         a critical   17
## 1121                           a factor   17
## 1122                           a ravine   17
## 1123                        aborted the   17
## 1124                   after attempting   17
## 1125                     after becoming   17
## 1126               aircraft experienced   17
## 1127                       airplane was   17
## 1128                         airport at   17
## 1129                     airport during   17
## 1130                            an hour   17
## 1131                  an uncontrollable   17
## 1132                            and had   17
## 1133                     and inadequate   17
## 1134                           and snow   17
## 1135                              at fl   17
## 1136                        believed to   17
## 1137                          between a   17
## 1138                        carried out   17
## 1139                   conditions which   17
## 1140                       crew decided   17
## 1141                        cruising at   17
## 1142                         dark night   17
## 1143                   disappeared from   17
## 1144                     engines failed   17
## 1145                      error crashed   17
## 1146                       factors were   17
## 1147                        failure due   17
## 1148                        feather the   17
## 1149                     flight control   17
## 1150                    flight planning   17
## 1151                         high speed   17
## 1152                             it hit   17
## 1153                     killed crashed   17
## 1154                        landing but   17
## 1155                            lost in   17
## 1156                         lost power   17
## 1157                          mile from   17
## 1158                       not maintain   17
## 1159                       not properly   17
## 1160                           of water   17
## 1161                        plane began   17
## 1162                       plane failed   17
## 1163                            ran off   17
## 1164                           right of   17
## 1165                     rising terrain   17
## 1166                          struck mt   17
## 1167                       struck power   17
## 1168                         tail rotor   17
## 1169                      terrain while   17
## 1170                             that a   17
## 1171                        the control   17
## 1172                        the correct   17
## 1173                        the forward   17
## 1174                            the jet   17
## 1175                          the power   17
## 1176                         the summit   17
## 1177                   thunderstorm and   17
## 1178                       to determine   17
## 1179                          to engine   17
## 1180                         to feather   17
## 1181                          tree tops   17
## 1182                           trees on   17
## 1183                            two and   17
## 1184                        two minutes   17
## 1185                            type of   17
## 1186                           was able   17
## 1187                             was at   17
## 1188                          water and   17
## 1189                      weather while   17
## 1190                          which had   17
## 1191                           wing tip   17
## 1192                            with no   17
## 1193                         30 minutes   16
## 1194                            a cloud   16
## 1195                         a distress   16
## 1196                             a dive   16
## 1197                          a fatigue   16
## 1198                           a midair   16
## 1199                             a mile   16
## 1200                           a remote   16
## 1201                            a river   16
## 1202                  aircraft collided   16
## 1203                      aircraft then   16
## 1204                          among the   16
## 1205                             an air   16
## 1206                           an error   16
## 1207                            an open   16
## 1208                            and its   16
## 1209                   another aircraft   16
## 1210                            area at   16
## 1211                         around was   16
## 1212                         attempt at   16
## 1213                            avoid a   16
## 1214                          avoid the   16
## 1215                          away from   16
## 1216                    became airborne   16
## 1217                  becoming airborne   16
## 1218                      below minimum   16
## 1219                          carry out   16
## 1220                            city of   16
## 1221                          climb and   16
## 1222                        climbing to   16
## 1223                           coast of   16
## 1224                        crashed due   16
## 1225                          dove into   16
## 1226                      engine during   16
## 1227                         feet above   16
## 1228                        flight plan   16
## 1229                         flying low   16
## 1230                              ft in   16
## 1231                       ground after   16
## 1232                              had a   16
## 1233                          icing the   16
## 1234                      including the   16
## 1235                        is believed   16
## 1236                      killed aboard   16
## 1237                       killed along   16
## 1238                   landing approach   16
## 1239                          less than   16
## 1240                         located in   16
## 1241                        los angeles   16
## 1242                  maintain adequate   16
## 1243                 mechanical failure   16
## 1244                     military plane   16
## 1245                     minutes before   16
## 1246                     mountain range   16
## 1247                          number of   16
## 1248                           of speed   16
## 1249                             off at   16
## 1250                     passengers the   16
## 1251                      pilot radioed   16
## 1252                      plane ditched   16
## 1253                           plane in   16
## 1254                          plane ran   16
## 1255                        returned to   16
## 1256                        route after   16
## 1257                       scheduled to   16
## 1258                          slopes of   16
## 1259                           snow and   16
## 1260                      stall warning   16
## 1261                    takeoff crashed   16
## 1262                    terrain crashed   16
## 1263                            the aft   16
## 1264                        the english   16
## 1265                           the high   16
## 1266                         the number   16
## 1267                          the outer   16
## 1268                         the proper   16
## 1269                         the reason   16
## 1270                          the speed   16
## 1271                            the top   16
## 1272                           to abort   16
## 1273                          to detect   16
## 1274                             to its   16
## 1275                         to provide   16
## 1276                      undershot the   16
## 1277                   undetermined the   16
## 1278                      was attempted   16
## 1279                            was due   16
## 1280                     was overloaded   16
## 1281                      was scheduled   16
## 1282                          where the   16
## 1283                         with trees   16
## 1284                         20 minutes   15
## 1285                            5 miles   15
## 1286                            6 miles   15
## 1287                            8 miles   15
## 1288                            a large   15
## 1289                            a night   15
## 1290                           a timely   15
## 1291                          about the   15
## 1292                      after hitting   15
## 1293                           after it   15
## 1294                      after running   15
## 1295                      air ambulance   15
## 1296                     aircraft while   15
## 1297                          airport a   15
## 1298                   altitude crashed   15
## 1299                       altitude for   15
## 1300                           and fire   15
## 1301                           and made   15
## 1302                           and rain   15
## 1303                     and turbulence   15
## 1304                           and went   15
## 1305                      anti aircraft   15
## 1306                approach procedures   15
## 1307                        captain was   15
## 1308                       cargo flight   15
## 1309                         clouds the   15
## 1310                  collision between   15
## 1311                   conditions while   15
## 1312                       descended to   15
## 1313                      double engine   15
## 1314                      down attitude   15
## 1315                       engine which   15
## 1316                           error by   15
## 1317                          errors by   15
## 1318                          execute a   15
## 1319                            feet in   15
## 1320                          fence and   15
## 1321                        few minutes   15
## 1322                         fire while   15
## 1323                 flight instruments   15
## 1324                         flying the   15
## 1325                        from runway   15
## 1326                           ft short   15
## 1327                    fuel exhaustion   15
## 1328                           gear and   15
## 1329                     ground crashed   15
## 1330                       high terrain   15
## 1331                       his position   15
## 1332                           in icing   15
## 1333                          island of   15
## 1334                         killed and   15
## 1335                          killed in   15
## 1336                           km south   15
## 1337                           land and   15
## 1338                       land crashed   15
## 1339                           left the   15
## 1340                        low ceiling   15
## 1341                           make the   15
## 1342                 military transport   15
## 1343                       mountain and   15
## 1344                    mountain during   15
## 1345                      mountain near   15
## 1346                   mountainous area   15
## 1347                          night and   15
## 1348                           night in   15
## 1349                           not have   15
## 1350                        ocean while   15
## 1351                             of air   15
## 1352                             of one   15
## 1353                        off crashed   15
## 1354                           order to   15
## 1355                     other aircraft   15
## 1356                          pilots to   15
## 1357                           ran into   15
## 1358                       reference to   15
## 1359                      reported that   15
## 1360                            see and   15
## 1361                          taken off   15
## 1362                  terrain clearance   15
## 1363                           than the   15
## 1364                       the improper   15
## 1365                          the pitch   15
## 1366                          the river   15
## 1367                           the turn   15
## 1368                       then crashed   15
## 1369                           they had   15
## 1370                      this accident   15
## 1371                  thunderstorms and   15
## 1372                           to carry   15
## 1373                             to his   15
## 1374                       to recognize   15
## 1375                            to turn   15
## 1376                           too high   15
## 1377                           too late   15
## 1378                         took place   15
## 1379                  transport crashed   15
## 1380                      visual flight   15
## 1381                             was to   15
## 1382                       with terrain   15
## 1383                           3,000 ft   14
## 1384                        a collision   14
## 1385                      a positioning   14
## 1386                        a premature   14
## 1387                        a propeller   14
## 1388                        a sandstorm   14
## 1389                          a surface   14
## 1390                          abort the   14
## 1391                         absence of   14
## 1392                  accident happened   14
## 1393                     after entering   14
## 1394                        against the   14
## 1395                    aircraft banked   14
## 1396                    airport shortly   14
## 1397                       airspeed and   14
## 1398                      and attempted   14
## 1399                      and continued   14
## 1400                             and go   14
## 1401                             and it   14
## 1402                           and that   14
## 1403                  and thunderstorms   14
## 1404                        appeared to   14
## 1405                     application of   14
## 1406                          atc error   14
## 1407                           both the   14
## 1408                          burned on   14
## 1409                        cockpit and   14
## 1410                 collision occurred   14
## 1411                          coming to   14
## 1412                         crash into   14
## 1413                     crew descended   14
## 1414                    decision height   14
## 1415                     determined the   14
## 1416                             down a   14
## 1417               emergency procedures   14
## 1418                       engine while   14
## 1419                    english channel   14
## 1420                         entered an   14
## 1421                      equipped with   14
## 1422                          fell into   14
## 1423                          fog after   14
## 1424                           had just   14
## 1425                        his failure   14
## 1426                         impact the   14
## 1427                         impacted a   14
## 1428                        in marginal   14
## 1429                           in order   14
## 1430                            in time   14
## 1431             inadequate maintenance   14
## 1432                        initiated a   14
## 1433                        killing all   14
## 1434                         losing the   14
## 1435                       lost contact   14
## 1436                         mile short   14
## 1437                       minutes into   14
## 1438                     mountain slope   14
## 1439                           no trace   14
## 1440                       not possible   14
## 1441                        occurred in   14
## 1442                          ocean the   14
## 1443                             of two   14
## 1444                     overloaded the   14
## 1445                    passenger cabin   14
## 1446                    passenger plane   14
## 1447                   pilot's decision   14
## 1448                    pilot descended   14
## 1449                          pilot who   14
## 1450                        plane crash   14
## 1451                         plunged to   14
## 1452                       preparing to   14
## 1453                  prescribed course   14
## 1454                       problems the   14
## 1455                      problems with   14
## 1456                           runway a   14
## 1457                          runway at   14
## 1458                      runway lights   14
## 1459                          runway on   14
## 1460                     severe weather   14
## 1461                      single engine   14
## 1462                           speed of   14
## 1463                         sucked out   14
## 1464                       takeoff roll   14
## 1465                           the bomb   14
## 1466                   the flightcrew's   14
## 1467                          the glide   14
## 1468                           the gulf   14
## 1469                         the island   14
## 1470                      the mountains   14
## 1471                          the piper   14
## 1472                      the remaining   14
## 1473                          to effect   14
## 1474                          to ensure   14
## 1475                           to enter   14
## 1476                             to get   14
## 1477                        to initiate   14
## 1478                         to prevent   14
## 1479               uncontrolled descent   14
## 1480                     vfr conditions   14
## 1481                        was applied   14
## 1482                           was poor   14
## 1483                            when he   14
## 1484                      windshear the   14
## 1485                              1 and   13
## 1486                          1.5 miles   13
## 1487                             300 ft   13
## 1488                           40 miles   13
## 1489                            a ditch   13
## 1490                            a final   13
## 1491                              a fog   13
## 1492                             a lack   13
## 1493                             a rice   13
## 1494                            a sharp   13
## 1495                             a test   13
## 1496                             a wide   13
## 1497                  accident occurred   13
## 1498                    accordance with   13
## 1499                       addition the   13
## 1500                       after flying   13
## 1501                          after two   13
## 1502                 aircraft continued   13
## 1503                      aircraft fire   13
## 1504                    airplane struck   13
## 1505                    altitude during   13
## 1506                       altitude too   13
## 1507                       an alternate   13
## 1508                      an embankment   13
## 1509                              and 3   13
## 1510                             and at   13
## 1511                     and attempting   13
## 1512                      and descended   13
## 1513                             and no   13
## 1514                           angle of   13
## 1515                   approach crashed   13
## 1516                    approach during   13
## 1517                       approach was   13
## 1518                            at high   13
## 1519                       attempted go   13
## 1520                        attempts to   13
## 1521                           base the   13
## 1522                          board the   13
## 1523                             but it   13
## 1524                 captain's decision   13
## 1525                        captain and   13
## 1526                         carrying a   13
## 1527                          cause the   13
## 1528                          climb the   13
## 1529                     control during   13
## 1530                          crashed 2   13
## 1531                     crew attempted   13
## 1532                        decision by   13
## 1533                          device in   13
## 1534                directional control   13
## 1535                         ditched in   13
## 1536                            down in   13
## 1537                         each other   13
## 1538                      elevator trim   13
## 1539                  emergency descent   13
## 1540                        engines the   13
## 1541                       execution of   13
## 1542                    failure crashed   13
## 1543                         feet below   13
## 1544                        field while   13
## 1545                        fire during   13
## 1546                          flames in   13
## 1547                        fog crashed   13
## 1548                          forced to   13
## 1549                       hard landing   13
## 1550                  improperly loaded   13
## 1551                      in accordance   13
## 1552                      in conditions   13
## 1553                           in foggy   13
## 1554                            in this   13
## 1555                         island the   13
## 1556                        killing the   13
## 1557                       landed short   13
## 1558                       last message   13
## 1559                       leading edge   13
## 1560                          losing an   13
## 1561                        lost height   13
## 1562                          lost with   13
## 1563                   mountain crashed   13
## 1564                             near a   13
## 1565                        obscured by   13
## 1566                             of low   13
## 1567                           of which   13
## 1568                           off with   13
## 1569                            on take   13
## 1570                             out in   13
## 1571                    perimeter fence   13
## 1572                          pilot had   13
## 1573                      plane entered   13
## 1574                     plane impacted   13
## 1575                  procedural errors   13
## 1576                     procedures for   13
## 1577                       recovery was   13
## 1578                     returning from   13
## 1579                            route a   13
## 1580                            sank in   13
## 1581                    second approach   13
## 1582                        second time   13
## 1583                         section of   13
## 1584                            see the   13
## 1585                          takeoff a   13
## 1586                            that it   13
## 1587                          that were   13
## 1588                           the dark   13
## 1589                         the desert   13
## 1590                      the emergency   13
## 1591                            the ils   13
## 1592                  the mediterranean   13
## 1593                           the next   13
## 1594                         the normal   13
## 1595                           the prop   13
## 1596                          the radio   13
## 1597                         the result   13
## 1598                     the separation   13
## 1599                    the sightseeing   13
## 1600                          the south   13
## 1601                         to correct   13
## 1602                       to establish   13
## 1603                            to fuel   13
## 1604                         to perform   13
## 1605                           trace of   13
## 1606                    traffic control   13
## 1607                          trees the   13
## 1608                            used by   13
## 1609                           very low   13
## 1610                        was aborted   13
## 1611                          was about   13
## 1612                          was below   13
## 1613                         was making   13
## 1614                         were among   13
## 1615                          when they   13
## 1616                           which it   13
## 1617                            who had   13
## 1618                         would have   13
## 1619                         1,000 feet   12
## 1620                           12 miles   12
## 1621                             200 ft   12
## 1622                            4 miles   12
## 1623                           5,000 ft   12
## 1624                           60 miles   12
## 1625                      a combination   12
## 1626                             a hard   12
## 1627                            a power   12
## 1628                    accumulation of   12
## 1629                     after reaching   12
## 1630                    after reporting   12
## 1631                  aircraft impacted   12
## 1632                  aircraft suffered   12
## 1633                        airport for   12
## 1634                         airport on   12
## 1635                           all four   12
## 1636                          all three   12
## 1637                       although the   12
## 1638                       an excessive   12
## 1639                         and caused   12
## 1640                     and eventually   12
## 1641                         and flight   12
## 1642                           and high   12
## 1643                       and impacted   12
## 1644                          and tried   12
## 1645                      approach path   12
## 1646                       around after   12
## 1647                 artificial horizon   12
## 1648                            as well   12
## 1649                       attemping to   12
## 1650                           bank and   12
## 1651                        became lost   12
## 1652                          broke out   12
## 1653                       building and   12
## 1654                        cashed into   12
## 1655                  circumstances the   12
## 1656                          clear the   12
## 1657                       climbing the   12
## 1658                      contacted the   12
## 1659                      continued the   12
## 1660                        control due   12
## 1661                          crashed a   12
## 1662                    crashed through   12
## 1663                            crew in   12
## 1664                          crew lost   12
## 1665                        design flaw   12
## 1666                   disappeared over   12
## 1667                    domestic flight   12
## 1668                            down on   12
## 1669                 electrical failure   12
## 1670                   electrical power   12
## 1671                     encounter with   12
## 1672                         executed a   12
## 1673                      experienced a   12
## 1674                     experiencing a   12
## 1675                         factors in   12
## 1676                         failure in   12
## 1677                         failure on   12
## 1678                         feet after   12
## 1679                            feet of   12
## 1680                         feet while   12
## 1681                        field after   12
## 1682                         fire broke   12
## 1683                           fire was   12
## 1684                   flight attendant   12
## 1685                        fracture of   12
## 1686                           from new   12
## 1687                           gear was   12
## 1688                             hit an   12
## 1689                           hit high   12
## 1690                           icing of   12
## 1691                            in loss   12
## 1692                          in severe   12
## 1693                  incapacitation of   12
## 1694                    instruments the   12
## 1695                             it had   12
## 1696                         just after   12
## 1697                          landed on   12
## 1698                     landing during   12
## 1699                          left bank   12
## 1700                            left of   12
## 1701                      lose altitude   12
## 1702                       lose control   12
## 1703                             lost a   12
## 1704                             low an   12
## 1705             maintenance procedures   12
## 1706                       maneuver the   12
## 1707                  military aircraft   12
## 1708                          more than   12
## 1709                   mountain located   12
## 1710                      non precision   12
## 1711                     not determined   12
## 1712                            of crew   12
## 1713                              of no   12
## 1714                            of this   12
## 1715                      only survivor   12
## 1716                         open field   12
## 1717                       operation of   12
## 1718                           over and   12
## 1719                      pacific ocean   12
## 1720                          pilots of   12
## 1721                       plane rolled   12
## 1722                       plunged into   12
## 1723                       position and   12
## 1724                          power the   12
## 1725                           power to   12
## 1726                    propeller blade   12
## 1727                         reason for   12
## 1728               reasons undetermined   12
## 1729                          region of   12
## 1730                         related to   12
## 1731                        response to   12
## 1732                        rotor blade   12
## 1733                     second attempt   12
## 1734                     second landing   12
## 1735                      shallow water   12
## 1736                          short and   12
## 1737                          sink rate   12
## 1738              situational awareness   12
## 1739                          speed the   12
## 1740                         suffered a   12
## 1741                        terrain and   12
## 1742                        the absence   12
## 1743                           the city   12
## 1744                           the door   12
## 1745                           the east   12
## 1746                          the night   12
## 1747                        the pacific   12
## 1748                          the route   12
## 1749                            the the   12
## 1750                         the thrust   12
## 1751                         the united   12
## 1752                            the way   12
## 1753                      three engines   12
## 1754                           to ditch   12
## 1755                           to earth   12
## 1756                           to reach   12
## 1757                           tree and   12
## 1758                        twin engine   12
## 1759                        two engines   12
## 1760                              up to   12
## 1761                     was descending   12
## 1762                       was diverted   12
## 1763                             was no   12
## 1764                             way to   12
## 1765                         weather at   12
## 1766                    weather crashed   12
## 1767                         weight and   12
## 1768                           wing the   12
## 1769                           with one   12
## 1770                         within the   12
## 1771                           2,000 ft   11
## 1772                           200 feet   11
## 1773                           25 miles   11
## 1774                           500 feet   11
## 1775                           a design   11
## 1776                      a mountainous   11
## 1777                             a near   11
## 1778                            a short   11
## 1779                      a sightseeing   11
## 1780                            a speed   11
## 1781                            a wrong   11
## 1782                    aborted landing   11
## 1783                   accident crashed   11
## 1784                          adhere to   11
## 1785                    after departing   11
## 1786                      after landing   11
## 1787                  after penetrating   11
## 1788                     after striking   11
## 1789                          air speed   11
## 1790                   aircraft climbed   11
## 1791               aircraft disappeared   11
## 1792                    aircraft during   11
## 1793                     an inadvertent   11
## 1794                    an uncontrolled   11
## 1795                              and 4   11
## 1796                        and causing   11
## 1797                            and did   11
## 1798                         and during   11
## 1799                           and lack   11
## 1800                        and landing   11
## 1801                        and plunged   11
## 1802                           and slid   11
## 1803                           and were   11
## 1804                    andes mountains   11
## 1805                      approach crew   11
## 1806                      approach when   11
## 1807                     approach which   11
## 1808                           area and   11
## 1809                           at about   11
## 1810                           at least   11
## 1811                     being diverted   11
## 1812                           break up   11
## 1813                          by clouds   11
## 1814                     charter flight   11
## 1815                   climbing through   11
## 1816                      cloud covered   11
## 1817                      collision the   11
## 1818                      conditions at   11
## 1819                    conditions with   11
## 1820                    continuation of   11
## 1821                      control tower   11
## 1822                         could have   11
## 1823                         crashed 10   11
## 1824                        degree turn   11
## 1825                         descent to   11
## 1826                    destination the   11
## 1827                    disoriented and   11
## 1828                     during landing   11
## 1829                      emergency and   11
## 1830                     engine crashed   11
## 1831                          excess of   11
## 1832                     failure during   11
## 1833                      failure while   11
## 1834                          feet from   11
## 1835                          feet when   11
## 1836                       fire erupted   11
## 1837                       fire shortly   11
## 1838                    first officer's   11
## 1839                       flight after   11
## 1840                          flight at   11
## 1841                    flight controls   11
## 1842                          flight of   11
## 1843                       flight rules   11
## 1844                       flight under   11
## 1845                        float plane   11
## 1846                        flying from   11
## 1847                        flying into   11
## 1848                     flying through   11
## 1849                         flying too   11
## 1850                        for takeoff   11
## 1851                      found crashed   11
## 1852                           found on   11
## 1853                           front of   11
## 1854                           ft after   11
## 1855                         full power   11
## 1856                      ground during   11
## 1857                         had failed   11
## 1858                            had not   11
## 1859                        have caused   11
## 1860                         hour after   11
## 1861                             ice on   11
## 1862                      ifr operation   11
## 1863                        ignition of   11
## 1864                      in attempting   11
## 1865                             in bad   11
## 1866                   in deteriorating   11
## 1867                          in excess   11
## 1868                             in not   11
## 1869                            in snow   11
## 1870                          in strong   11
## 1871                         in weather   11
## 1872                           in which   11
## 1873                       inability of   11
## 1874                       inability to   11
## 1875              insufficient altitude   11
## 1876                          into lake   11
## 1877                           killed a   11
## 1878                       killed while   11
## 1879                         land after   11
## 1880                   landing attempts   11
## 1881                       located near   11
## 1882                          low level   11
## 1883                       low overcast   11
## 1884                   maintain control   11
## 1885                 military personnel   11
## 1886                     mountain ridge   11
## 1887                      mountains the   11
## 1888                  municipal airport   11
## 1889                          nose gear   11
## 1890                          nose high   11
## 1891                       not equipped   11
## 1892                        ocean after   11
## 1893                           of 1,000   11
## 1894                        of adequate   11
## 1895                             of all   11
## 1896                           of mount   11
## 1897                          of severe   11
## 1898                   of thunderstorms   11
## 1899                           of trees   11
## 1900                             off on   11
## 1901                              on mt   11
## 1902                       outer marker   11
## 1903                      overloaded by   11
## 1904                      passenger was   11
## 1905                      personnel and   11
## 1906                       pilot failed   11
## 1907                         pilot made   11
## 1908                          pilot the   11
## 1909                         plane came   11
## 1910                           plane on   11
## 1911                        port engine   11
## 1912                        prepared to   11
## 1913                   prescribed route   11
## 1914                        presence of   11
## 1915                      procedures by   11
## 1916                        radio range   11
## 1917                         radioed he   11
## 1918                            rear of   11
## 1919                        reported to   11
## 1920                        required to   11
## 1921                   residential area   11
## 1922                     reverse thrust   11
## 1923                             rio de   11
## 1924                         rudder and   11
## 1925                         runway was   11
## 1926                             sea in   11
## 1927                        skidded off   11
## 1928                   starboard engine   11
## 1929                        steep climb   11
## 1930                         striking a   11
## 1931                       striking the   11
## 1932                       system which   11
## 1933                       tail section   11
## 1934                         the action   11
## 1935                              the b   11
## 1936                      the collision   11
## 1937                      the company's   11
## 1938                              the f   11
## 1939                        the fighter   11
## 1940                      the hijackers   11
## 1941                             the in   11
## 1942                        the maximum   11
## 1943                            the non   11
## 1944                      the published   11
## 1945                      the situation   11
## 1946                      the throttles   11
## 1947                           there is   11
## 1948                      third landing   11
## 1949                      three minutes   11
## 1950                         to execute   11
## 1951                            to pull   11
## 1952                 traffic controller   11
## 1953                     two passengers   11
## 1954                          veered to   11
## 1955                        vicinity of   11
## 1956                           was also   11
## 1957                          was heard   11
## 1958                       was hijacked   11
## 1959                            was hit   11
## 1960                      was initiated   11
## 1961                        was located   11
## 1962                           water in   11
## 1963                      weather after   11
## 1964                  weather condtions   11
## 1965                         were found   11
## 1966                        which could   11
## 1967                     which recovery   11
## 1968                    while attemping   11
## 1969                    while returning   11
## 1970                           wind and   11
## 1971                                1 2   10
## 1972                           150 feet   10
## 1973                           18 miles   10
## 1974                              3 and   10
## 1975                       a controlled   10
## 1976                             a corn   10
## 1977                          a highway   10
## 1978                           a mayday   10
## 1979                     a navigational   10
## 1980                           a proper   10
## 1981                           a runway   10
## 1982                             a stop   10
## 1983                             a very   10
## 1984                             a wall   10
## 1985                          a warning   10
## 1986                        aboard were   10
## 1987                    aborted takeoff   10
## 1988                           about 20   10
## 1989                        adjacent to   10
## 1990                       after making   10
## 1991                            air and   10
## 1992                        air station   10
## 1993                       airborne the   10
## 1994                     aircraft began   10
## 1995                  aircraft exploded   10
## 1996                    aircraft failed   10
## 1997                    aircraft flying   10
## 1998                      aircraft into   10
## 1999                        aircraft on   10
## 2000                  aircraft suddenly   10
## 2001                       airliner was   10
## 2002                   airplane crashed   10
## 2003                   altitude without   10
## 2004                      an electrical   10
## 2005                          an unsafe   10
## 2006                       and aircraft   10
## 2007                             and co   10
## 2008                        and ditched   10
## 2009                           and fell   10
## 2010                          and icing   10
## 2011                         and killed   10
## 2012                       and maintain   10
## 2013                        and reduced   10
## 2014                            and too   10
## 2015                       approach for   10
## 2016                       attempted an   10
## 2017                       believed the   10
## 2018                       burned after   10
## 2019                         by british   10
## 2020                    captain decided   10
## 2021                           chose to   10
## 2022                           climb to   10
## 2023                        collided in   10
## 2024                         command to   10
## 2025                      conditions in   10
## 2026                        copilot was   10
## 2027                         corn field   10
## 2028                   covered mountain   10
## 2029                   crashed inverted   10
## 2030                         crew could   10
## 2031                          crew flew   10
## 2032                          crew made   10
## 2033                        crew member   10
## 2034                           de icing   10
## 2035                        decision of   10
## 2036                       descent into   10
## 2037                       descent rate   10
## 2038                          design of   10
## 2039                     disappeared en   10
## 2040                      diverted from   10
## 2041                            edge of   10
## 2042                   emergency return   10
## 2043                          engine to   10
## 2044                       exceeded the   10
## 2045                        executing a   10
## 2046            explosive decompression   10
## 2047                          failed on   10
## 2048                        failure was   10
## 2049                      fatigue crack   10
## 2050                    fatigue failure   10
## 2051                        fatigue the   10
## 2052                           field in   10
## 2053                       fire warning   10
## 2054                       five minutes   10
## 2055                       flames after   10
## 2056                        flying over   10
## 2057                  follow prescribed   10
## 2058                           from san   10
## 2059                 fuel contamination   10
## 2060                          fuel leak   10
## 2061                         glide path   10
## 2062                        glide slope   10
## 2063                   ground proximity   10
## 2064                       ground short   10
## 2065                            gulf of   10
## 2066                         heavy snow   10
## 2067                      high attitude   10
## 2068                           hold the   10
## 2069                            hole in   10
## 2070                          houses in   10
## 2071               improper maintenance   10
## 2072                        in darkness   10
## 2073                            in such   10
## 2074                         initiate a   10
## 2075                        injured the   10
## 2076                    instruments and   10
## 2077                           into imc   10
## 2078                    into instrument   10
## 2079                       inverted and   10
## 2080                   it's destination   10
## 2081                       it attempted   10
## 2082                        jet crashed   10
## 2083                        just before   10
## 2084                             land a   10
## 2085                    landing crashed   10
## 2086                           lift off   10
## 2087                    losing altitude   10
## 2088                       message from   10
## 2089                      metal fatigue   10
## 2090                        missile the   10
## 2091                    mountains after   10
## 2092                       mountains in   10
## 2093                  navigational aids   10
## 2094                             no one   10
## 2095                         nose dived   10
## 2096                            nose up   10
## 2097                             of 500   10
## 2098                             of fog   10
## 2099                           of pitch   10
## 2100                             of san   10
## 2101                           of their   10
## 2102                            of wind   10
## 2103                             off an   10
## 2104                          off shore   10
## 2105                          off while   10
## 2106                         on landing   10
## 2107                             on one   10
## 2108                             pan am   10
## 2109                           path and   10
## 2110                            peak in   10
## 2111                     penetrated the   10
## 2112                            pick up   10
## 2113                      pilot fatigue   10
## 2114                         pilots and   10
## 2115                     pilots failure   10
## 2116                          placed on   10
## 2117                       plane banked   10
## 2118                  plane experienced   10
## 2119                         plane into   10
## 2120                     planes crashed   10
## 2121                      poor judgment   10
## 2122                       position the   10
## 2123                        problem and   10
## 2124                            pull up   10
## 2125                      rainstorm the   10
## 2126                       reaching the   10
## 2127                       rebel forces   10
## 2128                       recover from   10
## 2129                       reported the   10
## 2130                      retraction of   10
## 2131                           roll and   10
## 2132                        sea crashed   10
## 2133                          series of   10
## 2134                      snowstorm the   10
## 2135                           stage of   10
## 2136                          stall the   10
## 2137                        stalled the   10
## 2138                             such a   10
## 2139                       survived but   10
## 2140                              sw of   10
## 2141                         system and   10
## 2142                          system to   10
## 2143                         system was   10
## 2144                      takeoff while   10
## 2145                       takeoff with   10
## 2146                         the bottom   10
## 2147                          the climb   10
## 2148                          the float   10
## 2149                            the ice   10
## 2150                           the most   10
## 2151                       the seaplane   10
## 2152                           the ship   10
## 2153                      the threshold   10
## 2154                            the u.s   10
## 2155                       the vicinity   10
## 2156                       the viscount   10
## 2157                           the west   10
## 2158                            this is   10
## 2159                      this resulted   10
## 2160                  thunderstorms the   10
## 2161                          to adhere   10
## 2162                          to safety   10
## 2163                             to san   10
## 2164                          to severe   10
## 2165                            too far   10
## 2166                           too fast   10
## 2167                          touch and   10
## 2168                      trees crashed   10
## 2169                           trees in   10
## 2170                       two aircraft   10
## 2171                         two killed   10
## 2172                uncontrollable fire   10
## 2173                          using the   10
## 2174                 visibility crashed   10
## 2175                     visibility was   10
## 2176                             was an   10
## 2177                       was believed   10
## 2178                        was cleared   10
## 2179                             was en   10
## 2180                         was forced   10
## 2181                           was over   10
## 2182                         was placed   10
## 2183                         was struck   10
## 2184                            well as   10
## 2185                            were in   10
## 2186                             when a   10
## 2187                    while preparing   10
## 2188                         wing broke   10
## 2189                            wing to   10
## 2190                       with another   10
## 2191                        years later   10
## 2192                          100 miles    9
## 2193                               2 km    9
## 2194                        3 propeller    9
## 2195                           3,500 ft    9
## 2196                           300 feet    9
## 2197                         4,000 feet    9
## 2198                           7,000 ft    9
## 2199                            a beach    9
## 2200                            a fence    9
## 2201                             a full    9
## 2202                        a lightning    9
## 2203                             a mail    9
## 2204                           a normal    9
## 2205                           a spiral    9
## 2206                              a u.s    9
## 2207                              a vfr    9
## 2208                          about 100    9
## 2209                           about 30    9
## 2210                           about 40    9
## 2211                            about a    9
## 2212                       according to    9
## 2213                      after lifting    9
## 2214                      after liftoff    9
## 2215                      air collision    9
## 2216                   aircraft control    9
## 2217                      aircraft were    9
## 2218                        airport due    9
## 2219                       allowing the    9
## 2220                  alternate airport    9
## 2221                          and began    9
## 2222                        and control    9
## 2223                         and engine    9
## 2224                         and landed    9
## 2225                            and not    9
## 2226                        and overran    9
## 2227                        and stalled    9
## 2228                           and they    9
## 2229                         anti icing    9
## 2230                     approach below    9
## 2231                          around in    9
## 2232                            as they    9
## 2233                              as to    9
## 2234                   at approximately    9
## 2235                            at that    9
## 2236                       attitude and    9
## 2237                           aware of    9
## 2238                         bank angle    9
## 2239                 became disoriented    9
## 2240                        being flown    9
## 2241                         being used    9
## 2242                          below mda    9
## 2243                            bomb in    9
## 2244                          bottom of    9
## 2245                     building while    9
## 2246                    burbank airport    9
## 2247                            but did    9
## 2248                        by japanese    9
## 2249                         causing an    9
## 2250                          check the    9
## 2251                       clearance to    9
## 2252                          climb out    9
## 2253                       collision at    9
## 2254                      complete loss    9
## 2255                        comply with    9
## 2256                         control by    9
## 2257                         control in    9
## 2258                     control inputs    9
## 2259                   coordination and    9
## 2260                        correct the    9
## 2261                           could be    9
## 2262                         course the    9
## 2263                       course while    9
## 2264                          crashed 5    9
## 2265                          crashed 6    9
## 2266                           crew due    9
## 2267                          crew were    9
## 2268                      cruise flight    9
## 2269                    dangerously low    9
## 2270                            day the    9
## 2271                        degrees the    9
## 2272                   descending below    9
## 2273                 descending through    9
## 2274                       destroyed by    9
## 2275                      determine the    9
## 2276                            died of    9
## 2277                      distress call    9
## 2278                   distress message    9
## 2279                          ditch and    9
## 2280                           dive the    9
## 2281                         dived into    9
## 2282                       diverting to    9
## 2283                          down with    9
## 2284                       during final    9
## 2285                        during poor    9
## 2286                         effects of    9
## 2287                         elected to    9
## 2288                    engine aircraft    9
## 2289                       engines were    9
## 2290                            enter a    9
## 2291                           error of    9
## 2292                           error on    9
## 2293                   evasive maneuver    9
## 2294                     excessive sink    9
## 2295                    experiencing an    9
## 2296                      explosion and    9
## 2297                       explosion in    9
## 2298                 extreme turbulence    9
## 2299                          fact that    9
## 2300                         failed due    9
## 2301                       failed while    9
## 2302                         failing to    9
## 2303                      failure after    9
## 2304                     fatigue cracks    9
## 2305                         fire after    9
## 2306                         fire which    9
## 2307                       flames while    9
## 2308                         flaps were    9
## 2309                     flight failure    9
## 2310                          flight on    9
## 2311                        flying boat    9
## 2312                       flying under    9
## 2313                             fog at    9
## 2314                   foggy conditions    9
## 2315                       following an    9
## 2316                       four engines    9
## 2317                          from it's    9
## 2318                          ft during    9
## 2319                        fuel supply    9
## 2320                           fuel the    9
## 2321                       fuselage and    9
## 2322                           going to    9
## 2323                        ground from    9
## 2324                          had taken    9
## 2325                           his wife    9
## 2326                        hitting the    9
## 2327                          hong kong    9
## 2328                        however the    9
## 2329                            in both    9
## 2330                             in his    9
## 2331                           in light    9
## 2332                           in three    9
## 2333                  inadvertent stall    9
## 2334                         it entered    9
## 2335                        it prepared    9
## 2336                        its landing    9
## 2337                       km northeast    9
## 2338                             km off    9
## 2339                       km southeast    9
## 2340                          lake city    9
## 2341                      lake michigan    9
## 2342                       landing when    9
## 2343                          las vegas    9
## 2344                         last radio    9
## 2345                      located about    9
## 2346                        mail flight    9
## 2347                       maintain the    9
## 2348                       meters short    9
## 2349                      national park    9
## 2350                          naval air    9
## 2351                              ne of    9
## 2352                           nm short    9
## 2353                          north sea    9
## 2354                           not been    9
## 2355                             not to    9
## 2356                obstructing terrain    9
## 2357                        of airspeed    9
## 2358                          of impact    9
## 2359                         off during    9
## 2360                     official cause    9
## 2361                           one half    9
## 2362                           one mile    9
## 2363                             one on    9
## 2364                            one was    9
## 2365                           only the    9
## 2366               operating procedures    9
## 2367                              out a    9
## 2368                            out and    9
## 2369                            peak at    9
## 2370                      penetrating a    9
## 2371                        people were    9
## 2372                        plane after    9
## 2373                       plane caught    9
## 2374                      plane pitched    9
## 2375                     plane suddenly    9
## 2376                        plane while    9
## 2377                        position of    9
## 2378                         power line    9
## 2379                 precision approach    9
## 2380              prescribed procedures    9
## 2381                       problem with    9
## 2382                  proximity warning    9
## 2383                         rebels the    9
## 2384                        reported an    9
## 2385                    reported engine    9
## 2386           residential neighborhood    9
## 2387                         return for    9
## 2388                         right hand    9
## 2389                           route on    9
## 2390                        route pilot    9
## 2391                       runway broke    9
## 2392                         safely the    9
## 2393                          same time    9
## 2394                            sea and    9
## 2395                     seconds before    9
## 2396                severe thunderstorm    9
## 2397                 shortly thereafter    9
## 2398                          smoke and    9
## 2399                           snow the    9
## 2400                        soccer team    9
## 2401                          speed was    9
## 2402                         stated the    9
## 2403                        strayed off    9
## 2404                  strong turbulence    9
## 2405                          struck an    9
## 2406                        struck high    9
## 2407                    takeoff failure    9
## 2408                         takeoff on    9
## 2409                        takeoff was    9
## 2410                      terrain after    9
## 2411                     terrain during    9
## 2412                             than a    9
## 2413                            that an    9
## 2414                           that led    9
## 2415                         that there    9
## 2416                       the altitude    9
## 2417                      the departure    9
## 2418                         the design    9
## 2419                      the explosion    9
## 2420                           the fact    9
## 2421                           the gear    9
## 2422                     the glideslope    9
## 2423                    the inadvertent    9
## 2424                         the indian    9
## 2425                          the lower    9
## 2426                    the maintenance    9
## 2427                       the presence    9
## 2428                         the slopes    9
## 2429                          the stick    9
## 2430                     the subsequent    9
## 2431                      the transport    9
## 2432                        the tupolev    9
## 2433                            the use    9
## 2434                        the western    9
## 2435                     their position    9
## 2436                      timely manner    9
## 2437                            to pick    9
## 2438                          to reduce    9
## 2439                          to remove    9
## 2440                          to strike    9
## 2441                           tops and    9
## 2442                        trouble the    9
## 2443                            turn at    9
## 2444                        turned back    9
## 2445                    two helicopters    9
## 2446                       unita rebels    9
## 2447                            use the    9
## 2448                            used to    9
## 2449                      visibility at    9
## 2450                     was attributed    9
## 2451                     was determined    9
## 2452                     was discovered    9
## 2453                          was going    9
## 2454                       was received    9
## 2455                          was still    9
## 2456                         was sucked    9
## 2457                          were ever    9
## 2458                        when flying    9
## 2459                  while maneuvering    9
## 2460                           with its    9
## 2461                        without the    9
## 2462                    zero visibility    9
## 2463                         1,500 feet    8
## 2464                             100 ft    8
## 2465                          2 engines    8
## 2466                          2.5 miles    8
## 2467                          3 engines    8
## 2468                           35 miles    8
## 2469                         40 minutes    8
## 2470                           400 feet    8
## 2471                               8 km    8
## 2472                         90 degrees    8
## 2473                            a cargo    8
## 2474                            a climb    8
## 2475                            a crash    8
## 2476                      a dangerously    8
## 2477                               a dc    8
## 2478                        a downdraft    8
## 2479                          a failure    8
## 2480                             a farm    8
## 2481                           a ground    8
## 2482                             a half    8
## 2483                             a loud    8
## 2484                      a malfunction    8
## 2485                           a nearby    8
## 2486                         a possible    8
## 2487                          a problem    8
## 2488                            a radio    8
## 2489                          a russian    8
## 2490                           a series    8
## 2491                          a shallow    8
## 2492                           a strong    8
## 2493                          a vehicle    8
## 2494                           about to    8
## 2495                          action in    8
## 2496                  aerodynamic stall    8
## 2497                     after circling    8
## 2498                   after descending    8
## 2499                    aircraft became    8
## 2500                       aircraft did    8
## 2501                       aircraft due    8
## 2502                    aircraft veered    8
## 2503                  ambulance crashed    8
## 2504                          an abrupt    8
## 2505                       an incorrect    8
## 2506                             an oil    8
## 2507                       and altitude    8
## 2508                     and descending    8
## 2509                       and elevator    8
## 2510                        and entered    8
## 2511                          and flaps    8
## 2512                             and he    8
## 2513                           and into    8
## 2514                          and right    8
## 2515                         and severe    8
## 2516                        and started    8
## 2517                          apart and    8
## 2518                      approach into    8
## 2519                     approach while    8
## 2520                            area in    8
## 2521                         around and    8
## 2522                         around but    8
## 2523                           at 7,000    8
## 2524                         attempt in    8
## 2525                       attitude the    8
## 2526                              b 727    8
## 2527                            back on    8
## 2528                            base in    8
## 2529                       being struck    8
## 2530                      believed that    8
## 2531                            below a    8
## 2532                          black sea    8
## 2533                           bomb was    8
## 2534                          by afghan    8
## 2535                            by crew    8
## 2536                           by enemy    8
## 2537                           by unita    8
## 2538                          cabin and    8
## 2539                       cabin heater    8
## 2540                     cabin pressure    8
## 2541                         captain in    8
## 2542                         captainã â    8
## 2543                          caught on    8
## 2544                        ceiling and    8
## 2545                          change in    8
## 2546              circumstances crashed    8
## 2547                           clear of    8
## 2548                     clearance from    8
## 2549                          coast the    8
## 2550                     colliding with    8
## 2551                       condition of    8
## 2552                   conditions after    8
## 2553                   conditions below    8
## 2554                  conditions during    8
## 2555                    conditions were    8
## 2556                        contrary to    8
## 2557                    control crashed    8
## 2558                       controls the    8
## 2559                     county airport    8
## 2560                          crash and    8
## 2561                    crashed failure    8
## 2562                     crew continued    8
## 2563                        crew during    8
## 2564                            crew on    8
## 2565                       darkness and    8
## 2566                    decision making    8
## 2567                        degrees and    8
## 2568                     departure from    8
## 2569                      descend below    8
## 2570                  descended through    8
## 2571                    descended until    8
## 2572                        descent was    8
## 2573                         detect the    8
## 2574                   disintegrated in    8
## 2575                       distance and    8
## 2576                          dive from    8
## 2577                         during its    8
## 2578                        during take    8
## 2579                       during which    8
## 2580                    effect recovery    8
## 2581                         enemy fire    8
## 2582                       engine after    8
## 2583                         engine due    8
## 2584                         engine had    8
## 2585                        entered the    8
## 2586                         entering a    8
## 2587                        entering an    8
## 2588                     evasive action    8
## 2589                    excessive speed    8
## 2590                 explosion occurred    8
## 2591                       extended the    8
## 2592                             faa to    8
## 2593                            face of    8
## 2594                      failed during    8
## 2595                     failed shortly    8
## 2596                         failure or    8
## 2597                   federal aviation    8
## 2598                        feet beyond    8
## 2599                          fell from    8
## 2600                             few km    8
## 2601                        fire caused    8
## 2602                            fire on    8
## 2603                          flaps and    8
## 2604                          flight by    8
## 2605                  flight separation    8
## 2606                           flock of    8
## 2607                            fly the    8
## 2608                   following engine    8
## 2609                          for about    8
## 2610                            found a    8
## 2611                         found that    8
## 2612                           found to    8
## 2613                            fuel in    8
## 2614                      fuel selector    8
## 2615                         fuel tanks    8
## 2616                           ground a    8
## 2617                        ground with    8
## 2618                    guardia airport    8
## 2619                             had an    8
## 2620                             had no    8
## 2621                           half way    8
## 2622                        having been    8
## 2623                            he then    8
## 2624                           he tried    8
## 2625                            hill at    8
## 2626                             him to    8
## 2627                       his altitude    8
## 2628                           hit tree    8
## 2629                          hitting a    8
## 2630                            ice the    8
## 2631                          icing and    8
## 2632                       icing system    8
## 2633                        icing while    8
## 2634                      ils localizer    8
## 2635                  improper approach    8
## 2636                       improper use    8
## 2637                             in for    8
## 2638                       in formation    8
## 2639                           in front    8
## 2640                         in shallow    8
## 2641                      in sufficient    8
## 2642                   in thunderstorms    8
## 2643                      in turbulence    8
## 2644                  inadequate flight    8
## 2645                  inclement weather    8
## 2646                       initiated by    8
## 2647                       initiating a    8
## 2648                         inside the    8
## 2649                  instrument flight    8
## 2650                 instrument landing    8
## 2651                    insufficient to    8
## 2652                         into dense    8
## 2653                       into several    8
## 2654                           its left    8
## 2655                          its right    8
## 2656                         jamming of    8
## 2657                  japanese military    8
## 2658                        jet fighter    8
## 2659                            km east    8
## 2660                       km northwest    8
## 2661                       km southwest    8
## 2662                            km west    8
## 2663                         la guardia    8
## 2664                          landed at    8
## 2665                          landing a    8
## 2666                        landing due    8
## 2667                         lifted off    8
## 2668                        lifting off    8
## 2669                         light rain    8
## 2670                    loaded aircraft    8
## 2671                         lower than    8
## 2672                            made by    8
## 2673                    maintain visual    8
## 2674                maintenance program    8
## 2675                         making the    8
## 2676                         managed to    8
## 2677                  mediterranean sea    8
## 2678                        message was    8
## 2679                        meters from    8
## 2680                         might have    8
## 2681                       minute after    8
## 2682                       minutes from    8
## 2683                        minutes the    8
## 2684               misinterpretation of    8
## 2685                      misjudged the    8
## 2686                        mission the    8
## 2687                      moments after    8
## 2688                        mountain on    8
## 2689                       mountains at    8
## 2690                 mountainside while    8
## 2691                         named city    8
## 2692                         new jersey    8
## 2693                         nose first    8
## 2694                          not being    8
## 2695                             not in    8
## 2696                        not working    8
## 2697                   occurred between    8
## 2698                           of 2,000    8
## 2699                           of 3,000    8
## 2700                        of approach    8
## 2701                   of approximately    8
## 2702                          of attack    8
## 2703                             of bad    8
## 2704                      of experience    8
## 2705                          of mexico    8
## 2706                             of new    8
## 2707                          of visual    8
## 2708                          on impact    8
## 2709                            on part    8
## 2710                             out at    8
## 2711                         outside of    8
## 2712                      passenger and    8
## 2713                     passenger died    8
## 2714                        pattern and    8
## 2715                        pattern the    8
## 2716                          perform a    8
## 2717                           phase of    8
## 2718                       pilot became    8
## 2719                    pilot continued    8
## 2720                          pilot for    8
## 2721                    pilot misjudged    8
## 2722                         pilots the    8
## 2723                           pitch up    8
## 2724                          placed in    8
## 2725                       plane before    8
## 2726                     plane collided    8
## 2727                    plane continued    8
## 2728                          plane did    8
## 2729                     plane diverted    8
## 2730                       plane veered    8
## 2731                       planning and    8
## 2732                         portion of    8
## 2733                      procedure and    8
## 2734                      propeller and    8
## 2735                      propeller the    8
## 2736                            put the    8
## 2737                          radar and    8
## 2738                      radar contact    8
## 2739                         rain while    8
## 2740                       recovery the    8
## 2741                         remove the    8
## 2742                        reported he    8
## 2743                        reported in    8
## 2744                         right main    8
## 2745                         right side    8
## 2746                        river after    8
## 2747                            roof of    8
## 2748                           route at    8
## 2749                          runway 28    8
## 2750                  runway centerline    8
## 2751                       safe landing    8
## 2752                        santa maria    8
## 2753                       separated in    8
## 2754                       severe icing    8
## 2755                         sharp turn    8
## 2756                 sightseeing flight    8
## 2757             sightseeing helicopter    8
## 2758                         snow storm    8
## 2759                             so the    8
## 2760                        spiral dive    8
## 2761                     stabilizer and    8
## 2762                          stages of    8
## 2763                 standard operating    8
## 2764                         started to    8
## 2765                      steep descent    8
## 2766                         strike the    8
## 2767                        suffered an    8
## 2768                    sufficient time    8
## 2769                          summit of    8
## 2770                         takeoff at    8
## 2771                          terrain a    8
## 2772                         the actual    8
## 2773                      the airport's    8
## 2774                        the airship    8
## 2775                          the black    8
## 2776                         the boeing    8
## 2777                       the captainã    8
## 2778                        the charter    8
## 2779                        the company    8
## 2780                       the domestic    8
## 2781                         the entire    8
## 2782                          the faa's    8
## 2783                         the french    8
## 2784                          the front    8
## 2785                      the hydraulic    8
## 2786                  the investigation    8
## 2787                       the jetliner    8
## 2788                        the leading    8
## 2789                    the mountainous    8
## 2790                       the overcast    8
## 2791                     the prevailing    8
## 2792                        the primary    8
## 2793                        the problem    8
## 2794                          the radar    8
## 2795                         the region    8
## 2796                           the roof    8
## 2797                        the russian    8
## 2798                           the salt    8
## 2799                            the san    8
## 2800                     the structural    8
## 2801                           the take    8
## 2802                          the upper    8
## 2803                      their failure    8
## 2804                         they could    8
## 2805                             to bad    8
## 2806                           to cross    8
## 2807                        to exercise    8
## 2808                         to fatigue    8
## 2809                        to identify    8
## 2810                            to lack    8
## 2811                          to obtain    8
## 2812                            to port    8
## 2813                          to refuel    8
## 2814                          to regain    8
## 2815                          to remain    8
## 2816                           to their    8
## 2817                       training for    8
## 2818                   training mission    8
## 2819                            turn in    8
## 2820                            under a    8
## 2821                      under adverse    8
## 2822                            view of    8
## 2823                     visibility due    8
## 2824                      visibility in    8
## 2825                   visibility while    8
## 2826                    wake turbulence    8
## 2827                    was approaching    8
## 2828                           was ever    8
## 2829                      was feathered    8
## 2830                         was trying    8
## 2831                  weather conditons    8
## 2832                          went down    8
## 2833                           went off    8
## 2834                          were able    8
## 2835                            were on    8
## 2836                           which he    8
## 2837                         which were    8
## 2838                           wing hit    8
## 2839                          without a    8
## 2840                           yawed to    8
## 2841                           1,500 ft    7
## 2842                              10 km    7
## 2843                              2 and    7
## 2844                         2,000 feet    7
## 2845                               3 km    7
## 2846                         3,000 feet    7
## 2847                              30 km    7
## 2848                              32 km    7
## 2849                             400 ft    7
## 2850                           6,000 ft    7
## 2851                            7 miles    7
## 2852                           8,000 ft    7
## 2853                           a broken    7
## 2854                         a complete    7
## 2855                         a ditching    7
## 2856                           a faulty    7
## 2857                            a flock    7
## 2858                            a group    7
## 2859                           a hanger    7
## 2860                       a helicopter    7
## 2861                         a hijacker    7
## 2862                        a hydraulic    7
## 2863                           a jungle    7
## 2864                             a long    7
## 2865                            a major    7
## 2866                   a malfunctioning    7
## 2867                          a maximum    7
## 2868                          a minimum    7
## 2869                           a minute    7
## 2870                          a missile    7
## 2871                           a number    7
## 2872                            a snowy    7
## 2873                              a two    7
## 2874                         a vertical    7
## 2875                            a water    7
## 2876                          about 200    7
## 2877                            about 5    7
## 2878                     accident after    7
## 2879                          action to    7
## 2880                      activated the    7
## 2881                     after climbing    7
## 2882                       after engine    7
## 2883                     aircraft being    7
## 2884                        aircraft by    7
## 2885                  aircraft carrying    7
## 2886             aircraft disintegrated    7
## 2887                   aircraft ditched    7
## 2888               aircraft encountered    7
## 2889                    aircraft rolled    7
## 2890                       airfield the    7
## 2891                      airplane went    7
## 2892                  airport perimeter    7
## 2893                      airport where    7
## 2894                        airspeed to    7
## 2895                        also killed    7
## 2896                           also the    7
## 2897                     altitude until    7
## 2898                     an aerodynamic    7
## 2899                        an aircraft    7
## 2900                         an airport    7
## 2901                          an almost    7
## 2902                       an overshoot    7
## 2903                            and all    7
## 2904                        and balance    7
## 2905                           and both    7
## 2906                       and bursting    7
## 2907                       and climbing    7
## 2908                          and could    7
## 2909                       and crashing    7
## 2910                        and decided    7
## 2911                         and flying    7
## 2912                           and hail    7
## 2913                            and her    7
## 2914                     and inspection    7
## 2915                           and make    7
## 2916                             and on    7
## 2917                          and other    7
## 2918                            and ran    7
## 2919                          and speed    7
## 2920                           and wind    7
## 2921                           and with    7
## 2922                      another plane    7
## 2923                         area about    7
## 2924                         area while    7
## 2925                              as he    7
## 2926                  assigned altitude    7
## 2927                           at 6,000    7
## 2928                              at la    7
## 2929                         at landing    7
## 2930                              at st    7
## 2931                            atc the    7
## 2932                        attitude of    7
## 2933                      autopilot and    7
## 2934                       available to    7
## 2935                        banked left    7
## 2936                         because it    7
## 2937                             been a    7
## 2938                      before impact    7
## 2939                          being hit    7
## 2940                        between two    7
## 2941                      bomb exploded    7
## 2942                            boy was    7
## 2943                         broke into    7
## 2944                       buenos aires    7
## 2945                           by pilot    7
## 2946                          by rebels    7
## 2947                             by two    7
## 2948                            came in    7
## 2949                  captain's failure    7
## 2950                        captain did    7
## 2951                        captain the    7
## 2952                         cargo door    7
## 2953                         catch fire    7
## 2954                          caught in    7
## 2955                          caused an    7
## 2956                         causing it    7
## 2957                circumstances while    7
## 2958                        cleared the    7
## 2959                        climb after    7
## 2960                        cockpit the    7
## 2961                     collision both    7
## 2962                    compliance with    7
## 2963                       conditions a    7
## 2964                      condtions the    7
## 2965                 contributing cause    7
## 2966                      control while    7
## 2967                          course to    7
## 2968                           crack in    7
## 2969                      crash landing    7
## 2970                          crashed 1    7
## 2971                         crashed 15    7
## 2972                          crashed 3    7
## 2973                          crashed 4    7
## 2974                        crashed for    7
## 2975                       crashed from    7
## 2976                        crashed one    7
## 2977                       crew aborted    7
## 2978                      crew declared    7
## 2979                      crew deviated    7
## 2980                   crew encountered    7
## 2981                      crew informed    7
## 2982                          crew then    7
## 2983                        damaged the    7
## 2984                               dc 7    7
## 2985                               dc 8    7
## 2986                         debris was    7
## 2987                    deficiencies in    7
## 2988                       descended in    7
## 2989                     descending for    7
## 2990                    descending from    7
## 2991                         descent in    7
## 2992                     destination in    7
## 2993                     destination of    7
## 2994                     destroyed when    7
## 2995                            died in    7
## 2996                  disintegration of    7
## 2997                 disorientation and    7
## 2998                  disorientation of    7
## 2999                        drifted off    7
## 3000                      during flight    7
## 3001                      dynamite bomb    7
## 3002                  electrical system    7
## 3003                   encountered poor    7
## 3004                     encountering a    7
## 3005                    engine followed    7
## 3006                        engine lost    7
## 3007                      engine thrust    7
## 3008                      engines after    7
## 3009                        engines due    7
## 3010                          error and    7
## 3011                        even though    7
## 3012                       extension of    7
## 3013                          factor to    7
## 3014                       failed after    7
## 3015                           fast and    7
## 3016                        fatigue and    7
## 3017                      feathered the    7
## 3018                      field crashed    7
## 3019                    fighter crashed    7
## 3020                       final stages    7
## 3021                             fire a    7
## 3022                            fire of    7
## 3023                          flame out    7
## 3024                         flames and    7
## 3025                          flaps the    7
## 3026                           flew too    7
## 3027                    flight altitude    7
## 3028                         flight had    7
## 3029                       flight which    7
## 3030               flightcrew's failure    7
## 3031                           flown to    7
## 3032                           fly into    7
## 3033                        flying crew    7
## 3034                       flying speed    7
## 3035                  following takeoff    7
## 3036                         forest the    7
## 3037                    four passengers    7
## 3038                         france the    7
## 3039                           from his    7
## 3040                            ft past    7
## 3041                            ft when    7
## 3042                        fuel system    7
## 3043                     gear collapsed    7
## 3044                          gear down    7
## 3045                            go into    7
## 3046                        golf course    7
## 3047                          gust lock    7
## 3048                             half a    7
## 3049                           he could    7
## 3050                         height the    7
## 3051                helicopter impacted    7
## 3052                           high and    7
## 3053                        higher than    7
## 3054                           hill and    7
## 3055                         his flight    7
## 3056                          house the    7
## 3057                      ifr procedure    7
## 3058                     imc conditions    7
## 3059                   improper loading    7
## 3060                        in altitude    7
## 3061                          in clouds    7
## 3062                      in continuing    7
## 3063                            in high    7
## 3064                             in imc    7
## 3065                      in initiating    7
## 3066                       in judgement    7
## 3067                           in level    7
## 3068                             in one    7
## 3069                         in reduced    7
## 3070                            in that    7
## 3071                             in too    7
## 3072                       indian ocean    7
## 3073                       injuries the    7
## 3074                 into deteriorating    7
## 3075                             is the    7
## 3076                            it flew    7
## 3077                             it ran    7
## 3078                       judgement by    7
## 3079                            just as    7
## 3080                         just taken    7
## 3081                           km north    7
## 3082                        land safely    7
## 3083                      landing while    7
## 3084                        leaving the    7
## 3085                          left hand    7
## 3086                          left side    7
## 3087                           level of    7
## 3088                        liftoff the    7
## 3089                         light snow    7
## 3090                      lightning and    7
## 3091                   lightning strike    7
## 3092                         lights and    7
## 3093                     limitations of    7
## 3094                 limited visibility    7
## 3095                            line of    7
## 3096                            load of    7
## 3097                          low cloud    7
## 3098                           made the    7
## 3099              maintenance personnel    7
## 3100                           miles sw    7
## 3101                      minute flight    7
## 3102                         minutes of    7
## 3103                     misjudgment of    7
## 3104                   mismanagement of    7
## 3105                         missile by    7
## 3106                      monitoring of    7
## 3107                      mountain peak    7
## 3108                      mountain wave    7
## 3109                   mountains during    7
## 3110                    mountainside in    7
## 3111                        movement of    7
## 3112                      near vertical    7
## 3113                   never determined    7
## 3114                   night conditions    7
## 3115                            nm from    7
## 3116                       non standard    7
## 3117                           not make    7
## 3118                            not see    7
## 3119                            not use    7
## 3120                       observed the    7
## 3121                        occurred at    7
## 3122                       occurred the    7
## 3123                       ocean during    7
## 3124                               of 2    7
## 3125                          of flying    7
## 3126                            of four    7
## 3127                           of heavy    7
## 3128                        of sabotage    7
## 3129                         of unknown    7
## 3130                            off for    7
## 3131                           off into    7
## 3132                            old boy    7
## 3133                     on instruments    7
## 3134                            on this    7
## 3135                        one hundred    7
## 3136                             one or    7
## 3137                               or a    7
## 3138                   over mountainous    7
## 3139                            part in    7
## 3140                   passenger flight    7
## 3141                 passenger survived    7
## 3142                      passenger who    7
## 3143                       performing a    7
## 3144                          period of    7
## 3145                           pilot at    7
## 3146                        pilot chose    7
## 3147                     pilot suffered    7
## 3148                         pilots did    7
## 3149                    plane attempted    7
## 3150                       plane became    7
## 3151                      plane plunged    7
## 3152                         plane rose    7
## 3153                      plane skidded    7
## 3154                      plane touched    7
## 3155                    planes collided    7
## 3156                           point in    7
## 3157                          poor crew    7
## 3158                     poor judgement    7
## 3159                          port wing    7
## 3160                    possible engine    7
## 3161                      power failure    7
## 3162                           power on    7
## 3163                   preoccupied with    7
## 3164                      private plane    7
## 3165                       problems and    7
## 3166                   procedural error    7
## 3167                      procedure the    7
## 3168                   properly monitor    7
## 3169                          pulled up    7
## 3170                        range while    7
## 3171                      rapid descent    7
## 3172                        reached the    7
## 3173                         rear cargo    7
## 3174                        recover the    7
## 3175                      reduced power    7
## 3176                         reports of    7
## 3177                resource management    7
## 3178                      retracted the    7
## 3179                      revealed that    7
## 3180                       revealed the    7
## 3181                         rice field    7
## 3182                        river while    7
## 3183                        rolled over    7
## 3184                            rose to    7
## 3185                       rotor blades    7
## 3186                        route while    7
## 3187                     route wreckage    7
## 3188                          runway to    7
## 3189                          s failure    7
## 3190                          safely at    7
## 3191                         same cause    7
## 3192                           san juan    7
## 3193                      sandstorm the    7
## 3194                            saw the    7
## 3195                              se of    7
## 3196                          sea about    7
## 3197                        sea shortly    7
## 3198                      seconds later    7
## 3199                  seriously injured    7
## 3200                     shortly before    7
## 3201                        showed that    7
## 3202                           site was    7
## 3203                          slid down    7
## 3204                           slid off    7
## 3205                         started in    7
## 3206                        station and    7
## 3207                       stick shaker    7
## 3208                    suffered engine    7
## 3209                         surface of    7
## 3210                        takeoff due    7
## 3211                        team killed    7
## 3212                         terrain at    7
## 3213                        the aileron    7
## 3214                         the amazon    7
## 3215                       the assigned    7
## 3216                      the automatic    7
## 3217                           the bank    7
## 3218                           the base    7
## 3219                              the c    7
## 3220                      the chartered    7
## 3221                   the controller's    7
## 3222                        the convair    7
## 3223                             the de    7
## 3224                           the dead    7
## 3225                    the destination    7
## 3226                        the effects    7
## 3227                          the exact    7
## 3228                       the extended    7
## 3229                        the fatigue    7
## 3230                          the field    7
## 3231                   the helicopter's    7
## 3232                       the hijacker    7
## 3233                            the klm    7
## 3234                             the md    7
## 3235                            the mda    7
## 3236                         the missed    7
## 3237                           the peak    7
## 3238                          the pitot    7
## 3239                         the planes    7
## 3240                     the propellers    7
## 3241                    the recommended    7
## 3242                       the required    7
## 3243                        the reverse    7
## 3244                          the ridge    7
## 3245                          the small    7
## 3246                       the spoilers    7
## 3247                       the vertical    7
## 3248                            the vor    7
## 3249                          the wheel    7
## 3250                            the yak    7
## 3251                           the yoke    7
## 3252                           then the    7
## 3253                        this caused    7
## 3254                         thought to    7
## 3255                   three passengers    7
## 3256                    thrust reverser    7
## 3257                         thrust was    7
## 3258                      to adequately    7
## 3259                         to another    7
## 3260                          to become    7
## 3261                            to both    7
## 3262                           to break    7
## 3263                          to change    7
## 3264                        to complete    7
## 3265                         to control    7
## 3266                       to departure    7
## 3267                     to discontinue    7
## 3268                              to do    7
## 3269                         to failure    7
## 3270                            to find    7
## 3271                         to operate    7
## 3272                           to paris    7
## 3273                         to realize    7
## 3274                          too early    7
## 3275                           took the    7
## 3276                           torn off    7
## 3277                            town of    7
## 3278                  training exercise    7
## 3279                       training the    7
## 3280                           trim tab    7
## 3281                      trouble while    7
## 3282                     twenty minutes    7
## 3283                         two aboard    7
## 3284                          two miles    7
## 3285                unfavorable weather    7
## 3286                              up at    7
## 3287                           used the    7
## 3288                           wall and    7
## 3289                    warning sounded    7
## 3290                       was climbing    7
## 3291                          was flown    7
## 3292                   was insufficient    7
## 3293                     was performing    7
## 3294                       was piloting    7
## 3295                           was told    7
## 3296                        water while    7
## 3297                           were all    7
## 3298                            were no    7
## 3299                            when an    7
## 3300                           which is    7
## 3301                         which they    7
## 3302                     while circling    7
## 3303                           who were    7
## 3304                            why the    7
## 3305                        wing failed    7
## 3306                            wing of    7
## 3307                         wing which    7
## 3308                         with heavy    7
## 3309                           with his    7
## 3310                          with only    7
## 3311                     without having    7
## 3312                 witnesses reported    7
## 3313                           york the    7
## 3314                             1 hour    6
## 3315                          1.2 miles    6
## 3316                              11 11    6
## 3317                             2 days    6
## 3318                          2 minutes    6
## 3319                        2 propeller    6
## 3320                           2,500 ft    6
## 3321                        3 alternate    6
## 3322                          3 minutes    6
## 3323                         35 minutes    6
## 3324                           4,000 ft    6
## 3325                              40 km    6
## 3326                              50 km    6
## 3327                              6 and    6
## 3328                               6 km    6
## 3329                         6,000 feet    6
## 3330                         7,000 feet    6
## 3331                           700 feet    6
## 3332                           8,500 ft    6
## 3333                           a canyon    6
## 3334                           a course    6
## 3335                        a defective    6
## 3336                         a dynamite    6
## 3337                             a hand    6
## 3338                          a heavily    6
## 3339                            a hilly    6
## 3340                             a lake    6
## 3341                              a mid    6
## 3342                          a patient    6
## 3343                            a point    6
## 3344                          a private    6
## 3345                        a rainstorm    6
## 3346                            a rapid    6
## 3347                             a road    6
## 3348                           a school    6
## 3349                        a simulated    6
## 3350                            a slope    6
## 3351                         a straight    6
## 3352                        a technical    6
## 3353                             a tire    6
## 3354                          a village    6
## 3355                          a violent    6
## 3356                              a vor    6
## 3357                              a wet    6
## 3358                          a witness    6
## 3359                            about 1    6
## 3360                          about 300    6
## 3361                     accompanied by    6
## 3362                           across a    6
## 3363                       adherence to    6
## 3364                       after having    6
## 3365                           after he    6
## 3366                       air missiles    6
## 3367                           air show    6
## 3368                            air the    6
## 3369                     air turbulence    6
## 3370                 aircraft's engines    6
## 3371                        aircraft as    6
## 3372                 aircraft attempted    6
## 3373                     aircraft crash    6
## 3374                  aircraft departed    6
## 3375                       aircraft for    6
## 3376                   aircraft plunged    6
## 3377                      aircraft shot    6
## 3378                      aircraft that    6
## 3379                      aircraft this    6
## 3380                      aircraft with    6
## 3381                        airplane to    6
## 3382                            all the    6
## 3383                         allowed to    6
## 3384                        altitude at    6
## 3385                      altitude from    6
## 3386                        an improper    6
## 3387                    an insufficient    6
## 3388                   an investigation    6
## 3389                    an unstabilized    6
## 3390                              and 6    6
## 3391                          and below    6
## 3392                      and collision    6
## 3393                        and copilot    6
## 3394                        and correct    6
## 3395                           and dove    6
## 3396                       and improper    6
## 3397                        and killing    6
## 3398                     and passengers    6
## 3399                          and pilot    6
## 3400                          and seven    6
## 3401                          and stall    6
## 3402                        and terrain    6
## 3403                     and visibility    6
## 3404                        approach by    6
## 3405                       approach end    6
## 3406                   approach failure    6
## 3407                     approach pilot    6
## 3408                     approaching to    6
## 3409                         area after    6
## 3410                           asked to    6
## 3411                           at 3,000    6
## 3412                           at 3,500    6
## 3413                           at 4,000    6
## 3414                           at 5,000    6
## 3415                        attacked by    6
## 3416                   aviation history    6
## 3417                baggage compartment    6
## 3418                           bank the    6
## 3419                      barrier fence    6
## 3420                     before landing    6
## 3421                    before reaching    6
## 3422                     below minimums    6
## 3423                        bodies were    6
## 3424                         both wings    6
## 3425                        bounced and    6
## 3426                      bounced twice    6
## 3427                   british aircraft    6
## 3428                         broke away    6
## 3429                      brought about    6
## 3430                        brought the    6
## 3431                     burned crashed    6
## 3432                              but a    6
## 3433                            but not    6
## 3434                           but were    6
## 3435                            by anti    6
## 3436                             by atc    6
## 3437                            by fire    6
## 3438                           by night    6
## 3439                           by rebel    6
## 3440                          cabin the    6
## 3441                         canyon and    6
## 3442                        captain had    6
## 3443                      cargo plane's    6
## 3444                      cargo shifted    6
## 3445                    cartwheeled and    6
## 3446                        center line    6
## 3447                       circling for    6
## 3448                       city airport    6
## 3449                           city the    6
## 3450                          clear air    6
## 3451                        cleared for    6
## 3452                          cloud and    6
## 3453                         co pilot's    6
## 3454                          coming in    6
## 3455              communication between    6
## 3456                     concluded that    6
## 3457                      condition and    6
## 3458                      condition the    6
## 3459            conditions contributing    6
## 3460               conditions resulting    6
## 3461                    conditions that    6
## 3462                      conditions to    6
## 3463                      conditons the    6
## 3464                       conducive to    6
## 3465                       continued on    6
## 3466                      control after    6
## 3467                     control cables    6
## 3468                         course for    6
## 3469                         crash site    6
## 3470                          crash was    6
## 3471                        crashed 1.5    6
## 3472                         crashed as    6
## 3473                  crashed following    6
## 3474                    crew's decision    6
## 3475                     crew initiated    6
## 3476                      crew resource    6
## 3477                         crew which    6
## 3478                           crew who    6
## 3479                     critical stage    6
## 3480                        cross check    6
## 3481                        cross winds    6
## 3482                        cruising in    6
## 3483                         days after    6
## 3484                             de ice    6
## 3485                         de janeiro    6
## 3486                       dense jungle    6
## 3487                      departure end    6
## 3488                      deployment of    6
## 3489                         descend to    6
## 3490                     descended into    6
## 3491              descended prematurely    6
## 3492                       descent from    6
## 3493                         descent of    6
## 3494                        despite the    6
## 3495                destination airport    6
## 3496                     destruction of    6
## 3497                    determined that    6
## 3498                      difficulty in    6
## 3499                      direction the    6
## 3500                          ditch the    6
## 3501                           doing so    6
## 3502                            down at    6
## 3503                          down into    6
## 3504                        dropped and    6
## 3505                     east northeast    6
## 3506                     embankment and    6
## 3507                encountering severe    6
## 3508                        engine fuel    6
## 3509                   engine separated    6
## 3510                     engine shortly    6
## 3511                    engines stopped    6
## 3512                          enough to    6
## 3513                          enter the    6
## 3514                       entering the    6
## 3515                         error crew    6
## 3516                        error pilot    6
## 3517                        error while    6
## 3518                       executing an    6
## 3519                          failed in    6
## 3520                         failure at    6
## 3521                     failure caused    6
## 3522                           far down    6
## 3523                        fatigue may    6
## 3524                          feet past    6
## 3525                      field located    6
## 3526                        fighter the    6
## 3527                          final the    6
## 3528                          fire crew    6
## 3529                          fire shot    6
## 3530                          fire that    6
## 3531                        flames into    6
## 3532                           flaps to    6
## 3533                           flew the    6
## 3534                     flight causing    6
## 3535                       flight crews    6
## 3536                   flight decisions    6
## 3537                        flight over    6
## 3538                  flight procedures    6
## 3539                  flight structural    6
## 3540                        flight when    6
## 3541                        flight with    6
## 3542                              fly a    6
## 3543                             fly to    6
## 3544                    follow approved    6
## 3545                        for another    6
## 3546                         for flight    6
## 3547                     for instrument    6
## 3548                         for runway    6
## 3549                      force fighter    6
## 3550                        forcing the    6
## 3551                      forward cargo    6
## 3552                        found until    6
## 3553                     fourth landing    6
## 3554                      francisco bay    6
## 3555                            from fl    6
## 3556                       from landing    6
## 3557                           from los    6
## 3558                         from their    6
## 3559                              ft to    6
## 3560                          fuel flow    6
## 3561                          fuel line    6
## 3562                          fuel pump    6
## 3563                            fuel to    6
## 3564                     fuselage broke    6
## 3565                       fuselage the    6
## 3566                            gear to    6
## 3567                          ground as    6
## 3568                          ground on    6
## 3569                           group of    6
## 3570                            gust of    6
## 3571                           had only    6
## 3572                            had the    6
## 3573                        happened in    6
## 3574                           has been    6
## 3575                       he attempted    6
## 3576                            head on    6
## 3577                       heart attack    6
## 3578                      height during    6
## 3579                helicopter carrying    6
## 3580                      high altitude    6
## 3581                         hill after    6
## 3582                           hill the    6
## 3583                      hilly terrain    6
## 3584                       his injuries    6
## 3585                           his seat    6
## 3586                             hit mt    6
## 3587                      hitting power    6
## 3588                        hours after    6
## 3589                    hydraulic fluid    6
## 3590                      impairment of    6
## 3591                        in response    6
## 3592                           in sight    6
## 3593                          in stormy    6
## 3594                           in their    6
## 3595                    in thunderstorm    6
## 3596                         in unknown    6
## 3597              inadequate monitoring    6
## 3598               inadequate preflight    6
## 3599                     indicated that    6
## 3600                 instrument weather    6
## 3601                           into ifr    6
## 3602                         into mount    6
## 3603                         into power    6
## 3604                       into shallow    6
## 3605                      inverted into    6
## 3606             investigation revealed    6
## 3607                               is a    6
## 3608                         is thought    6
## 3609                     island crashed    6
## 3610                        it appeared    6
## 3611                      it approached    6
## 3612                           it could    6
## 3613                        it impacted    6
## 3614                         it reached    6
## 3615                            its way    6
## 3616                       judgement in    6
## 3617                       judgement on    6
## 3618                         killed one    6
## 3619                        killed were    6
## 3620                          klm plane    6
## 3621                           known as    6
## 3622                            land it    6
## 3623                         landing as    6
## 3624                  landing following    6
## 3625                         last known    6
## 3626                           later on    6
## 3627                            led the    6
## 3628                          limits of    6
## 3629                       losing power    6
## 3630                            lost at    6
## 3631                           lost his    6
## 3632                           lost its    6
## 3633                         low height    6
## 3634                             low on    6
## 3635                          low speed    6
## 3636                            made at    6
## 3637                            made it    6
## 3638                  maintain airspeed    6
## 3639                    maintenance and    6
## 3640                            make it    6
## 3641                           means of    6
## 3642                         meters the    6
## 3643                      mile offshore    6
## 3644                           miles ne    6
## 3645                     minima weather    6
## 3646                    minimum control    6
## 3647                     minor injuries    6
## 3648                  missed approaches    6
## 3649                         missed the    6
## 3650                      missing while    6
## 3651                        monitor and    6
## 3652                        month later    6
## 3653                       months later    6
## 3654                   mountain shortly    6
## 3655                         named star    6
## 3656                          named the    6
## 3657                           next day    6
## 3658                               no 6    6
## 3659                     normal landing    6
## 3660                            nose of    6
## 3661                       nose pitched    6
## 3662                         nosed down    6
## 3663                       not detected    6
## 3664                      not following    6
## 3665                          not found    6
## 3666                      not qualified    6
## 3667                        not realize    6
## 3668                 obstacle clearance    6
## 3669                        of airplane    6
## 3670                           of climb    6
## 3671                          of clouds    6
## 3672                            of it's    6
## 3673                            of left    6
## 3674                      of navigation    6
## 3675                             of oil    6
## 3676                             of rio    6
## 3677                         of several    6
## 3678                     of situational    6
## 3679                            of them    6
## 3680                           of these    6
## 3681                    of undetermined    6
## 3682                         off engine    6
## 3683                            off one    6
## 3684                        off without    6
## 3685                       offshore the    6
## 3686                           old girl    6
## 3687                             on all    6
## 3688                             on his    6
## 3689                           one crew    6
## 3690                           one hour    6
## 3691                         one killed    6
## 3692                         one minute    6
## 3693                        operated by    6
## 3694                      operations in    6
## 3695                             or the    6
## 3696                             out an    6
## 3697                    overrunning the    6
## 3698                       oversight of    6
## 3699                    overspeeding of    6
## 3700                     overturned and    6
## 3701                   participating in    6
## 3702                      passenger the    6
## 3703                           path the    6
## 3704                          people on    6
## 3705                        performed a    6
## 3706                      permission to    6
## 3707                     pilot declared    6
## 3708                       pilot during    6
## 3709                         pilot were    6
## 3710                           pilotã â    6
## 3711                       piloting the    6
## 3712                   plane approached    6
## 3713                     plane overshot    6
## 3714                     plane suffered    6
## 3715                           planeã â    6
## 3716                        planes were    6
## 3717                  planning decision    6
## 3718                           point of    6
## 3719                          point the    6
## 3720                            poor at    6
## 3721                        poor flight    6
## 3722               precision instrument    6
## 3723                 preoccupation with    6
## 3724                 prescribed minimum    6
## 3725                      prevented the    6
## 3726                      procedures to    6
## 3727                       proximity to    6
## 3728                       radioed they    6
## 3729                       rain showers    6
## 3730                         reached an    6
## 3731                         reaching a    6
## 3732                        realize the    6
## 3733                      rear lavatory    6
## 3734                      recovered the    6
## 3735                      rendering the    6
## 3736                      reported they    6
## 3737                         respond to    6
## 3738                            rest on    6
## 3739                         result the    6
## 3740                         rice paddy    6
## 3741                    right propeller    6
## 3742                          right the    6
## 3743                       route flying    6
## 3744                          runway 18    6
## 3745                          runway 22    6
## 3746                         runway but    6
## 3747                          runway by    6
## 3748                     runway failure    6
## 3749                         runway hit    6
## 3750                          runway it    6
## 3751                     runway overran    6
## 3752                      runway struck    6
## 3753                          san diego    6
## 3754                  sea approximately    6
## 3755                         sea during    6
## 3756                            sea off    6
## 3757                      searching for    6
## 3758                             sent a    6
## 3759                      several times    6
## 3760                      short circuit    6
## 3761                           shut off    6
## 3762                           sight of    6
## 3763                      situation the    6
## 3764                       slammed into    6
## 3765                  snowstorm crashed    6
## 3766                        spark plugs    6
## 3767                           speed to    6
## 3768                         st maarten    6
## 3769                      stalled after    6
## 3770                  stalled condition    6
## 3771                     stalled during    6
## 3772                      stalled while    6
## 3773                     starboard wing    6
## 3774                        started the    6
## 3775                     starvation the    6
## 3776                         steep turn    6
## 3777                            stop at    6
## 3778                        storm while    6
## 3779                        straight in    6
## 3780                    surrounding the    6
## 3781                       switched off    6
## 3782                            tail of    6
## 3783                     takeoff caused    6
## 3784                     takeoff engine    6
## 3785                          that both    6
## 3786                      that resulted    6
## 3787                        the airline    6
## 3788                       the airspeed    6
## 3789                       the airstrip    6
## 3790                           the auto    6
## 3791                     the beechcraft    6
## 3792                         the bomber    6
## 3793                       the building    6
## 3794                      the caribbean    6
## 3795                          the civil    6
## 3796                      the elevators    6
## 3797                           the face    6
## 3798                            the fog    6
## 3799                           the full    6
## 3800                         the impact    6
## 3801                     the inadequate    6
## 3802                      the incorrect    6
## 3803                       the national    6
## 3804                            the pan    6
## 3805                         the pilotã    6
## 3806                         the planeã    6
## 3807                           the poor    6
## 3808                       the position    6
## 3809                         the sierra    6
## 3810                     the stabilizer    6
## 3811                       the standard    6
## 3812                         the system    6
## 3813                           the town    6
## 3814                           the type    6
## 3815                        the victims    6
## 3816                     the visibility    6
## 3817                         the visual    6
## 3818                           the wind    6
## 3819                     the windshield    6
## 3820                     their altitude    6
## 3821                            them to    6
## 3822                          then went    6
## 3823                           they did    6
## 3824                          they lost    6
## 3825                          thick fog    6
## 3826                     thirty minutes    6
## 3827                         through an    6
## 3828               thunderstorm crashed    6
## 3829                         tip struck    6
## 3830                           to about    6
## 3831                          to arrest    6
## 3832                           to check    6
## 3833                         to chicago    6
## 3834                          to circle    6
## 3835                            to come    6
## 3836                         to company    6
## 3837                          to comply    6
## 3838                              to de    6
## 3839                          to denver    6
## 3840                          to escape    6
## 3841                            to fail    6
## 3842                           to heavy    6
## 3843                           to icing    6
## 3844                            to idle    6
## 3845                              to it    6
## 3846                            to keep    6
## 3847                         to landing    6
## 3848                           to leave    6
## 3849                             to new    6
## 3850                         to proceed    6
## 3851                      to separation    6
## 3852                      to structural    6
## 3853                       to touchdown    6
## 3854                             to try    6
## 3855                            to veer    6
## 3856                            told to    6
## 3857                            tons of    6
## 3858                          too close    6
## 3859                          too steep    6
## 3860                            tops of    6
## 3861                        touched the    6
## 3862                           tower of    6
## 3863                        traffic the    6
## 3864                    transport plane    6
## 3865                        trim system    6
## 3866                 turbulence crashed    6
## 3867                      turbulence in    6
## 3868                          turn back    6
## 3869                         turned the    6
## 3870                         two engine    6
## 3871                          two other    6
## 3872                         two planes    6
## 3873                 u.s representative    6
## 3874                   under conditions    6
## 3875                 undetermined cause    6
## 3876               undetermined crashed    6
## 3877                      unknown cause    6
## 3878                     unknown origin    6
## 3879                        up attitude    6
## 3880                              up of    6
## 3881                         valley the    6
## 3882                     vertical speed    6
## 3883                       vfr approach    6
## 3884              visibility conditions    6
## 3885                       vor approach    6
## 3886                        waiting for    6
## 3887                        warnings of    6
## 3888                          was among    6
## 3889                         was blamed    6
## 3890                        was carried    6
## 3891                          was clear    6
## 3892                          was given    6
## 3893                          was heavy    6
## 3894                       was possibly    6
## 3895                        was reduced    6
## 3896                      was suspected    6
## 3897                   was transporting    6
## 3898                          waters of    6
## 3899                          weather a    6
## 3900                         well below    6
## 3901                       were injured    6
## 3902                       were rescued    6
## 3903                         wheel well    6
## 3904                     which occurred    6
## 3905                          wide area    6
## 3906                     wing contacted    6
## 3907                       wing crashed    6
## 3908                            wing in    6
## 3909                          wings and    6
## 3910                         wings were    6
## 3911                  with insufficient    6
## 3912                           with low    6
## 3913                     without visual    6
## 3914                    wooded hillside    6
## 3915                           would be    6
## 3916                          would not    6
## 3917                            york to    6
## 3918                           1,200 ft    5
## 3919                          10,000 ft    5
## 3920                         100 meters    5
## 3921                              12 km    5
## 3922                         180 degree    5
## 3923                         2,300 feet    5
## 3924                         20 degrees    5
## 3925                              20 km    5
## 3926                          200 yards    5
## 3927                              3 the    5
## 3928                         3,300 feet    5
## 3929                            30 feet    5
## 3930                               4 km    5
## 3931                        4 propeller    5
## 3932                         400 meters    5
## 3933                         5,000 feet    5
## 3934                              50 ft    5
## 3935                          6 minutes    5
## 3936                             600 ft    5
## 3937                          8 minutes    5
## 3938                           800 feet    5
## 3939                            9 miles    5
## 3940                          9 minutes    5
## 3941                               a 20    5
## 3942                               a 45    5
## 3943                             a bank    5
## 3944                            a blown    5
## 3945                         a cemetery    5
## 3946                          a charter    5
## 3947                          a chimney    5
## 3948                         a concrete    5
## 3949                          a damaged    5
## 3950                           a direct    5
## 3951                         a domestic    5
## 3952                           a failed    5
## 3953                            a false    5
## 3954                             a flat    5
## 3955                           a flying    5
## 3956                           a fourth    5
## 3957                           a frozen    5
## 3958                           a german    5
## 3959                             a golf    5
## 3960                          a heading    5
## 3961                            a heart    5
## 3962                             a load    5
## 3963                            a lower    5
## 3964                       a mechanical    5
## 3965                          a medical    5
## 3966                           a narrow    5
## 3967                               a no    5
## 3968                             a part    5
## 3969                      a possibility    5
## 3970                         a recovery    5
## 3971                           a return    5
## 3972                             a sand    5
## 3973                        a scheduled    5
## 3974                             a seat    5
## 3975                         a struggle    5
## 3976                       a successful    5
## 3977                            a trace    5
## 3978                            a truck    5
## 3979                           a window    5
## 3980                            a woman    5
## 3981                      abandoned the    5
## 3982                           about 15    5
## 3983                          about 150    5
## 3984                           about 18    5
## 3985                            about 2    5
## 3986                           about 50    5
## 3987                           about 60    5
## 3988                           about by    5
## 3989                         about half    5
## 3990                          about one    5
## 3991                      accident took    5
## 3992                     accident which    5
## 3993                      accident with    5
## 3994                       accidents in    5
## 3995                        account for    5
## 3996                         across the    5
## 3997                             act of    5
## 3998                      activation of    5
## 3999                       activity and    5
## 4000                       activity the    5
## 4001                            afb the    5
## 4002                         aft center    5
## 4003                    after attaining    5
## 4004                    after departure    5
## 4005                      after failure    5
## 4006                      after getting    5
## 4007                   after initiating    5
## 4008                 after overshooting    5
## 4009                      after passing    5
## 4010                      after several    5
## 4011                      after turning    5
## 4012                      aggravated by    5
## 4013                            aids to    5
## 4014                             air at    5
## 4015                           air taxi    5
## 4016                             air to    5
## 4017                       airborne and    5
## 4018                         aircraft a    5
## 4019                    aircraft before    5
## 4020                       aircraft but    5
## 4021                     aircraft could    5
## 4022                 aircraft developed    5
## 4023                   aircraft reached    5
## 4024                      aircraft when    5
## 4025                    airplane during    5
## 4026                         airport an    5
## 4027               airport navigational    5
## 4028                      airport there    5
## 4029                        airport was    5
## 4030                  almost vertically    5
## 4031                  also contributing    5
## 4032                  altimeter setting    5
## 4033                    altitude before    5
## 4034                       altitude due    5
## 4035              altitude insufficient    5
## 4036                        altitude on    5
## 4037                     altitude which    5
## 4038                  american airlines    5
## 4039                          amount of    5
## 4040                               an 2    5
## 4041                       an apartment    5
## 4042                           an early    5
## 4043                         an extreme    5
## 4044                             an ice    5
## 4045                     an uncommanded    5
## 4046                          and about    5
## 4047                             and as    5
## 4048                         and cashed    5
## 4049                          and catch    5
## 4050                      and clearance    5
## 4051                       and continue    5
## 4052                         and damage    5
## 4053                        and descent    5
## 4054                      and destroyed    5
## 4055                     and electrical    5
## 4056                      and emergency    5
## 4057                   and encountering    5
## 4058                      and inability    5
## 4059                           and left    5
## 4060                         and losing    5
## 4061                     and penetrated    5
## 4062                      and performed    5
## 4063                         and pilots    5
## 4064                          and pylon    5
## 4065                       and reaching    5
## 4066                      and requested    5
## 4067                       and returned    5
## 4068                         and rudder    5
## 4069                     and separation    5
## 4070                          and there    5
## 4071                       and training    5
## 4072                          and trees    5
## 4073                           and turn    5
## 4074                         and turned    5
## 4075                       and vertical    5
## 4076                        and weather    5
## 4077                           and wing    5
## 4078                    another airport    5
## 4079                   another approach    5
## 4080                     approach chart    5
## 4081                     approach icing    5
## 4082                      approach with    5
## 4083                     approaches the    5
## 4084                    approaching the    5
## 4085                approved procedures    5
## 4086                       area located    5
## 4087                           around a    5
## 4088                artificial horizons    5
## 4089                         at burbank    5
## 4090                            atc and    5
## 4091                            atc did    5
## 4092                           atc that    5
## 4093                         attained a    5
## 4094                  attempted takeoff    5
## 4095                        attempts at    5
## 4096                       attempts the    5
## 4097                         auto pilot    5
## 4098                         avoid each    5
## 4099                       awareness of    5
## 4100                           back the    5
## 4101                       back towards    5
## 4102                            bank of    5
## 4103                     banked sharply    5
## 4104                           based on    5
## 4105                       because they    5
## 4106                          been made    5
## 4107                      before coming    5
## 4108                     before takeoff    5
## 4109                        before they    5
## 4110                            began a    5
## 4111                       began losing    5
## 4112                        being blown    5
## 4113                      being cleared    5
## 4114                          blame was    5
## 4115                             blew a    5
## 4116                         board were    5
## 4117                       building the    5
## 4118                      burned during    5
## 4119                          but could    5
## 4120                         by failure    5
## 4121                          by visual    5
## 4122                          came down    5
## 4123                            came on    5
## 4124                         captain of    5
## 4125                       captain took    5
## 4126                        captain who    5
## 4127                    carbon monoxide    5
## 4128                  cargo compartment    5
## 4129                          cargo the    5
## 4130                      caribbean sea    5
## 4131                           cars and    5
## 4132                          caused it    5
## 4133                        caused loss    5
## 4134                        ceiling the    5
## 4135                        center fuel    5
## 4136                     centerline the    5
## 4137                      certified for    5
## 4138                           chain of    5
## 4139                 characteristics of    5
## 4140                  circling approach    5
## 4141                       circling the    5
## 4142                      clearance the    5
## 4143                          clipped a    5
## 4144                      clipped trees    5
## 4145                        cloud cover    5
## 4146                 cockpit discipline    5
## 4147                     collision took    5
## 4148                   combination with    5
## 4149                         command in    5
## 4150                       committed to    5
## 4151                        company and    5
## 4152                    condition which    5
## 4153                    conditions lack    5
## 4154                  conditions struck    5
## 4155                         conduct of    5
## 4156                        continue an    5
## 4157                   continued flight    5
## 4158                     continuing the    5
## 4159                      control speed    5
## 4160                     controller was    5
## 4161                    controlling the    5
## 4162                          course by    5
## 4163                      covered field    5
## 4164                          cracks in    5
## 4165                      crash crashed    5
## 4166                           crash in    5
## 4167                     crash occurred    5
## 4168                           crash of    5
## 4169                         crashed 30    5
## 4170                    crashed fatigue    5
## 4171                      crashed icing    5
## 4172                       crashed loss    5
## 4173                        crashed off    5
## 4174                        crashing in    5
## 4175                       crashing the    5
## 4176                         created by    5
## 4177                      crew executed    5
## 4178                       crew radioed    5
## 4179                      crew training    5
## 4180                          crew used    5
## 4181                            crewã â    5
## 4182                           crews to    5
## 4183                          crossed a    5
## 4184                       damaging the    5
## 4185                       de havilland    5
## 4186                              de la    5
## 4187                       decision not    5
## 4188                  decompression and    5
## 4189                          degree of    5
## 4190                      departure the    5
## 4191                        descend the    5
## 4192                      descended and    5
## 4193                      descended too    5
## 4194                     descending and    5
## 4195                         descent at    5
## 4196                 determined crashed    5
## 4197                      determined to    5
## 4198                   developed engine    5
## 4199                       deviated off    5
## 4200                           died the    5
## 4201                      direction and    5
## 4202                   disconnected the    5
## 4203                    discontinue the    5
## 4204                       ditching the    5
## 4205                           door was    5
## 4206                          down hard    5
## 4207                      down position    5
## 4208                     downdrafts and    5
## 4209                        drizzle and    5
## 4210                     during adverse    5
## 4211                     during descent    5
## 4212                         either the    5
## 4213                     ejected safely    5
## 4214                      emergency the    5
## 4215                 encountered strong    5
## 4216                           engine a    5
## 4217                      engine caused    5
## 4218                          engine in    5
## 4219                         engine out    5
## 4220                   engine resulting    5
## 4221                     engine stalled    5
## 4222                        engines had    5
## 4223                         england to    5
## 4224                  equipment crashed    5
## 4225                      equipment the    5
## 4226                          error was    5
## 4227                        evidence of    5
## 4228                        exact cause    5
## 4229                     exhaustion the    5
## 4230                         exited the    5
## 4231                   explosion aboard    5
## 4232                      explosion was    5
## 4233                     extremely poor    5
## 4234                          factor in    5
## 4235                    factors include    5
## 4236                   factors included    5
## 4237                    factors related    5
## 4238                    fatigue crashed    5
## 4239                        fatigue due    5
## 4240                         fatigue of    5
## 4241                     feathering the    5
## 4242                            fell to    5
## 4243                          fence the    5
## 4244                        few seconds    5
## 4245                        field about    5
## 4246                      field shortly    5
## 4247                          field two    5
## 4248                      fighter pilot    5
## 4249                        fire before    5
## 4250                       fire started    5
## 4251                   first commercial    5
## 4252                        five killed    5
## 4253                     flames crashed    5
## 4254                         flew below    5
## 4255                   flight collision    5
## 4256                        flight deck    5
## 4257                        flight idle    5
## 4258                       flying below    5
## 4259                       fog shrouded    5
## 4260                       for recovery    5
## 4261                           for this    5
## 4262                          for which    5
## 4263                          force the    5
## 4264                         forces the    5
## 4265                      forested area    5
## 4266                            found 5    5
## 4267                        four people    5
## 4268                        from course    5
## 4269                            from la    5
## 4270                          from rome    5
## 4271                        frozen lake    5
## 4272                           ft below    5
## 4273                          ft runway    5
## 4274                          fuel feed    5
## 4275                           fuel was    5
## 4276                         fuel while    5
## 4277                    gain sufficient    5
## 4278                           gear the    5
## 4279                         go landing    5
## 4280                       good weather    5
## 4281                       gross weight    5
## 4282                        ground fire    5
## 4283                        ground nose    5
## 4284                     ground shortly    5
## 4285                      ground struck    5
## 4286                        ground were    5
## 4287                           grove of    5
## 4288                      guanabara bay    5
## 4289                        gusty winds    5
## 4290                          half mile    5
## 4291                       hand grenade    5
## 4292                          hand turn    5
## 4293                        handling of    5
## 4294                         headed for    5
## 4295                         heard from    5
## 4296                        heavy icing    5
## 4297                          height in    5
## 4298                      helicopter on    5
## 4299                      helicopter to    5
## 4300                         her mother    5
## 4301                      high pressure    5
## 4302                       hijacked the    5
## 4303                        hill during    5
## 4304                          hill near    5
## 4305                       hillside the    5
## 4306                       his decision    5
## 4307                          house and    5
## 4308                            ice and    5
## 4309                  ice contamination    5
## 4310                      icing crashed    5
## 4311                   impacted terrain    5
## 4312                     impacted trees    5
## 4313                 improper emergency    5
## 4314                    improper flight    5
## 4315                        improper in    5
## 4316                  improper planning    5
## 4317                improper procedures    5
## 4318                        in aviation    5
## 4319                           in below    5
## 4320                     in combination    5
## 4321                      in controlled    5
## 4322                      in descending    5
## 4323                          in flying    5
## 4324                             in its    5
## 4325                        in relation    5
## 4326                              in to    5
## 4327                             in vfr    5
## 4328                    inexperience in    5
## 4329                       informed atc    5
## 4330                       ingestion of    5
## 4331                   initial approach    5
## 4332                       initiated an    5
## 4333                      initiated but    5
## 4334                    installation of    5
## 4335                       installed in    5
## 4336                      instructed to    5
## 4337                    instructions to    5
## 4338                 instrument failure    5
## 4339                   instrument rated    5
## 4340                      intercept the    5
## 4341                     into buildings    5
## 4342                            into la    5
## 4343                      into mountain    5
## 4344                       into reverse    5
## 4345                           into two    5
## 4346                        inverted in    5
## 4347                             is not    5
## 4348                             it has    5
## 4349                          it landed    5
## 4350                         it stalled    5
## 4351                            it then    5
## 4352                       its assigned    5
## 4353                      its departure    5
## 4354                        its failure    5
## 4355                         its flight    5
## 4356                      its scheduled    5
## 4357                           its tail    5
## 4358                        its takeoff    5
## 4359                        judgment by    5
## 4360                     jungle shortly    5
## 4361                        kansas city    5
## 4362                   killed including    5
## 4363                          killing a    5
## 4364                           lake and    5
## 4365                         lake while    5
## 4366                         land while    5
## 4367                      landing short    5
## 4368                    landing without    5
## 4369                           late and    5
## 4370                            late in    5
## 4371                         later died    5
## 4372                        later while    5
## 4373                         le bourget    5
## 4374                           leak the    5
## 4375                        leased from    5
## 4376                          left main    5
## 4377                     left propeller    5
## 4378                           line and    5
## 4379                            line in    5
## 4380                         loading of    5
## 4381                         locate the    5
## 4382                         located on    5
## 4383                        location of    5
## 4384                          loose and    5
## 4385                       low ceilings    5
## 4386                             low in    5
## 4387                     lower altitude    5
## 4388                             m from    5
## 4389                            made to    5
## 4390                          main gear    5
## 4391                 maintain clearance    5
## 4392                    maintain flying    5
## 4393                   maintain minimum    5
## 4394                    maintain proper    5
## 4395                      maintain safe    5
## 4396                     maintenance of    5
## 4397                            man who    5
## 4398                     management and    5
## 4399                     mayday message    5
## 4400                 mechanical problem    5
## 4401                        members and    5
## 4402                       members were    5
## 4403                       midair while    5
## 4404                     miles offshore    5
## 4405                           miles se    5
## 4406                      military base    5
## 4407                  misread altimeter    5
## 4408                    missile crashed    5
## 4409                        missing the    5
## 4410                         mission to    5
## 4411                            most of    5
## 4412                      mountain pass    5
## 4413                     mountains near    5
## 4414                       mountains on    5
## 4415                    mountainside at    5
## 4416                          nature of    5
## 4417                        new orleans    5
## 4418                            next to    5
## 4419                   night instrument    5
## 4420                          no ground    5
## 4421                        no wreckage    5
## 4422                     non compliance    5
## 4423                            none on    5
## 4424                          nose dive    5
## 4425                      not certified    5
## 4426                         not flying    5
## 4427                        not recover    5
## 4428                    observed flying    5
## 4429                        observed in    5
## 4430                        occurred on    5
## 4431                      occurred when    5
## 4432                           of 4,000    5
## 4433                           of cargo    5
## 4434                         of cockpit    5
## 4435                     of directional    5
## 4436                      of electrical    5
## 4437                            of full    5
## 4438                        of improper    5
## 4439                       of judgement    5
## 4440                           of miami    5
## 4441                           of pilot    5
## 4442                          of proper    5
## 4443                           of radio    5
## 4444                           of right    5
## 4445                            of that    5
## 4446                           of three    5
## 4447                            of time    5
## 4448                             off by    5
## 4449                          off cause    5
## 4450                            off due    5
## 4451                        off failure    5
## 4452                           off lost    5
## 4453                          off radar    5
## 4454                         off struck    5
## 4455                         officer to    5
## 4456              officially attributed    5
## 4457                            oil rig    5
## 4458                        oil workers    5
## 4459                            on each    5
## 4460                              on to    5
## 4461                         one aboard    5
## 4462                       one survivor    5
## 4463                           one wing    5
## 4464                             only a    5
## 4465                            only to    5
## 4466                         onto final    5
## 4467                        or possibly    5
## 4468                        others were    5
## 4469                           out from    5
## 4470                             out to    5
## 4471                        outside the    5
## 4472                            over an    5
## 4473                         over water    5
## 4474                       overcast the    5
## 4475                     overloaded and    5
## 4476                   overshooting the    5
## 4477                   overspeeding and    5
## 4478                           owned by    5
## 4479                       paris france    5
## 4480                           parts of    5
## 4481                            pass in    5
## 4482                     passenger were    5
## 4483                       passengers a    5
## 4484                 passengers drowned    5
## 4485                      passengers to    5
## 4486                        passing the    5
## 4487                         peak while    5
## 4488                     performance of    5
## 4489                       persian gulf    5
## 4490                          pieces of    5
## 4491                pilot's inadvertent    5
## 4492                      pilot aborted    5
## 4493                      pilot crashed    5
## 4494                      pilot ejected    5
## 4495                         pilot flew    5
## 4496                          pilot not    5
## 4497                  pilot transmitted    5
## 4498                         pilots had    5
## 4499                       pitched down    5
## 4500                           place in    5
## 4501                       plane cashed    5
## 4502                      plane drifted    5
## 4503                     plane exploded    5
## 4504                         plane fell    5
## 4505                       plane lifted    5
## 4506                      plane reached    5
## 4507                     plane returned    5
## 4508                         plane sank    5
## 4509                         plane were    5
## 4510                            poor in    5
## 4511                          poor with    5
## 4512                     possibility of    5
## 4513                   possible failure    5
## 4514                       possible the    5
## 4515                        possible to    5
## 4516                    possibly caused    5
## 4517                       postal plane    5
## 4518                         power from    5
## 4519                           power of    5
## 4520                         pre flight    5
## 4521                    preparation and    5
## 4522                    preparation for    5
## 4523                prescribed altitude    5
## 4524                       president of    5
## 4525                        prevent the    5
## 4526                        problem was    5
## 4527                  procedures during    5
## 4528                      procedures in    5
## 4529                    procedures used    5
## 4530                         proceed to    5
## 4531                    propeller which    5
## 4532                      proper course    5
## 4533                        provide the    5
## 4534               published procedures    5
## 4535                           pull out    5
## 4536                          radioed a    5
## 4537                            rain at    5
## 4538                       rain crashed    5
## 4539                         raised the    5
## 4540                           range at    5
## 4541                        reaching an    5
## 4542                         reason the    5
## 4543                    reasons crashed    5
## 4544                      received from    5
## 4545                      recognize and    5
## 4546                    regulations the    5
## 4547                        relation to    5
## 4548                   remaining engine    5
## 4549                       reporting an    5
## 4550                representative from    5
## 4551                         respect to    5
## 4552                      rest inverted    5
## 4553              restricted visibility    5
## 4554                      retracted and    5
## 4555                         return but    5
## 4556                        reversal of    5
## 4557                           ridge at    5
## 4558                           ridge in    5
## 4559                           ridge of    5
## 4560                       right rudder    5
## 4561                          river and    5
## 4562                      river crashed    5
## 4563                      river shortly    5
## 4564                           road and    5
## 4565                           roll the    5
## 4566                       route struck    5
## 4567                     rudder control    5
## 4568                          rudder to    5
## 4569                        rudder trim    5
## 4570                        runway crew    5
## 4571                         runway for    5
## 4572                        runway loss    5
## 4573                        runway with    5
## 4574                        safe height    5
## 4575                           same day    5
## 4576                           sank the    5
## 4577                        sea failure    5
## 4578                   seaplane crashed    5
## 4579                      second engine    5
## 4580                          sending a    5
## 4581                   sensory illusion    5
## 4582                      separated and    5
## 4583                        service the    5
## 4584                            set the    5
## 4585                         setting of    5
## 4586                       settled back    5
## 4587                     several houses    5
## 4588                   severe vibration    5
## 4589                  severe vibrations    5
## 4590                   shaker activated    5
## 4591                            she was    5
## 4592                        sheared off    5
## 4593                          should be    5
## 4594                           show the    5
## 4595                        shrouded in    5
## 4596                          slope and    5
## 4597                              so he    5
## 4598                             son of    5
## 4599              spatially disoriented    5
## 4600                       speed during    5
## 4601                         speed into    5
## 4602                     speed readings    5
## 4603                     spiral descent    5
## 4604                      spiraled into    5
## 4605                     stabilizer the    5
## 4606                     stall recovery    5
## 4607                        stall speed    5
## 4608                    stalled crashed    5
## 4609                standard instrument    5
## 4610                          started a    5
## 4611                           still on    5
## 4612                      storm crashed    5
## 4613                     stormy weather    5
## 4614                     striking trees    5
## 4615                         struck and    5
## 4616                 subsequent failure    5
## 4617                       succumbed to    5
## 4618                       survivor the    5
## 4619                       survivor was    5
## 4620                     survivors were    5
## 4621                        tail struck    5
## 4622                     takeoff during    5
## 4623                    takeoff overran    5
## 4624                     takeoff weight    5
## 4625                      takeoff which    5
## 4626                        ten minutes    5
## 4627                      terrain about    5
## 4628                        terrain for    5
## 4629                         that could    5
## 4630                          that time    5
## 4631                      the altimeter    5
## 4632                             the an    5
## 4633                     the artificial    5
## 4634                        the attempt    5
## 4635                      the attempted    5
## 4636                      the available    5
## 4637                           the back    5
## 4638                        the battery    5
## 4639                            the bay    5
## 4640                       the circling    5
## 4641                          the cloud    5
## 4642                      the commander    5
## 4643                  the constellation    5
## 4644                         the course    5
## 4645                       the critical    5
## 4646                           the dive    5
## 4647                        the eastern    5
## 4648                        the ensuing    5
## 4649                          the error    5
## 4650                    the established    5
## 4651                        the federal    5
## 4652                          the fight    5
## 4653                             the go    5
## 4654                           the gpws    5
## 4655                       the hospital    5
## 4656                       the ignition    5
## 4657                             the il    5
## 4658                      the inability    5
## 4659                    the instruments    5
## 4660                       the intended    5
## 4661                             the la    5
## 4662                            the los    5
## 4663                    the malfunction    5
## 4664                        the medical    5
## 4665                           the ntsb    5
## 4666                      the operating    5
## 4667                       the operator    5
## 4668                     the operator's    5
## 4669                       the opposite    5
## 4670                       the outboard    5
## 4671                      the perimeter    5
## 4672                        the persian    5
## 4673                        the private    5
## 4674                      the procedure    5
## 4675                            the red    5
## 4676                         the remote    5
## 4677                         the report    5
## 4678                           the rest    5
## 4679                         the rising    5
## 4680                          the rotor    5
## 4681                       the severity    5
## 4682                         the single    5
## 4683                           the snow    5
## 4684                       the southern    5
## 4685                      the structure    5
## 4686                          the three    5
## 4687                           the tops    5
## 4688                       the training    5
## 4689                           the trip    5
## 4690                             the up    5
## 4691                        the village    5
## 4692                           the wake    5
## 4693                     their injuries    5
## 4694                     thereafter the    5
## 4695                   these conditions    5
## 4696                         third time    5
## 4697                           this led    5
## 4698                          this type    5
## 4699                       three engine    5
## 4700                       three killed    5
## 4701                           three of    5
## 4702                           three on    5
## 4703                      threshold and    5
## 4704                    threshold while    5
## 4705                     throughout the    5
## 4706                      thrust during    5
## 4707                         thrust the    5
## 4708                         to abandon    5
## 4709                         to account    5
## 4710                          to assure    5
## 4711                             to atc    5
## 4712                        to collapse    5
## 4713                       to correctly    5
## 4714                            to drop    5
## 4715                          to expect    5
## 4716                            to fall    5
## 4717                             to fog    5
## 4718                          to ground    5
## 4719                       to intercept    5
## 4720                           to level    5
## 4721                            to lift    5
## 4722                          to locate    5
## 4723                        to maneuver    5
## 4724                         to reverse    5
## 4725                            to roll    5
## 4726                            to rome    5
## 4727                              to st    5
## 4728                           to start    5
## 4729                            to this    5
## 4730                      to turbulence    5
## 4731                           told the    5
## 4732                          took over    5
## 4733                      touchdown the    5
## 4734                         toward the    5
## 4735                          tower and    5
## 4736               traffic controller's    5
## 4737                traffic controllers    5
## 4738                    traffic pattern    5
## 4739                       training and    5
## 4740                   training manuals    5
## 4741                         trapped in    5
## 4742                           tree the    5
## 4743                      turbulence of    5
## 4744               turbulent conditions    5
## 4745                        turn around    5
## 4746                         turned off    5
## 4747                       turning back    5
## 4748                         twin otter    5
## 4749                 uncontrollable the    5
## 4750                          under ifr    5
## 4751                     united nations    5
## 4752                    unsafe altitude    5
## 4753                           up after    5
## 4754                            up with    5
## 4755                        upon impact    5
## 4756                        upside down    5
## 4757                            use all    5
## 4758                         valley and    5
## 4759                      vertical dive    5
## 4760                        very little    5
## 4761                            vfr the    5
## 4762                         village of    5
## 4763                   visibility after    5
## 4764                  visual references    5
## 4765                        volcano the    5
## 4766                            vor dme    5
## 4767                            vor the    5
## 4768                         warning in    5
## 4769                        was brought    5
## 4770                         was caught    5
## 4771                         was closed    5
## 4772                      was corrected    5
## 4773                     was dispatched    5
## 4774                       was followed    5
## 4775                         was having    5
## 4776                        was heading    5
## 4777                           was left    5
## 4778                            was off    5
## 4779                            was one    5
## 4780                      was scattered    5
## 4781                           was shut    5
## 4782                           was that    5
## 4783                           was then    5
## 4784                           water at    5
## 4785                           way down    5
## 4786                        weakened by    5
## 4787                          weight of    5
## 4788                       went through    5
## 4789                        were flying    5
## 4790                         were never    5
## 4791                     were recovered    5
## 4792                     were retracted    5
## 4793                         wet runway    5
## 4794                           what was    5
## 4795                         when there    5
## 4796                            which a    5
## 4797                      which allowed    5
## 4798                     which exceeded    5
## 4799                          which may    5
## 4800                    which prevented    5
## 4801                     which rendered    5
## 4802                           while at    5
## 4803                    while executing    5
## 4804                           while it    5
## 4805                    while operating    5
## 4806                         while over    5
## 4807                   while performing    5
## 4808                whiteout conditions    5
## 4809                    wind conditions    5
## 4810                           winds at    5
## 4811                        winds while    5
## 4812                         wing after    5
## 4813                       wing dropped    5
## 4814                         wing flaps    5
## 4815                           wing was    5
## 4816                          wings the    5
## 4817                          wires and    5
## 4818                       with respect    5
## 4819                           with two    5
## 4820                 witnesses observed    5
## 4821                         worse than    5
## 4822                    wrong direction    5
## 4823                       wrong valley    5
## 4824                           years in    5
## 4825                               1 km    4
## 4826                              1 the    4
## 4827                           100 feet    4
## 4828                              11 65    4
## 4829                               11 8    4
## 4830                           11 miles    4
## 4831                          11,000 ft    4
## 4832                          11,500 ft    4
## 4833                        12,000 feet    4
## 4834                              15 km    4
## 4835                             150 ft    4
## 4836                          150 miles    4
## 4837                              16 65    4
## 4838                          16,000 ft    4
## 4839                        18,000 feet    4
## 4840                           19 miles    4
## 4841                                2 4    4
## 4842                           2 pilots    4
## 4843                              2 the    4
## 4844                             24 the    4
## 4845                              25 km    4
## 4846                             3 days    4
## 4847                            3 hours    4
## 4848                               4 66    4
## 4849                          4 engines    4
## 4850                         4,500 feet    4
## 4851                         40 degrees    4
## 4852                          45 degree    4
## 4853                             5 days    4
## 4854                               5 km    4
## 4855                         6,500 feet    4
## 4856                              60 km    4
## 4857                           600 feet    4
## 4858                             65 and    4
## 4859                      65 cincinnati    4
## 4860                            65 salt    4
## 4861                            66 only    4
## 4862                          7.5 miles    4
## 4863                      727 accidents    4
## 4864                       727 training    4
## 4865                               8 16    4
## 4866                               8 65    4
## 4867                           80 miles    4
## 4868                             800 ft    4
## 4869                         9,000 feet    4
## 4870                           9,500 ft    4
## 4871                           900 feet    4
## 4872                             900 ft    4
## 4873                         900 meters    4
## 4874                              a 180    4
## 4875                            a 7,000    4
## 4876                                a b    4
## 4877                         a blizzard    4
## 4878                            a break    4
## 4879                           a cessna    4
## 4880                            a chain    4
## 4881                        a cigarette    4
## 4882                         a civilian    4
## 4883                         a climbing    4
## 4884                           a closed    4
## 4885                       a commercial    4
## 4886                       a compressor    4
## 4887                             a crew    4
## 4888                         a cylinder    4
## 4889                         a decision    4
## 4890                    a demonstration    4
## 4891                       a descending    4
## 4892                         a distance    4
## 4893                             a dyke    4
## 4894                          a factory    4
## 4895                           a french    4
## 4896                              a gas    4
## 4897                          a gradual    4
## 4898                            a grove    4
## 4899                            a hotel    4
## 4900                              a leg    4
## 4901                           a little    4
## 4902                            a local    4
## 4903                              a man    4
## 4904                         a maneuver    4
## 4905                           a market    4
## 4906                            a month    4
## 4907                              a one    4
## 4908                        a parachute    4
## 4909                            a pilot    4
## 4910                          a request    4
## 4911                          a roadway    4
## 4912                             a rock    4
## 4913                              a row    4
## 4914                          a section    4
## 4915                         a security    4
## 4916                           a slight    4
## 4917                           a soviet    4
## 4918                           a squall    4
## 4919                         a standard    4
## 4920                       a structural    4
## 4921                      a substantial    4
## 4922                          a suicide    4
## 4923                             a tail    4
## 4924                            a total    4
## 4925                               a us    4
## 4926                           a vacant    4
## 4927                           a valley    4
## 4928                              a way    4
## 4929                         ability to    4
## 4930                           about 10    4
## 4931                           about 11    4
## 4932                           about 12    4
## 4933                           about 25    4
## 4934                            about 8    4
## 4935                        accident as    4
## 4936                     accident while    4
## 4937                           acme nut    4
## 4938                         action was    4
## 4939                         actions by    4
## 4940                         actions of    4
## 4941                  adequate airspeed    4
## 4942                  adequate altitude    4
## 4943                 adequately monitor    4
## 4944                        adoption of    4
## 4945                        advised atc    4
## 4946                        affected by    4
## 4947                      afghan rebels    4
## 4948                             aft of    4
## 4949                          after 727    4
## 4950                    after colliding    4
## 4951                     after deciding    4
## 4952                    after deviating    4
## 4953                    after diverting    4
## 4954                  after overrunning    4
## 4955                     after rotation    4
## 4956                    after suffering    4
## 4957                     after touching    4
## 4958                 after transmitting    4
## 4959                          against a    4
## 4960                    aileron control    4
## 4961                          air lines    4
## 4962                      air midwest's    4
## 4963                      air transport    4
## 4964                       airborne but    4
## 4965                aircraft's position    4
## 4966                    aircraft's wing    4
## 4967                aircraft approached    4
## 4968                  aircraft attained    4
## 4969                  aircraft attitude    4
## 4970                   aircraft bounced    4
## 4971               aircraft cartwheeled    4
## 4972                  aircraft crashing    4
## 4973                   aircraft drifted    4
## 4974                 aircraft following    4
## 4975                      aircraft from    4
## 4976                  aircraft overshot    4
## 4977                     aircraft owned    4
## 4978                  aircraft returned    4
## 4979                   aircraft shortly    4
## 4980                  aircraft striking    4
## 4981                    aircraft taking    4
## 4982                      aircraft type    4
## 4983                 aircraft undershot    4
## 4984                    aircraft weight    4
## 4985                        aircraftã â    4
## 4986                       airliner and    4
## 4987                       airplane hit    4
## 4988                      airplane lost    4
## 4989                   airplane stalled    4
## 4990                       airplane the    4
## 4991                         airport as    4
## 4992                   airport boundary    4
## 4993                    airport failure    4
## 4994                       airport into    4
## 4995                         airport it    4
## 4996                    airport killing    4
## 4997                    airship crashed    4
## 4998                     airspeed which    4
## 4999                     airspeed while    4
## 5000                          alert the    4
## 5001                      all available    4
## 5002                         all killed    4
## 5003                             all on    4
## 5004                          allow the    4
## 5005                    alternate tanks    4
## 5006                     altitude below    4
## 5007                        altitude it    4
## 5008                     altitude under    4
## 5009                   altitude warning    4
## 5010                      altitudes and    4
## 5011                           am plane    4
## 5012                    an accumulation    4
## 5013                           an alarm    4
## 5014                           an angle    4
## 5015                         an antenna    4
## 5016                        an apparent    4
## 5017                      an asymmetric    4
## 5018                         an erratic    4
## 5019                         an evasive    4
## 5020                     an excessively    4
## 5021                        an inflight    4
## 5022                         an initial    4
## 5023                         an intense    4
## 5024                    an intermediate    4
## 5025                             an off    4
## 5026                         an optical    4
## 5027                      an overheated    4
## 5028                    an undetermined    4
## 5029                         an unknown    4
## 5030                    an unsuccessful    4
## 5031                         an unusual    4
## 5032                              and 5    4
## 5033                              and 7    4
## 5034                       and airspeed    4
## 5035                            and atc    4
## 5036                         and became    4
## 5037                          and being    4
## 5038                        and bounced    4
## 5039                       and catching    4
## 5040                     and cincinnati    4
## 5041                          and climb    4
## 5042                        and cockpit    4
## 5043                        and damaged    4
## 5044                       and decision    4
## 5045                   and deliberately    4
## 5046                           and died    4
## 5047                       and distance    4
## 5048                          and dived    4
## 5049                        and drizzle    4
## 5050                   and experiencing    4
## 5051                      and exploding    4
## 5052                           and fast    4
## 5053                          and flown    4
## 5054                         and height    4
## 5055                        and ignited    4
## 5056                           and land    4
## 5057                           and lose    4
## 5058                         and making    4
## 5059                           and mist    4
## 5060                             and of    4
## 5061                      and operation    4
## 5062                             and or    4
## 5063                           and over    4
## 5064                       and possible    4
## 5065                       and possibly    4
## 5066                     and procedures    4
## 5067                            and put    4
## 5068                       and resulted    4
## 5069                        and sliding    4
## 5070                        and smashed    4
## 5071                           and soon    4
## 5072                       and spiraled    4
## 5073                   and subsequently    4
## 5074                           and sunk    4
## 5075                           and this    4
## 5076                          and tokyo    4
## 5077                   and uncontrolled    4
## 5078                         and veered    4
## 5079                         angeles to    4
## 5080                          apart the    4
## 5081                         appears to    4
## 5082                        applied but    4
## 5083                        applied the    4
## 5084                         applied to    4
## 5085                         approach 3    4
## 5086                 approach attempted    4
## 5087                       approach but    4
## 5088                       approach due    4
## 5089                  approach improper    4
## 5090                        approach of    4
## 5091                   approach without    4
## 5092                        approved by    4
## 5093                    approximately 1    4
## 5094                   approximately 10    4
## 5095                   approximately 60    4
## 5096                       area crashed    4
## 5097                        area during    4
## 5098                         area where    4
## 5099                          area with    4
## 5100                         arrest the    4
## 5101                    assigned airway    4
## 5102                              at 00    4
## 5103                              at 15    4
## 5104                           at 2,000    4
## 5105                             at 400    4
## 5106                           at 6,500    4
## 5107                           at 8,500    4
## 5108                           at 9,000    4
## 5109                            at fort    4
## 5110                           atc lost    4
## 5111                         attack and    4
## 5112                         attempt by    4
## 5113                        attempt was    4
## 5114                       attention to    4
## 5115            aviation administration    4
## 5116                           back and    4
## 5117                          back down    4
## 5118                            back of    4
## 5119                         baltic sea    4
## 5120                       banked right    4
## 5121                       banking turn    4
## 5122                           base and    4
## 5123                           base leg    4
## 5124                            base of    4
## 5125                              bay 2    4
## 5126                        bay shortly    4
## 5127                          bay while    4
## 5128                               be a    4
## 5129                     be established    4
## 5130                           be flown    4
## 5131                      be maintained    4
## 5132                             be the    4
## 5133                   became spatially    4
## 5134                            been in    4
## 5135                     been installed    4
## 5136                        been placed    4
## 5137                          been shot    4
## 5138                  before descending    4
## 5139                         before its    4
## 5140                          began the    4
## 5141                      being carried    4
## 5142                     being operated    4
## 5143                         being shot    4
## 5144                       being unable    4
## 5145                      belly landing    4
## 5146                          below its    4
## 5147                  below obstructing    4
## 5148                      below weather    4
## 5149                         beside the    4
## 5150                          blades to    4
## 5151                         blamed for    4
## 5152                           blew out    4
## 5153                        blocked the    4
## 5154                          blown off    4
## 5155                         blown tire    4
## 5156                       boat crashed    4
## 5157                         bodies and    4
## 5158                         border the    4
## 5159                          both crew    4
## 5160                     both throttles    4
## 5161                          both were    4
## 5162                    bourget airport    4
## 5163                           break in    4
## 5164                      breaking into    4
## 5165                       breaking the    4
## 5166                       brought down    4
## 5167                        building in    4
## 5168                      but descended    4
## 5169                           but died    4
## 5170                        but instead    4
## 5171                          but later    4
## 5172                           but lost    4
## 5173                           but then    4
## 5174                          but there    4
## 5175                             by air    4
## 5176                          by allied    4
## 5177                         by another    4
## 5178                         by company    4
## 5179                             by ice    4
## 5180                             by low    4
## 5181                           by radio    4
## 5182                      by terrorists    4
## 5183                               c 47    4
## 5184                          cairo the    4
## 5185               captain's inadequate    4
## 5186                  captain continued    4
## 5187                   captain reported    4
## 5188                     carbon dioxide    4
## 5189                   carburetor icing    4
## 5190              carrying paratroopers    4
## 5191                       carrying the    4
## 5192                         cashed and    4
## 5193               catastrophic failure    4
## 5194                      catching fire    4
## 5195                        caused four    4
## 5196                     causing damage    4
## 5197                       causing loss    4
## 5198                         cessna and    4
## 5199                       cessna pilot    4
## 5200                       chartered by    4
## 5201                      checklist and    4
## 5202                        chicago the    4
## 5203                       children and    4
## 5204                          china sea    4
## 5205                      cincinnati 11    4
## 5206                 cincinnati crashes    4
## 5207                        circled for    4
## 5208                            city 11    4
## 5209                    clearance limit    4
## 5210                           climb at    4
## 5211                          climb but    4
## 5212                      closed runway    4
## 5213                     cloud obscured    4
## 5214                          clouds at    4
## 5215                        coast guard    4
## 5216                         cockpit he    4
## 5217                         cockpit of    4
## 5218                      cockpit voice    4
## 5219                        collapse of    4
## 5220                      collapsed and    4
## 5221                       completing a    4
## 5222                      conditions as    4
## 5223              conditions controlled    4
## 5224                 conditions existed    4
## 5225                 conditions failure    4
## 5226                      conditions on    4
## 5227                    conditions shot    4
## 5228                    conditions when    4
## 5229                       conducted in    4
## 5230                     connecting rod    4
## 5231                     consequence of    4
## 5232                      consisting of    4
## 5233                        contact the    4
## 5234                   contamination on    4
## 5235                  contamination the    4
## 5236                       continue vfr    4
## 5237                     continued into    4
## 5238                         control at    4
## 5239                     control column    4
## 5240               control difficulties    4
## 5241                       control from    4
## 5242                  control mechanism    4
## 5243                        control rod    4
## 5244                         control to    4
## 5245                       control unit    4
## 5246                      controller to    4
## 5247                       controls and    4
## 5248                     counteract the    4
## 5249                       course after    4
## 5250                         course due    4
## 5251                          course in    4
## 5252                        course when    4
## 5253                       course which    4
## 5254                       covering the    4
## 5255                            crash a    4
## 5256                        crash while    4
## 5257                         crashed 20    4
## 5258                        crashed 200    4
## 5259                         crashed 40    4
## 5260                          crashed 7    4
## 5261                         crashed an    4
## 5262              crashed approximately    4
## 5263                      crashed broke    4
## 5264                       crashed crew    4
## 5265                       crashed fuel    4
## 5266                         crashed it    4
## 5267                       crashed just    4
## 5268                    crashed killing    4
## 5269                       crashed when    4
## 5270                       crashes were    4
## 5271                        crashing to    4
## 5272                        crew's lack    4
## 5273                            crew as    4
## 5274                        crew became    4
## 5275                       crew crashed    4
## 5276                   crew experienced    4
## 5277                     crew requested    4
## 5278                          crew shut    4
## 5279                          crew with    4
## 5280                     critical point    4
## 5281                        crossed the    4
## 5282                    cruise altitude    4
## 5283                  cruising altitude    4
## 5284                cumulonimbus clouds    4
## 5285                         damage the    4
## 5286                        days before    4
## 5287                               dc 4    4
## 5288                         de janerio    4
## 5289                         death toll    4
## 5290                        deciding to    4
## 5291                       declaring an    4
## 5292               demonstration flight    4
## 5293                   density altitude    4
## 5294                       departed the    4
## 5295                        descend and    4
## 5296                  descended rapidly    4
## 5297                      descending in    4
## 5298                    descending turn    4
## 5299                    descent crashed    4
## 5300                         design and    4
## 5301                          despite a    4
## 5302                   despite warnings    4
## 5303                  destination while    4
## 5304                      destroyed and    4
## 5305                     destroying the    4
## 5306                       detached and    4
## 5307                        detached in    4
## 5308                determined possible    4
## 5309                       developed in    4
## 5310                             died a    4
## 5311                       direction of    4
## 5312                  disappeared after    4
## 5313                   disconnection of    4
## 5314                  disintegrated the    4
## 5315                 disintegrated upon    4
## 5316                       disregard of    4
## 5317                      distance from    4
## 5318                        distance of    4
## 5319                           ditch in    4
## 5320                          dived and    4
## 5321                        diving into    4
## 5322                         doors were    4
## 5323                         down after    4
## 5324                            down an    4
## 5325                            down to    4
## 5326                      downdraft and    4
## 5327                           drag the    4
## 5328                         drifted to    4
## 5329                       during heavy    4
## 5330                  during instrument    4
## 5331                          earth and    4
## 5332                emergency situation    4
## 5333                 encountered severe    4
## 5334                  encountered which    4
## 5335                   encountering fog    4
## 5336                            end the    4
## 5337                          engine at    4
## 5338                    engine exploded    4
## 5339                         engine led    4
## 5340                          engine of    4
## 5341                       engine plane    4
## 5342                     engine problem    4
## 5343                   engine propeller    4
## 5344                        engine shut    4
## 5345                      engine struck    4
## 5346                      engine surges    4
## 5347                       engineer the    4
## 5348                     engines during    4
## 5349                         engines on    4
## 5350                      engines while    4
## 5351                        ensure that    4
## 5352                            error a    4
## 5353                        error after    4
## 5354                      error failure    4
## 5355                         error lack    4
## 5356                         erupted in    4
## 5357                         escape the    4
## 5358                   esenboga airport    4
## 5359                     eventually led    4
## 5360                      exceeding the    4
## 5361                     excessive drag    4
## 5362                     excessive wear    4
## 5363                        execute the    4
## 5364                   exercise crashed    4
## 5365                   existing weather    4
## 5366                      experience in    4
## 5367                      experience on    4
## 5368                     experienced an    4
## 5369                 experienced engine    4
## 5370                experienced spatial    4
## 5371                       exploded the    4
## 5372                     exploded while    4
## 5373                       exploding in    4
## 5374                        exposure to    4
## 5375                               f 6f    4
## 5376                               f 86    4
## 5377                      faa's failure    4
## 5378                         factor the    4
## 5379                   factors relating    4
## 5380                          failed as    4
## 5381                     failed landing    4
## 5382                    failure failure    4
## 5383                   failure occurred    4
## 5384                           feet agl    4
## 5385                           feet but    4
## 5386                        feet during    4
## 5387                           feet off    4
## 5388                            feet to    4
## 5389                            feet up    4
## 5390                        field short    4
## 5391                       fighters the    4
## 5392                         filled the    4
## 5393                        final stage    4
## 5394                        fire aboard    4
## 5395                     fire developed    4
## 5396                         fire prior    4
## 5397                        fire spread    4
## 5398                       fire station    4
## 5399                        first fatal    4
## 5400                    five passengers    4
## 5401                             fl 310    4
## 5402                           flames a    4
## 5403                     flames shortly    4
## 5404                     flaps extended    4
## 5405                          flat spin    4
## 5406                            flaw in    4
## 5407                            flew in    4
## 5408                           flight a    4
## 5409                  flight attendants    4
## 5410                       flight below    4
## 5411                 flight disappeared    4
## 5412                         flight due    4
## 5413                  flight engineer's    4
## 5414                   flight following    4
## 5415                      flight struck    4
## 5416                    flight training    4
## 5417                      flightcrew of    4
## 5418                      flightcrew to    4
## 5419                          floor and    4
## 5420                           flown at    4
## 5421                            fly ifr    4
## 5422                             fly in    4
## 5423                        fly through    4
## 5424                            fly vfr    4
## 5425                           flying a    4
## 5426             flying characteristics    4
## 5427                           fog bank    4
## 5428                        fog covered    4
## 5429                           fog crew    4
## 5430                             fog in    4
## 5431                             fog on    4
## 5432                          fog pilot    4
## 5433                        fog shortly    4
## 5434                      foggy weather    4
## 5435                           follow a    4
## 5436                  follow procedures    4
## 5437                      follow proper    4
## 5438                              for 3    4
## 5439                             for 30    4
## 5440                            for not    4
## 5441                           for take    4
## 5442                            force f    4
## 5443                       forest while    4
## 5444                          forgot to    4
## 5445                         found near    4
## 5446                           four 727    4
## 5447                        four killed    4
## 5448                        four planes    4
## 5449                       from another    4
## 5450                       from burbank    4
## 5451                         from cairo    4
## 5452                          from fort    4
## 5453                        from moscow    4
## 5454                    from prescribed    4
## 5455                         from shore    4
## 5456                          ft before    4
## 5457                             ft but    4
## 5458                            ft high    4
## 5459                            ft hole    4
## 5460                           ft level    4
## 5461                         ft stalled    4
## 5462                           ft which    4
## 5463                       fuel crashed    4
## 5464                          fuel from    4
## 5465                     fuel imbalance    4
## 5466                         fuel state    4
## 5467                      fuel transfer    4
## 5468                          full stop    4
## 5469                   fuselage killing    4
## 5470                        gain height    4
## 5471                     gear retracted    4
## 5472                      girl survived    4
## 5473                           given by    4
## 5474                        go landings    4
## 5475                       gpws warning    4
## 5476                gradually descended    4
## 5477                       grand canyon    4
## 5478                       greater than    4
## 5479                       ground about    4
## 5480                     ground contact    4
## 5481                        ground crew    4
## 5482                     ground failure    4
## 5483                         ground for    4
## 5484                         grounds of    4
## 5485                         had engine    4
## 5486                           had lost    4
## 5487                       had problems    4
## 5488                      had purchased    4
## 5489                           had very    4
## 5490                            half an    4
## 5491                         hanger and    4
## 5492                         harbor the    4
## 5493                        have played    4
## 5494                         having the    4
## 5495                           haze the    4
## 5496                         he decided    4
## 5497                             he did    4
## 5498                            he lost    4
## 5499                         head winds    4
## 5500                   heathrow airport    4
## 5501                      heavy landing    4
## 5502                    heavy rainstorm    4
## 5503                   heavy turbulence    4
## 5504                  helicopter struck    4
## 5505                       high density    4
## 5506                       high ranking    4
## 5507                        highway and    4
## 5508                        hijacked by    4
## 5509                     hijackers took    4
## 5510                       hill crashed    4
## 5511                       hill located    4
## 5512                       hill shortly    4
## 5513                          hills the    4
## 5514                            him the    4
## 5515                        his landing    4
## 5516                          his plane    4
## 5517                          hit power    4
## 5518                      hit telephone    4
## 5519                          hours the    4
## 5520                        house while    4
## 5521                         houses and    4
## 5522                         houses the    4
## 5523                       hundred feet    4
## 5524                     identified the    4
## 5525                       identify the    4
## 5526                     ifr procedures    4
## 5527                        ignited the    4
## 5528                        ignored the    4
## 5529                            imc the    4
## 5530                      impacting the    4
## 5531                     improperly set    4
## 5532                        in approach    4
## 5533                           in doing    4
## 5534                          in either    4
## 5535                           in error    4
## 5536                       in explosive    4
## 5537                            in fact    4
## 5538                       in inclement    4
## 5539                      in instrument    4
## 5540                            in jail    4
## 5541                        in judgment    4
## 5542                         in limited    4
## 5543                       in mountains    4
## 5544                          in rugged    4
## 5545                      in succession    4
## 5546                          in taking    4
## 5547                     in unfavorable    4
## 5548                        in whiteout    4
## 5549                            in zero    4
## 5550                      inadequacy of    4
## 5551                    inadequate crew    4
## 5552                     inattention of    4
## 5553                   inaugural flight    4
## 5554                       incapable of    4
## 5555                       included the    4
## 5556                         induced by    4
## 5557                  induced windshear    4
## 5558                         inform the    4
## 5559                       informed the    4
## 5560                      initiated the    4
## 5561                     inspection and    4
## 5562                       installed on    4
## 5563                instrument altitude    4
## 5564                 instruments during    4
## 5565                             into 3    4
## 5566                          into both    4
## 5567                          into four    4
## 5568                        into rising    4
## 5569                           into san    4
## 5570                         into three    4
## 5571                       inverted the    4
## 5572                        involved in    4
## 5573                       involved the    4
## 5574                        is presumed    4
## 5575                        is reported    4
## 5576                       island while    4
## 5577                        issuance of    4
## 5578                           it after    4
## 5579                           it began    4
## 5580                     it disappeared    4
## 5581                            it into    4
## 5582                            it lost    4
## 5583                            it made    4
## 5584                            it sank    4
## 5585                          it turned    4
## 5586                       its approach    4
## 5587                         its weight    4
## 5588                            jet the    4
## 5589                   jetliner crashed    4
## 5590                        judgment of    4
## 5591                        judgment on    4
## 5592                          jungle in    4
## 5593                         jungle the    4
## 5594                       jungle while    4
## 5595                         jungles of    4
## 5596                      just offshore    4
## 5597                         just prior    4
## 5598                           keep the    4
## 5599                         killed all    4
## 5600                          killed by    4
## 5601                          killed he    4
## 5602                     killed shortly    4
## 5603                    kilometers from    4
## 5604                           kms from    4
## 5605                     known position    4
## 5606                           known to    4
## 5607                         lake after    4
## 5608                           lake the    4
## 5609                       land because    4
## 5610                           land but    4
## 5611                           land for    4
## 5612                          land when    4
## 5613                          land with    4
## 5614                        landed into    4
## 5615                      landing about    4
## 5616                    landing because    4
## 5617                    landing causing    4
## 5618                         landing he    4
## 5619                     landing lights    4
## 5620                         landing of    4
## 5621                       landing site    4
## 5622                      landing speed    4
## 5623                      landing under    4
## 5624                      landing which    4
## 5625                           late the    4
## 5626                    lateral control    4
## 5627                      left elevator    4
## 5628                          left lost    4
## 5629                        left rudder    4
## 5630                          level the    4
## 5631                       leveling off    4
## 5632                        license was    4
## 5633                  lightning crashed    4
## 5634                         limits and    4
## 5635                          lines the    4
## 5636                        loaded with    4
## 5637                        loading and    4
## 5638                  localizer antenna    4
## 5639                        lose height    4
## 5640                     losing control    4
## 5641                            loss in    4
## 5642                            lost as    4
## 5643                          lost both    4
## 5644                         lost sight    4
## 5645                   lost situational    4
## 5646                          loud bang    4
## 5647                         low flying    4
## 5648                            low for    4
## 5649                           low fuel    4
## 5650                           low when    4
## 5651                            m short    4
## 5652                              m the    4
## 5653                       made contact    4
## 5654                            made in    4
## 5655               maintain directional    4
## 5656                    maintain flight    4
## 5657                    maintain height    4
## 5658                   maintain terrain    4
## 5659                       maintained a    4
## 5660                         making and    4
## 5661                    malfunction and    4
## 5662                      management of    4
## 5663                        maneuver by    4
## 5664                     manual control    4
## 5665                         manual the    4
## 5666                       manuals were    4
## 5667                    many passengers    4
## 5668                          maria the    4
## 5669                       marine corps    4
## 5670                         marker the    4
## 5671                       marker while    4
## 5672                           mast and    4
## 5673                              md 87    4
## 5674                            mda and    4
## 5675                        mda crashed    4
## 5676                       medical team    4
## 5677                        mexico city    4
## 5678                               mi 8    4
## 5679                         michigan 8    4
## 5680                         midair and    4
## 5681                           miles nw    4
## 5682                           miles to    4
## 5683                   miles visibility    4
## 5684                military helicopter    4
## 5685                          minima of    4
## 5686                     minimum flight    4
## 5687                        minutes and    4
## 5688                 misjudged altitude    4
## 5689                    misjudgement by    4
## 5690                     missed landing    4
## 5691                         missing in    4
## 5692                        mission and    4
## 5693                        mistake the    4
## 5694                           mode the    4
## 5695                       modified and    4
## 5696                      moments later    4
## 5697                      monitor their    4
## 5698                     monitoring the    4
## 5699                        mountain 30    4
## 5700                        mountain en    4
## 5701                 mountainous region    4
## 5702                      narrow valley    4
## 5703                     nautical miles    4
## 5704               navigation equipment    4
## 5705                          near head    4
## 5706                       necessary to    4
## 5707                     necessitated a    4
## 5708                    never recovered    4
## 5709                       night before    4
## 5710                      night crashed    4
## 5711                      night takeoff    4
## 5712                        night under    4
## 5713                        no distress    4
## 5714                            nor the    4
## 5715                     north atlantic    4
## 5716                    north northeast    4
## 5717                         nosed into    4
## 5718                      not activated    4
## 5719                       not approved    4
## 5720                           not gain    4
## 5721                           not heed    4
## 5722                           not know    4
## 5723                          not known    4
## 5724                     not maintained    4
## 5725                        not respond    4
## 5726                           not stop    4
## 5727                            not the    4
## 5728                         notice the    4
## 5729                              nw of    4
## 5730                        observe and    4
## 5731                        observed to    4
## 5732                     occupants were    4
## 5733                    occurred during    4
## 5734                           of 1,500    4
## 5735                             of 100    4
## 5736                             of 150    4
## 5737                           of 6,000    4
## 5738                           of 8,000    4
## 5739                             of any    4
## 5740                           of cabin    4
## 5741                    of coordination    4
## 5742                            of each    4
## 5743                       of extremely    4
## 5744                         of factors    4
## 5745                            of fire    4
## 5746                          of height    4
## 5747                              of la    4
## 5748                         of lateral    4
## 5749                            of lift    4
## 5750                     of maintaining    4
## 5751                          of making    4
## 5752                    of navigational    4
## 5753                           of radar    4
## 5754                            of rain    4
## 5755                            of snow    4
## 5756                          of strong    4
## 5757                           of those    4
## 5758                           of tokyo    4
## 5759                        of training    4
## 5760                         of turning    4
## 5761                         of weather    4
## 5762                          off again    4
## 5763                            off its    4
## 5764                             off of    4
## 5765                          off there    4
## 5766                        officer and    4
## 5767                        officer who    4
## 5768                     officially the    4
## 5769                       oil pressure    4
## 5770                            on both    4
## 5771                          on course    4
## 5772                            on fuel    4
## 5773                           on their    4
## 5774                             on top    4
## 5775                         one person    4
## 5776                          one pilot    4
## 5777                          one plane    4
## 5778                       operating in    4
## 5779                      operating the    4
## 5780                      operation the    4
## 5781                  operations manual    4
## 5782                        operator to    4
## 5783                 opposite direction    4
## 5784                   optical illusion    4
## 5785                              or an    4
## 5786                          or failed    4
## 5787                            or some    4
## 5788                        ordered the    4
## 5789                      originated in    4
## 5790                   other passengers    4
## 5791                       other planes    4
## 5792                       outskirts of    4
## 5793                       over control    4
## 5794                        overcome by    4
## 5795                   overloaded after    4
## 5796                 overloaded crashed    4
## 5797                   overloaded while    4
## 5798                       palm springs    4
## 5799                      parachuted to    4
## 5800                           park the    4
## 5801                       partial loss    4
## 5802                          parts and    4
## 5803                            pass at    4
## 5804                           pass the    4
## 5805                    passing through    4
## 5806                       path crashed    4
## 5807                            peak of    4
## 5808                       penetrated a    4
## 5809                      people aboard    4
## 5810                    performance and    4
## 5811              performing aerobatics    4
## 5812                         pieces and    4
## 5813                   pilot's improper    4
## 5814                     pilot deviated    4
## 5815                  pilot encountered    4
## 5816                          pilot may    4
## 5817                       pilot pulled    4
## 5818                    pilot requested    4
## 5819                     pilot survived    4
## 5820                         pilot took    4
## 5821                       pilot turned    4
## 5822                        pilot which    4
## 5823                         pilot with    4
## 5824                         piloted by    4
## 5825                      pilots failed    4
## 5826                         pitch trim    4
## 5827                       placement of    4
## 5828                           plan the    4
## 5829                       plane's left    4
## 5830                      plane bounced    4
## 5831                          plane but    4
## 5832                           plane by    4
## 5833                  plane cartwheeled    4
## 5834                      plane climbed    4
## 5835                      plane clipped    4
## 5836                     plane crashing    4
## 5837                         plane from    4
## 5838                         plane left    4
## 5839                          plane may    4
## 5840                        plane never    4
## 5841                     plane reported    4
## 5842                        plane tried    4
## 5843                    plane undershot    4
## 5844                        plane which    4
## 5845                        plane yawed    4
## 5846                        planes that    4
## 5847                           played a    4
## 5848                          poles and    4
## 5849                       position was    4
## 5850                        possible in    4
## 5851                          power due    4
## 5852                       power during    4
## 5853                         power loss    4
## 5854                        power while    4
## 5855                    precipitated by    4
## 5856                 preflight planning    4
## 5857                      preparing for    4
## 5858                        pressure to    4
## 5859                     preventing the    4
## 5860                      primary cause    4
## 5861                      procedure for    4
## 5862                      procedure was    4
## 5863                    procedure which    4
## 5864                 procedures crashed    4
## 5865                        program the    4
## 5866                  propeller control    4
## 5867                   propeller failed    4
## 5868                      propeller was    4
## 5869                           pull the    4
## 5870                      punctured the    4
## 5871                             put in    4
## 5872                          pylon and    4
## 5873                       qualified to    4
## 5874                    quality control    4
## 5875                       radio beacon    4
## 5876                        radio tower    4
## 5877                       radioed that    4
## 5878                         rain after    4
## 5879                           rain fog    4
## 5880                          range and    4
## 5881                          range the    4
## 5882                           rate and    4
## 5883                            rate is    4
## 5884                       realized the    4
## 5885                       reasons that    4
## 5886                        rebels with    4
## 5887                         received a    4
## 5888                       recovery hit    4
## 5889                      reference and    4
## 5890                      reference for    4
## 5891                     reference with    4
## 5892                         refuel the    4
## 5893                     refueling stop    4
## 5894                         refused to    4
## 5895                     regain control    4
## 5896                   rejected takeoff    4
## 5897                        relating to    4
## 5898                        relative to    4
## 5899                     relief mission    4
## 5900                        remote area    4
## 5901                 remote mountainous    4
## 5902                       removed from    4
## 5903                      reoriented to    4
## 5904                    reported losing    4
## 5905                    reported seeing    4
## 5906                        requested a    4
## 5907                    required visual    4
## 5908                    requirements of    4
## 5909                 responsibility for    4
## 5910                    responsible for    4
## 5911                       rest against    4
## 5912                            rest at    4
## 5913                            rest of    4
## 5914                           rest the    4
## 5915                          ridge and    4
## 5916                         ridge line    4
## 5917                         rigging of    4
## 5918                         right bank    4
## 5919                         right lost    4
## 5920                         right rear    4
## 5921                        right until    4
## 5922                           river in    4
## 5923                          rotor and    4
## 5924                        route cause    4
## 5925                         route crew    4
## 5926                      route failure    4
## 5927                         route into    4
## 5928                      route without    4
## 5929                             row of    4
## 5930                          royal air    4
## 5931                     rugged terrain    4
## 5932                          runway 05    4
## 5933                          runway 17    4
## 5934                          runway 24    4
## 5935                         runway 28l    4
## 5936                          runway 29    4
## 5937                          runway 30    4
## 5938                          runway 31    4
## 5939                          runway as    4
## 5940                     runway causing    4
## 5941                     runway surface    4
## 5942                       ruptured and    4
## 5943                      safe approach    4
## 5944                        safe flying    4
## 5945                           said the    4
## 5946                         sank while    4
## 5947                       santa monica    4
## 5948                scheduled passenger    4
## 5949                          sea level    4
## 5950                           sea loss    4
## 5951                             sea of    4
## 5952                           sea some    4
## 5953                          seat belt    4
## 5954                        seconds the    4
## 5955                         seeing the    4
## 5956                       selected the    4
## 5957                    separating from    4
## 5958                      separation in    4
## 5959                        servo valve    4
## 5960                             set to    4
## 5961                   seven passengers    4
## 5962                       several days    4
## 5963                      several miles    4
## 5964                      several other    4
## 5965                       severe clear    4
## 5966                   severe rainstorm    4
## 5967               severe thunderstorms    4
## 5968                        severity of    4
## 5969                     shallow waters    4
## 5970                         sharply to    4
## 5971                       shearing off    4
## 5972                          shore the    4
## 5973                           shot and    4
## 5974                      shutting down    4
## 5975                  sightseeing plane    4
## 5976                          since the    4
## 5977                      situation and    4
## 5978                         six killed    4
## 5979                          slid into    4
## 5980                         smoke from    4
## 5981                           smoke in    4
## 5982                    snowstorm while    4
## 5983                        snowy field    4
## 5984                            so that    4
## 5985                            some of    4
## 5986                         some trees    4
## 5987                        sounded and    4
## 5988                          source of    4
## 5989                           speed at    4
## 5990                        speed below    4
## 5991                         speed when    4
## 5992                        squall line    4
## 5993                    stabilizer trim    4
## 5994                           stall at    4
## 5995                      stall crashed    4
## 5996                       stall during    4
## 5997                         stall from    4
## 5998                         starting a    4
## 5999                           state of    4
## 6000                          stated he    4
## 6001                        steep angle    4
## 6002                         steep left    4
## 6003                           stop and    4
## 6004                           storm in    4
## 6005                        strong gust    4
## 6006                       struck mount    4
## 6007                         struck two    4
## 6008                      structure and    4
## 6009                       struggled to    4
## 6010               subsequent collision    4
## 6011                  subsequent impact    4
## 6012               subsequently crashed    4
## 6013                    succession lake    4
## 6014                      suddenly dove    4
## 6015                   suffered spatial    4
## 6016                suffered structural    4
## 6017                sufficient altitude    4
## 6018                        suggest the    4
## 6019                         summit the    4
## 6020                     supervision by    4
## 6021                     supervision of    4
## 6022                        supplied to    4
## 6023                        supposed to    4
## 6024                        surfaces of    4
## 6025                         swerved to    4
## 6026                           system a    4
## 6027                     system failure    4
## 6028                          system in    4
## 6029                       system while    4
## 6030                             take a    4
## 6031                         takeoff as    4
## 6032                    takeoff attempt    4
## 6033                        takeoff but    4
## 6034                       takeoff crew    4
## 6035                        taking part    4
## 6036                            tank to    4
## 6037                          team were    4
## 6038               terrain contributing    4
## 6039                        terrain due    4
## 6040                    terrain factors    4
## 6041                       terrain near    4
## 6042                    terrain shortly    4
## 6043                terrain surrounding    4
## 6044                        than normal    4
## 6045                         that after    4
## 6046                           that did    4
## 6047                      that exceeded    4
## 6048                           that had    4
## 6049                          that this    4
## 6050                         that would    4
## 6051                            the 727    4
## 6052                       the adoption    4
## 6053                        the adverse    4
## 6054                         the airbus    4
## 6055                      the aircraftã    4
## 6056                      the airline's    4
## 6057                           the anti    4
## 6058                        the antonov    4
## 6059                    the application    4
## 6060                     the authorized    4
## 6061                   the autothrottle    4
## 6062                         the azores    4
## 6063                          the blade    4
## 6064                         the bodies    4
## 6065                         the brakes    4
## 6066                            the bus    4
## 6067                        the carrier    4
## 6068                      the checklist    4
## 6069                          the chief    4
## 6070                  the circumstances    4
## 6071                        the command    4
## 6072                       the commuter    4
## 6073                       the computer    4
## 6074                         the connie    4
## 6075                    the consequence    4
## 6076                    the controllers    4
## 6077                    the destruction    4
## 6078                      the deviation    4
## 6079                       the distance    4
## 6080                          the doors    4
## 6081                         the driver    4
## 6082                     the electrical    4
## 6083                      the excessive    4
## 6084                         the failed    4
## 6085                         the flames    4
## 6086                         the floats    4
## 6087                      the following    4
## 6088                         the fourth    4
## 6089                        the general    4
## 6090                          the grand    4
## 6091                        the grounds    4
## 6092                           the gust    4
## 6093                         the harbor    4
## 6094                         the height    4
## 6095                        the highway    4
## 6096                      the himalayas    4
## 6097                          the icing    4
## 6098                      the immediate    4
## 6099                  the inappropriate    4
## 6100                       the incident    4
## 6101                     the instructor    4
## 6102                       the lavatory    4
## 6103                        the locking    4
## 6104                           the lone    4
## 6105                 the malfunctioning    4
## 6106                   the manufacturer    4
## 6107                       the mechanic    4
## 6108                         the mekong    4
## 6109                         the mooney    4
## 6110                          the motor    4
## 6111                      the navigator    4
## 6112                        the nearest    4
## 6113                            the new    4
## 6114                       the official    4
## 6115                              the p    4
## 6116                         the postal    4
## 6117                       the pressure    4
## 6118                       the previous    4
## 6119                            the psa    4
## 6120                       the pyrenees    4
## 6121                            the rio    4
## 6122                           the safe    4
## 6123                        the shallow    4
## 6124                           the site    4
## 6125                        the spoiler    4
## 6126                        the surface    4
## 6127                      the survivors    4
## 6128                          the swiss    4
## 6129                           the tank    4
## 6130                         the target    4
## 6131                       the terminal    4
## 6132                       the throttle    4
## 6133                          the usual    4
## 6134                         the valley    4
## 6135                      the vincennes    4
## 6136                          the winds    4
## 6137                     then descended    4
## 6138                           then hit    4
## 6139                          then lost    4
## 6140                          then made    4
## 6141                          they also    4
## 6142                     they attempted    4
## 6143                      third attempt    4
## 6144                        thirty five    4
## 6145                           this the    4
## 6146                         though the    4
## 6147                          three and    4
## 6148                        three miles    4
## 6149                        three times    4
## 6150                      threshold the    4
## 6151                       throttles to    4
## 6152                     throttles were    4
## 6153                     through clouds    4
## 6154                    thunderstorm in    4
## 6155                         time after    4
## 6156                           time and    4
## 6157                           time but    4
## 6158                           time for    4
## 6159                            time in    4
## 6160                       times before    4
## 6161                             to 100    4
## 6162                           to alert    4
## 6163                           to allow    4
## 6164                        to altitude    4
## 6165                           to apply    4
## 6166                          to ascend    4
## 6167                          to attain    4
## 6168                         to attempt    4
## 6169                            to bank    4
## 6170                         to burbank    4
## 6171                           to cause    4
## 6172                         to conduct    4
## 6173                         to contact    4
## 6174                      to counteract    4
## 6175                            to crew    4
## 6176                          to dallas    4
## 6177                         to descent    4
## 6178                         to deviate    4
## 6179                            to give    4
## 6180                            to help    4
## 6181                            to high    4
## 6182                            to hold    4
## 6183                             to ice    4
## 6184                          to ignite    4
## 6185                        to improper    4
## 6186                        to increase    4
## 6187                            to kill    4
## 6188                          to london    4
## 6189                             to los    4
## 6190                             to low    4
## 6191                          to moscow    4
## 6192                         to observe    4
## 6193                          to permit    4
## 6194                           to smoke    4
## 6195                              to to    4
## 6196                       to undertake    4
## 6197                          tokyo bay    4
## 6198                             took a    4
## 6199                       took control    4
## 6200                           tore off    4
## 6201                    touchdown point    4
## 6202                      touching down    4
## 6203                          towards a    4
## 6204                         tower lost    4
## 6205                         tower that    4
## 6206                        training in    4
## 6207                 transmission tower    4
## 6208                         travis air    4
## 6209                            trees a    4
## 6210                        trees after    4
## 6211                           trees at    4
## 6212                        trees short    4
## 6213                      trees shortly    4
## 6214                         troops the    4
## 6215                        trouble and    4
## 6216                    trouble crashed    4
## 6217                             try to    4
## 6218                   turbulence after    4
## 6219                      turbulence at    4
## 6220                  turbulence during    4
## 6221                    turbulence from    4
## 6222                   turbulence which    4
## 6223                            turn on    4
## 6224                       turn stalled    4
## 6225                       turn towards    4
## 6226                          turned on    4
## 6227                       twenty three    4
## 6228                           two days    4
## 6229                         two flight    4
## 6230                         two missed    4
## 6231                             two of    4
## 6232                            u.s air    4
## 6233                           u.s navy    4
## 6234                         under poor    4
## 6235                   undershot runway    4
## 6236                      united states    4
## 6237              unstabilized approach    4
## 6238                   unusual attitude    4
## 6239                        up position    4
## 6240                         up stalled    4
## 6241                      upper surface    4
## 6242                            us navy    4
## 6243                            used in    4
## 6244                             v1 the    4
## 6245                            veer to    4
## 6246                       vehicles and    4
## 6247                         verify the    4
## 6248                  vertical attitude    4
## 6249                           vfr into    4
## 6250                           vfr when    4
## 6251                       violation of    4
## 6252                  visibility during    4
## 6253                        visual cues    4
## 6254                     voice recorder    4
## 6255                          wanted to    4
## 6256                      warning light    4
## 6257                         warning of    4
## 6258                        warning was    4
## 6259                        was allowed    4
## 6260                       was attacked    4
## 6261                      was conducted    4
## 6262                       was cruising    4
## 6263                           was good    4
## 6264                             was it    4
## 6265                      was nicknamed    4
## 6266                       was obscured    4
## 6267                            was out    4
## 6268                          was pilot    4
## 6269                      was preparing    4
## 6270                        was rescued    4
## 6271                        was stormed    4
## 6272                         was thrown    4
## 6273                        was turning    4
## 6274                        was unaware    4
## 6275                        water after    4
## 6276                          water was    4
## 6277                           way that    4
## 6278                       weakened the    4
## 6279                 weather controlled    4
## 6280                     weather during    4
## 6281                         weather in    4
## 6282                      weather pilot    4
## 6283                           well and    4
## 6284                             were a    4
## 6285                         were below    4
## 6286                       were cleared    4
## 6287                      were hijacked    4
## 6288                    were inadequate    4
## 6289                           were low    4
## 6290                          were made    4
## 6291                       were members    4
## 6292                      were modified    4
## 6293                    were officially    4
## 6294                    were reoriented    4
## 6295                     were returning    4
## 6296                       were running    4
## 6297                        were unable    4
## 6298                            when at    4
## 6299                    when attempting    4
## 6300                           when his    4
## 6301                            when in    4
## 6302                      which crashed    4
## 6303                       which forced    4
## 6304                      which ignited    4
## 6305                       which likely    4
## 6306                    which precluded    4
## 6307                   while practicing    4
## 6308                 while transporting    4
## 6309                      while turning    4
## 6310                           wind the    4
## 6311                       wing clipped    4
## 6312                          wing down    4
## 6313                          wing fuel    4
## 6314                        with engine    4
## 6315                         with flaps    4
## 6316                           with fog    4
## 6317                        with ground    4
## 6318                       with surface    4
## 6319                          with this    4
## 6320                  without clearance    4
## 6321                 without sufficient    4
## 6322                          world war    4
## 6323                       wreckage and    4
## 6324                        yards short    4
## 6325                            yaw and    4
## 6326                           years of    4
## 6327                          0.5 miles    3
## 6328                         1,100 feet    3
## 6329                       1,200 meters    3
## 6330                           1,300 ft    3
## 6331                         1,600 feet    3
## 6332                         1.25 miles    3
## 6333                         10 seconds    3
## 6334                          10,500 ft    3
## 6335                          100 yards    3
## 6336                         11 minutes    3
## 6337                            11 year    3
## 6338                         12 minutes    3
## 6339                          12,000 ft    3
## 6340                          125 miles    3
## 6341                              13 km    3
## 6342                           13 miles    3
## 6343                         13 minutes    3
## 6344                           14 miles    3
## 6345                         15 degrees    3
## 6346                          15,000 ft    3
## 6347                          18,000 ft    3
## 6348                        2 generator    3
## 6349                               2 nm    3
## 6350                       2,000 meters    3
## 6351                         2,200 feet    3
## 6352                           2,300 ft    3
## 6353                         2,500 feet    3
## 6354                           2,800 ft    3
## 6355                           23 miles    3
## 6356                            25 feet    3
## 6357                              28 km    3
## 6358                             29 the    3
## 6359                           3 aboard    3
## 6360                             3 crew    3
## 6361                               3 nm    3
## 6362                          30 killed    3
## 6363                          300 miles    3
## 6364                           31 miles    3
## 6365                        33,000 feet    3
## 6366                         360 degree    3
## 6367                          4 minutes    3
## 6368                             4 prop    3
## 6369                              4 the    3
## 6370                          45 killed    3
## 6371                             47 the    3
## 6372                         5 cylinder    3
## 6373                            50 feet    3
## 6374                          500 yards    3
## 6375                               6 on    3
## 6376                           6 piston    3
## 6377                           650 feet    3
## 6378                              7 and    3
## 6379                               7 km    3
## 6380                             7 were    3
## 6381                           7,800 ft    3
## 6382                              70 km    3
## 6383                           70 miles    3
## 6384                            727 was    3
## 6385                            75 feet    3
## 6386                         8,000 feet    3
## 6387                             9 crew    3
## 6388                           9,000 ft    3
## 6389                          90 degree    3
## 6390                           a 15,000    3
## 6391                               a 30    3
## 6392                              a 360    3
## 6393                                a 9    3
## 6394                                a a    3
## 6395                                ã â    3
## 6396                         a altitude    3
## 6397                         a blinding    3
## 6398                           a boeing    3
## 6399                          a british    3
## 6400                            a cabin    3
## 6401                          a captain    3
## 6402                              a car    3
## 6403                           a change    3
## 6404                          a coconut    3
## 6405                     a contributory    3
## 6406                          a counter    3
## 6407                     a cumulonimbus    3
## 6408                              a day    3
## 6409                        a different    3
## 6410                             a dirt    3
## 6411                           a double    3
## 6412                         a drainage    3
## 6413                             a drop    3
## 6414                             a dust    3
## 6415                        a farmhouse    3
## 6416                        a fractured    3
## 6417                            a gorge    3
## 6418                       a government    3
## 6419                             a hole    3
## 6420                         a hospital    3
## 6421                          a hundred    3
## 6422                           a lagoon    3
## 6423                            a level    3
## 6424                            a light    3
## 6425                             a line    3
## 6426                        a localizer    3
## 6427                             a main    3
## 6428                      a maintenance    3
## 6429                    a manufacturing    3
## 6430                            a match    3
## 6431                          a message    3
## 6432                       a mistrimmed    3
## 6433                          a mixture    3
## 6434                       a navigation    3
## 6435                             a navy    3
## 6436                     a neighborhood    3
## 6437                     a nonprecision    3
## 6438                           a parked    3
## 6439                      a passenger's    3
## 6440                        a perimeter    3
## 6441                            a piper    3
## 6442                            a plane    3
## 6443                          a planned    3
## 6444                           a poorly    3
## 6445                         a positive    3
## 6446                        a preceding    3
## 6447                        a precision    3
## 6448                             a pull    3
## 6449                            a radar    3
## 6450                          a railway    3
## 6451                           a report    3
## 6452                         a reported    3
## 6453                           a revine    3
## 6454                            a rocky    3
## 6455                             a roll    3
## 6456                            a rotor    3
## 6457                            a route    3
## 6458                              a sam    3
## 6459                             a ship    3
## 6460                         a shoulder    3
## 6461                             a slow    3
## 6462                           a soccer    3
## 6463                            a steel    3
## 6464                       a stewardess    3
## 6465                       a subsequent    3
## 6466                         a suitable    3
## 6467                                â t    3
## 6468                         a tailwind    3
## 6469                              â the    3
## 6470                            a three    3
## 6471                            a tidal    3
## 6472                              a too    3
## 6473                            a trans    3
## 6474                           a weight    3
## 6475                            a wheat    3
## 6476                            a young    3
## 6477                     abandonment of    3
## 6478                         aboard and    3
## 6479                          aboard by    3
## 6480                       aborting the    3
## 6481                        about 1,000    3
## 6482                        about 1,500    3
## 6483                          about 500    3
## 6484                            about 6    3
## 6485                           about 70    3
## 6486                          above sea    3
## 6487                       accident but    3
## 6488                        accident by    3
## 6489                   accident failure    3
## 6490                     accident there    3
## 6491                         accused of    3
## 6492                      active runway    3
## 6493                     addition there    3
## 6494                 adequate clearance    3
## 6495                   adequate terrain    3
## 6496                      adhesive tape    3
## 6497                        advised the    3
## 6498         aeronautics administration    3
## 6499                       affected the    3
## 6500                          aft cargo    3
## 6501                            after 3    3
## 6502                    after attemping    3
## 6503                         after both    3
## 6504                      after crashed    3
## 6505                   after developing    3
## 6506                     after drifting    3
## 6507                    after executing    3
## 6508                          after his    3
## 6509                      after holding    3
## 6510                          after its    3
## 6511                      after loosing    3
## 6512                      after missing    3
## 6513                          after one    3
## 6514                     after possibly    3
## 6515                    after returning    3
## 6516                      after sending    3
## 6517                        after three    3
## 6518                    after touchdown    3
## 6519                     afterwards the    3
## 6520                          again the    3
## 6521                            agl the    3
## 6522                           ahead of    3
## 6523                           aids and    3
## 6524                            aids in    3
## 6525                   air conditioning    3
## 6526                         air france    3
## 6527                         air intake    3
## 6528                          air loads    3
## 6529                          air strip    3
## 6530                          air while    3
## 6531                     airborne again    3
## 6532                   airborne overran    3
## 6533               aircraft's encounter    3
## 6534                      aircraft's no    3
## 6535                        aircraft 15    3
## 6536                     aircraft burst    3
## 6537                      aircraft came    3
## 6538                    aircraft caught    3
## 6539                   aircraft causing    3
## 6540             aircraft certification    3
## 6541                   aircraft circled    3
## 6542                   aircraft clipped    3
## 6543                  aircraft deviated    3
## 6544                      aircraft fell    3
## 6545                      aircraft left    3
## 6546                      aircraft loss    3
## 6547                       aircraft may    3
## 6548                   aircraft missile    3
## 6549                       aircraft nor    3
## 6550                       aircraft not    3
## 6551                       aircraft one    3
## 6552                aircraft penetrated    3
## 6553                 aircraft resulting    3
## 6554                   aircraft skidded    3
## 6555                      aircraft soon    3
## 6556                   aircraft strayed    3
## 6557              aircraft subsequently    3
## 6558                     aircraft tried    3
## 6559                    aircraft turned    3
## 6560                       aircraft two    3
## 6561            aircraft uncontrollable    3
## 6562                   aircraft without    3
## 6563                     airfield after    3
## 6564                        airfield in    3
## 6565                        airliner in    3
## 6566                    airlines flight    3
## 6567                   airplane's stall    3
## 6568                   airplane's wings    3
## 6569                       airplane and    3
## 6570                   airplane control    3
## 6571               airplane encountered    3
## 6572                   airplane entered    3
## 6573                       airplanes to    3
## 6574                      airport about    3
## 6575                    airport barrier    3
## 6576                    airport because    3
## 6577                      airport bound    3
## 6578                      airport cause    3
## 6579                     airport engine    3
## 6580                     airport failed    3
## 6581                  airport following    3
## 6582                    airport however    3
## 6583                      airport radar    3
## 6584                         airport to    3
## 6585                      airport which    3
## 6586                       airport with    3
## 6587                       airports and    3
## 6588                        airspeed in    3
## 6589                 airspeed resulting    3
## 6590                       airstrip the    3
## 6591                         airway and    3
## 6592                          airway no    3
## 6593                      alarm sounded    3
## 6594                    alaska airlines    3
## 6595                           all five    3
## 6596                        all members    3
## 6597                     all passengers    3
## 6598                     allowed vented    3
## 6599              almost simultaneously    3
## 6600                    almost vertical    3
## 6601                            along a    3
## 6602                    also overloaded    3
## 6603                      altimeter and    3
## 6604                  altimeter reading    3
## 6605                      altimeter the    3
## 6606                         altitude a    3
## 6607                 altitude awareness    3
## 6608                 altitude clearance    3
## 6609              altitude contributing    3
## 6610                 altitude following    3
## 6611                       altitude was    3
## 6612                      altitude with    3
## 6613                       an abandoned    3
## 6614                        an abnormal    3
## 6615                             an act    3
## 6616                             an aft    3
## 6617                        an airplane    3
## 6618                       an altimeter    3
## 6619                           an apple    3
## 6620                           an empty    3
## 6621                       an encounter    3
## 6622                        an extended    3
## 6623                       an extremely    3
## 6624                             an ifr    3
## 6625                       an imbalance    3
## 6626                        an increase    3
## 6627                        an internal    3
## 6628                          an island    3
## 6629                          an object    3
## 6630                        an obstacle    3
## 6631                     an obstruction    3
## 6632                    an overspeeding    3
## 6633                    an unauthorized    3
## 6634                             and 11    3
## 6635                             and 13    3
## 6636                              and 8    3
## 6637                        and adverse    3
## 6638                        and allowed    3
## 6639                       and approach    3
## 6640                          and asked    3
## 6641                        and because    3
## 6642                           and blew    3
## 6643                       and breaking    3
## 6644                         and center    3
## 6645                        and contact    3
## 6646                       and darkness    3
## 6647                          and dense    3
## 6648                 and disorientation    3
## 6649                     and downdrafts    3
## 6650                            and due    3
## 6651                      and excessive    3
## 6652                            and faa    3
## 6653                        and failing    3
## 6654                        and fatigue    3
## 6655                         and faulty    3
## 6656                        and finally    3
## 6657                          and first    3
## 6658                           and gave    3
## 6659                           and haze    3
## 6660                         and headed    3
## 6661                         and houses    3
## 6662                         and impact    3
## 6663                     and improperly    3
## 6664                      and incorrect    3
## 6665                      and interpret    3
## 6666                      and lightning    3
## 6667                        and limited    3
## 6668                         and locked    3
## 6669                        and managed    3
## 6670                        and maximum    3
## 6671                        and members    3
## 6672                       and military    3
## 6673                         and missed    3
## 6674                           and nose    3
## 6675                            and oil    3
## 6676                       and overcast    3
## 6677                      and passenger    3
## 6678                          and piper    3
## 6679                        and pitched    3
## 6680                       and planning    3
## 6681                         and poorly    3
## 6682                          and power    3
## 6683                      and propeller    3
## 6684                       and properly    3
## 6685                          and radio    3
## 6686                        and radioed    3
## 6687                           and roll    3
## 6688                           and said    3
## 6689                        and shortly    3
## 6690                         and should    3
## 6691                            and six    3
## 6692                          and skill    3
## 6693                          and slats    3
## 6694                          and smoke    3
## 6695                           and some    3
## 6696                       and starting    3
## 6697                     and structural    3
## 6698                           and tail    3
## 6699                        and takeoff    3
## 6700                          and three    3
## 6701                         and thrust    3
## 6702                   and thunderstorm    3
## 6703                           and took    3
## 6704                 and uncontrollable    3
## 6705                        and violent    3
## 6706                          and water    3
## 6707                        and western    3
## 6708                           and when    3
## 6709                          and winds    3
## 6710                          angle and    3
## 6711                        angle until    3
## 6712                           anti ice    3
## 6713                           apart in    3
## 6714                       appeared the    3
## 6715                        applied for    3
## 6716                       applied full    3
## 6717                      applied power    3
## 6718                         approach a    3
## 6719                        approach an    3
## 6720                       approach atc    3
## 6721             approach configuration    3
## 6722                   approach control    3
## 6723                  approach criteria    3
## 6724                        approach it    3
## 6725                  approach lighting    3
## 6726                       approach not    3
## 6727                   approach pattern    3
## 6728                 approach premature    3
## 6729                 approach resulting    3
## 6730                    approach struck    3
## 6731                      approach that    3
## 6732                     approach under    3
## 6733                     approached the    3
## 6734                     approaches and    3
## 6735                    approaching for    3
## 6736                 approaching runway    3
## 6737                        approval of    3
## 6738                    approximately 3    3
## 6739                             area a    3
## 6740                        area beyond    3
## 6741                    area destroying    3
## 6742                            area it    3
## 6743                            area on    3
## 6744                       area shortly    3
## 6745                      around during    3
## 6746                        around from    3
## 6747                          around on    3
## 6748                   around procedure    3
## 6749                        around when    3
## 6750                        around with    3
## 6751                              as an    3
## 6752                             as far    3
## 6753                             as one    3
## 6754                            as part    3
## 6755                        as required    3
## 6756                            as soon    3
## 6757                       assembly the    3
## 6758                               at 1    3
## 6759                             at 150    3
## 6760                          at 18,000    3
## 6761                           at 3,300    3
## 6762                             at 500    3
## 6763                           at 9,500    3
## 6764                            at full    3
## 6765                             at its    3
## 6766                             at jfk    3
## 6767                          at newark    3
## 6768                             at san    3
## 6769                             atc to    3
## 6770                          athens to    3
## 6771             atmospheric conditions    3
## 6772                       attaining an    3
## 6773                          attempt a    3
## 6774                      attempt after    3
## 6775                        attempt and    3
## 6776                    attempt crashed    3
## 6777                        attempt due    3
## 6778                       attempted in    3
## 6779                  attempted landing    3
## 6780                       attempted on    3
## 6781                        attempts in    3
## 6782                   attitude stalled    3
## 6783                      attitude that    3
## 6784                   authorization to    3
## 6785                    availability of    3
## 6786                      available for    3
## 6787             available navigational    3
## 6788          aviation administration's    3
## 6789                        avoid other    3
## 6790                   avoidance system    3
## 6791                      awareness and    3
## 6792                               b 52    3
## 6793                            back at    3
## 6794                           back but    3
## 6795                           back for    3
## 6796                            back in    3
## 6797                            back up    3
## 6798                           bail out    3
## 6799                    balance program    3
## 6800                          band were    3
## 6801                           bang was    3
## 6802                            bank to    3
## 6803                         banked the    3
## 6804                           banks of    3
## 6805                     battery switch    3
## 6806                            bay and    3
## 6807                            bay the    3
## 6808                       be feathered    3
## 6809                              be in    3
## 6810                            be shut    3
## 6811                         bearing in    3
## 6812                     became trapped    3
## 6813              became uncontrollable    3
## 6814                      because there    3
## 6815                    become airborne    3
## 6816                       been cleared    3
## 6817                           before a    3
## 6818                     before hitting    3
## 6819                      before taking    3
## 6820                          began its    3
## 6821                       beginning of    3
## 6822                         being able    3
## 6823                           being in    3
## 6824                   being overloaded    3
## 6825                     below decision    3
## 6826                        below glide    3
## 6827                         below safe    3
## 6828                         below that    3
## 6829                          blamed on    3
## 6830                       blind canyon    3
## 6831                      blood alcohol    3
## 6832                            body of    3
## 6833                         boeing 707    3
## 6834                         boeing 737    3
## 6835                         boeing 747    3
## 6836                           bolts to    3
## 6837                        bomb aboard    3
## 6838                         bomber was    3
## 6839                    both artificial    3
## 6840                         both crews    3
## 6841                            both of    3
## 6842                    both propellers    3
## 6843                     boundary fence    3
## 6844                         box canyon    3
## 6845                     braking system    3
## 6846                      brazilian air    3
## 6847                   breaking through    3
## 6848                        breaking up    3
## 6849                         breakup of    3
## 6850                         broke free    3
## 6851                        broke loose    3
## 6852                     building after    3
## 6853                        building at    3
## 6854                       burned about    3
## 6855                     burned failure    3
## 6856                       burned pilot    3
## 6857                       burned short    3
## 6858                     burned shortly    3
## 6859                       business jet    3
## 6860                        but because    3
## 6861                      but continued    3
## 6862                         but failed    3
## 6863                         but struck    3
## 6864                      but succumbed    3
## 6865                               by 3    3
## 6866                        by allowing    3
## 6867                       by communist    3
## 6868                         by fatigue    3
## 6869                          by ground    3
## 6870                          by impact    3
## 6871                            by loss    3
## 6872                     by maintenance    3
## 6873                          by making    3
## 6874                           by means    3
## 6875                         by mistake    3
## 6876                             by one    3
## 6877                           by smoke    3
## 6878                          by soviet    3
## 6879                           by tamil    3
## 6880                         cabin crew    3
## 6881                         cabin door    3
## 6882                        cabin floor    3
## 6883                          cabin was    3
## 6884                        cabin which    3
## 6885                        cabin while    3
## 6886                         cables the    3
## 6887                           calm and    3
## 6888                           came out    3
## 6889                             can be    3
## 6890                       canadian air    3
## 6891                  captain's attempt    3
## 6892                  captain descended    3
## 6893                     captain failed    3
## 6894                        captain may    3
## 6895                     captain stated    3
## 6896                    captain trainee    3
## 6897                      captain tried    3
## 6898                       captain with    3
## 6899                            car and    3
## 6900                     cargo aircraft    3
## 6901                          cargo jet    3
## 6902                           cargo of    3
## 6903                        cargo which    3
## 6904                     carried aboard    3
## 6905                       carried back    3
## 6906                  carrying military    3
## 6907                    carrying troops    3
## 6908                       cart wheeled    3
## 6909                   carthage airport    3
## 6910                   cartwheeled into    3
## 6911                            case of    3
## 6912                       cashed while    3
## 6913                           cause an    3
## 6914                        cause could    3
## 6915                      cause crashed    3
## 6916                          cause may    3
## 6917                          cause not    3
## 6918                        causes were    3
## 6919                       ceilings and    3
## 6920                        center wing    3
## 6921                           cerro el    3
## 6922            certification standards    3
## 6923                       certified to    3
## 6924                         cessna the    3
## 6925                       cessna which    3
## 6926                      change course    3
## 6927                        changed the    3
## 6928                      changed their    3
## 6929                        channel the    3
## 6930                         charles de    3
## 6931                           check of    3
## 6932                         chicago to    3
## 6933                           chief of    3
## 6934                        chief pilot    3
## 6935                        chimney and    3
## 6936                        circling in    3
## 6937                        circling to    3
## 6938                  civil aeronautics    3
## 6939                            clear a    3
## 6940                          clear and    3
## 6941                         clear high    3
## 6942                 clearance altitude    3
## 6943                     clearance over    3
## 6944                        cleared and    3
## 6945                  cleveland airport    3
## 6946                          cliff and    3
## 6947                           cliff in    3
## 6948                         cliff near    3
## 6949                         climb from    3
## 6950                         climb rate    3
## 6951                      climbing turn    3
## 6952                       climbout the    3
## 6953                       clipped tree    3
## 6954                          close the    3
## 6955                         closed the    3
## 6956                         closure at    3
## 6957                         cloud base    3
## 6958                          clouds in    3
## 6959                       clouds while    3
## 6960                        coast after    3
## 6961                           coast it    3
## 6962                       cockpit crew    3
## 6963                 coconut plantation    3
## 6964                       collapsed it    3
## 6965                     collapsing the    3
## 6966                        collided at    3
## 6967                      collided over    3
## 6968                       collided the    3
## 6969                collision avoidance    3
## 6970                       collision in    3
## 6971                        coming from    3
## 6972                         coming out    3
## 6973                  command's failure    3
## 6974                     command failed    3
## 6975                        command the    3
## 6976                        command was    3
## 6977                     commercial jet    3
## 6978                     commuter plane    3
## 6979                         company to    3
## 6980                 compartment caused    3
## 6981                    compartment the    3
## 6982                complete electrical    3
## 6983                      complied with    3
## 6984                    concentrated on    3
## 6985             conditions encountered    3
## 6986               conditions including    3
## 6987                  conditions midair    3
## 6988                    conditions over    3
## 6989               conditions prevailed    3
## 6990                 conditions shortly    3
## 6991                 conditions without    3
## 6992                        conduct the    3
## 6993                       conducting a    3
## 6994                       confessed to    3
## 6995                    confronted with    3
## 6996                  congonhas airport    3
## 6997                      considered as    3
## 6998                      considered to    3
## 6999                    consistent with    3
## 7000                        contacted a    3
## 7001                   contamination of    3
## 7002                 contamination that    3
## 7003                    continue flight    3
## 7004                        continue to    3
## 7005                       continued at    3
## 7006                    continued their    3
## 7007                  continuing flight    3
## 7008                     control before    3
## 7009               control contributing    3
## 7010                  control following    3
## 7011                      control input    3
## 7012                       control lost    3
## 7013                       control over    3
## 7014                   control resulted    3
## 7015                  control resulting    3
## 7016                     control struck    3
## 7017                       control when    3
## 7018              controller's issuance    3
## 7019                     controls after    3
## 7020                   controls crashed    3
## 7021                        controls in    3
## 7022               coordination between    3
## 7023                        copilot the    3
## 7024                          correct a    3
## 7025                   correct approach    3
## 7026                  correct procedure    3
## 7027                     correct runway    3
## 7028                      corrected the    3
## 7029                  corrective action    3
## 7030                       corrosion in    3
## 7031                       coupled with    3
## 7032                       course cause    3
## 7033                     course crashed    3
## 7034                          course of    3
## 7035                     covered runway    3
## 7036                          crack the    3
## 7037                           crash at    3
## 7038                         crash fire    3
## 7039                           crash to    3
## 7040                         crash were    3
## 7041                         crashed 12    3
## 7042                        crashed 2.5    3
## 7043                         crashed 60    3
## 7044                          crashed 9    3
## 7045                      crashed along    3
## 7046                       crashed back    3
## 7047                      crashed cause    3
## 7048                 crashed improperly    3
## 7049                 crashed inadequate    3
## 7050                     crashed landed    3
## 7051                        crashed mid    3
## 7052                     crashed struck    3
## 7053                       crashed with    3
## 7054                    crew's improper    3
## 7055                       crew advised    3
## 7056                       crew allowed    3
## 7057                            crew by    3
## 7058                        crew caused    3
## 7059                         crew chose    3
## 7060                     crew contacted    3
## 7061                      crew diverted    3
## 7062                           crew for    3
## 7063                    crew inadequate    3
## 7064                    crew mistakenly    3
## 7065                       crew mistook    3
## 7066                          crew poor    3
## 7067                          crew took    3
## 7068                         crew while    3
## 7069                          cross the    3
## 7070                 cumulonimbus cloud    3
## 7071                            cut off    3
## 7072                            cut the    3
## 7073                      cylinder head    3
## 7074                        cylinder of    3
## 7075                            da nang    3
## 7076                       damage which    3
## 7077                        damaged and    3
## 7078                      data recorder    3
## 7079                          day later    3
## 7080                              dc 10    3
## 7081                               dc 6    3
## 7082                          de gaulle    3
## 7083                             de oro    3
## 7084                      decisions and    3
## 7085                           deck the    3
## 7086                    decompression a    3
## 7087                decompression which    3
## 7088                   defense minister    3
## 7089                       degree angle    3
## 7090                        degree nose    3
## 7091               deliberately crashed    3
## 7092                    delivering mail    3
## 7093                    delivery flight    3
## 7094                       dense forest    3
## 7095                      departing the    3
## 7096                    departure point    3
## 7097                departure procedure    3
## 7098               departure procedures    3
## 7099                       descend from    3
## 7100                     descended over    3
## 7101                    descending into    3
## 7102                     descending the    3
## 7103                  descent continued    3
## 7104                        descent due    3
## 7105                     descent during    3
## 7106                         descent on    3
## 7107                      descent until    3
## 7108                      design limits    3
## 7109                  destination after    3
## 7110                        destroyed a    3
## 7111                    destroyed while    3
## 7112                      detachment of    3
## 7113                         detect and    3
## 7114                      determine his    3
## 7115                    determine their    3
## 7116                    determined with    3
## 7117                       detonated in    3
## 7118                     deviating from    3
## 7119                      device aboard    3
## 7120                      device placed    3
## 7121                         died later    3
## 7122                           died two    3
## 7123                        direct mode    3
## 7124                       direct route    3
## 7125                      directing the    3
## 7126                       disabled the    3
## 7127                    disappeared off    3
## 7128                      discovered on    3
## 7129                     discovered the    3
## 7130                     disengaged the    3
## 7131                  disintegrated and    3
## 7132                  disorientation in    3
## 7133                 disorientation the    3
## 7134                      dispatched to    3
## 7135                      disregard for    3
## 7136                   distance between    3
## 7137                      distracted by    3
## 7138                       district the    3
## 7139                      ditch crashed    3
## 7140                        ditching at    3
## 7141                       diverted the    3
## 7142                       dme approach    3
## 7143                              do to    3
## 7144                           door the    3
## 7145                     dorval airport    3
## 7146                         down again    3
## 7147                       down because    3
## 7148                      down elevator    3
## 7149                       down shortly    3
## 7150                         down while    3
## 7151                     drainage ditch    3
## 7152                  drilling platform    3
## 7153                        dropped the    3
## 7154                         dropped to    3
## 7155                         drowned in    3
## 7156                        drowned the    3
## 7157               dulles international    3
## 7158                            dum dum    3
## 7159                    during climbout    3
## 7160                      during cruise    3
## 7161                     during initial    3
## 7162                        during taxi    3
## 7163                       during touch    3
## 7164                      during visual    3
## 7165                         dust storm    3
## 7166                               e of    3
## 7167                      each aircraft    3
## 7168                         each plane    3
## 7169                            eal 853    3
## 7170                         east river    3
## 7171                     east southeast    3
## 7172                         edge slats    3
## 7173                           effect a    3
## 7174                          effect an    3
## 7175                      eight members    3
## 7176                        eight miles    3
## 7177                      eight minutes    3
## 7178                   eight passengers    3
## 7179                         either due    3
## 7180                electrical problems    3
## 7181                   electrical short    3
## 7182                       elevator and    3
## 7183                       elevator the    3
## 7184                       elk mountain    3
## 7185                     emanating from    3
## 7186                     embankment the    3
## 7187                    emergency after    3
## 7188                      emergency but    3
## 7189                  emergency message    3
## 7190                         empress of    3
## 7191                encountering engine    3
## 7192                           ended in    3
## 7193                             ene of    3
## 7194                         engaged in    3
## 7195                        engaged the    3
## 7196                    engine approach    3
## 7197                       engine began    3
## 7198                       engine broke    3
## 7199                         engine did    3
## 7200               engine disintegrated    3
## 7201                   engine feathered    3
## 7202                       engine flame    3
## 7203                         engine for    3
## 7204                 engine inoperative    3
## 7205                        engine loss    3
## 7206              engine malfunctioning    3
## 7207                    engine pressure    3
## 7208                     engine stopped    3
## 7209                        engine that    3
## 7210                     engine turbine    3
## 7211                        engine were    3
## 7212                        engine when    3
## 7213                        engine with    3
## 7214                 engineer's failure    3
## 7215                    engines causing    3
## 7216                    engines crashed    3
## 7217                        engines for    3
## 7218                         engines in    3
## 7219                         engines of    3
## 7220                      engines which    3
## 7221                         ensure the    3
## 7222                         entry into    3
## 7223                      equipment and    3
## 7224                       equipment at    3
## 7225              erroneous information    3
## 7226                          error atc    3
## 7227                       error caused    3
## 7228                     error improper    3
## 7229                         error that    3
## 7230                          errors in    3
## 7231                          errors on    3
## 7232                             ese of    3
## 7233                      establish and    3
## 7234                 eventually crashed    3
## 7235                  evidence suggests    3
## 7236                       evidence was    3
## 7237                     excessive rate    3
## 7238                       exercise the    3
## 7239                     exercised poor    3
## 7240                         existed at    3
## 7241                  experience flying    3
## 7242                     experienced by    3
## 7243                         exploded a    3
## 7244                    exploded aboard    3
## 7245                        exploded on    3
## 7246                   explosion caused    3
## 7247                       explosion of    3
## 7248                      explosion the    3
## 7249                         extend the    3
## 7250                extended centerline    3
## 7251                        extent that    3
## 7252                    external visual    3
## 7253                               f 14    3
## 7254                               f 16    3
## 7255                          f kennedy    3
## 7256                     faa procedures    3
## 7257                      facilities at    3
## 7258                     facilities the    3
## 7259                factor contributing    3
## 7260                     factor crashed    3
## 7261               factors contributing    3
## 7262                     failed causing    3
## 7263                     failed crashed    3
## 7264                          failure a    3
## 7265                      failure cause    3
## 7266                        failure for    3
## 7267                   failure resulted    3
## 7268                    failure shortly    3
## 7269                     failure struck    3
## 7270                      failure which    3
## 7271                      familiar with    3
## 7272                         famous for    3
## 7273                           fan disk    3
## 7274                           far from    3
## 7275                    fatalities were    3
## 7276                    fatally injured    3
## 7277                        fatigue was    3
## 7278                      faulty design    3
## 7279                      feathered and    3
## 7280                      feathering of    3
## 7281                federal regulations    3
## 7282                             feet a    3
## 7283                         feet about    3
## 7284                        feet before    3
## 7285                          feet both    3
## 7286                          feet into    3
## 7287                            feet on    3
## 7288                          feet over    3
## 7289                       feet shortly    3
## 7290                         feet where    3
## 7291                           fell off    3
## 7292                           few feet    3
## 7293                        few hundred    3
## 7294                           field 10    3
## 7295                        field broke    3
## 7296                       field during    3
## 7297                           field on    3
## 7298                          field one    3
## 7299                         field when    3
## 7300                    fifteen minutes    3
## 7301                        fighter and    3
## 7302                         fighter at    3
## 7303                        fighter jet    3
## 7304                        fighter was    3
## 7305                   fighters crashed    3
## 7306                        final phase    3
## 7307                         final turn    3
## 7308                           find the    3
## 7309                           fine air    3
## 7310                     fire continued    3
## 7311                       fire failure    3
## 7312                         fire pilot    3
## 7313                         fire under    3
## 7314                           fired by    3
## 7315                     first approach    3
## 7316                      first attempt    3
## 7317                         first into    3
## 7318                      first takeoff    3
## 7319                        five aboard    3
## 7320                             fl 350    3
## 7321                         flames all    3
## 7322                          flames as    3
## 7323                          flames on    3
## 7324                       flames pilot    3
## 7325                     flap extension    3
## 7326                       flat terrain    3
## 7327                        flaw caused    3
## 7328                          flight as    3
## 7329                      flight before    3
## 7330                       flight break    3
## 7331                         flight but    3
## 7332                       flight could    3
## 7333                       flight crewã    3
## 7334                        flight data    3
## 7335                    flight director    3
## 7336                  flight instrument    3
## 7337                        flight loss    3
## 7338                  flight management    3
## 7339                      flight manual    3
## 7340                  flight parameters    3
## 7341              flightcrew's decision    3
## 7342                     flightcrew not    3
## 7343                       flipped over    3
## 7344                             fly at    3
## 7345                             fly by    3
## 7346                           fly over    3
## 7347                         flying and    3
## 7348                    flying attitude    3
## 7349                         flying ifr    3
## 7350                          flying on    3
## 7351                  flying procedures    3
## 7352                        flying time    3
## 7353                          flying to    3
## 7354                        flying with    3
## 7355                          fog bound    3
## 7356                         fog during    3
## 7357                             fog he    3
## 7358                       fog improper    3
## 7359                           fog when    3
## 7360                       followed the    3
## 7361                     following loss    3
## 7362                      foot mountain    3
## 7363                      football team    3
## 7364                            for his    3
## 7365                      for insurance    3
## 7366                          for other    3
## 7367                           for over    3
## 7368                        for several    3
## 7369                           for some    3
## 7370                           for such    3
## 7371                           for that    3
## 7372                          for their    3
## 7373                        force plane    3
## 7374                        force winds    3
## 7375                        forced down    3
## 7376                       forces while    3
## 7377                      forest during    3
## 7378                         fort worth    3
## 7379                        forty seven    3
## 7380                        forward and    3
## 7381                            found 2    3
## 7382                           found at    3
## 7383                       four members    3
## 7384                         four miles    3
## 7385                       fracture and    3
## 7386            francisco international    3
## 7387                       francisco to    3
## 7388                           free and    3
## 7389                            free of    3
## 7390                           free the    3
## 7391                      freezing rain    3
## 7392                         from about    3
## 7393                   from albuquerque    3
## 7394                     from anchorage    3
## 7395                        from bogota    3
## 7396                          from both    3
## 7397                       from chicago    3
## 7398                        from denver    3
## 7399                          from fuel    3
## 7400                          from hong    3
## 7401                            from it    3
## 7402                        from manila    3
## 7403                           from one    3
## 7404                          from port    3
## 7405                        from saigon    3
## 7406                          from salt    3
## 7407                       from terrain    3
## 7408                          from this    3
## 7409                         from tokyo    3
## 7410                              ft 20    3
## 7411                               ft a    3
## 7412                           ft above    3
## 7413                              ft at    3
## 7414                          ft beyond    3
## 7415                         ft crashed    3
## 7416                            ft from    3
## 7417                            ft hill    3
## 7418                              ft mt    3
## 7419                              ft of    3
## 7420                              ft on    3
## 7421                            ft over    3
## 7422                           ft pilot    3
## 7423                         ft shortly    3
## 7424                           fuel for    3
## 7425                      fuel quantity    3
## 7426                      full throttle    3
## 7427                       fully loaded    3
## 7428                     fuselage after    3
## 7429                   fuselage failure    3
## 7430                    fuselage struck    3
## 7431                   gaining altitude    3
## 7432                         gale force    3
## 7433                     gaulle airport    3
## 7434                           gave the    3
## 7435                         gear after    3
## 7436                        gear failed    3
## 7437                       gear problem    3
## 7438                        gear struck    3
## 7439                          gear tire    3
## 7440                        gear wheels    3
## 7441                    german military    3
## 7442                            get the    3
## 7443                       getting lost    3
## 7444                           give the    3
## 7445                          given the    3
## 7446                           given to    3
## 7447                            good at    3
## 7448                           got lost    3
## 7449                    gradual descent    3
## 7450                     gravity limits    3
## 7451                        gravity the    3
## 7452                      gravity which    3
## 7453                        great falls    3
## 7454                        grenades in    3
## 7455                        ground both    3
## 7456                   ground collision    3
## 7457                       ground icing    3
## 7458                       ground pilot    3
## 7459                       ground radar    3
## 7460                   ground reference    3
## 7461                          ground to    3
## 7462                  ground visibility    3
## 7463                         ground was    3
## 7464                        ground when    3
## 7465                         gulf while    3
## 7466                           had also    3
## 7467                         had caused    3
## 7468                           had come    3
## 7469                        had crashed    3
## 7470                           hail the    3
## 7471                         half after    3
## 7472                         handle the    3
## 7473                            hard on    3
## 7474                            hard to    3
## 7475                       have crashed    3
## 7476                     have increased    3
## 7477                           have led    3
## 7478                          have lost    3
## 7479                            have to    3
## 7480                      having engine    3
## 7481                    having problems    3
## 7482                  hazardous terrain    3
## 7483                           haze and    3
## 7484                     he encountered    3
## 7485                            he flew    3
## 7486                   he inadvertently    3
## 7487                        he reported    3
## 7488                          he should    3
## 7489                        headed into    3
## 7490                        heading for    3
## 7491                        heading the    3
## 7492                           heard an    3
## 7493                           heat and    3
## 7494                    heavily damaged    3
## 7495                     heavily loaded    3
## 7496                         heavily on    3
## 7497                heavy thunderstorms    3
## 7498                      heavy traffic    3
## 7499                           heed the    3
## 7500                       height after    3
## 7501                        height when    3
## 7502                     height without    3
## 7503                     helicopter and    3
## 7504                   helicopter crash    3
## 7505                      helicopter in    3
## 7506                     helicopter the    3
## 7507                        her husband    3
## 7508                       high descent    3
## 7509                            high in    3
## 7510                       high tension    3
## 7511                            high to    3
## 7512                       high voltage    3
## 7513                       hijacked and    3
## 7514                   hijacked shortly    3
## 7515                     hijacked while    3
## 7516                    hijacking while    3
## 7517                             hill 3    3
## 7518                          hill side    3
## 7519                        hills while    3
## 7520                    hillside during    3
## 7521                        hillside in    3
## 7522                         hilly area    3
## 7523                         himself in    3
## 7524                       his approach    3
## 7525                          his death    3
## 7526                      his judgement    3
## 7527                            his own    3
## 7528                        history the    3
## 7529                         hitting an    3
## 7530                      hitting trees    3
## 7531                          homes and    3
## 7532                        horizon and    3
## 7533                        horizon the    3
## 7534                    horizontal tail    3
## 7535                       hospital the    3
## 7536                            hot air    3
## 7537                           hour and    3
## 7538                        hour flight    3
## 7539                        hours later    3
## 7540                      house located    3
## 7541                        house short    3
## 7542                     houses shortly    3
## 7543                       houses while    3
## 7544                             how to    3
## 7545                  hydraulic failure    3
## 7546                   hydraulic system    3
## 7547                  hydraulic systems    3
## 7548                      ice accretion    3
## 7549                        ice covered    3
## 7550                             ice or    3
## 7551                       icing caused    3
## 7552                    icing condition    3
## 7553                        icing which    3
## 7554                           idle and    3
## 7555                           idle the    3
## 7556                             if the    3
## 7557                      ifr clearance    3
## 7558                      ifr conditons    3
## 7559                      ifr condtions    3
## 7560                         ifr flight    3
## 7561                             ifr in    3
## 7562                              il 14    3
## 7563                              il 76    3
## 7564                     illusion which    3
## 7565                    immediately and    3
## 7566                       imminent the    3
## 7567                         impact and    3
## 7568                         impact was    3
## 7569                      improper crew    3
## 7570                      improper fuel    3
## 7571                             in air    3
## 7572                        in allowing    3
## 7573                            in area    3
## 7574                           in cargo    3
## 7575                       in command's    3
## 7576                         in descent    3
## 7577                       in disregard    3
## 7578                          in engine    3
## 7579                       in excessive    3
## 7580                       in executing    3
## 7581                         in extreme    3
## 7582                  in meteorological    3
## 7583                        in moderate    3
## 7584                           in night    3
## 7585                           in paris    3
## 7586                            in part    3
## 7587                     in preparation    3
## 7588                           in thick    3
## 7589                         in trouble    3
## 7590                            in view    3
## 7591                            in wind    3
## 7592                  inadequate design    3
## 7593             inadequate supervision    3
## 7594                inadequate training    3
## 7595              inadvertent encounter    3
## 7596                 inadvertent flight    3
## 7597                         inbound to    3
## 7598                        include the    3
## 7599                         included a    3
## 7600               incorrect indication    3
## 7601                      incorrect use    3
## 7602                        increase in    3
## 7603                       increased to    3
## 7604                   increasing power    3
## 7605                     increasing the    3
## 7606                        indicated a    3
## 7607                      indicated the    3
## 7608                      indication of    3
## 7609                     indications of    3
## 7610                      indicator and    3
## 7611                    information and    3
## 7612               information supplied    3
## 7613                     information to    3
## 7614                       initiate and    3
## 7615                        injured one    3
## 7616                    inoperative the    3
## 7617                      inspection of    3
## 7618                  instructions from    3
## 7619                     instructor and    3
## 7620                   instructor pilot    3
## 7621              instrument conditions    3
## 7622               instrument departure    3
## 7623                  instrument flying    3
## 7624                instruments crashed    3
## 7625                     instruments to    3
## 7626                insufficient runway    3
## 7627                 insurance policies    3
## 7628                       intense fire    3
## 7629                    interfered with    3
## 7630                      interpret his    3
## 7631                  interpretation of    3
## 7632                       into another    3
## 7633                      into approach    3
## 7634                         into cloud    3
## 7635                        into clouds    3
## 7636                    into conditions    3
## 7637                            into el    3
## 7638                     into guanabara    3
## 7639                         into heavy    3
## 7640                          into hill    3
## 7641                         into known    3
## 7642                         into santa    3
## 7643                            into st    3
## 7644                        into strong    3
## 7645                 into thunderstorms    3
## 7646            investigation concluded    3
## 7647           investigation determined    3
## 7648                investigation found    3
## 7649                             is now    3
## 7650                          island in    3
## 7651                          island on    3
## 7652                          island to    3
## 7653                          it's left    3
## 7654                         it circled    3
## 7655                         it climbed    3
## 7656                         it clipped    3
## 7657                        it collided    3
## 7658                             it did    3
## 7659                            it down    3
## 7660                            it fell    3
## 7661                              it in    3
## 7662                          it passed    3
## 7663                             it the    3
## 7664                            it went    3
## 7665                              itã â    3
## 7666                           italy to    3
## 7667                           its back    3
## 7668                        its engines    3
## 7669                      its inaugural    3
## 7670                       its intended    3
## 7671                         its normal    3
## 7672                           its nose    3
## 7673                     its prescribed    3
## 7674                      its propeller    3
## 7675                          its wings    3
## 7676                          japan air    3
## 7677                       jet airliner    3
## 7678                             john f    3
## 7679                        juan puerto    3
## 7680                      judgement and    3
## 7681                        judgment in    3
## 7682                          jump seat    3
## 7683                          jungle on    3
## 7684                      just finished    3
## 7685                           just off    3
## 7686                        killed flew    3
## 7687                    killed improper    3
## 7688                      killed midair    3
## 7689                        killed none    3
## 7690                       killing both    3
## 7691                        killing one    3
## 7692                           king air    3
## 7693                       kinshasa the    3
## 7694                          knots the    3
## 7695                        knowing his    3
## 7696                        knowing the    3
## 7697                       knowledge of    3
## 7698                      kuan military    3
## 7699                          kung kuan    3
## 7700                             la paz    3
## 7701                        land before    3
## 7702                          land crew    3
## 7703                        land during    3
## 7704                       land failure    3
## 7705                            land he    3
## 7706                        landed with    3
## 7707                       landing area    3
## 7708                       landing crew    3
## 7709                       landing from    3
## 7710                         landing or    3
## 7711                      landing pilot    3
## 7712                 landing procedures    3
## 7713                     landing system    3
## 7714                        landing too    3
## 7715                     landing weight    3
## 7716                       landing with    3
## 7717               landing.the aircraft    3
## 7718                       landings the    3
## 7719                       last seconds    3
## 7720                            late to    3
## 7721                        later after    3
## 7722                         later from    3
## 7723                       lavatory the    3
## 7724                           lee side    3
## 7725                    left horizontal    3
## 7726                            left in    3
## 7727                         left until    3
## 7728                             leg of    3
## 7729                     level attitude    3
## 7730                          level off    3
## 7731                           level on    3
## 7732                         level when    3
## 7733                         light pole    3
## 7734                          light the    3
## 7735                    lighting system    3
## 7736                    lightning while    3
## 7737                          lights of    3
## 7738                          lights on    3
## 7739                        lights were    3
## 7740                       likely cause    3
## 7741                      likely caused    3
## 7742                    likely impaired    3
## 7743                         likely the    3
## 7744                          limit and    3
## 7745                          limit the    3
## 7746                        limited the    3
## 7747                  little experience    3
## 7748                        little rock    3
## 7749                           load the    3
## 7750                          loads the    3
## 7751                   localizer course    3
## 7752                        located few    3
## 7753                           lock the    3
## 7754                  locking mechanism    3
## 7755                      lone survivor    3
## 7756                           long and    3
## 7757                        long enough    3
## 7758                        long island    3
## 7759                        losing both    3
## 7760                           lost all    3
## 7761                       lost crashed    3
## 7762                        lost visual    3
## 7763                         loud noise    3
## 7764                              low a    3
## 7765                       low attitude    3
## 7766                         low before    3
## 7767                          low lying    3
## 7768                           low over    3
## 7769                           low pass    3
## 7770                       low pressure    3
## 7771                            low the    3
## 7772                         luggage in    3
## 7773                           made two    3
## 7774                          made with    3
## 7775                       mail crashed    3
## 7776                  maintain aircraft    3
## 7777                     maintained and    3
## 7778                     maintained the    3
## 7779                    maintaining the    3
## 7780                   maintenance crew    3
## 7781                  maintenance error    3
## 7782             maintenance inspection    3
## 7783                           make use    3
## 7784                         making his    3
## 7785                          making it    3
## 7786                    malfunction the    3
## 7787                  malfunctioning of    3
## 7788                         manage the    3
## 7789                     management the    3
## 7790                      management to    3
## 7791                     maneuvering in    3
## 7792                        manila when    3
## 7793                          manner to    3
## 7794                         manual for    3
## 7795               manufacturing defect    3
## 7796                      market square    3
## 7797                            mast of    3
## 7798                    maximum landing    3
## 7799                    maximum takeoff    3
## 7800                  mcdonnell douglas    3
## 7801                        mda without    3
## 7802                mechanical problems    3
## 7803                 medical helicopter    3
## 7804                       mekong river    3
## 7805                         members on    3
## 7806                        message and    3
## 7807                       message that    3
## 7808                          meters of    3
## 7809                         meters off    3
## 7810                        meters past    3
## 7811                 microburst induced    3
## 7812                          middle of    3
## 7813                     midway airport    3
## 7814                          mile east    3
## 7815                         mile north    3
## 7816                          miles ene    3
## 7817                      miles outside    3
## 7818                         miles past    3
## 7819                       military air    3
## 7820                   military fighter    3
## 7821                         minima and    3
## 7822                         minima the    3
## 7823                     minimum safety    3
## 7824                       minutes away    3
## 7825                          minutes n    3
## 7826                        minutes out    3
## 7827               misidentification of    3
## 7828                      missile fired    3
## 7829                         missing en    3
## 7830                         missing on    3
## 7831                         mixture of    3
## 7832                           model of    3
## 7833                moderate turbulence    3
## 7834                     momentary loss    3
## 7835                         monica bay    3
## 7836                      most probably    3
## 7837                        mountain 10    3
## 7838                        mountain 15    3
## 7839                         mountain 5    3
## 7840                         mountain a    3
## 7841                        mountain as    3
## 7842                     mountain pilot    3
## 7843                       mountains 50    3
## 7844                  mountains shortly    3
## 7845                     mountains were    3
## 7846                   mountainside and    3
## 7847                   mountainside the    3
## 7848                              mt el    3
## 7849                        muddy field    3
## 7850            national transportation    3
## 7851                     navigation and    3
## 7852             navigation instruments    3
## 7853                            near mt    3
## 7854                    nearest airport    3
## 7855                    nearly vertical    3
## 7856                    necessitating a    3
## 7857                    neighborhood of    3
## 7858                      neither pilot    3
## 7859                        neither the    3
## 7860                          new delhi    3
## 7861                       next morning    3
## 7862                           night at    3
## 7863                       night during    3
## 7864                       night visual    3
## 7865                        nine killed    3
## 7866                             nm off    3
## 7867                          no action    3
## 7868                         no further    3
## 7869                          no longer    3
## 7870                         no reports    3
## 7871                      non adherence    3
## 7872                            nor was    3
## 7873                    normal approach    3
## 7874                      normal flight    3
## 7875                       normal until    3
## 7876                  normandy invasion    3
## 7877                          north and    3
## 7878                    north northwest    3
## 7879                        north slope    3
## 7880                        nose diving    3
## 7881                       nose section    3
## 7882                           nose was    3
## 7883                     not adequately    3
## 7884                          not clear    3
## 7885                        not cleared    3
## 7886                          not climb    3
## 7887                       not effected    3
## 7888                       not familiar    3
## 7889                       not followed    3
## 7890                    not functioning    3
## 7891                         not inform    3
## 7892                        not injured    3
## 7893                     not instrument    3
## 7894                        not knowing    3
## 7895                           not land    3
## 7896                    not maintaining    3
## 7897                        not removed    3
## 7898                       not reported    3
## 7899                     occurred while    3
## 7900                           ocean 10    3
## 7901                        ocean about    3
## 7902                          ocean and    3
## 7903                        ocean cause    3
## 7904                       ocean engine    3
## 7905                           of 1,200    3
## 7906                              of 10    3
## 7907                          of 12,000    3
## 7908                           of 2,300    3
## 7909                             of 200    3
## 7910                             of 250    3
## 7911                           of 3,500    3
## 7912                              of 30    3
## 7913                             of 300    3
## 7914                             of 400    3
## 7915                           of 5,000    3
## 7916                               of 6    3
## 7917                               of 7    3
## 7918                             of 800    3
## 7919                         of adverse    3
## 7920                         of another    3
## 7921                          of athens    3
## 7922                           of birds    3
## 7923                           of black    3
## 7924                     of brazzaville    3
## 7925                           of cloud    3
## 7926                          of contol    3
## 7927                          of damage    3
## 7928                        of darkness    3
## 7929                             of day    3
## 7930                         of eastern    3
## 7931                        of elevator    3
## 7932                          of errors    3
## 7933                          of events    3
## 7934                        of evidence    3
## 7935                       of excessive    3
## 7936                         of fatigue    3
## 7937                         of finland    3
## 7938                          of ground    3
## 7939                             of her    3
## 7940                            of high    3
## 7941                       of incorrect    3
## 7942                           of japan    3
## 7943                           of kabul    3
## 7944                        of khartoum    3
## 7945                            of lake    3
## 7946                         of landing    3
## 7947                             of las    3
## 7948                        of military    3
## 7949                       of mountains    3
## 7950                       of nantucket    3
## 7951                            of near    3
## 7952                            of nice    3
## 7953                          of normal    3
## 7954                          of people    3
## 7955                            of port    3
## 7956                         of reverse    3
## 7957                          of safety    3
## 7958                           of santa    3
## 7959                            of sink    3
## 7960                           of smoke    3
## 7961                           of south    3
## 7962                        of southern    3
## 7963                      of structural    3
## 7964                      of sufficient    3
## 7965                         of terrain    3
## 7966                    of thunderstorm    3
## 7967                         of traffic    3
## 7968                            of turn    3
## 7969                       of vancouver    3
## 7970                             of vfr    3
## 7971                            of wake    3
## 7972                       of windshear    3
## 7973                            of wing    3
## 7974                        of wreckage    3
## 7975                            off all    3
## 7976                        off because    3
## 7977                        off causing    3
## 7978                    off disappeared    3
## 7979                       off improper    3
## 7980                             off it    3
## 7981                            off run    3
## 7982                           off shot    3
## 7983                        off stalled    3
## 7984                          off three    3
## 7985                          off under    3
## 7986                            off was    3
## 7987                           off went    3
## 7988                           off when    3
## 7989                        officer was    3
## 7990                     offshore while    3
## 7991                         on closure    3
## 7992                          on finals    3
## 7993                           on rough    3
## 7994                          on visual    3
## 7995                       onboard fire    3
## 7996                      once airborne    3
## 7997                           once the    3
## 7998                           only one    3
## 7999                           open the    3
## 8000                         opened the    3
## 8001                     operated under    3
## 8002                operation descended    3
## 8003                operational control    3
## 8004                        operatorã â    3
## 8005                            or both    3
## 8006                            or loss    3
## 8007                            or more    3
## 8008                           or other    3
## 8009                 orientation during    3
## 8010                          origin in    3
## 8011                       orly airport    3
## 8012                         other than    3
## 8013                             out by    3
## 8014                           out into    3
## 8015                           out with    3
## 8016                       overcast and    3
## 8017                overcast conditions    3
## 8018                        overcast in    3
## 8019                     overheating of    3
## 8020                overshoot procedure    3
## 8021                    overshot runway    3
## 8022                     overweight and    3
## 8023                          panel and    3
## 8024                    parked aircraft    3
## 8025                        parking lot    3
## 8026                partially submerged    3
## 8027                    particular type    3
## 8028                     passed through    3
## 8029                 passenger airliner    3
## 8030              passenger compartment    3
## 8031                  passenger drowned    3
## 8032                      passenger jet    3
## 8033                      passengers on    3
## 8034                passengers survived    3
## 8035                     passengers was    3
## 8036                         path angle    3
## 8037                            path in    3
## 8038                         pattern at    3
## 8039                        pattern for    3
## 8040                             pc the    3
## 8041                           peak and    3
## 8042                   people including    3
## 8043                     perimeter wall    3
## 8044                      permitted the    3
## 8045                          person on    3
## 8046                  personnel crashed    3
## 8047                   personnel during    3
## 8048                      personnel the    3
## 8049                           piece of    3
## 8050                     pilot's action    3
## 8051                    pilot's attempt    3
## 8052                  pilot's continued    3
## 8053                  pilot's inability    3
## 8054                 pilot's inadequate    3
## 8055                       pilot's lack    3
## 8056                       pilot's seat    3
## 8057                      pilot allowed    3
## 8058                        pilot asked    3
## 8059                   pilot attempting    3
## 8060                        pilot began    3
## 8061                        pilot could    3
## 8062                       pilot didn't    3
## 8063                         pilot died    3
## 8064                      pilot elected    3
## 8065                  pilot experienced    3
## 8066                       pilot flying    3
## 8067                    pilot initiated    3
## 8068                           pilot or    3
## 8069                     pilot probably    3
## 8070                      pilot refused    3
## 8071                         pilot sent    3
## 8072                     pilot switched    3
## 8073                        pilot while    3
## 8074                         pilots may    3
## 8075                      piper crashed    3
## 8076                           piper pa    3
## 8077                     pitch attitude    3
## 8078                         pitch down    3
## 8079                        pitot tubes    3
## 8080                         placed the    3
## 8081                            plan to    3
## 8082                      plane's right    3
## 8083                           plane as    3
## 8084                         plane back    3
## 8085                        plane being    3
## 8086                        plane burst    3
## 8087                      plane carried    3
## 8088                      plane causing    3
## 8089                      plane circled    3
## 8090                        plane could    3
## 8091                    plane developed    3
## 8092                     plane deviated    3
## 8093                         plane dove    3
## 8094                  plane encountered    3
## 8095                   plane eventually    3
## 8096                       plane flying    3
## 8097                          plane for    3
## 8098                         plane nose    3
## 8099                          plane out    3
## 8100                       plane stayed    3
## 8101                       plane turned    3
## 8102                         planes had    3
## 8103                      planned route    3
## 8104                        planning by    3
## 8105                         planted by    3
## 8106                     plunged almost    3
## 8107                       poor cockpit    3
## 8108                 poor communication    3
## 8109                      poor decision    3
## 8110                      poor planning    3
## 8111                         popayãƒâ n    3
## 8112                    position before    3
## 8113                        position by    3
## 8114                    position during    3
## 8115                       position for    3
## 8116                    possible causes    3
## 8117              possible contributing    3
## 8118                   possible misread    3
## 8119                         possibly a    3
## 8120                     possibly being    3
## 8121                      possibly shot    3
## 8122                         post crash    3
## 8123                   post maintenance    3
## 8124                      potomac river    3
## 8125                        pounds over    3
## 8126                          power for    3
## 8127                        power plant    3
## 8128                     powerlines and    3
## 8129              precautionary landing    3
## 8130                      preceding the    3
## 8131                  precipitation and    3
## 8132               preflight inspection    3
## 8133              preflight preparation    3
## 8134                    prematurely and    3
## 8135                     preparatory to    3
## 8136                  prescribed flight    3
## 8137                     prescribed for    3
## 8138                  pressure bulkhead    3
## 8139                        presumed to    3
## 8140                       prevailed at    3
## 8141                          prevent a    3
## 8142                     primary flight    3
## 8143                         pro golfer    3
## 8144                     probably would    3
## 8145                        problem the    3
## 8146                       procedure on    3
## 8147                       procedure to    3
## 8148              procedures directives    3
## 8149                   procedures while    3
## 8150                        program and    3
## 8151                         program to    3
## 8152                           prop was    3
## 8153                      propeller did    3
## 8154                       propeller of    3
## 8155                       propeller on    3
## 8156                    propeller pitch    3
## 8157                   propeller struck    3
## 8158                    proper approach    3
## 8159                     proper control    3
## 8160                      proper flight    3
## 8161                       properly the    3
## 8162                   provide adequate    3
## 8163                        provided to    3
## 8164                       proximity of    3
## 8165               published instrument    3
## 8166                        puerto rico    3
## 8167                        puget sound    3
## 8168                        pulling the    3
## 8169                      radar screens    3
## 8170                      radar service    3
## 8171                      radar shortly    3
## 8172                          radar the    3
## 8173                        radar while    3
## 8174                    radio altimeter    3
## 8175                     radio operator    3
## 8176                            rain in    3
## 8177                          rain when    3
## 8178                     rain windshear    3
## 8179                      range station    3
## 8180                        rapidly and    3
## 8181                        rate during    3
## 8182                       ravine after    3
## 8183                          reached a    3
## 8184                          read back    3
## 8185                          rear door    3
## 8186                        rear engine    3
## 8187                       rear section    3
## 8188                      reasons while    3
## 8189                        received no    3
## 8190                       reception of    3
## 8191                      recognize the    3
## 8192                  recorder revealed    3
## 8193               recover contributing    3
## 8194                        recovery of    3
## 8195                            red sea    3
## 8196                   reduced altitude    3
## 8197                         reduced by    3
## 8198                        reduced the    3
## 8199                       reduction in    3
## 8200                       reduction of    3
## 8201                      reference was    3
## 8202                      regarding the    3
## 8203                          relied on    3
## 8204                         relying on    3
## 8205                       remain alert    3
## 8206                       remainder of    3
## 8207                        remained at    3
## 8208                         remains of    3
## 8209                    remains unknown    3
## 8210                    remedial action    3
## 8211                       rendered the    3
## 8212                        replace the    3
## 8213                     replacement of    3
## 8214                          report of    3
## 8215                        reported by    3
## 8216                        reported on    3
## 8217                  reported problems    3
## 8218                      reporters and    3
## 8219                        reporting a    3
## 8220                   reporting engine    3
## 8221                       reports that    3
## 8222                         request to    3
## 8223                       requested to    3
## 8224                         required a    3
## 8225                        requiring a    3
## 8226                       rescue crews    3
## 8227                        rescued but    3
## 8228                         rescued by    3
## 8229                        rest upside    3
## 8230                          result in    3
## 8231                        result that    3
## 8232                        retract the    3
## 8233                         return and    3
## 8234                        return trip    3
## 8235                         reverse in    3
## 8236                   reverse position    3
## 8237                          ridge top    3
## 8238                        right after    3
## 8239                     right elevator    3
## 8240                      right landing    3
## 8241                        right while    3
## 8242                         river bank    3
## 8243                        rod bearing    3
## 8244                    rolled inverted    3
## 8245                        rolled left    3
## 8246                         rolled the    3
## 8247                            rome to    3
## 8248                          roof tops    3
## 8249                      rotor failure    3
## 8250                        rotor speed    3
## 8251                      rough terrain    3
## 8252                      route ditched    3
## 8253                          route for    3
## 8254                   route navigation    3
## 8255                        route never    3
## 8256                           route no    3
## 8257                         route over    3
## 8258                         route with    3
## 8259                         rudder was    3
## 8260                          rules the    3
## 8261                     rumors persist    3
## 8262                          runway 06    3
## 8263                          runway 10    3
## 8264                          runway 11    3
## 8265                          runway 14    3
## 8266                         runway 18r    3
## 8267                          runway 23    3
## 8268                          runway 26    3
## 8269                         runway 31l    3
## 8270                   runway alignment    3
## 8271                      runway before    3
## 8272                     runway bounced    3
## 8273                     runway crossed    3
## 8274                 runway environment    3
## 8275                          runway he    3
## 8276                 runway malfunction    3
## 8277                       runway pilot    3
## 8278                     runway shortly    3
## 8279                    runway striking    3
## 8280                        runway then    3
## 8281                        runway when    3
## 8282                       ruptured the    3
## 8283                       s inadequate    3
## 8284                     safe emergency    3
## 8285                        safe flight    3
## 8286                          safely on    3
## 8287                         safety and    3
## 8288                         safety the    3
## 8289                            said he    3
## 8290                          said that    3
## 8291                          said they    3
## 8292                           sam neua    3
## 8293                      same altitude    3
## 8294                           san jose    3
## 8295                         sand storm    3
## 8296                         sank after    3
## 8297                           sank and    3
## 8298                       sank crashed    3
## 8299                      santa barbara    3
## 8300                          sao paulo    3
## 8301                     scattered over    3
## 8302                scattering wreckage    3
## 8303                              sea 1    3
## 8304                              sea a    3
## 8305                            sea due    3
## 8306                            sea for    3
## 8307                           sea just    3
## 8308                           sea near    3
## 8309                          sea plane    3
## 8310                           sea when    3
## 8311                   seaplane stalled    3
## 8312                         seat belts    3
## 8313                            seat in    3
## 8314                       secretary of    3
## 8315                      section which    3
## 8316                       sections the    3
## 8317                           see each    3
## 8318                selector positioned    3
## 8319                             send a    3
## 8320                       sentenced to    3
## 8321                   serious injuries    3
## 8322                 seriously injuring    3
## 8323                       service door    3
## 8324                            set and    3
## 8325                            set off    3
## 8326                         seven crew    3
## 8327                      seven seconds    3
## 8328                   severe downdraft    3
## 8329                        severe loss    3
## 8330               sheremetyevo airport    3
## 8331                     shifting cargo    3
## 8332                      shooting down    3
## 8333                       short runway    3
## 8334                         short time    3
## 8335                           shot the    3
## 8336                         showed the    3
## 8337                        showers and    3
## 8338                  shrouded mountain    3
## 8339                            side in    3
## 8340                          sierra de    3
## 8341                       sighting the    3
## 8342                   sightseeing tour    3
## 8343                   sightseeing trip    3
## 8344                        signals and    3
## 8345                simulated emergency    3
## 8346                           site and    3
## 8347                           site the    3
## 8348                         sitting in    3
## 8349                          six miles    3
## 8350                        six minutes    3
## 8351                       skidded into    3
## 8352                         slats were    3
## 8353                          slide the    3
## 8354                           slope in    3
## 8355                        slope while    3
## 8356                       small pieces    3
## 8357                        small plane    3
## 8358                        small trees    3
## 8359                       smashed into    3
## 8360                       smoke filled    3
## 8361                          smoke was    3
## 8362                          snow bank    3
## 8363                       snow falling    3
## 8364                            snow on    3
## 8365                       snow showers    3
## 8366                         snow while    3
## 8367                              so as    3
## 8368                       soccer field    3
## 8369                      soldiers were    3
## 8370                            soon as    3
## 8371                          soon lost    3
## 8372                         soviet air    3
## 8373                spatial orientation    3
## 8374                    speculated that    3
## 8375                   speculation that    3
## 8376                            speed a    3
## 8377                        speed after    3
## 8378                           speed by    3
## 8379                         speed dive    3
## 8380                    speed following    3
## 8381                     speed improper    3
## 8382                           speed it    3
## 8383                           speed on    3
## 8384                           spin the    3
## 8385                           split in    3
## 8386                          spy plane    3
## 8387                stabilized approach    3
## 8388                 stabilizer leading    3
## 8389                           stall in    3
## 8390                         stall spin    3
## 8391                         stalled at    3
## 8392                        stalled hit    3
## 8393                       stalled went    3
## 8394                      standards and    3
## 8395                            star of    3
## 8396                         started an    3
## 8397                         started by    3
## 8398                   state university    3
## 8399                        stated that    3
## 8400                        stated they    3
## 8401                      staten island    3
## 8402                   static discharge    3
## 8403                         station in    3
## 8404                        station the    3
## 8405                      stayed afloat    3
## 8406                        steered the    3
## 8407                           still in    3
## 8408                       stop landing    3
## 8409                            stop on    3
## 8410                        stoppage of    3
## 8411                        stopped and    3
## 8412                        storm after    3
## 8413                          strip the    3
## 8414                  strong downdrafts    3
## 8415                        strong head    3
## 8416                   strong headwinds    3
## 8417                    struck approach    3
## 8418                       subjected to    3
## 8419                    subsequent fire    3
## 8420                    subsequent loss    3
## 8421                    subsequently it    3
## 8422                            such an    3
## 8423                            such as    3
## 8424                 suddenly descended    3
## 8425                   suddenly dropped    3
## 8426                   suddenly pitched    3
## 8427                    suddenly rolled    3
## 8428                sufficient airspeed    3
## 8429                   sufficient speed    3
## 8430                        suicide for    3
## 8431                      supervise the    3
## 8432                supplemental oxygen    3
## 8433                      surrounded by    3
## 8434                    surveillance of    3
## 8435                   survivor crashed    3
## 8436                      survivors the    3
## 8437                          swamp the    3
## 8438                        swamp while    3
## 8439                          swiss air    3
## 8440                          switch to    3
## 8441                          system as    3
## 8442                          system by    3
## 8443                     system crashed    3
## 8444                         system due    3
## 8445                      system during    3
## 8446                      system failed    3
## 8447                         system for    3
## 8448                       systems were    3
## 8449                      systems which    3
## 8450                         tail first    3
## 8451                         tail plane    3
## 8452                          tail wind    3
## 8453                           taken by    3
## 8454                           taken on    3
## 8455                         takeoff an    3
## 8456                    takeoff causing    3
## 8457               takeoff contributing    3
## 8458                       takeoff flew    3
## 8459                       takeoff into    3
## 8460                 takeoff overloaded    3
## 8461                   takeoff possible    3
## 8462                        takeoff run    3
## 8463                       takeoff shot    3
## 8464                        talking off    3
## 8465                          tanks and    3
## 8466                           team the    3
## 8467             technical difficulties    3
## 8468                  technical problem    3
## 8469                        telling the    3
## 8470                  terminal building    3
## 8471                      terrain ahead    3
## 8472                         terrain on    3
## 8473                       terrain shot    3
## 8474                      terrain under    3
## 8475                      terrain which    3
## 8476                       that allowed    3
## 8477                      that occurred    3
## 8478                         that point    3
## 8479                      that required    3
## 8480                              the a    3
## 8481                     the accidental    3
## 8482                   the accumulation    3
## 8483                         the active    3
## 8484                       the adhesive    3
## 8485                       the ailerons    3
## 8486                         the airway    3
## 8487                       the approved    3
## 8488                       the attitude    3
## 8489                      the auxiliary    3
## 8490                        the baggage    3
## 8491                         the baltic    3
## 8492                          the banks    3
## 8493                        the barrier    3
## 8494                          the beach    3
## 8495                          the beech    3
## 8496                      the beginning    3
## 8497                           the beta    3
## 8498                          the blast    3
## 8499                          the board    3
## 8500                           the body    3
## 8501                           the bolt    3
## 8502                       the boundary    3
## 8503                        the braking    3
## 8504                       the business    3
## 8505                       the canadian    3
## 8506                        the capital    3
## 8507                     the carburetor    3
## 8508                        the ceiling    3
## 8509                          the cerro    3
## 8510                             the ch    3
## 8511                         the change    3
## 8512                          the check    3
## 8513                    the combination    3
## 8514                    the commander's    3
## 8515                     the commercial    3
## 8516                      the condition    3
## 8517                   the continuation    3
## 8518                      the continued    3
## 8519                          the craft    3
## 8520                        the crashed    3
## 8521                             the cv    3
## 8522                            the day    3
## 8523                          the death    3
## 8524                          the delta    3
## 8525                     the designated    3
## 8526                      the direction    3
## 8527                 the disintegration    3
## 8528                       the ditching    3
## 8529                         the double    3
## 8530                           the drag    3
## 8531                            the eal    3
## 8532                           the edge    3
## 8533                      the elevation    3
## 8534                             the en    3
## 8535                       the engine's    3
## 8536                             the f4    3
## 8537                            the fan    3
## 8538                         the faulty    3
## 8539                     the feathering    3
## 8540                            the fin    3
## 8541                           the gate    3
## 8542                      the generator    3
## 8543                     the geographic    3
## 8544                         the german    3
## 8545                          the gross    3
## 8546                        the heavily    3
## 8547                          the heavy    3
## 8548                      the hijacking    3
## 8549                        the holding    3
## 8550                            the hot    3
## 8551                         the hudson    3
## 8552                            the icy    3
## 8553                           the il76    3
## 8554                     the improperly    3
## 8555                        the inboard    3
## 8556                    the inoperative    3
## 8557                           the jump    3
## 8558                        the jungles    3
## 8559                           the lake    3
## 8560                        the lifting    3
## 8561                         the lights    3
## 8562                      the localizer    3
## 8563                       the location    3
## 8564                            the man    3
## 8565                       the maneuver    3
## 8566                         the manual    3
## 8567                            the men    3
## 8568                 the meteorological    3
## 8569                     the metroliner    3
## 8570                         the middle    3
## 8571                            the mig    3
## 8572                        the mistake    3
## 8573                         the nature    3
## 8574                         the navajo    3
## 8575                   the navigational    3
## 8576                      the necessary    3
## 8577                       the normandy    3
## 8578                       the northern    3
## 8579                       the nosegear    3
## 8580                            the nut    3
## 8581                        the oakland    3
## 8582                    the obstruction    3
## 8583                     the occurrence    3
## 8584                            the oil    3
## 8585                            the old    3
## 8586                             the on    3
## 8587                            the one    3
## 8588                           the open    3
## 8589                      the operatorã    3
## 8590                      the outskirts    3
## 8591                           the over    3
## 8592                     the particular    3
## 8593                         the person    3
## 8594                    the philippines    3
## 8595                          the point    3
## 8596                    the positioning    3
## 8597                    the possibility    3
## 8598                        the potomac    3
## 8599                            the pre    3
## 8600                      the premature    3
## 8601                        the process    3
## 8602                           the pull    3
## 8603                          the range    3
## 8604                           the rate    3
## 8605                           the real    3
## 8606                      the remainder    3
## 8607                   the requirements    3
## 8608                      the resulting    3
## 8609                           the seat    3
## 8610                      the secondary    3
## 8611                       the seminole    3
## 8612                          the servo    3
## 8613                          the shore    3
## 8614                          the short    3
## 8615                          the skies    3
## 8616                          the slats    3
## 8617                           the spar    3
## 8618                      the specified    3
## 8619                       the stalling    3
## 8620                          the state    3
## 8621                           the stop    3
## 8622                    the surrounding    3
## 8623                              the t    3
## 8624                         the tarmac    3
## 8625                           the tire    3
## 8626                        the trainee    3
## 8627                        the trainer    3
## 8628                       the transfer    3
## 8629                          the trees    3
## 8630                            the twa    3
## 8631                 the uncontrollable    3
## 8632                   the uncontrolled    3
## 8633                  the undercarriage    3
## 8634                             the us    3
## 8635                          the usair    3
## 8636                            the vfr    3
## 8637                         the voodoo    3
## 8638                        the warning    3
## 8639                       the warnings    3
## 8640                     the wellington    3
## 8641                         the wheels    3
## 8642                          the white    3
## 8643                         the window    3
## 8644                          the world    3
## 8645                           them the    3
## 8646                             then a    3
## 8647                         then broke    3
## 8648                       then stalled    3
## 8649                            then to    3
## 8650                          there are    3
## 8651                          there had    3
## 8652                     these failures    3
## 8653                         they heard    3
## 8654                         thirty one    3
## 8655                      this aircraft    3
## 8656                         this crash    3
## 8657                       this failure    3
## 8658                          this loss    3
## 8659                         thought he    3
## 8660                        thought the    3
## 8661                       three people    3
## 8662                        three years    3
## 8663                  threshold crashed    3
## 8664                       threshold in    3
## 8665                       threshold of    3
## 8666                         through fl    3
## 8667                       thrown clear    3
## 8668                         thrown out    3
## 8669                         thrust and    3
## 8670                    thunderstorm on    3
## 8671                  thunderstorm with    3
## 8672                   thunderstorms in    3
## 8673                 thunderstorms were    3
## 8674                 thunderstorms with    3
## 8675                       thus causing    3
## 8676                          time when    3
## 8677                            tire on    3
## 8678                           tire the    3
## 8679                              to 10    3
## 8680                             to 200    3
## 8681                               to 6    3
## 8682                           to 7,000    3
## 8683                              to 90    3
## 8684                         to airport    3
## 8685                          to albany    3
## 8686                           to align    3
## 8687                          to arrive    3
## 8688                           to bring    3
## 8689                           to butte    3
## 8690                           to cairo    3
## 8691                           to close    3
## 8692                          to cruise    3
## 8693                           to death    3
## 8694                    to disintegrate    3
## 8695                           to drift    3
## 8696                     to effectively    3
## 8697                        to evacuate    3
## 8698                        to evaluate    3
## 8699                         to explode    3
## 8700                          to flight    3
## 8701                        to function    3
## 8702                           to guide    3
## 8703                             to him    3
## 8704                            to hong    3
## 8705                        to honolulu    3
## 8706                      to inadequate    3
## 8707                      to instrument    3
## 8708                          to kansas    3
## 8709                              to la    3
## 8710                             to las    3
## 8711                           to lower    3
## 8712                          to manila    3
## 8713                            to move    3
## 8714                          to notice    3
## 8715                            to open    3
## 8716                       to overshoot    3
## 8717                       to overspeed    3
## 8718                   to overstressing    3
## 8719                       to parachute    3
## 8720                       to penetrate    3
## 8721                       to perpignan    3
## 8722                         to prepare    3
## 8723                      to prescribed    3
## 8724                         to replace    3
## 8725                         to respond    3
## 8726                         to restart    3
## 8727                         to retract    3
## 8728                            to save    3
## 8729                             to sea    3
## 8730                          to select    3
## 8731                            to send    3
## 8732                        to separate    3
## 8733                             to set    3
## 8734                          to stress    3
## 8735                          to strong    3
## 8736                       to supervise    3
## 8737                          to switch    3
## 8738                            to tell    3
## 8739                           to tokyo    3
## 8740                          to verify    3
## 8741                         to weather    3
## 8742                       to witnesses    3
## 8743                      together with    3
## 8744                          tokyo the    3
## 8745                            told by    3
## 8746                          too great    3
## 8747                           too much    3
## 8748                        tops before    3
## 8749                       tops stalled    3
## 8750                           total of    3
## 8751                  totally destroyed    3
## 8752                          tower the    3
## 8753                        tower while    3
## 8754                          track and    3
## 8755                           track of    3
## 8756                         trained to    3
## 8757                      trainee pilot    3
## 8758                 training exercises    3
## 8759                     trans atlantic    3
## 8760                    transition from    3
## 8761                      transmitted a    3
## 8762                     transport went    3
## 8763                     transporting a    3
## 8764                       traveling at    3
## 8765                       trees before    3
## 8766                       trees during    3
## 8767                          tried and    3
## 8768                   trim compensator    3
## 8769                       trouble with    3
## 8770                          tulcãƒâ n    3
## 8771                     tunis carthage    3
## 8772                      turbulence or    3
## 8773                   turbulence while    3
## 8774                         turn after    3
## 8775                            turn as    3
## 8776                            turn he    3
## 8777                          turn onto    3
## 8778                           turn was    3
## 8779                        turned left    3
## 8780                        turned over    3
## 8781                       turned right    3
## 8782                          turned to    3
## 8783                       turning onto    3
## 8784                      twelve aboard    3
## 8785                        twenty five    3
## 8786                        twenty four    3
## 8787                          twice and    3
## 8788                           twice to    3
## 8789                       two children    3
## 8790                           two crew    3
## 8791                         two during    3
## 8792                          two hours    3
## 8793                             two on    3
## 8794                         two people    3
## 8795                          two tires    3
## 8796                          two weeks    3
## 8797                           u.s army    3
## 8798                       u.s military    3
## 8799                     ultimately led    3
## 8800             uncontrollable crashed    3
## 8801                    under extremely    3
## 8802                          under his    3
## 8803                   under instrument    3
## 8804                       under visual    3
## 8805                  undercarriage and    3
## 8806                 underestimated the    3
## 8807                   understanding of    3
## 8808                undetermined origin    3
## 8809                 unfamiliarity with    3
## 8810                         unit which    3
## 8811                        unknown but    3
## 8812                   unknown possible    3
## 8813                   unsuccessful and    3
## 8814                        until after    3
## 8815                           until he    3
## 8816                       until impact    3
## 8817                    unwise decision    3
## 8818                               up a    3
## 8819                             up for    3
## 8820                            up into    3
## 8821                              up on    3
## 8822                      up passengers    3
## 8823                      use available    3
## 8824                         use proper    3
## 8825                            used as    3
## 8826                            using a    3
## 8827                           v1 speed    3
## 8828                     veered sharply    3
## 8829                         vehicle on    3
## 8830                       vehicles the    3
## 8831                        vented fuel    3
## 8832                      vertical bank    3
## 8833                vertical stabilizer    3
## 8834                           vfr mode    3
## 8835                   vibration caused    3
## 8836                      vibration the    3
## 8837                         vic morrow    3
## 8838                    visibility this    3
## 8839                    visibility when    3
## 8840                   visibility which    3
## 8841              visual meteorological    3
## 8842                  visual perception    3
## 8843                               w of    3
## 8844                        wake island    3
## 8845                             war ii    3
## 8846                          warned by    3
## 8847                        warning and    3
## 8848                       warnings and    3
## 8849                      warnings from    3
## 8850                             was 10    3
## 8851                             was 30    3
## 8852                       was actually    3
## 8853                          was again    3
## 8854                     was apparently    3
## 8855                          was aware    3
## 8856                         was beyond    3
## 8857                      was chartered    3
## 8858                       was circling    3
## 8859                         was coming    3
## 8860                     was considered    3
## 8861                      was continued    3
## 8862                        was decided    3
## 8863                     was distracted    3
## 8864                           was down    3
## 8865                         was either    3
## 8866                       was executed    3
## 8867                         was headed    3
## 8868                       was imminent    3
## 8869                    was inoperative    3
## 8870                     was instructed    3
## 8871                           was just    3
## 8872                        was landing    3
## 8873                          was later    3
## 8874                         was leased    3
## 8875                          was light    3
## 8876                          was lower    3
## 8877                        was missing    3
## 8878                      was operating    3
## 8879                   was overspeeding    3
## 8880                           was part    3
## 8881                      was partially    3
## 8882                        was passing    3
## 8883                    was preoccupied    3
## 8884                            was put    3
## 8885                           was rain    3
## 8886                        was reached    3
## 8887                      was recovered    3
## 8888                        was revoked    3
## 8889                            was set    3
## 8890                         was severe    3
## 8891                        was sighted    3
## 8892                         was spread    3
## 8893                          was taken    3
## 8894                        was telling    3
## 8895                           was torn    3
## 8896                        was totally    3
## 8897                      was traveling    3
## 8898                         was turned    3
## 8899                   was unsuccessful    3
## 8900                       was weakened    3
## 8901                          was wrong    3
## 8902                water contamination    3
## 8903                      water shortly    3
## 8904                      water surface    3
## 8905                        water which    3
## 8906                          waved off    3
## 8907                          waves and    3
## 8908                           way back    3
## 8909                             we are    3
## 8910                      weakening the    3
## 8911                weather information    3
## 8912                   weather minimums    3
## 8913                      weather radar    3
## 8914                    weather related    3
## 8915                       weather with    3
## 8916                        weeks after    3
## 8917                         weight the    3
## 8918                            went in    3
## 8919                     went unnoticed    3
## 8920                          were also    3
## 8921                     were available    3
## 8922                     were diverting    3
## 8923                           were due    3
## 8924                     were feathered    3
## 8925                        were having    3
## 8926                     were installed    3
## 8927                          were poor    3
## 8928                      were reported    3
## 8929                     were seriously    3
## 8930                        were sucked    3
## 8931                            were to    3
## 8932                     west northwest    3
## 8933                        wheat field    3
## 8934                       when contact    3
## 8935                           when she    3
## 8936                           when two    3
## 8937                           where he    3
## 8938                        which broke    3
## 8939                      which brought    3
## 8940                          which did    3
## 8941                   which eventually    3
## 8942                       which failed    3
## 8943                         which gave    3
## 8944                      which induced    3
## 8945                         which made    3
## 8946                        which would    3
## 8947                     while carrying    3
## 8948                   while completing    3
## 8949                   while conducting    3
## 8950                   while delivering    3
## 8951                        while doing    3
## 8952                      while enroute    3
## 8953                    while searching    3
## 8954                        while still    3
## 8955                            who did    3
## 8956                     wind direction    3
## 8957                        winds after    3
## 8958                       winds caused    3
## 8959                         winds were    3
## 8960                  windshear crashed    3
## 8961                     windshield and    3
## 8962                             wing a    3
## 8963                          wing anti    3
## 8964                      wing detached    3
## 8965                        wing during    3
## 8966                       wing failure    3
## 8967                           wing low    3
## 8968                            wing on    3
## 8969                          wing tank    3
## 8970                           with air    3
## 8971                      with approach    3
## 8972                           with atc    3
## 8973                     with certainty    3
## 8974                          with fuel    3
## 8975                           with her    3
## 8976                         with known    3
## 8977                       with landing    3
## 8978                         with light    3
## 8979                         with minor    3
## 8980                     with obstacles    3
## 8981                          with rain    3
## 8982                       with reduced    3
## 8983                        with severe    3
## 8984                          with snow    3
## 8985                          with that    3
## 8986                         with three    3
## 8987                           within a    3
## 8988                   without adequate    3
## 8989                         without an    3
## 8990                        without any    3
## 8991                    without knowing    3
## 8992                 without permission    3
## 8993                    without success    3
## 8994                     witnesses said    3
## 8995                      witnesses saw    3
## 8996                   witnesses stated    3
## 8997                          woman was    3
## 8998                      wooded ravine    3
## 8999                         workers to    3
## 9000                        working the    3
## 9001                  worsening weather    3
## 9002                        wreckage of    3
## 9003                        wreckage or    3
## 9004                      wreckage were    3
## 9005                     wrong approach    3
## 9006                             yak 40    3
## 9007                     yards offshore    3
## 9008                         yards past    3
## 9009                            yoke to    3
## 9010                          york city    3
## 9011                              05 at    2
## 9012                                1 1    2
## 9013                            1 month    2
## 9014                         1,200 feet    2
## 9015                       1,500 meters    2
## 9016                         1,800 feet    2
## 9017                           1,800 ft    2
## 9018                             1.5 km    2
## 9019                           1.5 mile    2
## 9020                          1.8 miles    2
## 9021                              10 24    2
## 9022                        10 cylinder    2
## 9023                             10 the    2
## 9024                        10,000 feet    2
## 9025                        10,500 feet    2
## 9026                              100 m    2
## 9027                            1000 ft    2
## 9028                          10km from    2
## 9029                              11 47    2
## 9030                         11 degrees    2
## 9031                            11 were    2
## 9032                        11,000 feet    2
## 9033                          11,200 ft    2
## 9034                          12 aboard    2
## 9035                        12,500 feet    2
## 9036                          12,500 ft    2
## 9037                          120 miles    2
## 9038                          13,000 ft    2
## 9039                        13,500 feet    2
## 9040                           130 feet    2
## 9041                        134 degrees    2
## 9042                          14 aboard    2
## 9043                              14 at    2
## 9044                           14 years    2
## 9045                        14,000 feet    2
## 9046                          14,000 ft    2
## 9047                          14,200 ft    2
## 9048                              15 nm    2
## 9049                           155 kias    2
## 9050                           16 hours    2
## 9051                            16 inch    2
## 9052                              16 km    2
## 9053                           16 miles    2
## 9054                             16 the    2
## 9055                              17 km    2
## 9056                         17 seconds    2
## 9057                             17 the    2
## 9058                            18 feet    2
## 9059                              18 km    2
## 9060                         18 minutes    2
## 9061                              18 nm    2
## 9062                        180 degrees    2
## 9063                          18r which    2
## 9064                         19 minutes    2
## 9065                      19 passengers    2
## 9066                        1st officer    2
## 9067                                2 3    2
## 9068                             2 crew    2
## 9069                          2 degrees    2
## 9070                            2 hours    2
## 9071                           2 missed    2
## 9072                               2 on    2
## 9073                       2 passengers    2
## 9074                       2 propellers    2
## 9075                               2 to    2
## 9076                            2 years    2
## 9077                         2,400 feet    2
## 9078                           2,900 ft    2
## 9079                            20 feet    2
## 9080                             20 kms    2
## 9081                         200 meters    2
## 9082                              21 km    2
## 9083                          21,000 ft    2
## 9084                              22 km    2
## 9085                           22 miles    2
## 9086                             22 the    2
## 9087                              24 47    2
## 9088                              24 km    2
## 9089                          24,000 ft    2
## 9090                         25 minutes    2
## 9091                             250 ft    2
## 9092                           27 miles    2
## 9093                         27 minutes    2
## 9094                              28 at    2
## 9095                           28 miles    2
## 9096                             28 the    2
## 9097                            290 the    2
## 9098                           2km from    2
## 9099                              3 all    2
## 9100                          3 degrees    2
## 9101                            3 homes    2
## 9102                               3 in    2
## 9103                       3 passengers    2
## 9104                            3 times    2
## 9105                              3 was    2
## 9106                             3 were    2
## 9107                         3,500 feet    2
## 9108                          3.3 miles    2
## 9109                         30 degrees    2
## 9110                           30 hours    2
## 9111                          30 minute    2
## 9112                             30 the    2
## 9113                          30,000 ft    2
## 9114                         300 meters    2
## 9115                            300 mph    2
## 9116                             31 the    2
## 9117                           32 miles    2
## 9118                              34 km    2
## 9119                              35 km    2
## 9120                              35 nm    2
## 9121                             35 was    2
## 9122                        35,000 feet    2
## 9123                         38 crashed    2
## 9124                          38 killed    2
## 9125                          38,000 ft    2
## 9126                              39 km    2
## 9127                        4 alternate    2
## 9128                             4 days    2
## 9129                       4 passengers    2
## 9130                            4 times    2
## 9131                           4,200 ft    2
## 9132                           4,300 ft    2
## 9133                         4,700 feet    2
## 9134                           4,800 ft    2
## 9135                             40 and    2
## 9136                            40 feet    2
## 9137                          400 yards    2
## 9138                            401 and    2
## 9139                          41 killed    2
## 9140                          42 killed    2
## 9141                           43 miles    2
## 9142                         45 degrees    2
## 9143                              45 km    2
## 9144                          45 minute    2
## 9145                         45 minutes    2
## 9146                           450 feet    2
## 9147                          46 killed    2
## 9148                             46 was    2
## 9149                             47 and    2
## 9150                           5 months    2
## 9151                       5 passengers    2
## 9152                          5 seconds    2
## 9153                            5 years    2
## 9154                           5,500 ft    2
## 9155                          50 meters    2
## 9156                         50 minutes    2
## 9157                              500 m    2
## 9158                          500 miles    2
## 9159                          52 killed    2
## 9160                         54 degrees    2
## 9161                          56 killed    2
## 9162                             6 crew    2
## 9163                         6,100 feet    2
## 9164                           6,500 ft    2
## 9165                          6.5 miles    2
## 9166                         60 degrees    2
## 9167                            60 feet    2
## 9168                              60 to    2
## 9169                              65 km    2
## 9170                              67 km    2
## 9171                           7 aboard    2
## 9172                             7 crew    2
## 9173                          7 minutes    2
## 9174                          7 missile    2
## 9175                              7 was    2
## 9176                           7,500 ft    2
## 9177                             700 ft    2
## 9178                         707 landed    2
## 9179                            727 and    2
## 9180                            747 had    2
## 9181                           75 miles    2
## 9182                             76 was    2
## 9183                       8 helicopter    2
## 9184                               8 nm    2
## 9185                             8 year    2
## 9186                           80 knots    2
## 9187                           8km from    2
## 9188                           9 aboard    2
## 9189                               9 as    2
## 9190                          9 failure    2
## 9191                              9 one    2
## 9192                          9 seconds    2
## 9193                              9 the    2
## 9194                              9 was    2
## 9195                             9 were    2
## 9196                         9,200 feet    2
## 9197                             90 deg    2
## 9198                         90 minutes    2
## 9199                           990 feet    2
## 9200                              a 1.5    2
## 9201                               a 11    2
## 9202                           a 12,000    2
## 9203                               a 15    2
## 9204                               a 16    2
## 9205                            a 2,500    2
## 9206                                a 3    2
## 9207                               a 40    2
## 9208                                a 6    2
## 9209                                a 8    2
## 9210                            a 8,000    2
## 9211                               a 90    2
## 9212                             a ball    2
## 9213                            a belly    2
## 9214                            a blind    2
## 9215                             a boat    2
## 9216                          a bombing    2
## 9217                        a brazilian    2
## 9218                           a bridge    2
## 9219                            a brush    2
## 9220                            a burst    2
## 9221                            a canal    2
## 9222                             a cane    2
## 9223                            a cause    2
## 9224                         a climbout    2
## 9225                            a close    2
## 9226                            a clump    2
## 9227                             a coin    2
## 9228                          a concert    2
## 9229                        a condition    2
## 9230                         a confined    2
## 9231                        a congolese    2
## 9232                       a connecting    2
## 9233                       a continuous    2
## 9234                           a crater    2
## 9235                            a creek    2
## 9236                            a cross    2
## 9237                            a crowd    2
## 9238                          a crowded    2
## 9239                         a cruising    2
## 9240                        a dangerous    2
## 9241                           a defect    2
## 9242                           a degree    2
## 9243                            a delay    2
## 9244                         a delivery    2
## 9245                            a delta    2
## 9246                            a dense    2
## 9247                    a deteriorating    2
## 9248                        a direction    2
## 9249                        a diversion    2
## 9250                         a downward    2
## 9251                            a dozen    2
## 9252                            a dutch    2
## 9253                       a eucalyptus    2
## 9254                        a explosion    2
## 9255                                a f    2
## 9256                              a fan    2
## 9257                           a female    2
## 9258                         a ferrying    2
## 9259                          a fighter    2
## 9260                            a first    2
## 9261                            a flame    2
## 9262                         a flameout    2
## 9263                            a flash    2
## 9264                            a flyby    2
## 9265                         a forested    2
## 9266                           a former    2
## 9267                          a forward    2
## 9268                            a front    2
## 9269                          a funeral    2
## 9270                             a girl    2
## 9271                             a gpws    2
## 9272                           a grassy    2
## 9273                           a hazard    2
## 9274                         a headwind    2
## 9275                          a hilltop    2
## 9276                         a homemade    2
## 9277                          a housing    2
## 9278                             a huge    2
## 9279                        a hurricane    2
## 9280                              a ils    2
## 9281                        â incorrect    2
## 9282                           a jammed    2
## 9283                            a japan    2
## 9284                         a japanese    2
## 9285                             a last    2
## 9286                             a leak    2
## 9287                         a lebanese    2
## 9288                             a life    2
## 9289                           a likely    2
## 9290                          a locking    2
## 9291                      a maneuvering    2
## 9292                           a manner    2
## 9293                           a meadow    2
## 9294                            a metal    2
## 9295                       a microburst    2
## 9296                              a mig    2
## 9297                             a more    2
## 9298                         a mountian    2
## 9299                             a much    2
## 9300                            a muddy    2
## 9301                           a nearly    2
## 9302                              a new    2
## 9303                             a news    2
## 9304                        a nighttime    2
## 9305                            a north    2
## 9306                              a oil    2
## 9307                            a paddy    2
## 9308                        a pakistani    2
## 9309                             a palm    2
## 9310                          a partial    2
## 9311                          a pasture    2
## 9312                            a patch    2
## 9313                       a pedestrian    2
## 9314                      a performance    2
## 9315                           a person    2
## 9316                         a physical    2
## 9317                            a piece    2
## 9318                            a pitch    2
## 9319                             a pole    2
## 9320                            a porto    2
## 9321                             a post    2
## 9322                           a potato    2
## 9323                        a potential    2
## 9324                    a precautionary    2
## 9325                         a previous    2
## 9326                         a probable    2
## 9327                              a raf    2
## 9328                             a rain    2
## 9329                             a ramp    2
## 9330                             a rcaf    2
## 9331                      a reactionary    2
## 9332                         a rearward    2
## 9333                           a recent    2
## 9334                         a recently    2
## 9335                   a reconnaissance    2
## 9336                        a refueling    2
## 9337                          a related    2
## 9338                           a relief    2
## 9339                           a rental    2
## 9340                         a required    2
## 9341                        a reservoir    2
## 9342                             a rest    2
## 9343                       a restricted    2
## 9344                        a resulting    2
## 9345                           a rocket    2
## 9346                          a rolling    2
## 9347                             a roof    2
## 9348                          a routine    2
## 9349                           a rudder    2
## 9350                           a scenic    2
## 9351                              a sea    2
## 9352                             a seam    2
## 9353                           a search    2
## 9354                          a seawall    2
## 9355                             a self    2
## 9356                          a service    2
## 9357                            a shift    2
## 9358                             a shut    2
## 9359                        a simulator    2
## 9360                             a soft    2
## 9361                         a software    2
## 9362                            a south    2
## 9363                          a soybean    2
## 9364                          a spatial    2
## 9365                            a split    2
## 9366                           a stable    2
## 9367                          a stalled    2
## 9368                            a still    2
## 9369                            a story    2
## 9370                           a street    2
## 9371                       a sufficient    2
## 9372                           a summit    2
## 9373                          a takeoff    2
## 9374                        a telephone    2
## 9375                          a terrain    2
## 9376                              a the    2
## 9377                           a thrust    2
## 9378                          a thunder    2
## 9379                            a tight    2
## 9380                             a time    2
## 9381                          a tornado    2
## 9382                             a tour    2
## 9383                          a tourist    2
## 9384                            a tower    2
## 9385                            a track    2
## 9386                          a tractor    2
## 9387                            a trees    2
## 9388                            a trial    2
## 9389                         a tropical    2
## 9390                          a typhoon    2
## 9391                        a ukrainian    2
## 9392                            a valve    2
## 9393                        a vibration    2
## 9394                             a view    2
## 9395                          a volcano    2
## 9396                          a waveoff    2
## 9397                             a week    2
## 9398                            â while    2
## 9399                        a windshear    2
## 9400                            a world    2
## 9401                             a year    2
## 9402                        abandon the    2
## 9403                 abandoned approach    2
## 9404                           abide by    2
## 9405                    abnormal flight    2
## 9406                 abnormal situation    2
## 9407                          aboard 56    2
## 9408                           aboard a    2
## 9409                          aboard in    2
## 9410                          aboard pt    2
## 9411                         aboard was    2
## 9412                      abort takeoff    2
## 9413                          aborted a    2
## 9414                        aborted and    2
## 9415                        aborted but    2
## 9416                        about 1,800    2
## 9417                          about 1.5    2
## 9418                           about 16    2
## 9419                            about 3    2
## 9420                          about 400    2
## 9421                           about 45    2
## 9422                          about 600    2
## 9423                            about 7    2
## 9424                           about 75    2
## 9425                           about 80    2
## 9426                            about 9    2
## 9427                         about this    2
## 9428                          about two    2
## 9429                        abrupt left    2
## 9430                    abrupt maneuver    2
## 9431                        abrupt turn    2
## 9432                          abu dhabi    2
## 9433                        access door    2
## 9434                    accessory drive    2
## 9435                         accident a    2
## 9436                       accident and    2
## 9437                     accident cause    2
## 9438                     accident could    2
## 9439                      accident crew    2
## 9440                    accident flight    2
## 9441                        accident in    2
## 9442                        accident it    2
## 9443                       accident led    2
## 9444                    accident making    2
## 9445                  accident sequence    2
## 9446                   accident shortly    2
## 9447                      accident site    2
## 9448               accidental collision    2
## 9449                   accidentally hit    2
## 9450                  accidentally shot    2
## 9451                     accidents with    2
## 9452                       accomplish a    2
## 9453                       accretion on    2
## 9454                     accumulated in    2
## 9455                     accumulated on    2
## 9456                  accurately before    2
## 9457                     accurately the    2
## 9458                   acknowledged the    2
## 9459                       acquire mode    2
## 9460                         action and    2
## 9461                         action had    2
## 9462                        action when    2
## 9463                        actions and    2
## 9464                       actions were    2
## 9465                       activate the    2
## 9466                       activated or    2
## 9467                   activity crashed    2
## 9468                        activity in    2
## 9469                       actually was    2
## 9470                       actuation of    2
## 9471                               ad 6    2
## 9472                        addis ababa    2
## 9473                        address the    2
## 9474                   adequate control    2
## 9475                   adequate forward    2
## 9476                 adequate reference    2
## 9477               adequate supervision    2
## 9478                  adequate training    2
## 9479                  adequately manage    2
## 9480                      adjustment of    2
## 9481                      adler airport    2
## 9482                 adversely affected    2
## 9483                          advice to    2
## 9484                         advised to    2
## 9485                aerial surveillance    2
## 9486                     aerobatics the    2
## 9487                    aerodrome after    2
## 9488                  aerodynamic loads    2
## 9489                            afb and    2
## 9490                             afb in    2
## 9491                       affected his    2
## 9492                   afghan guerillas    2
## 9493                    afghanistan the    2
## 9494                         afloat for    2
## 9495                           afs near    2
## 9496                            aft c.g    2
## 9497                          aft limit    2
## 9498                          aft right    2
## 9499                           after 10    2
## 9500                           after 40    2
## 9501                        after after    2
## 9502                       after coming    2
## 9503                   after completing    2
## 9504                     after crossing    2
## 9505                       after double    2
## 9506                     after dropping    2
## 9507                         after fire    2
## 9508                        after going    2
## 9509                       after impact    2
## 9510                      after initial    2
## 9511                         after lift    2
## 9512                          after not    2
## 9513                        after power    2
## 9514                       after shamal    2
## 9515                         after some    2
## 9516                     after stalling    2
## 9517                     after starting    2
## 9518                      after talking    2
## 9519                         after they    2
## 9520                       after trying    2
## 9521                           after v1    2
## 9522                          again and    2
## 9523                           again at    2
## 9524                     again crashing    2
## 9525                          again for    2
## 9526                           again to    2
## 9527                        agana naval    2
## 9528                          agreed to    2
## 9529                             aid in    2
## 9530                   aileron controls    2
## 9531               aileron oscillations    2
## 9532                          air after    2
## 9533                         air before    2
## 9534                       air currents    2
## 9535                        air defense    2
## 9536                       air disaster    2
## 9537                            air due    2
## 9538                          air field    2
## 9539                            air for    2
## 9540                             air in    2
## 9541                          air inlet    2
## 9542                           air mail    2
## 9543                       air marshall    2
## 9544                          air route    2
## 9545                           air self    2
## 9546                          air space    2
## 9547                           air tour    2
## 9548                   airborne crashed    2
## 9549                   airborne express    2
## 9550                        airborne in    2
## 9551                aircraft's altitude    2
## 9552                   aircraft's cabin    2
## 9553                 aircraft's descent    2
## 9554              aircraft's electrical    2
## 9555                   aircraft's speed    2
## 9556                     aircraft about    2
## 9557                aircraft apparently    2
## 9558                    aircraft barely    2
## 9559                   aircraft because    2
## 9560                     aircraft below    2
## 9561                      aircraft both    2
## 9562                   aircraft changed    2
## 9563                   aircraft company    2
## 9564             aircraft configuration    2
## 9565                 aircraft contacted    2
## 9566                      aircraft dove    2
## 9567                      aircraft down    2
## 9568                   aircraft failure    2
## 9569                     aircraft first    2
## 9570                    aircraft flight    2
## 9571                 aircraft gradually    2
## 9572               aircraft immediately    2
## 9573               aircraft intercepted    2
## 9574                        aircraft it    2
## 9575                    aircraft leased    2
## 9576                       aircraft led    2
## 9577                       aircraft log    2
## 9578                    aircraft losing    2
## 9579                aircraft maintained    2
## 9580               aircraft maneuvering    2
## 9581                     aircraft never    2
## 9582                     aircraft nosed    2
## 9583                        aircraft of    2
## 9584                aircraft overloaded    2
## 9585                    aircraft passed    2
## 9586                  aircraft position    2
## 9587                     aircraft prior    2
## 9588                  aircraft reported    2
## 9589                   aircraft rotated    2
## 9590                    aircraft safely    2
## 9591                      aircraft sank    2
## 9592                      aircraft slid    2
## 9593                      aircraft spun    2
## 9594                   aircraft started    2
## 9595                   aircraft stopped    2
## 9596                 aircraft structure    2
## 9597                   aircraft swerved    2
## 9598                     aircraft swung    2
## 9599                   aircraft through    2
## 9600                    aircraft twenty    2
## 9601                     aircraft under    2
## 9602                     aircraft yawed    2
## 9603                     airfield while    2
## 9604                     airframe icing    2
## 9605                        airline and    2
## 9606                        airline the    2
## 9607               airliner disappeared    2
## 9608                   airliner drifted    2
## 9609                       airliner had    2
## 9610                      airliner took    2
## 9611                      airliner went    2
## 9612                       airlines and    2
## 9613                     airlines crash    2
## 9614                        airlines dc    2
## 9615                  airlines extended    2
## 9616                     airplane after    2
## 9617                    airplane banked    2
## 9618                     airplane being    2
## 9619                     airplane below    2
## 9620              airplane contributing    2
## 9621                       airplane for    2
## 9622                      airplane from    2
## 9623                       airplane had    2
## 9624                        airplane in    2
## 9625                        airplane on    2
## 9626                   airplane rapidly    2
## 9627                    airplane rolled    2
## 9628                      airplane then    2
## 9629                      airplane took    2
## 9630                      airplane with    2
## 9631                        airplaneã â    2
## 9632                  airport's control    2
## 9633                        airport all    2
## 9634                       airport both    2
## 9635                    airport control    2
## 9636                 airport controlled    2
## 9637                   airport crashing    2
## 9638                         airport en    2
## 9639                      airport false    2
## 9640                       airport fire    2
## 9641                       airport from    2
## 9642                         airport he    2
## 9643                       airport loss    2
## 9644                        airport new    2
## 9645                        airport one    2
## 9646                      airport pilot    2
## 9647                       airport poor    2
## 9648                   airport possible    2
## 9649                     airport runway    2
## 9650                      airport seven    2
## 9651                    airport several    2
## 9652                       airport some    2
## 9653                     airport struck    2
## 9654                       airport then    2
## 9655                      airport three    2
## 9656                    airport traffic    2
## 9657                       airport were    2
## 9658                  airport witnesses    2
## 9659                     airspeed after    2
## 9660                   airspeed dropped    2
## 9661                       airspeed for    2
## 9662               airspeed indications    2
## 9663                 airspeed indicator    2
## 9664                        airstrip at    2
## 9665                        airstrip in    2
## 9666                        airways and    2
## 9667            airworthiness directive    2
## 9668                         alarm that    2
## 9669                         alaska and    2
## 9670                 alcohol impairment    2
## 9671                         alcohol of    2
## 9672               alcoholic impairment    2
## 9673                          alert and    2
## 9674                       alert system    2
## 9675                           alert to    2
## 9676                       alertness on    2
## 9677                   alexandria egypt    2
## 9678                       aligned with    2
## 9679                             all 12    2
## 9680                             all 19    2
## 9681                          all eight    2
## 9682                     all electrical    2
## 9683                        all engines    2
## 9684                          all forty    2
## 9685                     all instrument    2
## 9686                      all occupants    2
## 9687                          all power    2
## 9688                            all six    2
## 9689                    allied fighters    2
## 9690                        allowed his    2
## 9691                     almaza airport    2
## 9692                    almost complete    2
## 9693                   almost identical    2
## 9694                 almost immediately    2
## 9695                         almost the    2
## 9696                        almost zero    2
## 9697                    aloha airline's    2
## 9698                           alone on    2
## 9699                     already passed    2
## 9700                          also been    2
## 9701                   also contributed    2
## 9702                        also failed    2
## 9703                       also ignored    2
## 9704                            also it    2
## 9705                          also said    2
## 9706                 alternate airfield    2
## 9707              alternate destination    2
## 9708                  alternate landing    2
## 9709                 alternate probable    2
## 9710                     alternate tank    2
## 9711                     alternate vent    2
## 9712                         although a    2
## 9713                        although it    2
## 9714                       although she    2
## 9715                      although they    2
## 9716                       altimeter he    2
## 9717                      altimeters to    2
## 9718                   altitude acquire    2
## 9719                     altitude alert    2
## 9720                      altitude also    2
## 9721                        altitude as    2
## 9722                   altitude despite    2
## 9723                    altitude either    2
## 9724                    altitude failed    2
## 9725                  altitude improper    2
## 9726                      altitude into    2
## 9727                      altitude lost    2
## 9728                     altitude lower    2
## 9729                       altitude not    2
## 9730                      altitude over    2
## 9731                   altitude overran    2
## 9732                altitude prescribed    2
## 9733                altitude separation    2
## 9734                   altitude settled    2
## 9735                   altitude shortly    2
## 9736                      altitude soon    2
## 9737                     altitude stall    2
## 9738                    altitude struck    2
## 9739                      altitude that    2
## 9740                      altitude upon    2
## 9741                      altitude when    2
## 9742                           am pilot    2
## 9743                      amazon forest    2
## 9744                      amazon jungle    2
## 9745                       amber airway    2
## 9746                     amelia earhart    2
## 9747                         amounts of    2
## 9748                          an 11,000    2
## 9749                              an 18    2
## 9750                     an accelerated    2
## 9751                      an additional    2
## 9752                        an adequate    2
## 9753                        an adjacent    2
## 9754                          an aerial    2
## 9755                        an airfield    2
## 9756                        an airliner    2
## 9757                        an airspeed    2
## 9758                   an airworthiness    2
## 9759                        an american    2
## 9760                            an anti    2
## 9761                            an army    2
## 9762                      an artificial    2
## 9763                      an authorized    2
## 9764                       an automated    2
## 9765                      an automobile    2
## 9766                       an avalanche    2
## 9767                          an effort    2
## 9768                        an elevator    2
## 9769                        an engineer    2
## 9770                       an erroneous    2
## 9771                       an estimated    2
## 9772                     an experienced    2
## 9773                        an exposive    2
## 9774                          an extent    2
## 9775                           an icing    2
## 9776                             an icy    2
## 9777                              an il    2
## 9778                       an immediate    2
## 9779                      an improperly    2
## 9780                    an intersection    2
## 9781                        an inverted    2
## 9782                      an irrigation    2
## 9783                        an isolated    2
## 9784                         an italian    2
## 9785                             an old    2
## 9786                           an organ    2
## 9787                     an oscillation    2
## 9788                        an overcast    2
## 9789                         an overrun    2
## 9790                          an oxygen    2
## 9791                     an unairworthy    2
## 9792                    an unidentified    2
## 9793                   an unintentional    2
## 9794                      an unoccupied    2
## 9795                        an unstable    2
## 9796                       anchor point    2
## 9797                       anchorage to    2
## 9798                              and 1    2
## 9799                             and 14    2
## 9800                             and 20    2
## 9801                          and 5,000    2
## 9802                      and abandoned    2
## 9803                        and aborted    2
## 9804                        and actions    2
## 9805                            and air    2
## 9806                          and alert    2
## 9807                           and also    2
## 9808                       and approved    2
## 9809                        and assumed    2
## 9810                       and attitude    2
## 9811                       and battling    2
## 9812                        and blocked    2
## 9813                         and bodies    2
## 9814                          and break    2
## 9815                           and burn    2
## 9816                        and circled    2
## 9817                       and circling    2
## 9818                        and climbed    2
## 9819                        and clipped    2
## 9820                   and consequently    2
## 9821                     and correction    2
## 9822                          and cross    2
## 9823                       and cruising    2
## 9824                      and dangerous    2
## 9825                           and dark    2
## 9826                       and declared    2
## 9827                      and deficient    2
## 9828                        and delayed    2
## 9829                       and demanded    2
## 9830                      and departure    2
## 9831                      and difficult    2
## 9832                      and direction    2
## 9833                    and disappeared    2
## 9834                     and discharged    2
## 9835                           and down    2
## 9836                        and drifted    2
## 9837                        and drowned    2
## 9838                        and elected    2
## 9839                        and engines    2
## 9840                          and enter    2
## 9841                      and equipment    2
## 9842                        and execute    2
## 9843                       and executed    2
## 9844                      and feathered    2
## 9845                        and federal    2
## 9846                           and five    2
## 9847                         and flames    2
## 9848                            and for    2
## 9849                           and four    2
## 9850                       and freezing    2
## 9851                         and french    2
## 9852                           and fuel    2
## 9853                       and fuselage    2
## 9854                           and gear    2
## 9855                   and geographical    2
## 9856                         and german    2
## 9857                        and getting    2
## 9858                            and got    2
## 9859                         and ground    2
## 9860                         and having    2
## 9861                           and hold    2
## 9862                            and ice    2
## 9863                        and ignored    2
## 9864                   and inadequately    2
## 9865                       and initiate    2
## 9866                      and initiated    2
## 9867                       and injuring    2
## 9868                        and instead    2
## 9869                    and instruments    2
## 9870                   and insufficient    2
## 9871                   and intermittent    2
## 9872                        and jamming    2
## 9873                         and joseph    2
## 9874                      and knowledge    2
## 9875                         and korean    2
## 9876                       and landings    2
## 9877                        and leading    2
## 9878                            and let    2
## 9879                          and light    2
## 9880                     and maintained    2
## 9881                    and maintenance    2
## 9882                       and marginal    2
## 9883                          and misty    2
## 9884                          and model    2
## 9885                        and monitor    2
## 9886                     and monitoring    2
## 9887                          and moved    2
## 9888                     and navigation    2
## 9889                          and never    2
## 9890                           and none    2
## 9891                         and normal    2
## 9892                            and off    2
## 9893                           and only    2
## 9894                       and operated    2
## 9895                     and overloaded    2
## 9896                       and overshot    2
## 9897                     and overturned    2
## 9898                       and pancaked    2
## 9899                           and part    2
## 9900                          and parts    2
## 9901                       and pitching    2
## 9902                         and placed    2
## 9903                       and position    2
## 9904                    and preignition    2
## 9905                      and preparing    2
## 9906                       and probably    2
## 9907                        and pulling    2
## 9908                      and punctured    2
## 9909                           and rate    2
## 9910                             and re    2
## 9911                       and received    2
## 9912                       and recovery    2
## 9913                       and reducing    2
## 9914                        and refused    2
## 9915                       and released    2
## 9916                      and resulting    2
## 9917                      and retracted    2
## 9918                      and returning    2
## 9919                        and running    2
## 9920                         and runway    2
## 9921                      and sentenced    2
## 9922                      and separated    2
## 9923                      and seriously    2
## 9924                            and set    2
## 9925                        and severed    2
## 9926                        and skidded    2
## 9927                        and slammed    2
## 9928                        and sleeves    2
## 9929                         and spread    2
## 9930                          and staff    2
## 9931                       and standard    2
## 9932                         and stated    2
## 9933                         and static    2
## 9934                        and stopped    2
## 9935                         and strike    2
## 9936                       and striking    2
## 9937                          and stuck    2
## 9938                       and suddenly    2
## 9939                       and suffered    2
## 9940                      and technique    2
## 9941                           and told    2
## 9942                        and touched    2
## 9943                        and turning    2
## 9944                         and twenty    2
## 9945                   and unauthorized    2
## 9946                          and under    2
## 9947                       and updrafts    2
## 9948                          and using    2
## 9949                       and vehicles    2
## 9950                         and verify    2
## 9951                           and well    2
## 9952                          and where    2
## 9953                          and which    2
## 9954                      and windshear    2
## 9955                          and windy    2
## 9956                        and without    2
## 9957                          and would    2
## 9958                       and wreckage    2
## 9959                        angeles the    2
## 9960                       angle during    2
## 9961                    angle increased    2
## 9962                           angle to    2
## 9963                      ankara turkey    2
## 9964                     announced that    2
## 9965                    another attempt    2
## 9966                       another both    2
## 9967                     another engine    2
## 9968                 another helicopter    2
## 9969                    another landing    2
## 9970                      antenna tower    2
## 9971                         antonov 12    2
## 9972                             any of    2
## 9973                       any problems    2
## 9974                           apart at    2
## 9975                         apart from    2
## 9976                 apartment building    2
## 9977                   apparent attempt    2
## 9978                  apparently caused    2
## 9979                    apparently flew    2
## 9980                      apparently in    2
## 9981                          appear to    2
## 9982                        appeared in    2
## 9983                    appeared normal    2
## 9984                      apple orchard    2
## 9985                         applied at    2
## 9986                         applied by    2
## 9987                      apply reverse    2
## 9988                          apply the    2
## 9989                        apporach to    2
## 9990                     appreciate the    2
## 9991                        approach 18    2
## 9992                         approach 2    2
## 9993                         approach 4    2
## 9994                     approach along    2
## 9995                      approach area    2
## 9996                   approach because    2
## 9997                      approach both    2
## 9998                  approach briefing    2
## 9999                     approach cause    2
## 10000                approach clearance    2
## 10001                approach conducted    2
## 10002             approach contributing    2
## 10003               approach controlled    2
## 10004               approach descending    2
## 10005                  approach despite    2
## 10006                  approach factors    2
## 10007                      approach fix    2
## 10008                  approach landing    2
## 10009                    approach light    2
## 10010             approach navigational    2
## 10011                       approach on    2
## 10012                      approach one    2
## 10013                 approach patterns    2
## 10014                     approach poor    2
## 10015                  approach profile    2
## 10016                  approach reasons    2
## 10017                  approach stalled    2
## 10018                    approach there    2
## 10019                     approach this    2
## 10020                  approach through    2
## 10021                approach undershot    2
## 10022                     approach went    2
## 10023                     approaches in    2
## 10024                     approaches to    2
## 10025                    approaching in    2
## 10026               approved instrument    2
## 10027                 approximately 100    2
## 10028                   approximately 2    2
## 10029                  approximately 20    2
## 10030                 approximately 200    2
## 10031                  approximately 30    2
## 10032                 approximately 450    2
## 10033                 approximately 550    2
## 10034                         apron the    2
## 10035                       arabian sea    2
## 10036                       are running    2
## 10037                            area 1    2
## 10038                            area 2    2
## 10039                            area 3    2
## 10040                area approximately    2
## 10041                  area contributed    2
## 10042                          area due    2
## 10043                     area exploded    2
## 10044                      area killing    2
## 10045                         area near    2
## 10046                        area short    2
## 10047                     area striking    2
## 10048                      area without    2
## 10049                          areas of    2
## 10050                         areas the    2
## 10051                          army air    2
## 10052                        army flyer    2
## 10053                    around crashed    2
## 10054                        around due    2
## 10055                    around failure    2
## 10056                  around following    2
## 10057                        around for    2
## 10058                         around he    2
## 10059                around immediately    2
## 10060                   around improper    2
## 10061                   around maneuver    2
## 10062                      around power    2
## 10063                     around struck    2
## 10064                      around while    2
## 10065                        arrival at    2
## 10066                        arrival of    2
## 10067                         arrive at    2
## 10068                           as four    2
## 10069                      as indicated    2
## 10070                        as planned    2
## 10071                       as possible    2
## 10072                      as specified    2
## 10073                          as speed    2
## 10074                            as was    2
## 10075                         asked for    2
## 10076                      assembly and    2
## 10077                  assembly crashed    2
## 10078                     assessment of    2
## 10079                      assumed they    2
## 10080                    assumptions in    2
## 10081                       assure that    2
## 10082                  asymmetric power    2
## 10083               asymmetrical thrust    2
## 10084                             at 01    2
## 10085                             at 02    2
## 10086                          at 1,000    2
## 10087                          at 1,200    2
## 10088                          at 1,500    2
## 10089                          at 1,700    2
## 10090                             at 10    2
## 10091                         at 10,500    2
## 10092                             at 11    2
## 10093                         at 11,500    2
## 10094                         at 12,000    2
## 10095                         at 12,500    2
## 10096                             at 13    2
## 10097                             at 16    2
## 10098                         at 16,000    2
## 10099                          at 2,300    2
## 10100                          at 2,400    2
## 10101                          at 2,800    2
## 10102                             at 20    2
## 10103                             at 22    2
## 10104                            at 300    2
## 10105                          at 4,100    2
## 10106                          at 4,300    2
## 10107                          at 4,500    2
## 10108                          at 6,200    2
## 10109                            at 700    2
## 10110                          at 8,000    2
## 10111                          at 8,800    2
## 10112                            at 800    2
## 10113                            at 900    2
## 10114                            at all    2
## 10115                         at almost    2
## 10116                       at altitude    2
## 10117                         at batumi    2
## 10118                          at cairo    2
## 10119                     at casablanca    2
## 10120                     at charleston    2
## 10121                        at chicago    2
## 10122                      at congonhas    2
## 10123                         at dulles    2
## 10124                      at excessive    2
## 10125                          at fl100    2
## 10126                          at fl130    2
## 10127                          at fl150    2
## 10128                          at fl240    2
## 10129                          at fl270    2
## 10130                          at fl330    2
## 10131                          at fl350    2
## 10132                       at heathrow    2
## 10133                         at higher    2
## 10134                           at idle    2
## 10135                         at impact    2
## 10136                        at irkutsk    2
## 10137                          at kabul    2
## 10138                      at kathmandu    2
## 10139                       at kinshasa    2
## 10140                           at kung    2
## 10141                          at lajes    2
## 10142                            at las    2
## 10143                             at le    2
## 10144                         at london    2
## 10145                            at los    2
## 10146                          at lukla    2
## 10147                      at maiquetia    2
## 10148                        at masbate    2
## 10149                       at monterey    2
## 10150                           at over    2
## 10151                           at port    2
## 10152                         at quemoy    2
## 10153                            at rio    2
## 10154                          at santa    2
## 10155                          at simon    2
## 10156                         at taking    2
## 10157                    at temperature    2
## 10158                          at tokyo    2
## 10159                        at toronto    2
## 10160                         at travis    2
## 10161                            at tri    2
## 10162                         at vienna    2
## 10163                          at which    2
## 10164                         atc about    2
## 10165                    atc assistance    2
## 10166                          atc crew    2
## 10167                           atc due    2
## 10168                            atc he    2
## 10169                          atc lack    2
## 10170                            atc of    2
## 10171                          atc they    2
## 10172                           atc was    2
## 10173                           atc who    2
## 10174                        athens the    2
## 10175                            atop a    2
## 10176                            atr 72    2
## 10177                      attached the    2
## 10178                       attached to    2
## 10179                  attachment bolts    2
## 10180                attachment fitting    2
## 10181                    attachments to    2
## 10182                     attack during    2
## 10183                 attain sufficient    2
## 10184                       attaining a    2
## 10185                       attemping a    2
## 10186                        attempt an    2
## 10187                      attempted at    2
## 10188                     attempted but    2
## 10189                  attempted forced    2
## 10190               attempted operation    2
## 10191                     attendant and    2
## 10192                    attitude after    2
## 10193                       attitude at    2
## 10194                   attitude before    2
## 10195                 attitude director    2
## 10196                     attitude from    2
## 10197                       attitude in    2
## 10198               attitude indicators    2
## 10199                     attitude into    2
## 10200                attitude reference    2
## 10201                attitude resulting    2
## 10202                    attitude while    2
## 10203                   attributable to    2
## 10204                    aurora airport    2
## 10205                     authority the    2
## 10206               authorized altitude    2
## 10207             authorized instrument    2
## 10208                authorized minimum    2
## 10209                     authorized to    2
## 10210                     auto throttle    2
## 10211                   autofeather the    2
## 10212                  automated flight    2
## 10213               automatic direction    2
## 10214                 automatically and    2
## 10215                automobile killing    2
## 10216              autopilot disengaged    2
## 10217                     autopilot the    2
## 10218                      autopilot to    2
## 10219                autothrottle speed    2
## 10220                    auxiliary fuel    2
## 10221             available information    2
## 10222                   available power    2
## 10223                     available the    2
## 10224              aviation authorities    2
## 10225                 aviation disaster    2
## 10226                       aviator was    2
## 10227                         avoid bad    2
## 10228                     avoid concept    2
## 10229                       avoid heavy    2
## 10230                 avoid overflowing    2
## 10231                     avoid terrain    2
## 10232                      avoidance of    2
## 10233                        avro anson    2
## 10234                     awareness the    2
## 10235                   awareness while    2
## 10236                          away the    2
## 10237                             b 747    2
## 10238                             b 757    2
## 10239                        back after    2
## 10240                           back by    2
## 10241                         back into    2
## 10242                       back toward    2
## 10243                        back while    2
## 10244                        backed out    2
## 10245                           bag the    2
## 10246                   baggage shifted    2
## 10247                        bailed out    2
## 10248               balance limitations    2
## 10249                           ball of    2
## 10250                      bandar abbas    2
## 10251                     bank attitude    2
## 10252                     banking angle    2
## 10253                        banking to    2
## 10254                       barely able    2
## 10255                     barthãƒâ lãƒâ    2
## 10256                      base crashed    2
## 10257                       base during    2
## 10258                      base failure    2
## 10259                         base near    2
## 10260                        base there    2
## 10261                         base turn    2
## 10262                   baseball player    2
## 10263                      basic flight    2
## 10264                   basketball team    2
## 10265                battery electrical    2
## 10266                   battling strong    2
## 10267                             bay 6    2
## 10268                         bay after    2
## 10269                            bay an    2
## 10270                 bay approximately    2
## 10271                            bay in    2
## 10272                            bay of    2
## 10273                             be an    2
## 10274                     be controlled    2
## 10275                       be effected    2
## 10276                       be equipped    2
## 10277                       be exceeded    2
## 10278                       be expected    2
## 10279                       be extended    2
## 10280                      be installed    2
## 10281                    be intoxicated    2
## 10282                         be killed    2
## 10283                       be obtained    2
## 10284                         be placed    2
## 10285                     be proceeding    2
## 10286                      be retracted    2
## 10287                           be shot    2
## 10288                         be sucked    2
## 10289                         be turned    2
## 10290                          beach in    2
## 10291                        beacon and    2
## 10292                        beacon not    2
## 10293                        beacon the    2
## 10294                        bearing of    2
## 10295                       bearing the    2
## 10296                     bearings from    2
## 10297                   became critical    2
## 10298                  became entangled    2
## 10299                 became inevitable    2
## 10300                   because another    2
## 10301                        because he    2
## 10302                beechcraft failure    2
## 10303                    beechcraft the    2
## 10304                   been associated    2
## 10305                       been caused    2
## 10306                     been diverted    2
## 10307                       been flying    2
## 10308                        been found    2
## 10309                been inadvertently    2
## 10310                      been started    2
## 10311                       been struck    2
## 10312                        been taken    2
## 10313                          been the    2
## 10314                    been theorized    2
## 10315                       been turned    2
## 10316                         been very    2
## 10317                     been weakened    2
## 10318                    been windshear    2
## 10319                   before aircraft    2
## 10320                   before arriving    2
## 10321                 before attempting    2
## 10322                   before breaking    2
## 10323                        before but    2
## 10324               before disappearing    2
## 10325                       before nose    2
## 10326                    began climbing    2
## 10327                        behind one    2
## 10328                        behind the    2
## 10329                being accidentally    2
## 10330                     being allowed    2
## 10331                    being attacked    2
## 10332                   being conducted    2
## 10333                       being given    2
## 10334                    being hijacked    2
## 10335                          being on    2
## 10336                      being thrown    2
## 10337                      being vented    2
## 10338                      being warned    2
## 10339                      belgrade the    2
## 10340                       belief that    2
## 10341                      believe that    2
## 10342                        bell crank    2
## 10343                          belly of    2
## 10344                       belonged to    2
## 10345                  below authorized    2
## 10346                  below prescribed    2
## 10347                       beneath the    2
## 10348              bernardino mountains    2
## 10349                       besides the    2
## 10350                        beta range    2
## 10351                     between tanks    2
## 10352                     between three    2
## 10353                        beyond its    2
## 10354                      beyond their    2
## 10355                        big bopper    2
## 10356                    bird ingestion    2
## 10357                       bird strike    2
## 10358                      bird strikes    2
## 10359                       black smoke    2
## 10360                         blade and    2
## 10361                       blade angle    2
## 10362                       blade broke    2
## 10363                      blade caused    2
## 10364                         blade led    2
## 10365                          blade of    2
## 10366                   blade separated    2
## 10367                     blade spindle    2
## 10368                      blade struck    2
## 10369                        blades and    2
## 10370                       blaming the    2
## 10371                          blew the    2
## 10372                           blew up    2
## 10373                      blocked from    2
## 10374                         blowing a    2
## 10375                         board and    2
## 10376                      boarding the    2
## 10377                          boat and    2
## 10378                          boat the    2
## 10379                         bodies of    2
## 10380                          body was    2
## 10381                    boigny airport    2
## 10382                         bolt hole    2
## 10383                        bolts used    2
## 10384                   bomb containing    2
## 10385                    bomber crashed    2
## 10386                      booster pump    2
## 10387                 bopper richardson    2
## 10388                        boston the    2
## 10389                        botany bay    2
## 10390                       both engine    2
## 10391                       both flight    2
## 10392                         both wing    2
## 10393                        bounce and    2
## 10394                        bounce the    2
## 10395                     bounced again    2
## 10396                        bound area    2
## 10397                       boundary of    2
## 10398                      boundary the    2
## 10399                   boxing champion    2
## 10400                  brake components    2
## 10401                       brake lever    2
## 10402                    braking action    2
## 10403                         break off    2
## 10404                        bridge and    2
## 10405                      briefing and    2
## 10406                         bring the    2
## 10407                         broke and    2
## 10408                     broke through    2
## 10409                        brother of    2
## 10410                    brought aboard    2
## 10411                        brought to    2
## 10412                       brown field    2
## 10413                         brush and    2
## 10414                       buddy holly    2
## 10415                          build up    2
## 10416                 building bursting    2
## 10417                building collapsed    2
## 10418                       building on    2
## 10419                 buildings failure    2
## 10420                     buildings the    2
## 10421                          burned 8    2
## 10422                          burned a    2
## 10423                     burned engine    2
## 10424                burned immediately    2
## 10425                    burned moments    2
## 10426                       burned most    2
## 10427                    burned through    2
## 10428                      burning fuel    2
## 10429                           bus and    2
## 10430                            but at    2
## 10431                       but ditched    2
## 10432                          but four    2
## 10433                           but had    2
## 10434                           but hit    2
## 10435                            but in    2
## 10436                         but never    2
## 10437                            but no    2
## 10438                           but one    2
## 10439                           but she    2
## 10440                          but soon    2
## 10441                       but stalled    2
## 10442                          but they    2
## 10443                          but this    2
## 10444                              by 4    2
## 10445                        by abkhazi    2
## 10446                       by abnormal    2
## 10447                       by accident    2
## 10448                         by airbus    2
## 10449                        by airline    2
## 10450                     by attempting    2
## 10451                           by both    2
## 10452                         by carbon    2
## 10453                     by detonation    2
## 10454                 by disintegration    2
## 10455                       by flooding    2
## 10456                         by french    2
## 10457                         by german    2
## 10458                       by hamilton    2
## 10459                          by human    2
## 10460                          by icing    2
## 10461                       by improper    2
## 10462                    by instruments    2
## 10463                        by israeli    2
## 10464                           by john    2
## 10465                        by jumping    2
## 10466                 by malfunctioning    2
## 10467                       by moderate    2
## 10468                           by only    2
## 10469                          by other    2
## 10470                    by palestinian    2
## 10471                       by pressing    2
## 10472                        by pulling    2
## 10473                         by qantas    2
## 10474                     by separation    2
## 10475                         by severe    2
## 10476                        by turning    2
## 10477                             c 141    2
## 10478                           cabin a    2
## 10479                          cabin at    2
## 10480                   cabin attendant    2
## 10481               cabin decompression    2
## 10482                          cabin in    2
## 10483                     cabin shortly    2
## 10484                         cable and    2
## 10485                    cable mountain    2
## 10486                          cable to    2
## 10487                    cables stalled    2
## 10488                          cagay de    2
## 10489                    california the    2
## 10490                          call and    2
## 10491                         call outs    2
## 10492                          call was    2
## 10493                      callouts and    2
## 10494                      canada geese    2
## 10495                       canal after    2
## 10496                        cane field    2
## 10497                         cannot be    2
## 10498                        canyon the    2
## 10499                     capability of    2
## 10500                       capacity of    2
## 10501                        cape verde    2
## 10502                      capital city    2
## 10503                       capsule and    2
## 10504                  captain's action    2
## 10505                    captain's poor    2
## 10506                     captain after    2
## 10507                     captain began    2
## 10508              captain deliberately    2
## 10509                    captain during    2
## 10510                   captain elected    2
## 10511                       captain for    2
## 10512                    captain losing    2
## 10513                      captain lost    2
## 10514                      captain made    2
## 10515                 captain misjudged    2
## 10516                   captain ordered    2
## 10517                       captain out    2
## 10518                 captain sustained    2
## 10519                      captain then    2
## 10520                        car driver    2
## 10521                       car killing    2
## 10522                    carburetor ice    2
## 10523                  carelessness and    2
## 10524                       cargo after    2
## 10525                        cargo area    2
## 10526                     cargo crashed    2
## 10527                     cargo loading    2
## 10528                  caribbean island    2
## 10529                       carried the    2
## 10530                 carrying american    2
## 10531                       carrying an    2
## 10532             carrying construction    2
## 10533                  carrying freight    2
## 10534                   carrying french    2
## 10535             carrying humanitarian    2
## 10536                     carrying mail    2
## 10537                  carrying members    2
## 10538                      carrying oil    2
## 10539                   cartwheeled the    2
## 10540                       caspian sea    2
## 10541                   caught fire.the    2
## 10542                           cause a    2
## 10543                         cause for    2
## 10544                    cause occurred    2
## 10545                     cause remains    2
## 10546                         cause see    2
## 10547                          cause to    2
## 10548                        caused one    2
## 10549                    causes include    2
## 10550                         causes of    2
## 10551                       causing all    2
## 10552                   causing failure    2
## 10553                    causing severe    2
## 10554                       caution and    2
## 10555                          cebu the    2
## 10556                       ceiling was    2
## 10557                      cemetery and    2
## 10558                      cemetery the    2
## 10559                        center and    2
## 10560                    center between    2
## 10561                    center section    2
## 10562                        center the    2
## 10563                         cerro del    2
## 10564                certain conditions    2
## 10565                  certification of    2
## 10566                         cessna in    2
## 10567                     cessna killed    2
## 10568                       cessna none    2
## 10569                        cessna one    2
## 10570                        cessna was    2
## 10571                       cessna were    2
## 10572                        change the    2
## 10573                         change to    2
## 10574                        changed by    2
## 10575                    changed course    2
## 10576                     channel after    2
## 10577                       channel and    2
## 10578                        channel by    2
## 10579                        charged in    2
## 10580                         chart and    2
## 10581                   charter crashed    2
## 10582                  chartered flight    2
## 10583                   chartered plane    2
## 10584                       check lists    2
## 10585                       check pilot    2
## 10586              checklist procedures    2
## 10587                     checklist the    2
## 10588                         chile the    2
## 10589                        chimney of    2
## 10590                     chimney while    2
## 10591                       chinese air    2
## 10592                chingshan mountain    2
## 10593                         choose to    2
## 10594                     cigarette the    2
## 10595                        circle the    2
## 10596                      circled back    2
## 10597                       circled the    2
## 10598                   circuit breaker    2
## 10599                  circuit breakers    2
## 10600                        circuit in    2
## 10601                  circuit occurred    2
## 10602                  circumnavigate a    2
## 10603               circumstances after    2
## 10604                  circumstances of    2
## 10605                  circumstances on    2
## 10606                        city after    2
## 10607                           city in    2
## 10608                           city to    2
## 10609                         city with    2
## 10610                      civilian and    2
## 10611            claimed responsibility    2
## 10612                       claimed the    2
## 10613                 cleaning vehicles    2
## 10614                     clear weather    2
## 10615               clearance altitudes    2
## 10616                     clearance and    2
## 10617                      clearance by    2
## 10618            clearance contributing    2
## 10619                  clearance during    2
## 10620                  clearance limits    2
## 10621                      clearance of    2
## 10622                   clearance which    2
## 10623                         cleared a    2
## 10624                      clearing the    2
## 10625                          cliff at    2
## 10626                      cliff during    2
## 10627                         cliff the    2
## 10628                  climb capability    2
## 10629                         climb for    2
## 10630                 climb immediately    2
## 10631                          climb on    2
## 10632                         climb one    2
## 10633                        climb over    2
## 10634                       climb phase    2
## 10635                       climb power    2
## 10636                     climb stalled    2
## 10637                     climb takeoff    2
## 10638                       climb there    2
## 10639                      climbed away    2
## 10640                    climbed slowly    2
## 10641                      climbing and    2
## 10642                       climbing in    2
## 10643                     climbing left    2
## 10644                      climbing out    2
## 10645                       clipped the    2
## 10646                  clipped treetops    2
## 10647                   clipper empress    2
## 10648                       clipper the    2
## 10649                        clipping a    2
## 10650                   close proximity    2
## 10651                        closed and    2
## 10652                         closed to    2
## 10653                        cloud bank    2
## 10654                     cloud ceiling    2
## 10655                    cloud shrouded    2
## 10656                        cloud tops    2
## 10657                          clump of    2
## 10658                         co pilots    2
## 10659                    cockpit debris    2
## 10660                      cockpit door    2
## 10661                    cockpit duties    2
## 10662                     cockpit while    2
## 10663                         coin toss    2
## 10664                 collapsed causing    2
## 10665                     collapsed the    2
## 10666                      collided one    2
## 10667                  collision course    2
## 10668                 collision crashed    2
## 10669                    collision over    2
## 10670                  collision twenty    2
## 10671                  colombian border    2
## 10672                      columbia the    2
## 10673                        column and    2
## 10674                    combustion air    2
## 10675                           come in    2
## 10676                        come loose    2
## 10677                          come out    2
## 10678                       command and    2
## 10679                    command during    2
## 10680                     command which    2
## 10681                      commanded it    2
## 10682               commander's failure    2
## 10683                      commander to    2
## 10684                   commencement of    2
## 10685                    commercial air    2
## 10686                 commercial flight    2
## 10687                  commercial pilot    2
## 10688                    commit suicide    2
## 10689                 committed suicide    2
## 10690                committing suicide    2
## 10691                 communication and    2
## 10692                communication with    2
## 10693                communications and    2
## 10694                communications the    2
## 10695                  communist ground    2
## 10696                company's standard    2
## 10697                company directives    2
## 10698                    company flight    2
## 10699                company operations    2
## 10700                company procedures    2
## 10701               compartment causing    2
## 10702               compartment crashed    2
## 10703                       compass and    2
## 10704                       compass the    2
## 10705                    compensate for    2
## 10706                        complete a    2
## 10707                  complete failure    2
## 10708                      complete the    2
## 10709                     component and    2
## 10710                    components the    2
## 10711                    comprehend the    2
## 10712               compressor coupling    2
## 10713                  compressor stall    2
## 10714                   computer failed    2
## 10715                   computer system    2
## 10716                    concerning the    2
## 10717                concrete perimeter    2
## 10718                       condition a    2
## 10719                 condition crashed    2
## 10720                    condition from    2
## 10721               conditioning system    2
## 10722                   conditions also    2
## 10723                     conditions an    2
## 10724             conditions associated    2
## 10725            conditions disappeared    2
## 10726                 conditions flying    2
## 10727              conditions following    2
## 10728                 conditions former    2
## 10729                    conditions hit    2
## 10730                  conditions icing    2
## 10731                     conditions it    2
## 10732             conditions navigation    2
## 10733                  conditions pilot    2
## 10734                conditions spatial    2
## 10735                  conditions where    2
## 10736               conditions wreckage    2
## 10737                         conduct a    2
## 10738                   conducted under    2
## 10739                 configuration and    2
## 10740                configuration with    2
## 10741                     confined area    2
## 10742                       confines of    2
## 10743                        conform to    2
## 10744                      confused the    2
## 10745                 confusion between    2
## 10746                     confusion the    2
## 10747                 congested traffic    2
## 10748                      connected to    2
## 10749                connection between    2
## 10750                   connection with    2
## 10751                  consequently the    2
## 10752                considered factors    2
## 10753                    considered the    2
## 10754            construction materials    2
## 10755              construction workers    2
## 10756                        contact in    2
## 10757                    contact menhir    2
## 10758                     contacted and    2
## 10759                   contacted trees    2
## 10760                    continue under    2
## 10761                     continue with    2
## 10762                 continued descent    2
## 10763                  continued flying    2
## 10764                     continued for    2
## 10765                      continued in    2
## 10766                    continuing vfr    2
## 10767                        contol the    2
## 10768                contributory cause    2
## 10769               contributory causes    2
## 10770               contributory factor    2
## 10771              contributory factors    2
## 10772                         control a    2
## 10773                  control airspeed    2
## 10774                      control area    2
## 10775                     control cable    2
## 10776                       control car    2
## 10777                    control center    2
## 10778                     control crash    2
## 10779                   control factors    2
## 10780                       control for    2
## 10781                    control forces    2
## 10782                      control lock    2
## 10783                     control locks    2
## 10784                        control on    2
## 10785                        control or    2
## 10786                 control personnel    2
## 10787                  control possibly    2
## 10788                  control problems    2
## 10789                   control systems    2
## 10790                     control wheel    2
## 10791                     control which    2
## 10792                      control with    2
## 10793                controlled crashed    2
## 10794                controlled descent    2
## 10795                controller crashed    2
## 10796                    controller the    2
## 10797                    controller who    2
## 10798                      controls but    2
## 10799                   controls during    2
## 10800                       controls of    2
## 10801                       controls on    2
## 10802                       controls to    2
## 10803                    controls while    2
## 10804           controversy surrounding    2
## 10805                      convair crew    2
## 10806                      convair were    2
## 10807                     convicted and    2
## 10808                      convicted of    2
## 10809                       copilot and    2
## 10810                      copilot were    2
## 10811                         core lock    2
## 10812                   corporation the    2
## 10813                         corps air    2
## 10814                  correct altitude    2
## 10815                        correct an    2
## 10816                    correct flight    2
## 10817                       correct for    2
## 10818                      corrected by    2
## 10819                    corrections in    2
## 10820                    correlation of    2
## 10821                     corrosion the    2
## 10822                          could do    2
## 10823                        could land    2
## 10824                          could no    2
## 10825                         could see    2
## 10826                      couldn't get    2
## 10827                  coupling adapter    2
## 10828                   course approach    2
## 10829                         course as    2
## 10830                     course during    2
## 10831                      course until    2
## 10832                      covered high    2
## 10833                     covered ridge    2
## 10834                       covered the    2
## 10835                       cracking of    2
## 10836                    cracks crashed    2
## 10837                      crank system    2
## 10838                       crash along    2
## 10839                          crash an    2
## 10840                       crash could    2
## 10841                     crash shortly    2
## 10842                     crashed 1,200    2
## 10843                     crashed 1,300    2
## 10844                       crashed 1.2    2
## 10845                      crashed 1.25    2
## 10846                        crashed 13    2
## 10847                        crashed 18    2
## 10848                        crashed 24    2
## 10849                        crashed 26    2
## 10850                       crashed 2km    2
## 10851                        crashed 35    2
## 10852                        crashed 50    2
## 10853                       crashed 500    2
## 10854                         crashed 8    2
## 10855                   crashed against    2
## 10856                    crashed almost    2
## 10857                      crashed atop    2
## 10858                   crashed because    2
## 10859                    crashed before    2
## 10860                   crashed between    2
## 10861                       crashed but    2
## 10862                     crashed eight    2
## 10863                    crashed engine    2
## 10864                      crashed high    2
## 10865                       crashed out    2
## 10866               crashed overloading    2
## 10867                      crashed shot    2
## 10868                      crashed soon    2
## 10869                   crashed stalled    2
## 10870                     crashed there    2
## 10871                       crashed two    2
## 10872                   crashed weather    2
## 10873                    crashing 3,000    2
## 10874                      crashing and    2
## 10875                        creating a    2
## 10876               crew's inexperience    2
## 10877          crew's misinterpretation    2
## 10878              crew's mismanagement    2
## 10879                        crew's non    2
## 10880                    crew abandoned    2
## 10881                        crew asked    2
## 10882                       crew choose    2
## 10883                  crew compartment    2
## 10884                       crew didn't    2
## 10885                  crew distraction    2
## 10886                      crew elected    2
## 10887                    crew erroneous    2
## 10888                    crew following    2
## 10889                       crew forgot    2
## 10890                        crew heard    2
## 10891                          crew hit    2
## 10892                      crew ignored    2
## 10893                     crew improper    2
## 10894                  crew incorrectly    2
## 10895                       crew killed    2
## 10896                          crew may    2
## 10897                        crew never    2
## 10898                      crew noticed    2
## 10899                  crew performance    2
## 10900                        crew pilot    2
## 10901                   crew procedural    2
## 10902                     crew received    2
## 10903                      crew started    2
## 10904                      crew steered    2
## 10905                     crew survived    2
## 10906                         crew that    2
## 10907                  crew transferred    2
## 10908                        crew until    2
## 10909                         crews and    2
## 10910                   critical height    2
## 10911                     critical loss    2
## 10912                    critical phase    2
## 10913                critical situation    2
## 10914                        cross wind    2
## 10915                      crossing the    2
## 10916                          crowd of    2
## 10917                      cruise pitch    2
## 10918                      cruise speed    2
## 10919                    cruising along    2
## 10920                       cruising by    2
## 10921                      cruising the    2
## 10922                        crushed to    2
## 10923                    culminating in    2
## 10924                    cumbal volcano    2
## 10925                          cut fuel    2
## 10926                            cv 880    2
## 10927                      daily waters    2
## 10928                       dallas fort    2
## 10929                           dam the    2
## 10930                         damaged a    2
## 10931                 dangerous terrain    2
## 10932                          dark and    2
## 10933                         dark with    2
## 10934                      darkness the    2
## 10935                     darkness with    2
## 10936                       data showed    2
## 10937                      daughter and    2
## 10938                            day in    2
## 10939                            day of    2
## 10940                            day on    2
## 10941                      daylight and    2
## 10942                       daylight in    2
## 10943                              dc 2    2
## 10944                         de france    2
## 10945                   deactivated the    2
## 10946                       dead bodies    2
## 10947                     dead included    2
## 10948                          dead the    2
## 10949                         deal with    2
## 10950                          death of    2
## 10951                         deaths of    2
## 10952                         deaths on    2
## 10953                       debris from    2
## 10954                       debris over    2
## 10955                         decide to    2
## 10956                       decided not    2
## 10957                 decision altitude    2
## 10958                  decision crashed    2
## 10959                      decision was    2
## 10960                      decisions by    2
## 10961                           deck of    2
## 10962                        declare an    2
## 10963                         deep snow    2
## 10964                         defect in    2
## 10965                   defective stall    2
## 10966                  deficient design    2
## 10967                     deflection of    2
## 10968                      degraded the    2
## 10969                       degree bank    2
## 10970                       degree that    2
## 10971                        degrees 40    2
## 10972                     degrees flaps    2
## 10973                        degrees in    2
## 10974                        degrees it    2
## 10975                       degrees off    2
## 10976                        degrees to    2
## 10977                      degrees when    2
## 10978                     deicing boots    2
## 10979                          delay in    2
## 10980                        delayed in    2
## 10981                      delaying the    2
## 10982                         delays in    2
## 10983                     delhi airport    2
## 10984                        delta crew    2
## 10985                        demand air    2
## 10986                       demanded to    2
## 10987                     demolished by    2
## 10988                        denver the    2
## 10989                         denver to    2
## 10990                         depart in    2
## 10991                    departing from    2
## 10992                      departure in    2
## 10993                      departure of    2
## 10994                      depiction of    2
## 10995                        deploy the    2
## 10996                        des moines    2
## 10997                        descend at    2
## 10998                   descend rapidly    2
## 10999                   descend through    2
## 11000                   descend without    2
## 11001                descended crashing    2
## 11002                    descended from    2
## 11003                     descending at    2
## 11004               descending attitude    2
## 11005                descending between    2
## 11006                descending inbound    2
## 11007            descending prematurely    2
## 11008                     descent after    2
## 11009                        descent by    2
## 11010                      descent crew    2
## 11011                       descent for    2
## 11012                      descent over    2
## 11013                     descent prior    2
## 11014                     descent which    2
## 11015                     descent while    2
## 11016                   descent without    2
## 11017                      described as    2
## 11018                          desert a    2
## 11019                      desert after    2
## 11020                      desert while    2
## 11021                         design by    2
## 11022               design deficiencies    2
## 11023                 designated airway    2
## 11024                      designed for    2
## 11025                       designed to    2
## 11026                       despite two    2
## 11027                    destination as    2
## 11028                    destination at    2
## 11029                  destination when    2
## 11030                  destroyed during    2
## 11031               destroyed following    2
## 11032                      destroyed in    2
## 11033                     detached from    2
## 11034                          detect a    2
## 11035                  detect windshear    2
## 11036                       detected by    2
## 11037                  deterioration of    2
## 11038                    determined but    2
## 11039                    determined for    2
## 11040                determined however    2
## 11041                    determined why    2
## 11042                       detonated a    2
## 11043                    detonation and    2
## 11044              detroit metropolitan    2
## 11045                     developed the    2
## 11046                 developed trouble    2
## 11047                 developing engine    2
## 11048                    development of    2
## 11049                      deviate from    2
## 11050                     deviating off    2
## 11051                  device detonated    2
## 11052                        device was    2
## 11053                       dictated by    2
## 11054                           did the    2
## 11055                        didn't use    2
## 11056                       died aboard    2
## 11057                        died after    2
## 11058                          died and    2
## 11059                      died crashed    2
## 11060                           died on    2
## 11061                      died shortly    2
## 11062                     different and    2
## 11063                     difficult for    2
## 11064                      difficult to    2
## 11065                   difficulties in    2
## 11066                  difficulties the    2
## 11067                 difficulties with    2
## 11068                  difficulty which    2
## 11069             dioxide extinguishers    2
## 11070                        direct the    2
## 11071                       direction a    2
## 11072                  direction finder    2
## 11073                     directly into    2
## 11074                       directly to    2
## 11075                      disabling of    2
## 11076                     disagreed and    2
## 11077                 disappeared again    2
## 11078               disappeared between    2
## 11079                    disappeared in    2
## 11080                    disappeared of    2
## 11081                    disappeared on    2
## 11082               disappeared shortly    2
## 11083                       disaster in    2
## 11084                       disaster to    2
## 11085                           disc in    2
## 11086                  disconnected and    2
## 11087                 discontinuing the    2
## 11088                     discovered in    2
## 11089                   disintegrate in    2
## 11090                  disintegrated on    2
## 11091              disorientation after    2
## 11092             disorientation caused    2
## 11093       disorientation contributing    2
## 11094        disorientation immediately    2
## 11095          disorientation resulting    2
## 11096              disorientation while    2
## 11097                    disoriented in    2
## 11098                       dispatch of    2
## 11099                    dispatcher the    2
## 11100                   displacement of    2
## 11101                      displayed as    2
## 11102                    displayed poor    2
## 11103                      distance the    2
## 11104                   distinguish the    2
## 11105                    distracted the    2
## 11106                   distracted with    2
## 11107                    distraction of    2
## 11108                   distress signal    2
## 11109                       district of    2
## 11110                    district while    2
## 11111                        ditch into    2
## 11112                       ditched 500    2
## 11113                        ditched at    2
## 11114                     ditching into    2
## 11115                       ditching of    2
## 11116                           dive at    2
## 11117                      dive crashed    2
## 11118                        dive which    2
## 11119                   divergent winds    2
## 11120                diversion airfield    2
## 11121                      diversion to    2
## 11122                  diverted because    2
## 11123                      diverted due    2
## 11124                       division of    2
## 11125                              do a    2
## 11126                           do with    2
## 11127                           doing a    2
## 11128                           done so    2
## 11129                           door in    2
## 11130                           door of    2
## 11131                       door opened    2
## 11132                      door opening    2
## 11133                    door resulting    2
## 11134                    dorado airport    2
## 11135                  douglas aircraft    2
## 11136                      down control    2
## 11137                      down crashed    2
## 11138                       down during    2
## 11139                           down of    2
## 11140                        down studs    2
## 11141                         down trim    2
## 11142                         down when    2
## 11143                   downdraft which    2
## 11144                   downdrafts that    2
## 11145                    downdrafts the    2
## 11146                    downward pitch    2
## 11147                          drag and    2
## 11148                        drag chute    2
## 11149                       drain valve    2
## 11150                       drainage on    2
## 11151                      drifted over    2
## 11152                       drive shaft    2
## 11153                       driven fuel    2
## 11154                         driver of    2
## 11155                        driver the    2
## 11156                           drop in    2
## 11157                      dropping off    2
## 11158                   drowned crashed    2
## 11159                             due t    2
## 11160                          dug into    2
## 11161                    dulles airport    2
## 11162                       dum airport    2
## 11163                         dump fuel    2
## 11164                      dumping fuel    2
## 11165                        dune while    2
## 11166                     during engine    2
## 11167                        during his    2
## 11168                       during it's    2
## 11169                    during loading    2
## 11170                during manufacture    2
## 11171                     during severe    2
## 11172                       during this    2
## 11173                   during training    2
## 11174                 during transition    2
## 11175                       dust storms    2
## 11176                         duty time    2
## 11177                     each engine's    2
## 11178                       earlier and    2
## 11179                        earlier in    2
## 11180                           early a    2
## 11181                         early and    2
## 11182                     early descent    2
## 11183                        earth from    2
## 11184                 earthquake relief    2
## 11185                        east china    2
## 11186                        east slope    2
## 11187                       eastern air    2
## 11188                      eastern side    2
## 11189                      edge devices    2
## 11190                         effect of    2
## 11191                      effected the    2
## 11192               effectively monitor    2
## 11193                        eight four    2
## 11194                        eighty two    2
## 11195                         either by    2
## 11196                       either case    2
## 11197                       either from    2
## 11198              either intentionally    2
## 11199                         either to    2
## 11200                        either was    2
## 11201                         ejected a    2
## 11202                          el brega    2
## 11203                          el cable    2
## 11204                         el dorado    2
## 11205                           el toro    2
## 11206                   electra flipped    2
## 11207                 electrical energy    2
## 11208                   electrical fire    2
## 11209                electrical systems    2
## 11210                  electrical wires    2
## 11211                 electrical wiring    2
## 11212                   elevator failed    2
## 11213                       elevator in    2
## 11214                     elevator lock    2
## 11215                  elevator locking    2
## 11216                       elevator to    2
## 11217                     eleven killed    2
## 11218                     eleven others    2
## 11219                 eleven passengers    2
## 11220                  elizabeth taylor    2
## 11221                     embankment of    2
## 11222                       embedded in    2
## 11223                  emergency action    2
## 11224               emergency checklist    2
## 11225                   emergency crash    2
## 11226                    emergency exit    2
## 11227                      emergency of    2
## 11228                   emergency power    2
## 11229               emergency procedure    2
## 11230                  emergency single    2
## 11231                emergency training    2
## 11232                      employees of    2
## 11233                        empty fuel    2
## 11234          encountered difficulties    2
## 11235                   encountered fog    2
## 11236                 encountered heavy    2
## 11237                 encountered icing    2
## 11238                    encountered in    2
## 11239                   encountered low    2
## 11240            encountered turbulence    2
## 11241                   encountering an    2
## 11242                encountering heavy    2
## 11243                   encountering of    2
## 11244                 encountering poor    2
## 11245           encountering turbulence    2
## 11246                           end and    2
## 11247                         ending up    2
## 11248                         engine as    2
## 11249                     engine before    2
## 11250                      engine bleed    2
## 11251                   engine boosting    2
## 11252                       engine came    2
## 11253                      engine cores    2
## 11254                      engine could    2
## 11255                   engine detached    2
## 11256                     engine driven    2
## 11257                     engine failue    2
## 11258                   engine failures    2
## 11259                     engine faiure    2
## 11260                       engine fell    2
## 11261                       engine flew    2
## 11262                    engine landing    2
## 11263                    engine leading    2
## 11264                engine maintenance    2
## 11265                    engine nacelle    2
## 11266               engine necessitated    2
## 11267                         engine no    2
## 11268                        engine oil    2
## 11269                  engine operating    2
## 11270                         engine or    2
## 11271                  engine overshoot    2
## 11272                 engine penetrated    2
## 11273                       engine quit    2
## 11274                    engine reverse    2
## 11275                       engine soon    2
## 11276                   engine suffered    2
## 11277                    engine takeoff    2
## 11278                       engine this    2
## 11279                   engine throttle    2
## 11280            engineer inadvertently    2
## 11281                 engineer survived    2
## 11282                         engines a    2
## 11283                        engines as    2
## 11284                     engines being    2
## 11285                   engines leading    2
## 11286                      engines lost    2
## 11287                        engines no    2
## 11288                engines overheated    2
## 11289                 engines separated    2
## 11290                      engines that    2
## 11291                        engines to    2
## 11292                       engines was    2
## 11293                      engines went    2
## 11294                       english and    2
## 11295                      entangled in    2
## 11296                    entered clouds    2
## 11297                      entered into    2
## 11298                          entry of    2
## 11299          environment contributing    2
## 11300                    environment in    2
## 11301                      equipment in    2
## 11302                    erratic action    2
## 11303                      erroneous in    2
## 11304                  erroneously high    2
## 11305                          error as    2
## 11306                   error attempted    2
## 11307                         error but    2
## 11308                  error controlled    2
## 11309                    error decision    2
## 11310                   error descended    2
## 11311                      error flight    2
## 11312                      error flying    2
## 11313                       error forty    2
## 11314                  error improperly    2
## 11315                   error incorrect    2
## 11316                 error incorrectly    2
## 11317                error navigational    2
## 11318                          error no    2
## 11319                     error pilot's    2
## 11320                      error pilots    2
## 11321                    error possibly    2
## 11322                   error premature    2
## 11323                     error shortly    2
## 11324                      error struck    2
## 11325                         error vfr    2
## 11326                        error were    2
## 11327                       error which    2
## 11328                        errors and    2
## 11329                       errors made    2
## 11330                        errors the    2
## 11331                    erupted aboard    2
## 11332                       erupted and    2
## 11333                     erupted which    2
## 11334                        escaped by    2
## 11335                     especially in    2
## 11336                       establish a    2
## 11337                establish adequate    2
## 11338                  establish visual    2
## 11339                    established on    2
## 11340            established procedures    2
## 11341                  establishing the    2
## 11342                establishing their    2
## 11343                      estimated to    2
## 11344                     evacuated the    2
## 11345                    evaluation and    2
## 11346                     evaluation of    2
## 11347                        even after    2
## 11348                    eventually ran    2
## 11349                   eventually went    2
## 11350                     evidence that    2
## 11351                      evidence the    2
## 11352                    exact position    2
## 11353                        exceed the    2
## 11354                      exceeded and    2
## 11355                      exceeded its    2
## 11356                        except for    2
## 11357                        except one    2
## 11358                 excessive descent    2
## 11359                    excessive fuel    2
## 11360                    excessive nose    2
## 11361                 excessively steep    2
## 11362                 executed approach    2
## 11363                       executed by    2
## 11364                      exercise and    2
## 11365                       exhaust the    2
## 11366                exhaustion crashed    2
## 11367                 exhaustion forced    2
## 11368                     existed along    2
## 11369                      existence of    2
## 11370                       exit before    2
## 11371                         exit from    2
## 11372                          expect a    2
## 11373                       expected to    2
## 11374                     experience of    2
## 11375                    experience the    2
## 11376               experienced extreme    2
## 11377               experienced failure    2
## 11378                experienced severe    2
## 11379           experiencing mechanical    2
## 11380             experiencing problems    2
## 11381                experimental plane    2
## 11382                       explode and    2
## 11383                       exploded as    2
## 11384                       exploded at    2
## 11385                  exploded crashed    2
## 11386                   exploded during    2
## 11387                     exploded into    2
## 11388                  exploded shortly    2
## 11389                     exploding and    2
## 11390                    exploding into    2
## 11391                explosion followed    2
## 11392                 explosion shortly    2
## 11393                   exposive device    2
## 11394                  extended holding    2
## 11395                   extension which    2
## 11396                      extreme nose    2
## 11397                 extremely adverse    2
## 11398                 extremely violent    2
## 11399                              f 89    2
## 11400                      faa approved    2
## 11401                   faa regulations    2
## 11402              facilities available    2
## 11403                          fact the    2
## 11404                      factor after    2
## 11405                    factor related    2
## 11406                       factored in    2
## 11407                factors associated    2
## 11408                 factors including    2
## 11409                        factors of    2
## 11410                     factors which    2
## 11411                     factors while    2
## 11412                          failed a    2
## 11413                         failed at    2
## 11414                    failed because    2
## 11415                    failed engines    2
## 11416                  failed following    2
## 11417                    failed forcing    2
## 11418                       failed from    2
## 11419                       failed fuel    2
## 11420                        failed one    2
## 11421                      failed pilot    2
## 11422                        failure an    2
## 11423                        failure as    2
## 11424                    failure engine    2
## 11425                  failure followed    2
## 11426                    failure forced    2
## 11427               failure immediately    2
## 11428               failure maintenance    2
## 11429                 failure resulting    2
## 11430                      failure shot    2
## 11431                 failure suspected    2
## 11432                   failure without    2
## 11433                      failures the    2
## 11434                        falling at    2
## 11435                      falling from    2
## 11436                      falling snow    2
## 11437                         falls the    2
## 11438                         false the    2
## 11439                      families the    2
## 11440                        family the    2
## 11441                           far aft    2
## 11442                            far as    2
## 11443                        farm after    2
## 11444                       fatal crash    2
## 11445               fatalities occurred    2
## 11446                         father of    2
## 11447                 fatigue corrosion    2
## 11448                        fatigue in    2
## 11449                      fatigue were    2
## 11450                     fatigue which    2
## 11451                          fault in    2
## 11452                         fault the    2
## 11453                  faulty altimiter    2
## 11454                  faulty clearance    2
## 11455                  faulty judgement    2
## 11456                      feathered no    2
## 11457                    feathered when    2
## 11458                 feathering system    2
## 11459                       feed system    2
## 11460                        feed valve    2
## 11461                     feet altitude    2
## 11462                           feet as    2
## 11463                      feet contact    2
## 11464                      feet crashed    2
## 11465                         feet deep    2
## 11466                         feet down    2
## 11467                          feet due    2
## 11468                         feet east    2
## 11469                      feet failure    2
## 11470                         feet high    2
## 11471                           feet it    2
## 11472                          feet msl    2
## 11473                     feet offshore    2
## 11474                      feet stalled    2
## 11475                       feet thirty    2
## 11476                         feet till    2
## 11477                   felix houphouet    2
## 11478                         fell away    2
## 11479                         fell onto    2
## 11480                     fence crossed    2
## 11481                        fence into    2
## 11482                      ferry flight    2
## 11483                   ferrying flight    2
## 11484                  ferrying workers    2
## 11485                          few days    2
## 11486                         few miles    2
## 11487                           field 3    2
## 11488                          field at    2
## 11489                         field but    2
## 11490                       field cause    2
## 11491                      field engine    2
## 11492                         fifty two    2
## 11493                    fight engineer    2
## 11494                      fighter made    2
## 11495                     fighter plane    2
## 11496                     fighter which    2
## 11497                     fighter while    2
## 11498                    fighters while    2
## 11499                      fighting off    2
## 11500                       filled with    2
## 11501                        filming of    2
## 11502                         final and    2
## 11503                         final for    2
## 11504                     final seconds    2
## 11505                   finally crashed    2
## 11506                        finals the    2
## 11507                            find a    2
## 11508                          fins and    2
## 11509                           fire 60    2
## 11510                        fire about    2
## 11511                          fire but    2
## 11512                      fire causing    2
## 11513                       fire ensued    2
## 11514                     fire fighters    2
## 11515                         fire from    2
## 11516                         fire loss    2
## 11517                     fire occurred    2
## 11518                   fire originated    2
## 11519                     fire possibly    2
## 11520                        fire there    2
## 11521                         fire they    2
## 11522                           fire to    2
## 11523                          fire two    2
## 11524                         fire when    2
## 11525                       fire within    2
## 11526                     fired missile    2
## 11527                        fired upon    2
## 11528                         first and    2
## 11529                       first crash    2
## 11530                      first engine    2
## 11531                       first stage    2
## 11532                      fishing site    2
## 11533                       fitting due    2
## 11534                     fitting which    2
## 11535                         five days    2
## 11536                        five miles    2
## 11537                           five on    2
## 11538                       five people    2
## 11539                            fl 150    2
## 11540                            fl 180    2
## 11541                            fl 290    2
## 11542                            fl 300    2
## 11543                            fl 330    2
## 11544                             fl to    2
## 11545                         fl320 the    2
## 11546                         fl350 the    2
## 11547                        flamed out    2
## 11548                 flames controlled    2
## 11549                     flames during    2
## 11550                         flames it    2
## 11551                       flames near    2
## 11552                     flames struck    2
## 11553                      flames there    2
## 11554                      flames three    2
## 11555                        flames two    2
## 11556                      flap setting    2
## 11557                          flaps at    2
## 11558                      flaps during    2
## 11559                         flaps not    2
## 11560                   flaps retracted    2
## 11561                    flaps selected    2
## 11562                         flare and    2
## 11563                          flat the    2
## 11564                           flew at    2
## 11565                          flew for    2
## 11566                          flew off    2
## 11567                         flew over    2
## 11568                        flight 401    2
## 11569                       flight 9877    2
## 11570                         flight an    2
## 11571                      flight bound    2
## 11572                   flight carrying    2
## 11573                  flight condition    2
## 11574               flight contributing    2
## 11575                   flight decision    2
## 11576                   flight departed    2
## 11577                  flight descended    2
## 11578                flight encountered    2
## 11579                    flight factors    2
## 11580                     flight flying    2
## 11581                        flight hit    2
## 11582              flight investigators    2
## 11583                         flight is    2
## 11584                       flight lost    2
## 11585                        flight one    2
## 11586                    flight opening    2
## 11587                 flight originated    2
## 11588                flight preparation    2
## 11589                   flight recorder    2
## 11590                     flight regime    2
## 11591                   flight reported    2
## 11592                  flight resulting    2
## 11593                     flight safety    2
## 11594                      flight seven    2
## 11595                    flight shortly    2
## 11596                   flight suddenly    2
## 11597                       flight test    2
## 11598                    flight through    2
## 11599                       flight took    2
## 11600                    flight towards    2
## 11601                        flight vfr    2
## 11602                        flights in    2
## 11603                      flipped into    2
## 11604                       floated for    2
## 11605                          floor of    2
## 11606                         floors at    2
## 11607                        florida to    2
## 11608                          flow and    2
## 11609                           flow to    2
## 11610                    flowed through    2
## 11611                          flown by    2
## 11612                         flown for    2
## 11613                        flown from    2
## 11614                      flown higher    2
## 11615                        flown into    2
## 11616                       flown under    2
## 11617                      fluid leaked    2
## 11618                       fluid which    2
## 11619                        flutter in    2
## 11620                  fluxgate compass    2
## 11621                        fly around    2
## 11622                       fly despite    2
## 11623                          fly from    2
## 11624                            fly on    2
## 11625                         flyby the    2
## 11626                  flying abilities    2
## 11627                      flying above    2
## 11628                     flying almost    2
## 11629                   flying altitude    2
## 11630                    flying control    2
## 11631                   flying controls    2
## 11632                     flying during    2
## 11633                      flying pilot    2
## 11634                       flying very    2
## 11635                        flying vor    2
## 11636                             fog a    2
## 11637                         fog about    2
## 11638                            fog an    2
## 11639                    fog conditions    2
## 11640                     fog continued    2
## 11641                       fog failure    2
## 11642                        fog flying    2
## 11643                           fog for    2
## 11644                     fog overlying    2
## 11645                          fog snow    2
## 11646                           fog was    2
## 11647                          fog with    2
## 11648                         fog wrong    2
## 11649                  follow emergency    2
## 11650                     follow flight    2
## 11651                        follow ifr    2
## 11652                   follow standard    2
## 11653                        followed a    2
## 11654                 following company    2
## 11655                 following factors    2
## 11656                 following failure    2
## 11657                   following three    2
## 11658                         foot hole    2
## 11659                        foot level    2
## 11660                    football coach    2
## 11661                            for 15    2
## 11662                            for 20    2
## 11663                            for 40    2
## 11664                             for 9    2
## 11665                        for almost    2
## 11666                 for approximately    2
## 11667                    for attempting    2
## 11668                     for clearance    2
## 11669                       for control    2
## 11670                   for determining    2
## 11671                    for earthquake    2
## 11672                         for final    2
## 11673                       for flights    2
## 11674                          for half    2
## 11675                           for ifr    2
## 11676                           for las    2
## 11677                   for maintenance    2
## 11678                          for more    2
## 11679                        for nearly    2
## 11680                         for paris    2
## 11681                     for political    2
## 11682                    for prescribed    2
## 11683                     for refueling    2
## 11684                        for rescue    2
## 11685                        for safety    2
## 11686                      for shooting    2
## 11687                        for taking    2
## 11688                       for terrain    2
## 11689                           for two    2
## 11690                          forced a    2
## 11691                        forces and    2
## 11692                         forces as    2
## 11693                    forces crashed    2
## 11694                     forces during    2
## 11695                         forces to    2
## 11696                     forces troops    2
## 11697                          ford tri    2
## 11698                         forest at    2
## 11699                       forest fire    2
## 11700                         forest on    2
## 11701                 forested mountain    2
## 11702                      formation in    2
## 11703                     formation the    2
## 11704                     fort campbell    2
## 11705                           fort de    2
## 11706                   fort lauderdale    2
## 11707                        forty five    2
## 11708                        forty four    2
## 11709                        forty nine    2
## 11710                         forty six    2
## 11711                   forward baggage    2
## 11712                    forward center    2
## 11713                  forward fuselage    2
## 11714                        forward on    2
## 11715                     forward speed    2
## 11716                    forward thrust    2
## 11717                           found 1    2
## 11718                         found 100    2
## 11719                          found 15    2
## 11720                           found 4    2
## 11721                           found 6    2
## 11722                       found after    2
## 11723                         found and    2
## 11724                        found poor    2
## 11725                       found while    2
## 11726                         four crew    2
## 11727                    four hijackers    2
## 11728                      four minutes    2
## 11729                           four of    2
## 11730                           four on    2
## 11731                        four parts    2
## 11732                       four pieces    2
## 11733                      four seconds    2
## 11734                         four were    2
## 11735                       fox glacier    2
## 11736                       fracture in    2
## 11737                      fracture the    2
## 11738                      fracture was    2
## 11739                         france to    2
## 11740                      francis gary    2
## 11741                       french alps    2
## 11742                       french anti    2
## 11743                  french violinist    2
## 11744                     friendly fire    2
## 11745                       from 14,000    2
## 11746                       from 21,000    2
## 11747                       from 35,000    2
## 11748                        from adana    2
## 11749                        from addis    2
## 11750                          from air    2
## 11751                       from alaska    2
## 11752                       from athens    2
## 11753                        from being    2
## 11754                       from beirut    2
## 11755                      from bermuda    2
## 11756                       from buenos    2
## 11757                         from cebu    2
## 11758                       from ciudad    2
## 11759                      from detroit    2
## 11760                        from drugs    2
## 11761                          from dum    2
## 11762                           from el    2
## 11763                     from exposure    2
## 11764                      from general    2
## 11765                     from heathrow    2
## 11766                          from her    2
## 11767                      from houston    2
## 11768                       from huambo    2
## 11769                      from irkutsk    2
## 11770                          from jfk    2
## 11771                         from kano    2
## 11772                       from kansas    2
## 11773                      from karachi    2
## 11774                       from kariba    2
## 11775                        from lagos    2
## 11776                          from las    2
## 11777                       from lisbon    2
## 11778                       from london    2
## 11779                          from low    2
## 11780                      from lunghwa    2
## 11781                        from medan    2
## 11782                       from merida    2
## 11783                        from miami    2
## 11784                     from montreal    2
## 11785                     from moscow's    2
## 11786                  from mountainous    2
## 11787                      from murtala    2
## 11788                       from newark    2
## 11789                         from orly    2
## 11790                      from rangoon    2
## 11791                          from rio    2
## 11792                        from santa    2
## 11793                          from sao    2
## 11794                     from stansted    2
## 11795                       from taipei    2
## 11796                      from tallinn    2
## 11797                         from that    2
## 11798                      from tripoli    2
## 11799                        from under    2
## 11800                      from uruapan    2
## 11801                         from wake    2
## 11802                   from washington    2
## 11803                       from zurich    2
## 11804                      frontal wave    2
## 11805                          frost on    2
## 11806                             ft 66    2
## 11807                          ft about    2
## 11808                       ft altitude    2
## 11809                             ft an    2
## 11810                           ft crew    2
## 11811                           ft into    2
## 11812                           ft just    2
## 11813                            ft may    2
## 11814                           ft near    2
## 11815                            ft one    2
## 11816                             ft ra    2
## 11817                        ft without    2
## 11818                        fuel after    2
## 11819                          fuel but    2
## 11820                           fuel by    2
## 11821                  fuel consumption    2
## 11822                    fuel crossfeed    2
## 11823                    fuel descended    2
## 11824                       fuel either    2
## 11825                        fuel fumes    2
## 11826                      fuel ignited    2
## 11827                   fuel inadequate    2
## 11828                        fuel lines    2
## 11829                      fuel loading    2
## 11830                    fuel situation    2
## 11831                    fuel starvaion    2
## 11832                         fuel they    2
## 11833                        fuel valve    2
## 11834                        fuel vapor    2
## 11835                       fuel vapors    2
## 11836                         fuel when    2
## 11837                         full down    2
## 11838                      full landing    2
## 11839                         full nose    2
## 11840                        full speed    2
## 11841                    fully extended    2
## 11842                          fumes in    2
## 11843                        fuselage a    2
## 11844                  fuselage causing    2
## 11845                     fuselage slid    2
## 11846                     fuselage were    2
## 11847                          g forces    2
## 11848                           g loads    2
## 11849                      gain control    2
## 11850                    gaining height    2
## 11851                        gander and    2
## 11852                       gary powers    2
## 11853                       gas station    2
## 11854                   gasoline flowed    2
## 11855                          gave him    2
## 11856                      gca minimums    2
## 11857                          gear did    2
## 11858                      gear failure    2
## 11859                          gear had    2
## 11860                        gear light    2
## 11861                  gear malfunction    2
## 11862                           gear on    2
## 11863                      gear trouble    2
## 11864                         gear well    2
## 11865                         geese the    2
## 11866                      general area    2
## 11867                      generated by    2
## 11868                 generator tripped    2
## 11869                      get airborne    2
## 11870                         getting a    2
## 11871                          ghost of    2
## 11872                    giusto airport    2
## 11873                         given for    2
## 11874                        glacier at    2
## 11875                          glide in    2
## 11876                    glideslope and    2
## 11877                 glideslope struck    2
## 11878                    glideslope the    2
## 11879                            go out    2
## 11880                             go to    2
## 11881                        going down    2
## 11882                         gone into    2
## 11883                       good engine    2
## 11884                            got up    2
## 11885                       governor of    2
## 11886                     gpws warnings    2
## 11887                    grande airport    2
## 11888                        gravity in    2
## 11889                        gravity of    2
## 11890                  grenade exploded    2
## 11891                grossly overloaded    2
## 11892                          ground 2    2
## 11893                          ground 8    2
## 11894                   ground bursting    2
## 11895                         ground by    2
## 11896                    ground control    2
## 11897                 ground controller    2
## 11898                ground controllers    2
## 11899                        ground due    2
## 11900                        ground fog    2
## 11901                   ground improper    2
## 11902                         ground it    2
## 11903                       ground just    2
## 11904                       ground left    2
## 11905                      ground level    2
## 11906                  ground personnel    2
## 11907                      ground radio    2
## 11908                     ground severe    2
## 11909                      ground which    2
## 11910                         group the    2
## 11911                          guam and    2
## 11912                      guard cutter    2
## 11913                         guard the    2
## 11914                    guatemala city    2
## 11915                    guerillas with    2
## 11916                      guidance and    2
## 11917                       guidance at    2
## 11918                         guide the    2
## 11919                  guitarist stevie    2
## 11920                        gulf after    2
## 11921                          gulf war    2
## 11922                      gulfport the    2
## 11923                          gun fire    2
## 11924                        gusty wind    2
## 11925                gyroscopic compass    2
## 11926                      had appeared    2
## 11927                       had climbed    2
## 11928                      had collided    2
## 11929                    had difficulty    2
## 11930                       had expired    2
## 11931                     had initiated    2
## 11932                           had its    2
## 11933                          had made    2
## 11934                         had never    2
## 11935                          had seen    2
## 11936                        had severe    2
## 11937                      had survived    2
## 11938                          had they    2
## 11939                       had trouble    2
## 11940                        had turned    2
## 11941                           half of    2
## 11942                          half the    2
## 11943                 hamilton standard    2
## 11944                     hand grenades    2
## 11945                         handle to    2
## 11946                    handling pilot    2
## 11947                      handling the    2
## 11948                    haneda airport    2
## 11949                    happened after    2
## 11950                      harbor after    2
## 11951                      harbor while    2
## 11952                        hard right    2
## 11953                          hard the    2
## 11954                      hardness and    2
## 11955                have authorization    2
## 11956                     have factored    2
## 11957                       have failed    2
## 11958                          have had    2
## 11959                   have influenced    2
## 11960                       have landed    2
## 11961                         have made    2
## 11962                     have possibly    2
## 11963                    have prevented    2
## 11964                     have resulted    2
## 11965                          have run    2
## 11966                      have started    2
## 11967                     have suffered    2
## 11968                   have sufficient    2
## 11969                          have the    2
## 11970                       have turned    2
## 11971                     havilland and    2
## 11972                          having a    2
## 11973                         hazard to    2
## 11974                           he also    2
## 11975                          he asked    2
## 11976                       he couldn't    2
## 11977                      he descended    2
## 11978                          he later    2
## 11979                          he pilot    2
## 11980                        he stalled    2
## 11981                        he started    2
## 11982                     head injuries    2
## 11983                        headed out    2
## 11984                         headed to    2
## 11985                       heading and    2
## 11986                     heading north    2
## 11987                        heading to    2
## 11988                    headwind level    2
## 11989                     headwinds and    2
## 11990                         heard and    2
## 11991                    heard followed    2
## 11992                         heard the    2
## 11993                       heater came    2
## 11994                 heater combustion    2
## 11995                      heavier than    2
## 11996                  heavily forested    2
## 11997                       heavy cloud    2
## 11998                        heavy seas    2
## 11999                   heavy snowstorm    2
## 12000                        height due    2
## 12001                    helicopter but    2
## 12002            helicopter experienced    2
## 12003               helicopter ferrying    2
## 12004               helicopter suddenly    2
## 12005                   helicopter then    2
## 12006                  helicopter which    2
## 12007                  helicopter while    2
## 12008                   helicopters and    2
## 12009                    helicopters at    2
## 12010              helicopters collided    2
## 12011               helicopters crashed    2
## 12012                        her father    2
## 12013                            her to    2
## 12014                         hidden in    2
## 12015                        high angle    2
## 12016                    high frequency    2
## 12017                         high nose    2
## 12018                 high obstructions    2
## 12019                        high power    2
## 12020                       high school    2
## 12021                         high sink    2
## 12022                          high the    2
## 12023                        high waves    2
## 12024                        high while    2
## 12025                    higher terrain    2
## 12026                highway embankment    2
## 12027                      highway near    2
## 12028                       highway the    2
## 12029                    hijacked after    2
## 12030                      hijacker and    2
## 12031                hijacker detonated    2
## 12032                      hijacker set    2
## 12033                    hijackers shot    2
## 12034                    hijackers were    2
## 12035                            hill 6    2
## 12036                           hill as    2
## 12037                     hills shortly    2
## 12038                    hillside after    2
## 12039                       hillside as    2
## 12040                       hillside at    2
## 12041                    hillside while    2
## 12042                             him a    2
## 12043                            him in    2
## 12044                            him of    2
## 12045                       himself and    2
## 12046                       himself the    2
## 12047                        himself to    2
## 12048                      himself with    2
## 12049                       his ability    2
## 12050                      his attitude    2
## 12051                            his co    2
## 12052                     his continued    2
## 12053                         his final    2
## 12054                          his legs    2
## 12055                          his mail    2
## 12056                   his performance    2
## 12057                     his proximity    2
## 12058                          his real    2
## 12059                           his son    2
## 12060                    his subsequent    2
## 12061                           his way    2
## 12062                        history of    2
## 12063                            hit in    2
## 12064                      hit mountain    2
## 12065                    hit powerlines    2
## 12066                       hockey team    2
## 12067                            hold a    2
## 12068                          hold and    2
## 12069                         hold down    2
## 12070                            hold g    2
## 12071                        holding at    2
## 12072                       holding for    2
## 12073                         home from    2
## 12074                           home to    2
## 12075                        horizon or    2
## 12076                   horizons failed    2
## 12077                    horizontal and    2
## 12078                       hospital to    2
## 12079                     hospital with    2
## 12080                  houphouet boigny    2
## 12081                           hour in    2
## 12082                         hour into    2
## 12083                          hour the    2
## 12084                      hours before    2
## 12085                          hours in    2
## 12086                        hours into    2
## 12087                          hours of    2
## 12088                     house crashed    2
## 12089                     house killing    2
## 12090                       house pilot    2
## 12091                    houses crashed    2
## 12092                     houses during    2
## 12093                    houses killing    2
## 12094                        houston to    2
## 12095                          how much    2
## 12096                       however due    2
## 12097                        however it    2
## 12098                      however when    2
## 12099                    howland island    2
## 12100                      hudson river    2
## 12101                    huge explosion    2
## 12102                         human and    2
## 12103                    hundred thirty    2
## 12104                        husband of    2
## 12105                     hydraulic and    2
## 12106               hydraulic emergency    2
## 12107                 hydraulic problem    2
## 12108                    hydraulic pump    2
## 12109                    hydraulics the    2
## 12110                      hydrogen gas    2
## 12111                         i've lost    2
## 12112                               i 5    2
## 12113                     ice formation    2
## 12114                        ice hockey    2
## 12115                     ice ingestion    2
## 12116                           ice was    2
## 12117                           icing a    2
## 12118                       icing after    2
## 12119                          icing at    2
## 12120                   icing condtions    2
## 12121                        icing loss    2
## 12122                    icing official    2
## 12123                          icing on    2
## 12124                     icing systems    2
## 12125                  icing turbulence    2
## 12126                        icy runway    2
## 12127                identical accident    2
## 12128                     identified as    2
## 12129                      identify and    2
## 12130                     idle position    2
## 12131                  idlewild airport    2
## 12132                           ifr and    2
## 12133                      ifr approach    2
## 12134                           ifr the    2
## 12135                       ifr weather    2
## 12136                         ignited a    2
## 12137                        ignited by    2
## 12138                      ignited fuel    2
## 12139                   ignited leaking    2
## 12140                      igniting the    2
## 12141                   ignition source    2
## 12142                   illumination of    2
## 12143                  illusion created    2
## 12144                      illusion the    2
## 12145                      ils receiver    2
## 12146                           ils the    2
## 12147                     imbalance and    2
## 12148              immediate evacuation    2
## 12149              immediately adjacent    2
## 12150               immediately crashed    2
## 12151                          impact a    2
## 12152                       impact fire    2
## 12153                   impact occurred    2
## 12154                         impact of    2
## 12155                    impacted mount    2
## 12156                    impacted steep    2
## 12157                   impairment from    2
## 12158                     impossible to    2
## 12159                     impression of    2
## 12160                  improper actions    2
## 12161               improper adjustment    2
## 12162                 improper altitude    2
## 12163                improper clearance    2
## 12164                improper execution    2
## 12165                 improper handling    2
## 12166                 improper inflight    2
## 12167                    improper pilot    2
## 12168              improper replacement    2
## 12169              improper supervision    2
## 12170               improperly executed    2
## 12171                improperly latched    2
## 12172                improperly secured    2
## 12173                           in 1970    2
## 12174                          in 2,000    2
## 12175                       in aircraft    2
## 12176                            in and    2
## 12177                        in another    2
## 12178                         in august    2
## 12179                         in boston    2
## 12180                          in clear    2
## 12181                        in cockpit    2
## 12182                      in collision    2
## 12183                     in connection    2
## 12184                           in crew    2
## 12185                         in cruise    2
## 12186                         in damage    2
## 12187                      in dangerous    2
## 12188                       in daylight    2
## 12189                         in design    2
## 12190                        in driving    2
## 12191                        in ecuador    2
## 12192                      in emergency    2
## 12193                       in entering    2
## 12194                   in establishing    2
## 12195                      in extremely    2
## 12196                     in feathering    2
## 12197                           in fuel    2
## 12198                        in gaining    2
## 12199                           in good    2
## 12200                          in gusty    2
## 12201                       in handling    2
## 12202                           in hard    2
## 12203                            in her    2
## 12204                            in ice    2
## 12205                         in impact    2
## 12206                   in insufficient    2
## 12207                      in insurance    2
## 12208                           in june    2
## 12209                           in lake    2
## 12210                        in landing    2
## 12211                         in making    2
## 12212                    in maneuvering    2
## 12213                            in may    2
## 12214                           in mist    2
## 12215                     in navigation    2
## 12216                           in near    2
## 12217                            in new    2
## 12218                             in no    2
## 12219                             in or    2
## 12220                          in place    2
## 12221                     in proceeding    2
## 12222                          in rainy    2
## 12223                        in rapidly    2
## 12224                     in restricted    2
## 12225                          in rough    2
## 12226                      in scattered    2
## 12227                           in seat    2
## 12228                        in service    2
## 12229                           in some    2
## 12230                        in spatial    2
## 12231                          in spite    2
## 12232                         in steady    2
## 12233                    in switzerland    2
## 12234                           in tail    2
## 12235                        in takeoff    2
## 12236                         in tandem    2
## 12237                      in turbulent    2
## 12238                            in u.s    2
## 12239                     in unsuitable    2
## 12240                            in use    2
## 12241                      in violation    2
## 12242                        in violent    2
## 12243                         in visual    2
## 12244                          in water    2
## 12245                           in what    2
## 12246                      in worsening    2
## 12247                   inadequacies of    2
## 12248                    inadequate and    2
## 12249                inadequate control    2
## 12250                    inadequate for    2
## 12251             inadequate navigation    2
## 12252            inadequate operational    2
## 12253              inadequate oversight    2
## 12254               inadequate planning    2
## 12255                   inadequate post    2
## 12256                    inadequate pre    2
## 12257            inadequate preparation    2
## 12258             inadequate procedures    2
## 12259           inadequate surveillance    2
## 12260                     inadequate to    2
## 12261            inadvertent activation    2
## 12262            inadvertent deployment    2
## 12263               inadvertent descent    2
## 12264                  inadvertent fuel    2
## 12265                  inadvertent spin    2
## 12266            inadvertently deployed    2
## 12267                inadvertently from    2
## 12268            inadvertently selected    2
## 12269             inappropriate control    2
## 12270          inappropriate management    2
## 12271            inappropriate response    2
## 12272                    inattention to    2
## 12273                inattentiveness to    2
## 12274                      incident was    2
## 12275                     including two    2
## 12276                 incorrect actions    2
## 12277             incorrect information    2
## 12278          incorrect interpretation    2
## 12279                 incorrect rigging    2
## 12280                 incorrect setting    2
## 12281              incorrect stabilizer    2
## 12282                 incorrect weather    2
## 12283                   incorrectly set    2
## 12284                    incorrectly to    2
## 12285                      increase the    2
## 12286                    increase while    2
## 12287                     increased the    2
## 12288                       indians who    2
## 12289                     indicate that    2
## 12290                      indicated by    2
## 12291                      indicating a    2
## 12292                   indications are    2
## 12293                    indications in    2
## 12294                   induced flutter    2
## 12295                       induced the    2
## 12296                   inexperience of    2
## 12297                 inexperience with    2
## 12298                      influence of    2
## 12299                 information about    2
## 12300                  information from    2
## 12301                       informed by    2
## 12302                   informed ground    2
## 12303                     informing the    2
## 12304                       ingested by    2
## 12305                     ingestion the    2
## 12306                  initiate evasive    2
## 12307                 initiated because    2
## 12308                     initiating an    2
## 12309                    initiating the    2
## 12310                  injection system    2
## 12311                         injured a    2
## 12312                       injured all    2
## 12313                   injured crashed    2
## 12314                    injuries after    2
## 12315                      injuries and    2
## 12316                      injuries one    2
## 12317                    inoperative in    2
## 12318                    inspection but    2
## 12319                inspection crashed    2
## 12320                    inspection the    2
## 12321                  inspection which    2
## 12322                        instead he    2
## 12323                       instead the    2
## 12324                instrument descent    2
## 12325            instrument malfunction    2
## 12326              instrument reference    2
## 12327                 instruments after    2
## 12328                   instruments for    2
## 12329                    instruments in    2
## 12330                  instruments were    2
## 12331            insufficient attention    2
## 12332             insufficient elevator    2
## 12333                insufficient sleep    2
## 12334               insufficient visual    2
## 12335                     insulation on    2
## 12336                    insurance plot    2
## 12337                      intake scoop    2
## 12338                   intended course    2
## 12339                   intended flight    2
## 12340                      intention of    2
## 12341               intentional descent    2
## 12342                  intentionally or    2
## 12343                     intentions to    2
## 12344                   intercepted the    2
## 12345                 intermediate stop    2
## 12346                 intermittent loss    2
## 12347            intermittent operation    2
## 12348              international waters    2
## 12349                      interval and    2
## 12350                            into 5    2
## 12351                    into believing    2
## 12352                       into botany    2
## 12353                         into cars    2
## 12354                        into cerro    2
## 12355                         into each    2
## 12356                    into farmlands    2
## 12357                          into fog    2
## 12358                       into forest    2
## 12359                        into hills    2
## 12360                        into hilly    2
## 12361                           into it    2
## 12362                      into jamaica    2
## 12363                         into long    2
## 12364                     into numerous    2
## 12365                       into pieces    2
## 12366                         into poor    2
## 12367                     into position    2
## 12368                        into puget    2
## 12369                  into residential    2
## 12370                       into rugged    2
## 12371                          into sea    2
## 12372                       into severe    2
## 12373                 into thunderstorm    2
## 12374                        into water    2
## 12375                       into wooded    2
## 12376                   intoxicated the    2
## 12377                     invasion shot    2
## 12378                  inversion levels    2
## 12379                 inverted attitude    2
## 12380                  inverted shortly    2
## 12381                       involving a    2
## 12382                          iowa the    2
## 12383                       iranian air    2
## 12384                   irkutsk airport    2
## 12385                  irrigation ditch    2
## 12386                         is likely    2
## 12387                       is possible    2
## 12388                           is some    2
## 12389                    is speculation    2
## 12390                         island at    2
## 12391                      island cause    2
## 12392                        islands in    2
## 12393                           isle of    2
## 12394                     isolated area    2
## 12395                          issue an    2
## 12396                          issued a    2
## 12397                         issued by    2
## 12398                      it's engines    2
## 12399                             it at    2
## 12400                           it back    2
## 12401                         it banked    2
## 12402                         it became    2
## 12403                           it came    2
## 12404                         it caught    2
## 12405                          it clear    2
## 12406                      it continued    2
## 12407                          it crash    2
## 12408                        it ditched    2
## 12409                       it diverted    2
## 12410                         it failed    2
## 12411                           it from    2
## 12412                           it left    2
## 12413                           it nose    2
## 12414                          it nosed    2
## 12415                        it plunged    2
## 12416                         it should    2
## 12417                        it started    2
## 12418                       it suddenly    2
## 12419                          it while    2
## 12420                          its base    2
## 12421                          its crew    2
## 12422                   its environment    2
## 12423                         its final    2
## 12424                         its first    2
## 12425                   its maintenance    2
## 12426                       its maximum    2
## 12427                            its no    2
## 12428                     its occupants    2
## 12429                           its own    2
## 12430                      its position    2
## 12431                         its third    2
## 12432                        itself and    2
## 12433                          iwo jima    2
## 12434                          jail for    2
## 12435                       jakarta the    2
## 12436                       jamaica bay    2
## 12437                       jamaica the    2
## 12438                       jammed when    2
## 12439                     janeiro while    2
## 12440                       janerio the    2
## 12441                       japan while    2
## 12442                 japanese fighters    2
## 12443                             jet a    2
## 12444                      jet fighters    2
## 12445                           jet was    2
## 12446                          join the    2
## 12447                     judgement the    2
## 12448                      judgment and    2
## 12449                 judgment decision    2
## 12450                       jumping out    2
## 12451                           june 12    2
## 12452                      jungle about    2
## 12453                      jungle after    2
## 12454                        jungle and    2
## 12455                         jungle to    2
## 12456                        just below    2
## 12457                       just inside    2
## 12458                         just past    2
## 12459                      just seconds    2
## 12460                          just the    2
## 12461                         just took    2
## 12462                    kanawha county    2
## 12463                        kariba the    2
## 12464                     kathmandu the    2
## 12465                            keep a    2
## 12466                        kennedy jr    2
## 12467                      khartoum the    2
## 12468                    khartoum while    2
## 12469                          kias and    2
## 12470                      killed after    2
## 12471                       killed also    2
## 12472                         killed as    2
## 12473                    killed failure    2
## 12474                         killed it    2
## 12475                      killed pilot    2
## 12476                     killed struck    2
## 12477                      killed three    2
## 12478                        killed was    2
## 12479                        killing 16    2
## 12480                         killing 3    2
## 12481                        killing at    2
## 12482                      killing four    2
## 12483                       killing two    2
## 12484                       killled the    2
## 12485              kilometers northwest    2
## 12486                           km away    2
## 12487                       knocked the    2
## 12488                       knots below    2
## 12489                          knots in    2
## 12490                           know at    2
## 12491                     known adverse    2
## 12492                       known icing    2
## 12493                         known the    2
## 12494                   kong detonation    2
## 12495                           kong to    2
## 12496                         la aurora    2
## 12497                        lacked the    2
## 12498                       laden field    2
## 12499                           lãƒâ my    2
## 12500                      lake airport    2
## 12501                           lake in    2
## 12502                         lake kivu    2
## 12503                     lake victoria    2
## 12504                        land below    2
## 12505                    land continued    2
## 12506                    land descended    2
## 12507                      land despite    2
## 12508                          land due    2
## 12509                         land flew    2
## 12510                     land improper    2
## 12511                 land navigational    2
## 12512                          land one    2
## 12513                          land ran    2
## 12514                         land shot    2
## 12515                          land too    2
## 12516                        land under    2
## 12517                        land until    2
## 12518                      land without    2
## 12519                    land witnesses    2
## 12520                        landed and    2
## 12521                        landed but    2
## 12522                       landed crew    2
## 12523                       landed fast    2
## 12524                    landed heavily    2
## 12525                   landed inverted    2
## 12526                        landed the    2
## 12527                    landed without    2
## 12528                        landing an    2
## 12529                      landing back    2
## 12530                    landing caused    2
## 12531              landing contributing    2
## 12532                  landing distance    2
## 12533                      landing even    2
## 12534                     landing flare    2
## 12535                     landing gears    2
## 12536                      landing hard    2
## 12537                      landing left    2
## 12538                      landing loss    2
## 12539                      landing near    2
## 12540                 landing procedure    2
## 12541                    landing rather    2
## 12542                 landing resulting    2
## 12543                      landing roll    2
## 12544                   landing shortly    2
## 12545                     landing strip    2
## 12546                        landing to    2
## 12547                       landings in    2
## 12548                   large explosion    2
## 12549                      large number    2
## 12550                        las palmas    2
## 12551                       last flight    2
## 12552                     last reported    2
## 12553                        last words    2
## 12554                          late for    2
## 12555                          later in    2
## 12556                       lavatory of    2
## 12557                          layer of    2
## 12558                            lbs of    2
## 12559                           lead on    2
## 12560                        leading up    2
## 12561                          leak was    2
## 12562                        leakage of    2
## 12563                      leaking fuel    2
## 12564                         leased to    2
## 12565                          least 14    2
## 12566                         least one    2
## 12567                         least two    2
## 12568                         leave the    2
## 12569                           led him    2
## 12570                          led them    2
## 12571                      left banking    2
## 12572                          left his    2
## 12573                      left landing    2
## 12574                         left left    2
## 12575                        left logan    2
## 12576                           left on    2
## 12577                        left power    2
## 12578                         left roll    2
## 12579                         left seat    2
## 12580                           left to    2
## 12581                         left when    2
## 12582                          leg from    2
## 12583                           leg the    2
## 12584                         length of    2
## 12585                          let down    2
## 12586                           let the    2
## 12587                         level and    2
## 12588                         level but    2
## 12589                        level into    2
## 12590                       leveled off    2
## 12591                        levels for    2
## 12592                         levels of    2
## 12593                          lever to    2
## 12594                 liberation tigers    2
## 12595                        life rafts    2
## 12596                          life the    2
## 12597                          lift and    2
## 12598                     light drizzle    2
## 12599               lightning discharge    2
## 12600                      lightning in    2
## 12601               lightning lightning    2
## 12602                    lightning mast    2
## 12603                   lightning storm    2
## 12604                     lightning the    2
## 12605                         lights at    2
## 12606                       lights lack    2
## 12607                         lights or    2
## 12608                        lights the    2
## 12609                       lights used    2
## 12610                      lights while    2
## 12611                likely contributed    2
## 12612                        likely ran    2
## 12613                       likely spot    2
## 12614                          limit of    2
## 12615                limited experience    2
## 12616                          line out    2
## 12617                          line the    2
## 12618                         line with    2
## 12619                          lined up    2
## 12620                           lines a    2
## 12621                          lines at    2
## 12622                      lines during    2
## 12623                          lines in    2
## 12624                             lit a    2
## 12625                 lithium batteries    2
## 12626                       little fuel    2
## 12627                          load and    2
## 12628                          load due    2
## 12629                      loaded plane    2
## 12630                        loaded the    2
## 12631                     loading which    2
## 12632                     local weather    2
## 12633                        located 12    2
## 12634                        located 50    2
## 12635                       located and    2
## 12636                     located short    2
## 12637                       located the    2
## 12638                      location and    2
## 12639                          lock was    2
## 12640                        locked the    2
## 12641                       locking nut    2
## 12642                       locking pin    2
## 12643                   locking sectors    2
## 12644                    lodged between    2
## 12645               logan international    2
## 12646                         london to    2
## 12647                        long beach    2
## 12648                       long period    2
## 12649              longitudinal control    2
## 12650                 longitudinal trim    2
## 12651                          look out    2
## 12652                       looking for    2
## 12653                       lookout the    2
## 12654                  loosing altitude    2
## 12655                       loosing the    2
## 12656                        los roques    2
## 12657                        lose power    2
## 12658                          lose the    2
## 12659                        losing all    2
## 12660                        losing its    2
## 12661                          loss and    2
## 12662                        loss which    2
## 12663                        lost after    2
## 12664                       lost engine    2
## 12665                         lost it's    2
## 12666                           lost of    2
## 12667                          lost one    2
## 12668                      lost spatial    2
## 12669                       lost thrust    2
## 12670                           lost to    2
## 12671                         lost when    2
## 12672                        lost while    2
## 12673                       low because    2
## 12674                            low of    2
## 12675                           low oil    2
## 12676                         low pitch    2
## 12677                         lower aft    2
## 12678                        lower spar    2
## 12679                         lower the    2
## 12680                       lowered for    2
## 12681                       lowered his    2
## 12682                        luanda the    2
## 12683                     luang prabang    2
## 12684                       luis obispo    2
## 12685                   lunghwa airport    2
## 12686                      lying clouds    2
## 12687                             m and    2
## 12688                       maarten and    2
## 12689                       machine gun    2
## 12690                      machine guns    2
## 12691                        madang the    2
## 12692                        made aware    2
## 12693                      made despite    2
## 12694                       made during    2
## 12695                           made no    2
## 12696                           made of    2
## 12697                   madre mountains    2
## 12698                        magdan the    2
## 12699                  magnetic compass    2
## 12700                        main cause    2
## 12701                       main rudder    2
## 12702                       main runway    2
## 12703                    maintain level    2
## 12704               maintain sufficient    2
## 12705                      maintain vfr    2
## 12706                     maintaining a    2
## 12707              maintaining altitude    2
## 12708                    maintenance in    2
## 12709             maintenance performed    2
## 12710            maintenance technician    2
## 12711                   maintenance the    2
## 12712                 maintenance truck    2
## 12713               maintenance workers    2
## 12714                     make adequate    2
## 12715                          make and    2
## 12716                      make another    2
## 12717                       make visual    2
## 12718                        making two    2
## 12719                     making visual    2
## 12720                    male passenger    2
## 12721                    malfunction in    2
## 12722         malfunctioning artificial    2
## 12723             malfunctioning engine    2
## 12724          malfunctioning equipment    2
## 12725          malfunctioning propeller    2
## 12726                           man and    2
## 12727                       man crashed    2
## 12728                  manacapuru river    2
## 12729                 management during    2
## 12730                management program    2
## 12731                      manager dean    2
## 12732                      maneuver and    2
## 12733                   maneuver caused    2
## 12734                   maneuver during    2
## 12735                      maneuver was    2
## 12736                     maneuver with    2
## 12737                   maneuvering the    2
## 12738                    maneuvering to    2
## 12739                      maneuvers on    2
## 12740                         manila to    2
## 12741                    manipulate the    2
## 12742                        manner and    2
## 12743                         manner as    2
## 12744                    manner crashed    2
## 12745                        manner the    2
## 12746                        manual and    2
## 12747                        manual did    2
## 12748                    manually flown    2
## 12749                           many of    2
## 12750                         margin of    2
## 12751                     maria airport    2
## 12752                          marsa el    2
## 12753                 martha's vineyard    2
## 12754                        master rod    2
## 12755                      material and    2
## 12756                     maximum climb    2
## 12757                     maximum limit    2
## 12758                        maximum of    2
## 12759                     maximum speed    2
## 12760                          may been    2
## 12761                       mayday call    2
## 12762                  mayday reporting    2
## 12763                        mayday was    2
## 12764                       mcchord afb    2
## 12765                       mcguire air    2
## 12766                           mda the    2
## 12767                        meant that    2
## 12768                     meanwhile the    2
## 12769                       measures to    2
## 12770                      mechanic was    2
## 12771                     mechanic were    2
## 12772                      mechanism on    2
## 12773                     mechanism was    2
## 12774                    medical center    2
## 12775               medical certificate    2
## 12776                    medical flight    2
## 12777                  mehrabad airport    2
## 12778                     member aboard    2
## 12779                       member died    2
## 12780                         member of    2
## 12781                    members aboard    2
## 12782                      members from    2
## 12783                       members the    2
## 12784                        members to    2
## 12785                    menhir control    2
## 12786                      mental state    2
## 12787                        merida the    2
## 12788                 message reporting    2
## 12789                       message the    2
## 12790                        message to    2
## 12791                          met with    2
## 12792                       metal strip    2
## 12793                        meter high    2
## 12794                        meters and    2
## 12795                     meters beyond    2
## 12796                metropolitan wayne    2
## 12797                      mexico after    2
## 12798                      mexico while    2
## 12799                      michigan the    2
## 12800              microburst windshear    2
## 12801                        mid flight    2
## 12802                           mid way    2
## 12803                         midair 20    2
## 12804                      midspar fuse    2
## 12805             midwest's maintenance    2
## 12806                     miguel island    2
## 12807                            mil mi    2
## 12808                         mile area    2
## 12809                       mile beyond    2
## 12810                    mile southwest    2
## 12811                          miles an    2
## 12812                         miles and    2
## 12813                         miles ese    2
## 12814                        miles into    2
## 12815                          miles of    2
## 12816                         miles sse    2
## 12817                  military airport    2
## 12818                      military and    2
## 12819                 military contract    2
## 12820                        military f    2
## 12821                 military fighters    2
## 12822                   military flight    2
## 12823                      military jet    2
## 12824                       military mi    2
## 12825                 military training    2
## 12826                  military vehicle    2
## 12827                   million dollars    2
## 12828                         milne bay    2
## 12829                       minima crew    2
## 12830                     minima during    2
## 12831                      minima while    2
## 12832                  minimum airspeed    2
## 12833                 minimum altitudes    2
## 12834                minimum conditions    2
## 12835                   minimum crashed    2
## 12836                minimum prescribed    2
## 12837                    minimum sector    2
## 12838                minimum visibility    2
## 12839                       minimums at    2
## 12840                  minimums crashed    2
## 12841               minimums prescribed    2
## 12842                      minimums the    2
## 12843                      minister and    2
## 12844                       minister of    2
## 12845                      minor damage    2
## 12846                      minute later    2
## 12847                  minute refueling    2
## 12848                         minutes w    2
## 12849                   misalignment of    2
## 12850                     misreading of    2
## 12851                        missed ils    2
## 12852                    missile struck    2
## 12853                      missiles the    2
## 12854                     missiles were    2
## 12855                       missing and    2
## 12856                   missing between    2
## 12857                  mission wreckage    2
## 12858                          mist and    2
## 12859                      mistaken for    2
## 12860                   mistakenly shut    2
## 12861              misunderstanding the    2
## 12862                  misunderstood by    2
## 12863                         misuse of    2
## 12864                           mode of    2
## 12865                           mode to    2
## 12866                       moderate to    2
## 12867                 mogadishu airport    2
## 12868                  monitor altitude    2
## 12869                    monitoring and    2
## 12870                     monsoon rains    2
## 12871                        mont blanc    2
## 12872                      mortar shell    2
## 12873             moscow's sheremetyevo    2
## 12874                         moscow at    2
## 12875                        mother and    2
## 12876                       mountain 13    2
## 12877                       mountain 20    2
## 12878                       mountain 35    2
## 12879                       mountain 60    2
## 12880               mountain controlled    2
## 12881                     mountain crew    2
## 12882                  mountain failure    2
## 12883                     mountain flew    2
## 12884                       mountain is    2
## 12885                     mountain lost    2
## 12886                 mountain obscured    2
## 12887                    mountain peaks    2
## 12888                 mountain shrouded    2
## 12889                      mountain top    2
## 12890                   mountain valley    2
## 12891                      mountain was    2
## 12892                  mountain weather    2
## 12893                     mountain when    2
## 12894                 mountain wreckage    2
## 12895               mountainous regions    2
## 12896                   mountains ahead    2
## 12897                     mountains and    2
## 12898                    mountains crew    2
## 12899                      mountains en    2
## 12900                 mountains instead    2
## 12901                      mountains of    2
## 12902                 mountains without    2
## 12903                     moved towards    2
## 12904                         mph after    2
## 12905                            mph at    2
## 12906                        mph during    2
## 12907                         mph winds    2
## 12908                           msl the    2
## 12909                           mt dore    2
## 12910                         mt erebus    2
## 12911                        mt sanford    2
## 12912                       much weight    2
## 12913            muhammad international    2
## 12914                  murtala muhammad    2
## 12915                             n 134    2
## 12916                             n the    2
## 12917                    nacelles which    2
## 12918                   named mainliner    2
## 12919                        named miss    2
## 12920                       nan airport    2
## 12921                 national airlines    2
## 12922                  national airport    2
## 12923                   national forest    2
## 12924                    national guard    2
## 12925                 navigation errors    2
## 12926             navigation facilities    2
## 12927                 navigation system    2
## 12928               navigational errors    2
## 12929             navigational omission    2
## 12930                     navigator and    2
## 12931                        navy flyer    2
## 12932                        navy pilot    2
## 12933                           near an    2
## 12934                         near holy    2
## 12935                        near level    2
## 12936                    near mountains    2
## 12937                         near port    2
## 12938                          near san    2
## 12939                         near zero    2
## 12940                      nearby field    2
## 12941                     nearby forest    2
## 12942                      necessity of    2
## 12943                          need for    2
## 12944                      neglected to    2
## 12945                     negligence of    2
## 12946                  neighborhood and    2
## 12947                neighborhood while    2
## 12948                        neither of    2
## 12949                  neutral position    2
## 12950                         nevado de    2
## 12951                      never became    2
## 12952                      never gained    2
## 12953                        never left    2
## 12954                      never proven    2
## 12955                        new mexico    2
## 12956                    newark airport    2
## 12957                         news crew    2
## 12958                    nicknamed yoke    2
## 12959                      night flight    2
## 12960                     night landing    2
## 12961                    night obstacle    2
## 12962                        night time    2
## 12963                       night which    2
## 12964                        night with    2
## 12965                   nine passengers    2
## 12966                       nine people    2
## 12967                           nm east    2
## 12968                          nm north    2
## 12969                      nm northeast    2
## 12970                          nm south    2
## 12971                              nm w    2
## 12972                        no 1engine    2
## 12973                       no apparent    2
## 12974                       no evidence    2
## 12975                       no external    2
## 12976                     no passengers    2
## 12977                         no proper    2
## 12978                          no radio    2
## 12979                       no response    2
## 12980                      no survivors    2
## 12981                         no visual    2
## 12982                   noise abatement    2
## 12983                         noise was    2
## 12984                        non combat    2
## 12985                    non instrument    2
## 12986                    non retraction    2
## 12987                     non scheduled    2
## 12988                      non swimming    2
## 12989                       none aboard    2
## 12990                           none of    2
## 12991           nonprecision instrument    2
## 12992                             nor a    2
## 12993                   normal altitude    2
## 12994                        normal and    2
## 12995                        normal but    2
## 12996                      normal climb    2
## 12997                     normal cruise    2
## 12998                  normal procedure    2
## 12999                    normal takeoff    2
## 13000                      normally the    2
## 13001                    north carolina    2
## 13002                      north korean    2
## 13003                   northwest slope    2
## 13004                          nose low    2
## 13005                           nose to    2
## 13006                        nose wheel    2
## 13007                        nosed over    2
## 13008                          nosed up    2
## 13009                      nosedive and    2
## 13010                    nosedived into    2
## 13011                             not a    2
## 13012                         not alert    2
## 13013                   not autofeather    2
## 13014                         not aware    2
## 13015                       not carried    2
## 13016                         not carry    2
## 13017                        not closed    2
## 13018                      not complied    2
## 13019                       not conform    2
## 13020                       not control    2
## 13021                        not decide    2
## 13022                        not detect    2
## 13023                     not determine    2
## 13024                    not discovered    2
## 13025                        not ensure    2
## 13026                       not execute    2
## 13027                        not extend    2
## 13028                      not extended    2
## 13029                           not far    2
## 13030                       not feather    2
## 13031                         not fully    2
## 13032                           not get    2
## 13033                    not identified    2
## 13034                   not immediately    2
## 13035                        not listed    2
## 13036                      not manually    2
## 13037                       not monitor    2
## 13038                        not notice    2
## 13039                       not observe    2
## 13040                            not on    2
## 13041                        not permit    2
## 13042                       not provide    2
## 13043                         not react    2
## 13044                       not reflect    2
## 13045                        not report    2
## 13046                       not request    2
## 13047                       not retract    2
## 13048                           not set    2
## 13049                          not turn    2
## 13050                       not visible    2
## 13051                        noted that    2
## 13052                         noticed a    2
## 13053                       noticed the    2
## 13054                          number 1    2
## 13055                          number 2    2
## 13056                     number killed    2
## 13057                    numerous times    2
## 13058                        nut thread    2
## 13059                       nut threads    2
## 13060                            o ring    2
## 13061                          oak tree    2
## 13062                 oakland municipal    2
## 13063                      object while    2
## 13064                   observation and    2
## 13065                       observe the    2
## 13066                        observed a    2
## 13067                       observed by    2
## 13068                      obstacle and    2
## 13069                     obstacles and    2
## 13070                    obstruction at    2
## 13071                    obstruction of    2
## 13072                    obstruction on    2
## 13073                       occupied by    2
## 13074                        occurred 2    2
## 13075                        occurred a    2
## 13076                    occurred after    2
## 13077                      occurred and    2
## 13078                  occurred because    2
## 13079                   occurred before    2
## 13080                     occurred with    2
## 13081                      occurring in    2
## 13082                         ocean 150    2
## 13083                          ocean 50    2
## 13084                           ocean a    2
## 13085                     ocean crashed    2
## 13086                        ocean fuel    2
## 13087                          ocean in    2
## 13088                        ocean just    2
## 13089                       ocean liner    2
## 13090                         ocean off    2
## 13091                   ocean southwest    2
## 13092                       ocean three    2
## 13093                      ocean waters    2
## 13094                             of 11    2
## 13095                             of 14    2
## 13096                             of 15    2
## 13097                          of 2,500    2
## 13098                          of 2,900    2
## 13099                            of 225    2
## 13100                              of 3    2
## 13101                          of 3,300    2
## 13102                          of 3,600    2
## 13103                         of 33,000    2
## 13104                          of 4,500    2
## 13105                             of 45    2
## 13106                              of 5    2
## 13107                            of 600    2
## 13108                            of 700    2
## 13109                             of 78    2
## 13110                             of 80    2
## 13111                             of 90    2
## 13112                            of 900    2
## 13113                             of 95    2
## 13114                        of actions    2
## 13115                        of airport    2
## 13116                        of alcohol    2
## 13117                      of alertness    2
## 13118                     of alexandria    2
## 13119                        of algiers    2
## 13120                          of aloha    2
## 13121                            of atc    2
## 13122                       of attitude    2
## 13123                        of baghdad    2
## 13124                        of bangkok    2
## 13125                         of bangui    2
## 13126                          of being    2
## 13127                        of bozeman    2
## 13128                          of brown    2
## 13129                         of buenos    2
## 13130                        of buffalo    2
## 13131                          of cairo    2
## 13132                          of cerro    2
## 13133                  of communication    2
## 13134                     of compliance    2
## 13135                    of controllers    2
## 13136                       of controls    2
## 13137                         of course    2
## 13138                        of current    2
## 13139                             of de    2
## 13140                     of delivering    2
## 13141                  of deteriorating    2
## 13142                    of determining    2
## 13143                       of distance    2
## 13144                      of diverting    2
## 13145                        of donetsk    2
## 13146                          of dubai    2
## 13147                      of effective    2
## 13148                        of engines    2
## 13149                    of entertainer    2
## 13150                      of executing    2
## 13151                       of exposure    2
## 13152                       of extended    2
## 13153                       of external    2
## 13154                        of extreme    2
## 13155                            of faa    2
## 13156                        of federal    2
## 13157                          of flaps    2
## 13158                        of foreign    2
## 13159                        of freight    2
## 13160                            of gas    2
## 13161                          of grand    2
## 13162                         of having    2
## 13163                           of head    2
## 13164                        of heading    2
## 13165                          of hills    2
## 13166                            of him    2
## 13167                       of honolulu    2
## 13168                         of houses    2
## 13169                     of huaricanga    2
## 13170                          of human    2
## 13171                      of hurricane    2
## 13172                      of imprecise    2
## 13173                             of in    2
## 13174                     of inadequate    2
## 13175                    of information    2
## 13176                     of instrument    2
## 13177                             of it    2
## 13178                       of judgment    2
## 13179                          of lagos    2
## 13180                        of leading    2
## 13181                           of life    2
## 13182                          of light    2
## 13183                      of lightning    2
## 13184                          of loads    2
## 13185                           of loss    2
## 13186                    of maintenance    2
## 13187                      of maneuvers    2
## 13188                           of maui    2
## 13189                        of minimum    2
## 13190                         of missed    2
## 13191                     of monitoring    2
## 13192                    of mountainous    2
## 13193                        of newhall    2
## 13194                          of nitro    2
## 13195                            of non    2
## 13196                           of only    2
## 13197                    of orientation    2
## 13198                           of over    2
## 13199                      of oversight    2
## 13200                         of oxygen    2
## 13201                        of palermo    2
## 13202                      of passenger    2
## 13203                          of point    2
## 13204                     of positional    2
## 13205                     of powerplant    2
## 13206                      of president    2
## 13207                     of procedural    2
## 13208                      of propeller    2
## 13209                         of puerto    2
## 13210                        of reduced    2
## 13211                         of relief    2
## 13212                           of roll    2
## 13213                           of rome    2
## 13214                       of rotation    2
## 13215                         of rubber    2
## 13216                        of russian    2
## 13217                           of salt    2
## 13218                           of sand    2
## 13219                            of sao    2
## 13220                           of seat    2
## 13221                          of serov    2
## 13222                           of some    2
## 13223                        of spatial    2
## 13224                       of suitable    2
## 13225                           of tail    2
## 13226                           of take    2
## 13227                         of thrust    2
## 13228                             of to    2
## 13229                           of trim    2
## 13230                        of turbine    2
## 13231                     of turbulence    2
## 13232                     of unreliable    2
## 13233                      of vigilance    2
## 13234                     of washington    2
## 13235                           of west    2
## 13236                           of wide    2
## 13237                          of wrong    2
## 13238                            of yaw    2
## 13239                         off about    2
## 13240                            off as    2
## 13241                        off banked    2
## 13242                        off before    2
## 13243                          off both    2
## 13244                    off controlled    2
## 13245                          off duty    2
## 13246                        off failed    2
## 13247                          off fire    2
## 13248                           off hit    2
## 13249                       off however    2
## 13250                         off icing    2
## 13251                          off loss    2
## 13252                         off pilot    2
## 13253                         off point    2
## 13254                      off possibly    2
## 13255                   off prematurely    2
## 13256                     off resulting    2
## 13257                          off rose    2
## 13258                        off runway    2
## 13259                           off too    2
## 13260                        off toward    2
## 13261                           off two    2
## 13262                       off unknown    2
## 13263             officer's inadvertent    2
## 13264                   officer advised    2
## 13265                       officer had    2
## 13266                      officer that    2
## 13267                      officer used    2
## 13268                     officer while    2
## 13269                      officers the    2
## 13270                    officials were    2
## 13271                    offshore after    2
## 13272                      offshore and    2
## 13273                       offshore in    2
## 13274                       offshore of    2
## 13275                      oil drilling    2
## 13276                      oil platform    2
## 13277                        oil supply    2
## 13278                          oil tank    2
## 13279                         old after    2
## 13280                         old child    2
## 13281                         old dutch    2
## 13282                           old son    2
## 13283                       omission of    2
## 13284                              on 1    2
## 13285                            on air    2
## 13286                            on and    2
## 13287                            on any    2
## 13288                       on apporach    2
## 13289                          on april    2
## 13290                         on august    2
## 13291                          on climb    2
## 13292                       on climbout    2
## 13293                         on demand    2
## 13294                           on flat    2
## 13295                            on ils    2
## 13296                     on increasing    2
## 13297                        on initial    2
## 13298                     on instrument    2
## 13299                             on it    2
## 13300                        on january    2
## 13301                           on july    2
## 13302                           on june    2
## 13303                         on patrol    2
## 13304                         on second    2
## 13305                          on short    2
## 13306                           on that    2
## 13307                          on three    2
## 13308                      on touchdown    2
## 13309                          on track    2
## 13310                            on two    2
## 13311                          on water    2
## 13312                          on which    2
## 13313                           on with    2
## 13314                       onboard the    2
## 13315                           once it    2
## 13316                           one and    2
## 13317                       one another    2
## 13318                          one gyro    2
## 13319                           one man    2
## 13320                          one side    2
## 13321                     only fatality    2
## 13322                    only survivors    2
## 13323                          only two    2
## 13324                      open terrain    2
## 13325                         opened in    2
## 13326                        opening of    2
## 13327                       opening the    2
## 13328                       operate the    2
## 13329                       operated as    2
## 13330                     operating and    2
## 13331                      operating as    2
## 13332                      operating at    2
## 13333                      operation in    2
## 13334            operational procedures    2
## 13335                     operations of    2
## 13336                   operations were    2
## 13337                operator's failure    2
## 13338                      operator the    2
## 13339                opportunity during    2
## 13340                       opposite to    2
## 13341                          or above    2
## 13342                              or b    2
## 13343                        or because    2
## 13344                         or bodies    2
## 13345                          or break    2
## 13346                             or by    2
## 13347                        or failure    2
## 13348                           or fire    2
## 13349                            or for    2
## 13350                           or fuel    2
## 13351                         or ground    2
## 13352                  or inadvertently    2
## 13353                       or maintain    2
## 13354                    or malfunction    2
## 13355                        or misread    2
## 13356                       or planning    2
## 13357                        or recover    2
## 13358                        ordered by    2
## 13359                   orientation and    2
## 13360                      origin which    2
## 13361                     originated at    2
## 13362                   originated from    2
## 13363             orleans international    2
## 13364                           oro the    2
## 13365                    orville wright    2
## 13366                 oscillation known    2
## 13367                   oscillations in    2
## 13368                     oshima island    2
## 13369                         other and    2
## 13370                        other crew    2
## 13371                      other engine    2
## 13372                     other engines    2
## 13373                     other factors    2
## 13374                  other helicopter    2
## 13375                          other in    2
## 13376                     other members    2
## 13377                      other pilots    2
## 13378                        other side    2
## 13379                         other the    2
## 13380                       other three    2
## 13381                     other traffic    2
## 13382                       other trees    2
## 13383                         other two    2
## 13384                     otter crashed    2
## 13385                        out aboard    2
## 13386                           out but    2
## 13387                       out causing    2
## 13388                    out conditions    2
## 13389                            out on    2
## 13390                       out through    2
## 13391                 outboard nacelles    2
## 13392                    outbound track    2
## 13393                     outer engines    2
## 13394                        outer wing    2
## 13395                    outside visual    2
## 13396                    over dangerous    2
## 13397                    over hazardous    2
## 13398                     over inverted    2
## 13399                          over its    2
## 13400                       over relied    2
## 13401                       over rising    2
## 13402                     over rotation    2
## 13403                     over southern    2
## 13404                        over their    2
## 13405                           over to    2
## 13406                       overcast to    2
## 13407                      overcome the    2
## 13408                overconfidence and    2
## 13409                 overconfidence in    2
## 13410                   overflowing the    2
## 13411                       overfly the    2
## 13412                    overflying the    2
## 13413                   overloading and    2
## 13414                     overlying the    2
## 13415                    overran runway    2
## 13416                overshoot maneuver    2
## 13417                     overshoot the    2
## 13418                     overshoot was    2
## 13419            overspeeding propeller    2
## 13420                      oxygen masks    2
## 13421                        oxygen the    2
## 13422                               p 3    2
## 13423                              p 38    2
## 13424                             pa 18    2
## 13425                       paddy after    2
## 13426                       paddy field    2
## 13427                         pago pago    2
## 13428                       palermo the    2
## 13429                 panamanian island    2
## 13430                      parachute to    2
## 13431                 parachuted safely    2
## 13432                     parallel with    2
## 13433                   parameters such    2
## 13434              paratroopers crashed    2
## 13435                  paratroopers the    2
## 13436                      part because    2
## 13437                   parts including    2
## 13438                         parts the    2
## 13439                        pass after    2
## 13440                        pass below    2
## 13441                       passed over    2
## 13442               passenger's luggage    2
## 13443                       passenger a    2
## 13444              passenger fatalities    2
## 13445                    passenger fell    2
## 13446                      passenger in    2
## 13447                    passenger seat    2
## 13448                 passengers aboard    2
## 13449                passengers between    2
## 13450                    passengers did    2
## 13451                   passengers from    2
## 13452               passengers included    2
## 13453                    passengers not    2
## 13454                    passengers one    2
## 13455               passengers reported    2
## 13456                   passengers that    2
## 13457                    passengers who    2
## 13458                      passing over    2
## 13459                       pasture the    2
## 13460                          patch of    2
## 13461                           path at    2
## 13462                       path during    2
## 13463                           path of    2
## 13464                       patient and    2
## 13465                         pcu servo    2
## 13466                     peak exploded    2
## 13467                          peak the    2
## 13468                        pelvis and    2
## 13469                     penetrate the    2
## 13470                    penetrating an    2
## 13471                        people and    2
## 13472                       people from    2
## 13473                         people in    2
## 13474                     people inside    2
## 13475                        people one    2
## 13476                     perception of    2
## 13477                       perform the    2
## 13478                   performance the    2
## 13479                      performed by    2
## 13480                     performed the    2
## 13481                     performing an    2
## 13482                        period and    2
## 13483                    permission was    2
## 13484                    permit terrain    2
## 13485                      permitted to    2
## 13486                  perpendicular to    2
## 13487                      persist that    2
## 13488                   person believed    2
## 13489                       person died    2
## 13490                         person in    2
## 13491                      personnel to    2
## 13492                      persons were    2
## 13493              philadelphia airport    2
## 13494                   phraseology the    2
## 13495                  phraseology used    2
## 13496                physical condition    2
## 13497         physiological limitations    2
## 13498                        pic's lack    2
## 13499                         picked up    2
## 13500                        picking up    2
## 13501                 pilot's altimeter    2
## 13502              pilot's continuation    2
## 13503                 pilot's deviation    2
## 13504                 pilot's disregard    2
## 13505                 pilot's incorrect    2
## 13506               pilot's intentional    2
## 13507                      pilot's poor    2
## 13508             pilot's unfamiliarity    2
## 13509                  pilot apparently    2
## 13510                     pilot applied    2
## 13511                          pilot as    2
## 13512                        pilot came    2
## 13513                     pilot carried    2
## 13514                      pilot caused    2
## 13515                     pilot changed    2
## 13516                   pilot corrected    2
## 13517                         pilot cut    2
## 13518                         pilot due    2
## 13519                    pilot executed    2
## 13520                      pilot headed    2
## 13521                        pilot lack    2
## 13522                      pilot landed    2
## 13523                      pilot making    2
## 13524                      pilot midair    2
## 13525                  pilot mistakenly    2
## 13526                    pilot possibly    2
## 13527                    pilot realized    2
## 13528                     pilot reduced    2
## 13529                         pilot saw    2
## 13530                     pilot stalled    2
## 13531                     pilot started    2
## 13532                    pilot training    2
## 13533                        pilot when    2
## 13534                 pilots apparently    2
## 13535                        pilots are    2
## 13536                      pilots could    2
## 13537                   pilots decision    2
## 13538                     pilots didn't    2
## 13539                        pilots hit    2
## 13540                       pilots lack    2
## 13541                  pilots responded    2
## 13542                       pilots they    2
## 13543                      pilots while    2
## 13544                       pilots with    2
## 13545                          pins and    2
## 13546                       pitch force    2
## 13547                        pitch lock    2
## 13548                pitch oscillations    2
## 13549                    pitch position    2
## 13550                      pitched nose    2
## 13551                       pitching up    2
## 13552                        pitot head    2
## 13553                        pitot tube    2
## 13554                          place of    2
## 13555                         placed by    2
## 13556                          plan and    2
## 13557                          plan for    2
## 13558                          plan was    2
## 13559                   plane's landing    2
## 13560                      plane's nose    2
## 13561                           plane a    2
## 13562                    plane appeared    2
## 13563                          plane at    2
## 13564                      plane caused    2
## 13565                   plane chartered    2
## 13566                    plane declared    2
## 13567                    plane departed    2
## 13568                  plane descending    2
## 13569                    plane detached    2
## 13570               plane disintegrated    2
## 13571                        plane down    2
## 13572                     plane dropped    2
## 13573                     plane flipped    2
## 13574                   plane gradually    2
## 13575                   plane impacting    2
## 13576                        plane just    2
## 13577                         plane led    2
## 13578                    plane operated    2
## 13579                          plane or    2
## 13580                      plane passed    2
## 13581                       plane pilot    2
## 13582                    plane probably    2
## 13583                     plane seconds    2
## 13584                   plane separated    2
## 13585                     plane slammed    2
## 13586                        plane slid    2
## 13587                        plane soon    2
## 13588                     plane stopped    2
## 13589                      plane taking    2
## 13590                         plane ten    2
## 13591                         plane too    2
## 13592                     plane towards    2
## 13593                         plane two    2
## 13594              plane uncontrollable    2
## 13595                        plane when    2
## 13596                         plane who    2
## 13597                        plane with    2
## 13598                     plane without    2
## 13599                      planes burst    2
## 13600                        planes the    2
## 13601                       planes took    2
## 13602                       planned and    2
## 13603                  planned approach    2
## 13604                      planning for    2
## 13605                      planning the    2
## 13606                       planning to    2
## 13607                    plantation the    2
## 13608                      platform the    2
## 13609                      playa grande    2
## 13610                       players and    2
## 13611                          plugs in    2
## 13612                         plugs the    2
## 13613                     plundered the    2
## 13614                      plunged nose    2
## 13615                         point and    2
## 13616                       point while    2
## 13617                        pointed to    2
## 13618                      pole crashed    2
## 13619                 policies totaling    2
## 13620                 political reasons    2
## 13621                   poor airmanship    2
## 13622                     poor approach    2
## 13623                      poor braking    2
## 13624                  poor maintenance    2
## 13625                    poor visiblity    2
## 13626                   poorly executed    2
## 13627                    populated area    2
## 13628                     port harcourt    2
## 13629                      port hedland    2
## 13630                      port moresby    2
## 13631                    port propeller    2
## 13632                         port side    2
## 13633                        port sudan    2
## 13634                       portions of    2
## 13635                      portland the    2
## 13636                        porto rico    2
## 13637               position accurately    2
## 13638                    position after    2
## 13639             position contributing    2
## 13640                  position crashed    2
## 13641                       position in    2
## 13642                       position or    2
## 13643                     position this    2
## 13644                     position with    2
## 13645                positioned between    2
## 13646                    positioned the    2
## 13647                   positioning for    2
## 13648                    positioning of    2
## 13649                     positive rate    2
## 13650                possible collision    2
## 13651                     possible crew    2
## 13652                possible downdraft    2
## 13653                  possible fatigue    2
## 13654                   possible faulty    2
## 13655                     possible fuel    2
## 13656                    possible icing    2
## 13657                  possible landing    2
## 13658                  possible spatial    2
## 13659                     possibly both    2
## 13660                possibly initiated    2
## 13661                     possibly lost    2
## 13662                  possibly related    2
## 13663                  possibly stalled    2
## 13664                      possibly the    2
## 13665                      potato field    2
## 13666                     potential for    2
## 13667                         pounds of    2
## 13668                     power applied    2
## 13669                          power as    2
## 13670                     power because    2
## 13671                      power cables    2
## 13672                   power condition    2
## 13673                       power level    2
## 13674                       power lever    2
## 13675                        power made    2
## 13676                         power may    2
## 13677                      power output    2
## 13678                      power supply    2
## 13679                        power unit    2
## 13680                        power when    2
## 13681                     powerline and    2
## 13682               powerplant controls    2
## 13683                        powers was    2
## 13684               practice approaches    2
## 13685                       pre takeoff    2
## 13686                     precedence to    2
## 13687                precluded recovery    2
## 13688                     precluded the    2
## 13689                    premature lift    2
## 13690              premature retraction    2
## 13691                 prematurely after    2
## 13692                 prematurely while    2
## 13693                    preparation of    2
## 13694                       prepare the    2
## 13695               prescribed approach    2
## 13696                     prescribed by    2
## 13697                    president john    2
## 13698                      pressure and    2
## 13699               pressure compressor    2
## 13700                    pressure ratio    2
## 13701                      pressure the    2
## 13702                      pressure was    2
## 13703             prevailing conditions    2
## 13704                prevailing weather    2
## 13705                     prevent rapid    2
## 13706                   primary control    2
## 13707                    prime minister    2
## 13708                      princess the    2
## 13709                  private aircraft    2
## 13710              probably contributed    2
## 13711                      probably due    2
## 13712                      probably had    2
## 13713                      probably not    2
## 13714                   problem crashed    2
## 13715                      problems but    2
## 13716                   problems during    2
## 13717                       problems in    2
## 13718                    problems while    2
## 13719             procedural discipline    2
## 13720                       procedure a    2
## 13721                      procedure by    2
## 13722                 procedure crashed    2
## 13723               procedure following    2
## 13724                      procedure of    2
## 13725               procedure resulting    2
## 13726                    procedure when    2
## 13727                   procedure while    2
## 13728                      procedures a    2
## 13729                     procedures at    2
## 13730              procedures following    2
## 13731             procedures inadequate    2
## 13732              procedures including    2
## 13733                    procedures not    2
## 13734                   procedures were    2
## 13735                   procedures when    2
## 13736               proceeding normally    2
## 13737                     proceeding on    2
## 13738                     proceeding to    2
## 13739                       process and    2
## 13740                        process in    2
## 13741                        process of    2
## 13742                         produce a    2
## 13743                        produced a    2
## 13744                       produced by    2
## 13745                       producing a    2
## 13746                       progress of    2
## 13747               progressive failure    2
## 13748                  prohibited route    2
## 13749                  propeller blades    2
## 13750                   propeller broke    2
## 13751                  propeller caused    2
## 13752               propeller feathered    2
## 13753                propeller governor    2
## 13754                      propeller in    2
## 13755              propeller separation    2
## 13756                      propeller to    2
## 13757                  propeller wobble    2
## 13758                     propellers of    2
## 13759              propellers separated    2
## 13760                 propellers struck    2
## 13761                     proper action    2
## 13762                  proper alignment    2
## 13763                      proper climb    2
## 13764                 proper procedures    2
## 13765                properly configure    2
## 13766                  properly execute    2
## 13767                       properly in    2
## 13768                  properly observe    2
## 13769                properly supervise    2
## 13770                      properly use    2
## 13771                    provide flight    2
## 13772                   provide terrain    2
## 13773                       provided by    2
## 13774                     provided with    2
## 13775                            pt gjz    2
## 13776                            pt gkl    2
## 13777                      published in    2
## 13778                 published minimum    2
## 13779                      puerto plata    2
## 13780                          pull rod    2
## 13781                           pull to    2
## 13782                       pulled from    2
## 13783                        pulled the    2
## 13784                          pump was    2
## 13785                        pump which    2
## 13786                          push the    2
## 13787                   pylon separated    2
## 13788                     qualified for    2
## 13789                        quarter of    2
## 13790                        quit while    2
## 13791                          race car    2
## 13792                    radar approach    2
## 13793                          radar at    2
## 13794                    radar coverage    2
## 13795                   radar detection    2
## 13796                   radar equipment    2
## 13797                      radar screen    2
## 13798              radio communications    2
## 13799                     radio compass    2
## 13800                  radio facilities    2
## 13801                        radio mast    2
## 13802                     radio message    2
## 13803                     radio station    2
## 13804                      radio towers    2
## 13805                radio transmission    2
## 13806                         radio was    2
## 13807                       raf fighter    2
## 13808                         rafts and    2
## 13809                   railway station    2
## 13810                            rain a    2
## 13811                         rain from    2
## 13812                       rain shower    2
## 13813                rain thunderstorms    2
## 13814                   rain turbulence    2
## 13815                          rain was    2
## 13816                         rains and    2
## 13817                    rainstorm flew    2
## 13818                     rainy weather    2
## 13819                         raise the    2
## 13820                         raised in    2
## 13821                       raising the    2
## 13822                          ran past    2
## 13823                       ran through    2
## 13824                      randy hughes    2
## 13825                       range about    2
## 13826                          range in    2
## 13827                   range receivers    2
## 13828                     range shortly    2
## 13829                     range signals    2
## 13830                  ranking military    2
## 13831                       rapid climb    2
## 13832                      rapidly lost    2
## 13833                    rapidly rising    2
## 13834                      rapidly when    2
## 13835                    rate excessive    2
## 13836                        rate until    2
## 13837                       rated pilot    2
## 13838                        ravine and    2
## 13839                         ravine at    2
## 13840                        ravine the    2
## 13841                      ravine while    2
## 13842                        re engaged    2
## 13843                         reach the    2
## 13844                     reached about    2
## 13845                       reaching v1    2
## 13846                          react to    2
## 13847                       reaction of    2
## 13848                       reaction to    2
## 13849               reactionary evasive    2
## 13850                       readings on    2
## 13851                         ready for    2
## 13852                     real position    2
## 13853                       realize his    2
## 13854                      realize that    2
## 13855                     realized that    2
## 13856                    realizing that    2
## 13857                      rear service    2
## 13858                         rear spar    2
## 13859                   rearward center    2
## 13860                  reasons improper    2
## 13861                        rebels and    2
## 13862                    rebels crashed    2
## 13863              receive supplemental    2
## 13864                        received 3    2
## 13865                  received reports    2
## 13866                     recent report    2
## 13867                    recommended by    2
## 13868             reconnaissance flight    2
## 13869                   recorder showed    2
## 13870                      records show    2
## 13871                        recover in    2
## 13872                     recovered and    2
## 13873             recovery contributing    2
## 13874                     recovery from    2
## 13875                       recovery to    2
## 13876                        reduce his    2
## 13877                      reduce their    2
## 13878                    reduced engine    2
## 13879                        reduced to    2
## 13880                  reference during    2
## 13881                     reference the    2
## 13882                       reflect the    2
## 13883                     refraction of    2
## 13884                     refueling the    2
## 13885                          regain a    2
## 13886                        region the    2
## 13887                 regional airliner    2
## 13888                  regional airport    2
## 13889                  regulations that    2
## 13890                   related crashed    2
## 13891                    related factor    2
## 13892                   relatively calm    2
## 13893                     release after    2
## 13894                       released in    2
## 13895                      released the    2
## 13896                   relief supplies    2
## 13897                   remain airborne    2
## 13898                         remain at    2
## 13899                      remain clear    2
## 13900                      remained for    2
## 13901                       remained on    2
## 13902                 remaining engines    2
## 13903                  remaining runway    2
## 13904              remains undetermined    2
## 13905                       remote part    2
## 13906                        removal of    2
## 13907                       removed the    2
## 13908                 repair facilities    2
## 13909                        repair the    2
## 13910                      repaired and    2
## 13911                      repaired the    2
## 13912                       repairs the    2
## 13913                       report over    2
## 13914                     report stated    2
## 13915                        report the    2
## 13916                       reported at    2
## 13917                     reported both    2
## 13918                     reported fire    2
## 13919                  reported hearing    2
## 13920                      reported his    2
## 13921                       reported it    2
## 13922                    reported smoke    2
## 13923                reported technical    2
## 13924                    reporting that    2
## 13925                     reporting the    2
## 13926                    reporting they    2
## 13927                  reports indicate    2
## 13928                        reports to    2
## 13929              repositioning flight    2
## 13930                      requested an    2
## 13931               requested clearance    2
## 13932              requested permission    2
## 13933                     requested the    2
## 13934                     requesting an    2
## 13935                      require that    2
## 13936                      required for    2
## 13937                      required the    2
## 13938                  requirements and    2
## 13939                     requiring the    2
## 13940                         rescue of    2
## 13941                         rescued a    2
## 13942                       rescued the    2
## 13943                       resolve the    2
## 13944                      responded by    2
## 13945                      responded to    2
## 13946                      restarted at    2
## 13947            restricting visibility    2
## 13948                    resulting fire    2
## 13949                     returning the    2
## 13950                 reverse direction    2
## 13951                   reversed course    2
## 13952                      reverser the    2
## 13953                     reversers the    2
## 13954                       rice canyon    2
## 13955                           ride in    2
## 13956                         ridge the    2
## 13957                            rig to    2
## 13958                          right as    2
## 13959                     right causing    2
## 13960                      right during    2
## 13961                        right gear    2
## 13962                     right instead    2
## 13963                     right stalled    2
## 13964                      right toilet    2
## 13965                     right turbine    2
## 13966                     right wingtip    2
## 13967                        right with    2
## 13968                     rikers island    2
## 13969                       ripping the    2
## 13970                   risk management    2
## 13971                    ritchie valens    2
## 13972                          river 20    2
## 13973                          river 50    2
## 13974                         river bed    2
## 13975                          river on    2
## 13976                         river two    2
## 13977                          road the    2
## 13978                       roadway and    2
## 13979                         rock face    2
## 13980                         rod which    2
## 13981                      roll control    2
## 13982                       rolling the    2
## 13983                        rome italy    2
## 13984                          rome the    2
## 13985                    rome witnesses    2
## 13986                          room for    2
## 13987                        rotated at    2
## 13988                       rotating to    2
## 13989                      rotation and    2
## 13990                   rotation during    2
## 13991                       rotation of    2
## 13992                      rotation the    2
## 13993                         rotor the    2
## 13994                    route aircraft    2
## 13995                       route being    2
## 13996                     route between    2
## 13997                        route fire    2
## 13998                 route incorrectly    2
## 13999                        route lost    2
## 14000                route navigational    2
## 14001                     route shortly    2
## 14002                       route there    2
## 14003                       route under    2
## 14004                         route was    2
## 14005                        route when    2
## 14006                         rudder by    2
## 14007                   rudder controls    2
## 14008                   rudder hardover    2
## 14009                      rudder pedal    2
## 14010                    rudder surface    2
## 14011                         rules vfr    2
## 14012                           run out    2
## 14013                      running into    2
## 14014                         runway 04    2
## 14015                        runway 05r    2
## 14016                          runway 1    2
## 14017                         runway 13    2
## 14018                         runway 20    2
## 14019                        runway 22l    2
## 14020                        runway 24l    2
## 14021                         runway 25    2
## 14022                        runway 27l    2
## 14023                          runway 6    2
## 14024                         runway an    2
## 14025                    runway boundry    2
## 14026                     runway center    2
## 14027                   runway collided    2
## 14028                runway contributed    2
## 14029               runway contributing    2
## 14030                   runway crashing    2
## 14031                    runway despite    2
## 14032                   runway distance    2
## 14033                        runway due    2
## 14034                       runway edge    2
## 14035                       runway from    2
## 14036                       runway hard    2
## 14037                    runway heading    2
## 14038                      runway icing    2
## 14039                   runway improper    2
## 14040                    runway instead    2
## 14041                    runway landing    2
## 14042                     runway length    2
## 14043                        runway not    2
## 14044                        runway one    2
## 14045                 runway overturned    2
## 14046                     runway passed    2
## 14047                   runway possible    2
## 14048                        runway ran    2
## 14049                   runway remained    2
## 14050                  runway remaining    2
## 14051                     runway rolled    2
## 14052                    runway skidded    2
## 14053                       runway slid    2
## 14054                    runway stalled    2
## 14055                      runway under    2
## 14056                       runway went    2
## 14057                      runway which    2
## 14058                    runway without    2
## 14059                  runway.the plane    2
## 14060                         rushed to    2
## 14061                       russian air    2
## 14062                       russian and    2
## 14063                      rutbah wells    2
## 14064                       s automated    2
## 14065                        s decision    2
## 14066                       s execution    2
## 14067                         s spatial    2
## 14068                       sabotage on    2
## 14069                     safe distance    2
## 14070                   safe separation    2
## 14071                        safely all    2
## 14072                     safely before    2
## 14073                    safely crashed    2
## 14074                         safely in    2
## 14075                       safely made    2
## 14076                        safely one    2
## 14077                      safety board    2
## 14078                     safety height    2
## 14079                      safety pilot    2
## 14080                 safety procedures    2
## 14081                  safety standards    2
## 14082                         saigon to    2
## 14083                       sam missile    2
## 14084                    same direction    2
## 14085                       same runway    2
## 14086                    san bernardino    2
## 14087                         san felix    2
## 14088                        san giusto    2
## 14089                          san luis    2
## 14090                         san ramon    2
## 14091                         sand dune    2
## 14092                         sand haze    2
## 14093                         sank into    2
## 14094                    santiago chile    2
## 14095                      santiago the    2
## 14096                     santo domingo    2
## 14097                             saw a    2
## 14098                        saw flames    2
## 14099                           say the    2
## 14100                         saying he    2
## 14101                  scattered clouds    2
## 14102                 scattering debris    2
## 14103                 scheduled arrival    2
## 14104                  scheduled flight    2
## 14105                 scheduled landing    2
## 14106                  schiphol airport    2
## 14107                    school killing    2
## 14108                        scoop when    2
## 14109                      scrambled to    2
## 14110                            sea 10    2
## 14111                            sea 30    2
## 14112                            sea 35    2
## 14113                             sea 4    2
## 14114                           sea 400    2
## 14115                             sea 8    2
## 14116                            sea at    2
## 14117                         sea cause    2
## 14118                    sea detonation    2
## 14119                     sea following    2
## 14120                            sea on    2
## 14121                         sea pilot    2
## 14122                          sea shot    2
## 14123                          sea wall    2
## 14124                      searched for    2
## 14125                        seas while    2
## 14126                            seat a    2
## 14127                          seat and    2
## 14128                      seat captain    2
## 14129                     seat cushions    2
## 14130                    second takeoff    2
## 14131                       second test    2
## 14132                  second touchdown    2
## 14133                   secondary cause    2
## 14134                       seconds but    2
## 14135                     seconds prior    2
## 14136                       section and    2
## 14137                       section was    2
## 14138                   sector altitude    2
## 14139                    security guard    2
## 14140                            seen a    2
## 14141                       seen coming    2
## 14142                       seen flying    2
## 14143                           seen to    2
## 14144                     selecting the    2
## 14145                      selection of    2
## 14146                   selector handle    2
## 14147                      self locking    2
## 14148                          sense of    2
## 14149                       sensors the    2
## 14150                      sensors were    2
## 14151                     separated the    2
## 14152                     separation by    2
## 14153                 separation during    2
## 14154                    separation was    2
## 14155                  service bulletin    2
## 14156                 service bulletins    2
## 14157                      service life    2
## 14158                     set altimeter    2
## 14159                       setting and    2
## 14160                       setting for    2
## 14161                       setting the    2
## 14162                        setting up    2
## 14163                       settling of    2
## 14164                      seven aboard    2
## 14165                       seven miles    2
## 14166                          seven on    2
## 14167                      seven people    2
## 14168                       seven years    2
## 14169                  seventeen aboard    2
## 14170                  several attempts    2
## 14171                      several cars    2
## 14172               several instruments    2
## 14173                several passengers    2
## 14174                several structures    2
## 14175                    severe control    2
## 14176                  severe snowstorm    2
## 14177                       severed the    2
## 14178                     severely that    2
## 14179                      severity and    2
## 14180                   shallow descent    2
## 14181                       shallow fog    2
## 14182                      shallow turn    2
## 14183                       shamal dust    2
## 14184                     shannon river    2
## 14185                        sharp left    2
## 14186                       sharply and    2
## 14187                         she later    2
## 14188                      she survived    2
## 14189                          shift in    2
## 14190                          shift of    2
## 14191                     shifted after    2
## 14192                        shifted to    2
## 14193                       shifting of    2
## 14194                          ship and    2
## 14195                           ship to    2
## 14196                   shook violently    2
## 14197                       shore after    2
## 14198                         shore and    2
## 14199                          shore of    2
## 14200                       shore while    2
## 14201                         shores of    2
## 14202                       short final    2
## 14203                      short period    2
## 14204                   shortcomings in    2
## 14205                shortly afterwards    2
## 14206                         shot both    2
## 14207                    shoulder fired    2
## 14208                           show at    2
## 14209                         show that    2
## 14210                        shower the    2
## 14211                     shrouded hill    2
## 14212                          shui nan    2
## 14213                           shut it    2
## 14214                       shutdown of    2
## 14215                           sid zue    2
## 14216                         side door    2
## 14217                         sight and    2
## 14218                       sighted and    2
## 14219                        signal was    2
## 14220                     simon bolivar    2
## 14221                  simulated engine    2
## 14222                     simulated two    2
## 14223                simultaneously the    2
## 14224               simultaneously with    2
## 14225                          since it    2
## 14226                        singer jim    2
## 14227                      single plane    2
## 14228                      site crashed    2
## 14229                           site of    2
## 14230                     situation due    2
## 14231                      situation in    2
## 14232                      situation to    2
## 14233                          six crew    2
## 14234                        six months    2
## 14235                        six people    2
## 14236                          size and    2
## 14237                    skidded across    2
## 14238                         skies the    2
## 14239                          skin and    2
## 14240                    skydivers were    2
## 14241                     slamming into    2
## 14242                         slats and    2
## 14243                       slid across    2
## 14244                       sliding off    2
## 14245                   slippery runway    2
## 14246                      slope during    2
## 14247                      slope effect    2
## 14248                          slope on    2
## 14249                          slow and    2
## 14250                           slow so    2
## 14251                         slowed to    2
## 14252                       slowing the    2
## 14253                    small airliner    2
## 14254                      small amount    2
## 14255                       small cargo    2
## 14256                         smith was    2
## 14257                          smoke to    2
## 14258                      snow crashed    2
## 14259                        snow drift    2
## 14260                           snow in    2
## 14261                        snow laden    2
## 14262                       snow shower    2
## 14263                          snow was    2
## 14264                   snowstorm after    2
## 14265                   snowstorm icing    2
## 14266                      snowstorm in    2
## 14267                      snowstorm on    2
## 14268                      snowy forest    2
## 14269                             so by    2
## 14270                       so severely    2
## 14271                           so they    2
## 14272                       soldiers on    2
## 14273                     sole survivor    2
## 14274                    some confusion    2
## 14275                     some vehicles    2
## 14276                    some witnesses    2
## 14277                 somewhere between    2
## 14278                        sooner the    2
## 14279                       sound while    2
## 14280                         sounds of    2
## 14281                        source was    2
## 14282                     south african    2
## 14283                       south after    2
## 14284                    south american    2
## 14285                         south and    2
## 14286                      south dakota    2
## 14287                       south slope    2
## 14288                   south southwest    2
## 14289                   soviet airspace    2
## 14290                     soybean field    2
## 14291                         space the    2
## 14292                         spar boom    2
## 14293                       spare parts    2
## 14294                    special forces    2
## 14295                specifications and    2
## 14296                          speed as    2
## 14297                     speed control    2
## 14298                     speed crashed    2
## 14299                      speed flight    2
## 14300                         speed for    2
## 14301                      speed limits    2
## 14302                        speed mode    2
## 14303                     speed sensors    2
## 14304                       speed while    2
## 14305                   spencer airways    2
## 14306                      spilled fuel    2
## 14307                        spin after    2
## 14308                      spin crashed    2
## 14309                     spiraled down    2
## 14310                          spite of    2
## 14311                         split pin    2
## 14312                    spoiler handle    2
## 14313                    spoiler switch    2
## 14314                    spoiler system    2
## 14315                     spoilers were    2
## 14316                          spot was    2
## 14317                        spread and    2
## 14318                       spread over    2
## 14319                         spread to    2
## 14320                            sse of    2
## 14321                            ssw of    2
## 14322                       st barthãƒâ    2
## 14323                          st croix    2
## 14324                          st johns    2
## 14325                          st louis    2
## 14326                stabilizer crashed    2
## 14327                    stabilizer was    2
## 14328                          stage in    2
## 14329                   stall avoidance    2
## 14330             stall characteristics    2
## 14331                     stall failure    2
## 14332                    stall occurred    2
## 14333                          stall of    2
## 14334                    stall resulted    2
## 14335                   stall resulting    2
## 14336                         stall was    2
## 14337                       stall while    2
## 14338                   stalled entered    2
## 14339                       stalled for    2
## 14340                    stalled struck    2
## 14341                       stalling of    2
## 14342                    stalling speed    2
## 14343                 standard approach    2
## 14344              standard phraseology    2
## 14345                  standard traffic    2
## 14346                     standards for    2
## 14347                standby electrical    2
## 14348                 starboard engines    2
## 14349                    starboard main    2
## 14350               starboard propeller    2
## 14351                    starboard side    2
## 14352                          start of    2
## 14353                         start the    2
## 14354                       started its    2
## 14355                      starting his    2
## 14356                starvation crashed    2
## 14357                    starvation due    2
## 14358                   starvation fuel    2
## 14359                     state airport    2
## 14360                         state and    2
## 14361                        states the    2
## 14362                 static conditions    2
## 14363                      static ports    2
## 14364                      stating they    2
## 14365                        station at    2
## 14366                     station where    2
## 14367                     station while    2
## 14368                           steep a    2
## 14369                        steep bank    2
## 14370                    steep climbing    2
## 14371                  steep descending    2
## 14372                        steep nose    2
## 14373                          steep of    2
## 14374                       steep slope    2
## 14375                         step down    2
## 14376                   sterile cockpit    2
## 14377                    stewardess and    2
## 14378                      stiffness of    2
## 14379                    still strapped    2
## 14380                     still turning    2
## 14381                        stop after    2
## 14382                         stop bolt    2
## 14383                          stop for    2
## 14384                           stop in    2
## 14385                       stop within    2
## 14386                        stopped at    2
## 14387                        stopped in    2
## 14388                   stopped working    2
## 14389                          stops at    2
## 14390                      storm clouds    2
## 14391                        stormed by    2
## 14392                        storms the    2
## 14393                    story building    2
## 14394                      straight and    2
## 14395                     straight down    2
## 14396                        strait the    2
## 14397                       strapped in    2
## 14398                       straps when    2
## 14399                       strewn over    2
## 14400                          strike a    2
## 14401                    strike control    2
## 14402                     strike midair    2
## 14403                       striking an    2
## 14404                      striking and    2
## 14405                    striking three    2
## 14406                      strong cross    2
## 14407               strong thunderstorm    2
## 14408                      struck cerro    2
## 14409                     struck ground    2
## 14410                      struck light    2
## 14411                 struck powerlines    2
## 14412                    struck several    2
## 14413                       struck some    2
## 14414                    struck terrain    2
## 14415                       struck tree    2
## 14416                 structural damage    2
## 14417              structural integrity    2
## 14418            structural limitations    2
## 14419                     structure the    2
## 14420                       struggle in    2
## 14421                      submerged in    2
## 14422          substantial contributing    2
## 14423             substantially reduced    2
## 14424                         suburb of    2
## 14425                         such that    2
## 14426                        sudden and    2
## 14427                     sudden change    2
## 14428                       sudden loss    2
## 14429                     sudden squall    2
## 14430                       sudden turn    2
## 14431                    suddenly nosed    2
## 14432                  suddenly plunged    2
## 14433                   suddenly veered    2
## 14434                     suddenly went    2
## 14435                     suffered from    2
## 14436              suffering structural    2
## 14437            sufficient information    2
## 14438                     sufficient to    2
## 14439                 sufficient visual    2
## 14440                   sufficiently to    2
## 14441                   suicide attempt    2
## 14442                        suicide by    2
## 14443                   suicide crashed    2
## 14444                       suicide the    2
## 14445                suitable alternate    2
## 14446                  suitable terrain    2
## 14447                      summit after    2
## 14448                   supervision and    2
## 14449                      supplies and    2
## 14450                      supplies for    2
## 14451                    supply crashed    2
## 14452                        supply the    2
## 14453                       support and    2
## 14454                   support fitting    2
## 14455                       support the    2
## 14456                       surface the    2
## 14457                     surface winds    2
## 14458             surrounding mountains    2
## 14459                  surrounding this    2
## 14460              surveillance mission    2
## 14461                surveillance radar    2
## 14462                      survived and    2
## 14463                       survived by    2
## 14464                  survived crashed    2
## 14465              survived disappeared    2
## 14466                     survived with    2
## 14467                     survivor died    2
## 14468                    susceptible to    2
## 14469                      suspected an    2
## 14470                      suspected of    2
## 14471                     suspected the    2
## 14472                   suspected while    2
## 14473                 sustained serious    2
## 14474                         swamp and    2
## 14475                    swamp collided    2
## 14476                       swerved off    2
## 14477                        switch and    2
## 14478                      switch cover    2
## 14479                         switch or    2
## 14480                        switch the    2
## 14481                       switched to    2
## 14482                      switching to    2
## 14483                    sydney crashed    2
## 14484                      system aural    2
## 14485                     system caused    2
## 14486                     system either    2
## 14487                        system had    2
## 14488                         system of    2
## 14489                         system on    2
## 14490                         system or    2
## 14491                  system resulting    2
## 14492                     systems after    2
## 14493                               t o    2
## 14494                           tab the    2
## 14495                          tail and    2
## 14496                        tail broke    2
## 14497                          tail end    2
## 14498                          tail fin    2
## 14499                   tail separating    2
## 14500                     tail surfaces    2
## 14501                          tail the    2
## 14502                        tail wheel    2
## 14503                        tail winds    2
## 14504                     tailplane and    2
## 14505                    tailwind level    2
## 14506                      take control    2
## 14507                   take corrective    2
## 14508                      take evasive    2
## 14509                   takeoff because    2
## 14510                     takeoff cause    2
## 14511                takeoff conditions    2
## 14512                 takeoff excessive    2
## 14513                   takeoff factors    2
## 14514                     takeoff flaps    2
## 14515                       takeoff for    2
## 14516                       takeoff hit    2
## 14517                   takeoff hitting    2
## 14518                takeoff inadequate    2
## 14519                      takeoff lost    2
## 14520                takeoff mechanical    2
## 14521                       takeoff one    2
## 14522                   takeoff stalled    2
## 14523                      takeoff this    2
## 14524                    takeoff thrust    2
## 14525                     takeoff under    2
## 14526                      takeoff when    2
## 14527                    taking evasive    2
## 14528                       taking from    2
## 14529                      taking place    2
## 14530                        taking the    2
## 14531                        takoff and    2
## 14532                      tamil rebels    2
## 14533                          tank and    2
## 14534                      tank booster    2
## 14535                      tank causing    2
## 14536                     tank exploded    2
## 14537                     tank gasoline    2
## 14538                    tank resulting    2
## 14539                          tank the    2
## 14540                        tank which    2
## 14541                          tanks to    2
## 14542                      taxi crashed    2
## 14543                           taxi to    2
## 14544                          tcas was    2
## 14545                          team and    2
## 14546                           team to    2
## 14547                     tearing loose    2
## 14548                      technique by    2
## 14549                    techniques and    2
## 14550                     techniques on    2
## 14551                   telephone lines    2
## 14552                   telephone wires    2
## 14553             temperature inversion    2
## 14554                    temporary loss    2
## 14555                      ten american    2
## 14556                        ten killed    2
## 14557                    tension static    2
## 14558                     terminal area    2
## 14559                  terminal control    2
## 14560                        terrain by    2
## 14561                    terrain caused    2
## 14562                      terrain crew    2
## 14563                 terrain following    2
## 14564                    terrorists and    2
## 14565                        test pilot    2
## 14566                          than 100    2
## 14567                          than 400    2
## 14568                            than 5    2
## 14569                          than 500    2
## 14570                     than forecast    2
## 14571                         than half    2
## 14572                      than minimum    2
## 14573                         than that    2
## 14574                     that aircraft    2
## 14575                          that all    2
## 14576                     that although    2
## 14577                    that condition    2
## 14578                     that degraded    2
## 14579                    that developed    2
## 14580                   that eventually    2
## 14581                    that extension    2
## 14582                     that included    2
## 14583                          that its    2
## 14584                          that may    2
## 14585                           that no    2
## 14586                           that of    2
## 14587                          that one    2
## 14588                   that particular    2
## 14589                   that prescribed    2
## 14590                       that runway    2
## 14591                         that when    2
## 14592                    that windshear    2
## 14593                           the 007    2
## 14594                            the 18    2
## 14595                             the 3    2
## 14596                           the 707    2
## 14597                            the 88    2
## 14598                      the abnormal    2
## 14599                          the acme    2
## 14600                       the actions    2
## 14601                    the activation    2
## 14602                            the ad    2
## 14603                           the adf    2
## 14604                     the aerodrome    2
## 14605                       the airbase    2
## 14606                       the aircrew    2
## 14607                      the airframe    2
## 14608                     the airplaneã    2
## 14609                         the alarm    2
## 14610                      the algerian    2
## 14611                          the alps    2
## 14612                    the altimeters    2
## 14613                     the antarctic    2
## 14614                       the arabian    2
## 14615                       the arrival    2
## 14616                    the associated    2
## 14617                   the autofeather    2
## 14618                  the availability    2
## 14619                     the avoidance    2
## 14620                          the band    2
## 14621                       the banking    2
## 14622                          the bell    2
## 14623                         the belly    2
## 14624                          the best    2
## 14625                           the big    2
## 14626                        the blades    2
## 14627                         the blaze    2
## 14628                          the book    2
## 14629                        the border    2
## 14630                        the bounce    2
## 14631                         the brake    2
## 14632                     the brazilian    2
## 14633                       the british    2
## 14634                      the bulkhead    2
## 14635                          the bush    2
## 14636                           the caa    2
## 14637                        the cables    2
## 14638                      the cameroon    2
## 14639                      the canadair    2
## 14640                        the canyon    2
## 14641                          the cape    2
## 14642                           the car    2
## 14643                        the carbon    2
## 14644                       the caspian    2
## 14645                    the casualties    2
## 14646                  the catastrophic    2
## 14647                    the centerline    2
## 14648                       the central    2
## 14649                     the certified    2
## 14650                       the chimney    2
## 14651                         the china    2
## 14652                      the civilian    2
## 14653                     the clearance    2
## 14654                        the closed    2
## 14655                        the clouds    2
## 14656                     the coastline    2
## 14657                      the collapse    2
## 14658                     the colombian    2
## 14659                    the comparator    2
## 14660                    the compressor    2
## 14661                    the conditions    2
## 14662                       the conduct    2
## 14663                      the confines    2
## 14664                  the contributing    2
## 14665                  the contributory    2
## 14666                     the copilot's    2
## 14667                       the country    2
## 14668                         the court    2
## 14669                         the crack    2
## 14670                         the crewã    2
## 14671                         the crime    2
## 14672                         the cross    2
## 14673                      the cylinder    2
## 14674                        the danger    2
## 14675                      the darkness    2
## 14676                          the data    2
## 14677                        the deaths    2
## 14678                     the deficient    2
## 14679                        the degree    2
## 14680                         the dense    2
## 14681                   the development    2
## 14682                        the direct    2
## 14683                 the disconnection    2
## 14684                    the dispatcher    2
## 14685                         the dutch    2
## 14686                       the earlier    2
## 14687                         the earth    2
## 14688                       the ecuador    2
## 14689                       the electra    2
## 14690                       the embraer    2
## 14691                     the empennage    2
## 14692                  the encountering    2
## 14693                      the entrance    2
## 14694                     the erroneous    2
## 14695                    the evacuation    2
## 14696                      the evidence    2
## 14697                     the execution    2
## 14698                       the exhaust    2
## 14699                     the existence    2
## 14700                      the existing    2
## 14701                  the experimental    2
## 14702                        the extent    2
## 14703                       the extreme    2
## 14704                         the fatal    2
## 14705                    the fatalities    2
## 14706                         the ferry    2
## 14707                      the firewall    2
## 14708                          the five    2
## 14709                     the flammable    2
## 14710                         the flare    2
## 14711                         the floor    2
## 14712                           the fms    2
## 14713                        the fokker    2
## 14714                     the foothills    2
## 14715                      the forecast    2
## 14716                     the formation    2
## 14717                          the four    2
## 14718                         the fully    2
## 14719                         the ghost    2
## 14720                     the glidepath    2
## 14721                          the good    2
## 14722                      the governor    2
## 14723                    the gyroscopic    2
## 14724                      the handling    2
## 14725                       the harvard    2
## 14726                         the hills    2
## 14727                            the hk    2
## 14728                          the hold    2
## 14729                      the hydrogen    2
## 14730                    the inadequacy    2
## 14731                the incapacitation    2
## 14732                    the increasing    2
## 14733                    the indication    2
## 14734                    the indonesian    2
## 14735                     the influence    2
## 14736                     the ingestion    2
## 14737                       the inquiry    2
## 14738                    the inspection    2
## 14739                  the installation    2
## 14740                  the instructions    2
## 14741                     the intention    2
## 14742                       the israeli    2
## 14743                  the jacksonville    2
## 14744                       the jakarta    2
## 14745                       the jamming    2
## 14746                      the jeppesen    2
## 14747                         the jet's    2
## 14748                          the king    2
## 14749                         the known    2
## 14750                             the l    2
## 14751                           the las    2
## 14752                          the late    2
## 14753                        the latter    2
## 14754                           the lee    2
## 14755                        the length    2
## 14756                         the level    2
## 14757                            the li    2
## 14758                          the lift    2
## 14759                      the lighting    2
## 14760                     the lightning    2
## 14761                    the likelihood    2
## 14762                   the limitations    2
## 14763                       the limited    2
## 14764                          the load    2
## 14765                         the local    2
## 14766                      the lockheed    2
## 14767                          the make    2
## 14768                    the manacapuru    2
## 14769                the manufacturer's    2
## 14770                 the manufacturing    2
## 14771                        the marine    2
## 14772                          the mast    2
## 14773                     the mechanism    2
## 14774                          the migs    2
## 14775                      the minimums    2
## 14776                       the missile    2
## 14777                        the moment    2
## 14778                          the more    2
## 14779                         the movie    2
## 14780                            the mt    2
## 14781                     the nationair    2
## 14782                    the navigation    2
## 14783                          the navy    2
## 14784                     the necessity    2
## 14785                          the need    2
## 14786                          the news    2
## 14787                     the northwest    2
## 14788                  the northwestern    2
## 14789                     the occupants    2
## 14790                           the off    2
## 14791                      the omission    2
## 14792                       the opening    2
## 14793                     the operation    2
## 14794                   the opportunity    2
## 14795                           the p2v    2
## 14796                     the pakistani    2
## 14797                    the panamanian    2
## 14798                   the passenger's    2
## 14799                          the path    2
## 14800                           the pcu    2
## 14801                      the physical    2
## 14802                           the pic    2
## 14803                         the pic's    2
## 14804                          the plan    2
## 14805                       the planned    2
## 14806                        the police    2
## 14807                      the possible    2
## 14808                      the problems    2
## 14809                    the procedures    2
## 14810                       the profile    2
## 14811                   the progressive    2
## 14812                         the pylon    2
## 14813                          the ramp    2
## 14814                      the recovery    2
## 14815                       the reduced    2
## 14816                      the regional    2
## 14817                       the remains    2
## 14818                        the rescue    2
## 14819                          the risk    2
## 14820                      the rockwell    2
## 14821                         the rodeo    2
## 14822                      the rotation    2
## 14823                         the royal    2
## 14824                    the runway.the    2
## 14825                      the ruptured    2
## 14826                          the saab    2
## 14827                     the sanctuary    2
## 14828                          the seas    2
## 14829                           the see    2
## 14830                       the sensors    2
## 14831                       the shannon    2
## 14832                     the shoreline    2
## 14833                           the sky    2
## 14834                          the sole    2
## 14835                           the son    2
## 14836                        the source    2
## 14837                         the spark    2
## 14838                       the spencer    2
## 14839                         the spins    2
## 14840                         the sprag    2
## 14841                       the standby    2
## 14842                       the starter    2
## 14843                      the starting    2
## 14844                        the static    2
## 14845                         the steep    2
## 14846                         the stone    2
## 14847                      the stoppage    2
## 14848                        the strong    2
## 14849                            the su    2
## 14850                        the suburb    2
## 14851                        the sudden    2
## 14852                           the sun    2
## 14853                      the surfaces    2
## 14854                     the tailplane    2
## 14855                        the taking    2
## 14856                         the tanks    2
## 14857                          the taws    2
## 14858                       the taxiway    2
## 14859                          the team    2
## 14860                          the term    2
## 14861                          the test    2
## 14862                  the thunderstorm    2
## 14863                        the toilet    2
## 14864                         the total    2
## 14865                         the towel    2
## 14866                           the tri    2
## 14867                          the trim    2
## 14868                     the tupolev's    2
## 14869                     the turboprop    2
## 14870                    the turbulence    2
## 14871                    the tyrrhenian    2
## 14872                 the unintentional    2
## 14873                    the university    2
## 14874                      the unmarked    2
## 14875                    the venezuelan    2
## 14876                          the vent    2
## 14877                          the very    2
## 14878                     the vibration    2
## 14879                       the vickers    2
## 14880                        the waters    2
## 14881                        the weight    2
## 14882                     the windshear    2
## 14883                        the wing's    2
## 14884                       the wingtip    2
## 14885                         the wires    2
## 14886                        the wiring    2
## 14887                         the woods    2
## 14888                          the work    2
## 14889                    their aircraft    2
## 14890                      their course    2
## 14891                    their degraded    2
## 14892                  their dependents    2
## 14893                     their descent    2
## 14894                      their flight    2
## 14895                        their fuel    2
## 14896                  their helicopter    2
## 14897                 their instruments    2
## 14898                        their lack    2
## 14899                      their safety    2
## 14900                        their seat    2
## 14901                       their speed    2
## 14902                     their takeoff    2
## 14903                         their use    2
## 14904                         their way    2
## 14905                         them from    2
## 14906                           them of    2
## 14907                      then advance    2
## 14908                      then advised    2
## 14909                   then apparently    2
## 14910                           then at    2
## 14911                       then banked    2
## 14912                        then dived    2
## 14913                      then entered    2
## 14914                         then nose    2
## 14915                          then ran    2
## 14916                      then reduced    2
## 14917                      then skidded    2
## 14918                       then struck    2
## 14919                         then they    2
## 14920                        then tried    2
## 14921                       then veered    2
## 14922                      there should    2
## 14923                      they assumed    2
## 14924                       they became    2
## 14925                      they decided    2
## 14926                      they drowned    2
## 14927                       they failed    2
## 14928                         they flew    2
## 14929                          they hit    2
## 14930                     they observed    2
## 14931                     they probably    2
## 14932                          they saw    2
## 14933                       they should    2
## 14934                        they tried    2
## 14935                       they worked    2
## 14936                        they would    2
## 14937                       thick smoke    2
## 14938                    third aircraft    2
## 14939                    third approach    2
## 14940                    third practice    2
## 14941                         third try    2
## 14942                   thirteen aboard    2
## 14943                   thirteen killed    2
## 14944                       thirty nine    2
## 14945                        thirty six    2
## 14946                      thirty three    2
## 14947                       this action    2
## 14948                         this case    2
## 14949                    this condition    2
## 14950                        this could    2
## 14951                        this error    2
## 14952                     this maneuver    2
## 14953                      this message    2
## 14954                     this required    2
## 14955                    this situation    2
## 14956                   this structural    2
## 14957                        this would    2
## 14958                         those for    2
## 14959                     those onboard    2
## 14960                       though this    2
## 14961                      three aboard    2
## 14962                        three crew    2
## 14963                   three different    2
## 14964                       three hours    2
## 14965                        three more    2
## 14966                      three others    2
## 14967                       three parts    2
## 14968                    three sections    2
## 14969                       three story    2
## 14970                        three were    2
## 14971                       throttle to    2
## 14972                    throttles back    2
## 14973                     through 3,000    2
## 14974                       through its    2
## 14975                   through several    2
## 14976                     through small    2
## 14977                       thrown into    2
## 14978                    thrust bearing    2
## 14979                  thrust reversers    2
## 14980                    thrust setting    2
## 14981                      thrust while    2
## 14982                 thunderstorm cell    2
## 14983                 thunderstorm that    2
## 14984                  thunderstorm was    2
## 14985                  thunderstorms at    2
## 14986               thunderstorms while    2
## 14987                          thus the    2
## 14988                        tight turn    2
## 14989                          time all    2
## 14990                     time approach    2
## 14991                           time at    2
## 14992                    time available    2
## 14993                      time because    2
## 14994                           time by    2
## 14995                     time exceeded    2
## 14996                         time from    2
## 14997                           time on    2
## 14998                         time that    2
## 14999                         time were    2
## 15000                        time while    2
## 15001                         time with    2
## 15002                    time witnesses    2
## 15003                   timely decision    2
## 15004                         times the    2
## 15005                       tingo maria    2
## 15006                           tip and    2
## 15007                           tip hit    2
## 15008                         tire blew    2
## 15009                       tire during    2
## 15010                     tire exploded    2
## 15011                        tire while    2
## 15012                          tires on    2
## 15013                       tires which    2
## 15014                         to 10,000    2
## 15015                             to 15    2
## 15016                             to 18    2
## 15017                              to 2    2
## 15018                          to 2,000    2
## 15019                             to 20    2
## 15020                             to 40    2
## 15021                            to 400    2
## 15022                             to 50    2
## 15023                            to 500    2
## 15024                            to 700    2
## 15025                          to abide    2
## 15026                        to abidjan    2
## 15027                     to accomplish    2
## 15028                        to achieve    2
## 15029                       to aircraft    2
## 15030                          to amman    2
## 15031                         to ankara    2
## 15032                            to any    2
## 15033                     to appreciate    2
## 15034                  to approximately    2
## 15035                            to ask    2
## 15036                         to assess    2
## 15037                        to attract    2
## 15038                           to bail    2
## 15039                      to baltimore    2
## 15040                           to base    2
## 15041                          to belem    2
## 15042                        to bermuda    2
## 15043                           to bird    2
## 15044                          to board    2
## 15045                         to bounce    2
## 15046                           to burn    2
## 15047                        to caracas    2
## 15048                     to carburetor    2
## 15049                     to casablanca    2
## 15050                          to catch    2
## 15051                           to cebu    2
## 15052                       to cheyenne    2
## 15053                 to circumnavigate    2
## 15054                   to civilization    2
## 15055                        to cockpit    2
## 15056                         to commit    2
## 15057                     to compensate    2
## 15058                        to confirm    2
## 15059                        to contain    2
## 15060                  to contamination    2
## 15061                      to corrosion    2
## 15062                       to crashing    2
## 15063                            to cut    2
## 15064                         to damage    2
## 15065                           to deal    2
## 15066                     to definitely    2
## 15067                         to depart    2
## 15068                         to deploy    2
## 15069                         to design    2
## 15070                         to detach    2
## 15071                         to direct    2
## 15072                  to disconnection    2
## 15073                      to disengage    2
## 15074                        to display    2
## 15075                    to distinguish    2
## 15076                           to dump    2
## 15077                             to el    2
## 15078                        to enforce    2
## 15079                       to esenboga    2
## 15080                      to explosive    2
## 15081                         to extend    2
## 15082                        to extreme    2
## 15083                         to faulty    2
## 15084                          to fl100    2
## 15085                          to fl140    2
## 15086                        to flutter    2
## 15087                          to force    2
## 15088                          to glide    2
## 15089                       to gulfport    2
## 15090                          to hanoi    2
## 15091                           to head    2
## 15092                           to heed    2
## 15093                            to ifr    2
## 15094                      to implement    2
## 15095                     to improperly    2
## 15096                        to improve    2
## 15097                  to inappropriate    2
## 15098                    to investigate    2
## 15099                          to issue    2
## 15100                           to join    2
## 15101                         to jomsom    2
## 15102                           to jump    2
## 15103                         to juneau    2
## 15104                       to kingston    2
## 15105                       to kinshasa    2
## 15106                     to kirksville    2
## 15107                      to kisangani    2
## 15108                            to lax    2
## 15109                           to lock    2
## 15110                          to logan    2
## 15111                          to loose    2
## 15112                         to luanda    2
## 15113                     to manipulate    2
## 15114                     to mechanical    2
## 15115                      to millville    2
## 15116                        to minimum    2
## 15117                       to montreal    2
## 15118                       to navigate    2
## 15119                     to navigation    2
## 15120                         to newark    2
## 15121                            to non    2
## 15122                            to not    2
## 15123                         to notify    2
## 15124                            to one    2
## 15125                         to ostend    2
## 15126                       to overcome    2
## 15127                        to overfly    2
## 15128                         to oxygen    2
## 15129                           to pass    2
## 15130                     to passengers    2
## 15131                     to performing    2
## 15132                          to pilot    2
## 15133                          to pitch    2
## 15134                       to popayãƒâ    2
## 15135                       to portland    2
## 15136                     to procedures    2
## 15137                         to puerto    2
## 15138                          to quito    2
## 15139                          to radio    2
## 15140                          to raise    2
## 15141                           to read    2
## 15142                        to release    2
## 15143                         to repair    2
## 15144                         to report    2
## 15145                        to request    2
## 15146                        to require    2
## 15147                         to rescue    2
## 15148                           to ride    2
## 15149                            to rio    2
## 15150                           to rise    2
## 15151                            to run    2
## 15152                         to safely    2
## 15153                            to sam    2
## 15154                          to santa    2
## 15155                       to santiago    2
## 15156                            to sao    2
## 15157                          to seven    2
## 15158                          to shake    2
## 15159                           to shut    2
## 15160                           to sink    2
## 15161                           to skid    2
## 15162                           to some    2
## 15163                       to standard    2
## 15164                           to stay    2
## 15165                   to successfully    2
## 15166                         to supply    2
## 15167                        to support    2
## 15168                        to sustain    2
## 15169                           to taxi    2
## 15170                         to tehran    2
## 15171                       to tenerife    2
## 15172                        to terrain    2
## 15173                          to touch    2
## 15174                       to transfer    2
## 15175                         to travel    2
## 15176                            to vfr    2
## 15177                         to visual    2
## 15178                       to warnings    2
## 15179                           to wear    2
## 15180                        to wenzhou    2
## 15181                           to wind    2
## 15182                           to wing    2
## 15183                           to work    2
## 15184                         to zurich    2
## 15185                       tokyo japan    2
## 15186                           told of    2
## 15187                           toll in    2
## 15188                          toll was    2
## 15189                          tons the    2
## 15190                          too many    2
## 15191                         too short    2
## 15192                        too slowly    2
## 15193                       top ranking    2
## 15194                           top the    2
## 15195                    tops resulting    2
## 15196                        tore apart    2
## 15197                        total loss    2
## 15198                      total weight    2
## 15199                        touch down    2
## 15200                         touch the    2
## 15201                       touchdown a    2
## 15202                          tour bus    2
## 15203                     tour carrying    2
## 15204                          tour the    2
## 15205                           tow the    2
## 15206                     tower because    2
## 15207                     tower crashed    2
## 15208                         tower did    2
## 15209                        tower they    2
## 15210                      tower warned    2
## 15211                         tower was    2
## 15212                       toxic smoke    2
## 15213                        trace over    2
## 15214                       trace while    2
## 15215                       track which    2
## 15216                      trade center    2
## 15217                      trailer park    2
## 15218                    trailing smoke    2
## 15219                       trainee and    2
## 15220                        trainee in    2
## 15221                  training crashed    2
## 15222                       training of    2
## 15223                         trang air    2
## 15224              transatlantic flight    2
## 15225                  transfer process    2
## 15226                transfer propeller    2
## 15227                    transferred at    2
## 15228                  transferred fuel    2
## 15229                    transmitted by    2
## 15230                    transmitted to    2
## 15231                    transmitting a    2
## 15232                   transmitting an    2
## 15233                    transponder on    2
## 15234                     transport was    2
## 15235             transportation safety    2
## 15236                  transporting oil    2
## 15237                          tree 200    2
## 15238                       tree during    2
## 15239                        tree while    2
## 15240                       trees 2,000    2
## 15241                       trees along    2
## 15242                          trees as    2
## 15243                     trees factors    2
## 15244                     trees failure    2
## 15245                        trees loss    2
## 15246                        trees lost    2
## 15247                      trees struck    2
## 15248                          trees to    2
## 15249                        trees were    2
## 15250                      treetops and    2
## 15251                          tri city    2
## 15252                         tri motor    2
## 15253                       trinity bay    2
## 15254                         trip from    2
## 15255                          trip the    2
## 15256                           trip to    2
## 15257                        tripoli to    2
## 15258                       troops from    2
## 15259                         troops to    2
## 15260                    tropical storm    2
## 15261                 trouble attempted    2
## 15262                        trouble in    2
## 15263                      trouble lost    2
## 15264                   trouble shortly    2
## 15265                       truck while    2
## 15266                             try a    2
## 15267                           try the    2
## 15268                     tube assembly    2
## 15269                          tuned to    2
## 15270                       tupolev and    2
## 15271                       tupolev the    2
## 15272                       turbine and    2
## 15273                     turbine blade    2
## 15274                      turbine disc    2
## 15275                     turbine wheel    2
## 15276            turbulence encountered    2
## 15277               turbulence possibly    2
## 15278                    turbulence was    2
## 15279                   turbulence when    2
## 15280                       turn before    2
## 15281                          turn but    2
## 15282                          turn for    2
## 15283                         turn just    2
## 15284                         turn left    2
## 15285                         turn lost    2
## 15286                           turn or    2
## 15287                         turn over    2
## 15288                  turn preparatory    2
## 15289                          turn too    2
## 15290                         turn when    2
## 15291                        turn while    2
## 15292                         turn with    2
## 15293                       turned onto    2
## 15294                        turned out    2
## 15295                       turning and    2
## 15296                    turning around    2
## 15297                      turning into    2
## 15298                       turning off    2
## 15299                       turning out    2
## 15300                       turning the    2
## 15301                       turning too    2
## 15302                          tv movie    2
## 15303                     twelve killed    2
## 15304                        twenty two    2
## 15305                         twice the    2
## 15306                     two accidents    2
## 15307                         two after    2
## 15308                      two attempts    2
## 15309                    two explosions    2
## 15310                          two full    2
## 15311                     two hydraulic    2
## 15312                       two landing    2
## 15313                          two main    2
## 15314                      two military    2
## 15315                     two occasions    2
## 15316                      two previous    2
## 15317                       two seconds    2
## 15318                           two the    2
## 15319                         two times    2
## 15320                      two vehicles    2
## 15321                          two year    2
## 15322                         two years    2
## 15323                    tyrrhenian sea    2
## 15324                       u.s senator    2
## 15325                       u.s special    2
## 15326                        u.s troops    2
## 15327                       ukraine the    2
## 15328                        unaware of    2
## 15329                      unaware that    2
## 15330            uncommanded deployment    2
## 15331               uncontained failure    2
## 15332            uncontrollable descent    2
## 15333               uncontrollable loss    2
## 15334       uncontrollable overspeeding    2
## 15335               uncontrollable roll    2
## 15336               uncontrollable spin    2
## 15337                     under certain    2
## 15338                    under existing    2
## 15339                       under these    2
## 15340                     under weather    2
## 15341                    understand the    2
## 15342                       undertake a    2
## 15343                     undertake the    2
## 15344                     undetected by    2
## 15345                  undetermined and    2
## 15346            undetermined emergency    2
## 15347               undetermined reason    2
## 15348                  unfamiliarity of    2
## 15349            unfavorable conditions    2
## 15350                       unita rebel    2
## 15351                         united dc    2
## 15352                    united express    2
## 15353               university football    2
## 15354                     university of    2
## 15355                  unknown although    2
## 15356                       unknown and    2
## 15357                        unknown in    2
## 15358                        unknown it    2
## 15359                   unknown shortly    2
## 15360                     unknown while    2
## 15361                     unmarked fuel    2
## 15362                  unsafe condition    2
## 15363                      unsafe speed    2
## 15364           unstabilized instrument    2
## 15365             unsuccessful attempts    2
## 15366                       unusual and    2
## 15367                         up before    2
## 15368                           up both    2
## 15369                        up crashed    2
## 15370                           up crew    2
## 15371                         up during    2
## 15372                        up failure    2
## 15373                       up maneuver    2
## 15374                         up rolled    2
## 15375                          up slope    2
## 15376                            up too    2
## 15377                          up which    2
## 15378                          up while    2
## 15379                     upon reaching    2
## 15380                       upon taking    2
## 15381                        upper wing    2
## 15382                 upsloping terrain    2
## 15383                         usair and    2
## 15384                             use a    2
## 15385                           use his    2
## 15386                           used an    2
## 15387                       used during    2
## 15388                          used for    2
## 15389                           used on    2
## 15390                         used when    2
## 15391                         using all    2
## 15392                   vacant building    2
## 15393                        vacant lot    2
## 15394                         valley in    2
## 15395                      valley while    2
## 15396                        values for    2
## 15397                         valve and    2
## 15398                         valve the    2
## 15399                       valves were    2
## 15400                          van nuys    2
## 15401                         vapors in    2
## 15402                          veer off    2
## 15403                          vent and    2
## 15404                         vent line    2
## 15405                        vented was    2
## 15406                   verification of    2
## 15407                    vertical climb    2
## 15408                     vertical gyro    2
## 15409                     vertically at    2
## 15410                   vertically into    2
## 15411                         very slow    2
## 15412                      very steeply    2
## 15413                     vesna vulovic    2
## 15414                    vfr separation    2
## 15415                     vibration and    2
## 15416                      vibration of    2
## 15417                     vibration was    2
## 15418                   vibration which    2
## 15419                  victims included    2
## 15420                        victims of    2
## 15421                       village the    2
## 15422                    violations and    2
## 15423                      viscount was    2
## 15424                     viscount were    2
## 15425                      visibility a    2
## 15426                  visibility below    2
## 15427                 visibility caused    2
## 15428                 visibility crew's    2
## 15429                     visibility of    2
## 15430                     visibility or    2
## 15431               visibility possible    2
## 15432                   visibility rain    2
## 15433                visibility shortly    2
## 15434                 visibility struck    2
## 15435                     visibility to    2
## 15436                   visibility were    2
## 15437              visibility windshear    2
## 15438                    visual lookout    2
## 15439                     volcano while    2
## 15440                   volleyball team    2
## 15441                    von richthofen    2
## 15442                        vor beacon    2
## 15443                    vor instrument    2
## 15444                              w or    2
## 15445                       wake vortex    2
## 15446                           wall of    2
## 15447                   wall overturned    2
## 15448                  wall surrounding    2
## 15449                       war crashed    2
## 15450                           war the    2
## 15451                         warning a    2
## 15452                  warning followed    2
## 15453                  warning occurred    2
## 15454                   warning systems    2
## 15455                       warning the    2
## 15456                       warnings as    2
## 15457                  warnings crashed    2
## 15458                     warnings that    2
## 15459                             was 1    2
## 15460                         was 1,000    2
## 15461                            was 12    2
## 15462                             was 2    2
## 15463                            was 44    2
## 15464                     was abandoned    2
## 15465                        was aboard    2
## 15466                  was accidentally    2
## 15467                     was acquitted    2
## 15468                       was advised    2
## 15469                    was aggravated    2
## 15470                 was approximately    2
## 15471                      was arrested    2
## 15472                     was available    2
## 15473                         was badly    2
## 15474                        was barely    2
## 15475                       was because    2
## 15476                         was bound    2
## 15477                        was called    2
## 15478                       was changed    2
## 15479                       was charged    2
## 15480                     was committed    2
## 15481                     was conducive    2
## 15482                    was conducting    2
## 15483                  was considerably    2
## 15484                     was contacted    2
## 15485                       was crushed    2
## 15486                    was demolished    2
## 15487                      was designed    2
## 15488                      was detected    2
## 15489                     was detonated    2
## 15490                       was ditched    2
## 15491                         was doing    2
## 15492                       was dragged    2
## 15493                       was engaged    2
## 15494                      was evidence    2
## 15495                      was exceeded    2
## 15496                     was exhausted    2
## 15497                   was experienced    2
## 15498                      was ferrying    2
## 15499                       was finally    2
## 15500                         was first    2
## 15501                           was for    2
## 15502                       was grossly    2
## 15503                       was holding    2
## 15504                          was i've    2
## 15505                    was impossible    2
## 15506                      was improper    2
## 15507                    was improperly    2
## 15508                    was inadequate    2
## 15509                     was incapable    2
## 15510                     was increased    2
## 15511                     was installed    2
## 15512                   was intoxicated    2
## 15513                          was late    2
## 15514                   was manoeuvring    2
## 15515                    was mistakenly    2
## 15516                          was most    2
## 15517                          was near    2
## 15518                         was noted    2
## 15519                          was only    2
## 15520                          was open    2
## 15521                      was operated    2
## 15522                       was ordered    2
## 15523                       was planted    2
## 15524                      was possible    2
## 15525                    was presumably    2
## 15526                      was probably    2
## 15527                      was provided    2
## 15528                       was quickly    2
## 15529                        was raised    2
## 15530                     was receiving    2
## 15531                   was recommended    2
## 15532                      was regained    2
## 15533                      was repaired    2
## 15534                     was requested    2
## 15535                      was required    2
## 15536                   was responsible    2
## 15537                     was restarted    2
## 15538                     was retracted    2
## 15539                        was rising    2
## 15540                       was running    2
## 15541                     was scrambled    2
## 15542                      was selected    2
## 15543                     was seriously    2
## 15544                      was severely    2
## 15545                       was sheared    2
## 15546                      was shrouded    2
## 15547                       was sitting    2
## 15548                          was soon    2
## 15549                        was strewn    2
## 15550                     was subjected    2
## 15551                 was substantially    2
## 15552                  was successfully    2
## 15553                     was suspended    2
## 15554                       was taxiing    2
## 15555                       was thought    2
## 15556                   was transmitted    2
## 15557                         was tried    2
## 15558                     was triggered    2
## 15559                   was unconscious    2
## 15560                  was undetermined    2
## 15561                         was waved    2
## 15562                            was we    2
## 15563                        was within    2
## 15564               washington national    2
## 15565                           water a    2
## 15566                          water an    2
## 15567                     water crashed    2
## 15568                      water during    2
## 15569                    water followed    2
## 15570                          water he    2
## 15571                   water ingestion    2
## 15572                   water injection    2
## 15573                     water landing    2
## 15574                        water tank    2
## 15575                        water when    2
## 15576                        waters and    2
## 15577                          wave and    2
## 15578                        wave which    2
## 15579                          way home    2
## 15580                            way on    2
## 15581                       way through    2
## 15582                      wayne county    2
## 15583                           wear of    2
## 15584                  weather briefing    2
## 15585                       weather but    2
## 15586               weather conditiions    2
## 15587            weather conditions.the    2
## 15588                      weather crew    2
## 15589                   weather failure    2
## 15590                   weather forcast    2
## 15591                    weather hazard    2
## 15592                      weather into    2
## 15593                    weather minima    2
## 15594                        weather on    2
## 15595                weather operations    2
## 15596                        weather or    2
## 15597                 weather resulting    2
## 15598                      weather shot    2
## 15599                   weather spatial    2
## 15600                   weather warning    2
## 15601                     weather which    2
## 15602                        week later    2
## 15603                        weight for    2
## 15604                        weight was    2
## 15605                          well the    2
## 15606                    wellington was    2
## 15607                     went airborne    2
## 15608                         went nose    2
## 15609                           went up    2
## 15610                            were 1    2
## 15611                     were actually    2
## 15612                     were arrested    2
## 15613                        were being    2
## 15614                         were both    2
## 15615                       were clouds    2
## 15616                  were conflicting    2
## 15617                   were considered    2
## 15618                 were contributing    2
## 15619                          were cut    2
## 15620                         were dark    2
## 15621                     were disabled    2
## 15622                  were encountered    2
## 15623                 were experiencing    2
## 15624                         were free    2
## 15625                         were from    2
## 15626                        were going    2
## 15627                       were headed    2
## 15628                      were heading    2
## 15629                     were improper    2
## 15630                were inadvertently    2
## 15631                  were indications    2
## 15632                     were ingested    2
## 15633                 were insufficient    2
## 15634                     were involved    2
## 15635                       were losing    2
## 15636                         were lost    2
## 15637                       were mainly    2
## 15638                       were making    2
## 15639                     were obscured    2
## 15640                          were off    2
## 15641                       were opened    2
## 15642                          were out    2
## 15643                         were over    2
## 15644                  were preoccupied    2
## 15645                      were present    2
## 15646                     were probably    2
## 15647                      were reduced    2
## 15648                      were removed    2
## 15649                      were reports    2
## 15650                      were sheared    2
## 15651                         were shot    2
## 15652                        were still    2
## 15653                     were supposed    2
## 15654                       were taking    2
## 15655                       were thrown    2
## 15656                         were told    2
## 15657                          were too    2
## 15658                         were torn    2
## 15659                      were trained    2
## 15660                    were traveling    2
## 15661                       were turned    2
## 15662                        were using    2
## 15663                            west a    2
## 15664                        west coast    2
## 15665                          west end    2
## 15666                          west the    2
## 15667                  western airlines    2
## 15668                     western slope    2
## 15669                    western slopes    2
## 15670                     what appeared    2
## 15671                       wheeled and    2
## 15672                         wheels up    2
## 15673                     when breaking    2
## 15674                    when committed    2
## 15675                   when conditions    2
## 15676                         when fire    2
## 15677                          when one    2
## 15678                      when passing    2
## 15679                        when smoke    2
## 15680                        when their    2
## 15681                           where a    2
## 15682                          where no    2
## 15683                         where she    2
## 15684                       where there    2
## 15685                        where they    2
## 15686                       whether the    2
## 15687                      which became    2
## 15688                        which both    2
## 15689                       which cause    2
## 15690                     which damaged    2
## 15691                    which disabled    2
## 15692                which necessitated    2
## 15693                  which originated    2
## 15694                    which prompted    2
## 15695                         which put    2
## 15696                     which reduced    2
## 15697                   which separated    2
## 15698                     which started    2
## 15699                       which there    2
## 15700                    which together    2
## 15701                        which tore    2
## 15702                  which ultimately    2
## 15703                           while a    2
## 15704                       while being    2
## 15705                        while both    2
## 15706                      while coming    2
## 15707                    while ferrying    2
## 15708                          while he    2
## 15709                  while overflying    2
## 15710               while participating    2
## 15711                      while taxing    2
## 15712                   while traveling    2
## 15713                       while under    2
## 15714                         white out    2
## 15715                   whitehall range    2
## 15716                       who decided    2
## 15717                          wife and    2
## 15718                         wife were    2
## 15719                        wind shear    2
## 15720                         window of    2
## 15721                        winds from    2
## 15722                          winds in    2
## 15723                  winds relatively    2
## 15724                        winds when    2
## 15725                    winds wreckage    2
## 15726                     windshear and    2
## 15727                      windshear at    2
## 15728              windshear conditions    2
## 15729                      windshear in    2
## 15730                      windshear it    2
## 15731                    windshield the    2
## 15732                   wing attachment    2
## 15733                      wing buckled    2
## 15734                     wing collided    2
## 15735                          wing due    2
## 15736                     wing exploded    2
## 15737                     wing impacted    2
## 15738                      wing section    2
## 15739                      wing surface    2
## 15740                        wing tanks    2
## 15741                      wing touched    2
## 15742                       wings after    2
## 15743                          wings of    2
## 15744                         wings was    2
## 15745                       wings which    2
## 15746                            with 3    2
## 15747                            with 5    2
## 15748                      with adverse    2
## 15749                     with aircraft    2
## 15750                          with all    2
## 15751                         with both    2
## 15752                 with cumulonimbus    2
## 15753                       with debris    2
## 15754                      with engines    2
## 15755                         with high    2
## 15756                        with icing    2
## 15757                   with instrument    2
## 15758                  with instruments    2
## 15759                         with it's    2
## 15760                     with moderate    2
## 15761                        with mount    2
## 15762                        with other    2
## 15763                         with over    2
## 15764                 with paratroopers    2
## 15765                   with procedures    2
## 15766                       with proper    2
## 15767                         with some    2
## 15768                       with strong    2
## 15769                        with their    2
## 15770                 with thunderstorm    2
## 15771                with thunderstorms    2
## 15772                   with visibility    2
## 15773                       with visual    2
## 15774                        with water    2
## 15775                      with weather    2
## 15776                        with wires    2
## 15777                        within two    2
## 15778                     without being    2
## 15779              without establishing    2
## 15780                     without first    2
## 15781                 without informing    2
## 15782                       without its    2
## 15783                 without obtaining    2
## 15784                  without positive    2
## 15785                    without proper    2
## 15786                     without using    2
## 15787                       witness saw    2
## 15788                    witness stated    2
## 15789                   witnesses heard    2
## 15790                     witnesses say    2
## 15791                            wnw of    2
## 15792                         wobble to    2
## 15793               wooded mountainside    2
## 15794                       woods while    2
## 15795                        worker was    2
## 15796                        workers on    2
## 15797                       workers the    2
## 15798                        working on    2
## 15799                       world trade    2
## 15800                      worst single    2
## 15801                      would result    2
## 15802                       wounded the    2
## 15803                wreckage indicated    2
## 15804                    wreckage never    2
## 15805                     wreckage over    2
## 15806                     wreckage site    2
## 15807                    wreckage still    2
## 15808                           wrong a    2
## 15809                   wrong altimeter    2
## 15810                      wrong before    2
## 15811                      wrong engine    2
## 15812                        wrong flap    2
## 15813                        wrong fuel    2
## 15814                  wrong parameters    2
## 15815                      wrong rudder    2
## 15816                      wrong runway    2
## 15817                         wrong way    2
## 15818                            yak 42    2
## 15819                          yard the    2
## 15820                        yards from    2
## 15821                          year the    2
## 15822                           years a    2
## 15823                       years after    2
## 15824                         years old    2
## 15825                         years the    2
## 15826                         young boy    2
## 15827                          zone the    2
## 15828                    zurich airport    2
## 15829                              0 to    1
## 15830                    0.17 alcoholic    1
## 15831                          0.21 the    1
## 15832                         0.7 miles    1
## 15833                            0.8 nm    1
## 15834                             00 30    1
## 15835                             00 40    1
## 15836                             00 43    1
## 15837                             00 47    1
## 15838                          00 after    1
## 15839                            00 gct    1
## 15840                            00 utc    1
## 15841                            000 ft    1
## 15842                        007 flight    1
## 15843                         007 plane    1
## 15844                             01 33    1
## 15845                             01 48    1
## 15846                      0142 crashed    1
## 15847                             02 00    1
## 15848                             02 14    1
## 15849                            02 and    1
## 15850                          0240 all    1
## 15851                          0255 and    1
## 15852                       027 degrees    1
## 15853                      0270 degrees    1
## 15854                             03 19    1
## 15855                             03 at    1
## 15856                             03 lt    1
## 15857                           035 deg    1
## 15858                             04 00    1
## 15859                           04 1954    1
## 15860                             04 in    1
## 15861                           04 when    1
## 15862                          049s the    1
## 15863                             05 10    1
## 15864                       05 approach    1
## 15865                         05 design    1
## 15866                            055 to    1
## 15867                           05r and    1
## 15868                           05r was    1
## 15869                             06 17    1
## 15870                             06 26    1
## 15871                             06 at    1
## 15872                            06 but    1
## 15873                            06 the    1
## 15874                          0622 est    1
## 15875                         06r while    1
## 15876                         0753 from    1
## 15877                       07r shortly    1
## 15878                          07r when    1
## 15879                             08 14    1
## 15880                          0801 the    1
## 15881                          0815 the    1
## 15882                             09 at    1
## 15883                           09 near    1
## 15884                              1 11    1
## 15885                              1 12    1
## 15886                              1 19    1
## 15887                               1 4    1
## 15888                             1 500    1
## 15889                             1 900    1
## 15890                             1 air    1
## 15891                            1 crew    1
## 15892                        1 cylinder    1
## 15893                      1 electrical    1
## 15894                         1 failure    1
## 15895                            1 fuel    1
## 15896                             1 ils    1
## 15897                              1 in    1
## 15898                   1 incapacitated    1
## 15899                     1 intervening    1
## 15900                       1 kilometer    1
## 15901                      1 kilometers    1
## 15902                       1 kilometre    1
## 15903                               1 m    1
## 15904                         1 million    1
## 15905                              1 nm    1
## 15906                              1 on    1
## 15907                             1 one    1
## 15908                       1 passenger    1
## 15909                          1 piston    1
## 15910                       1 propeller    1
## 15911                        1 reverser    1
## 15912                        1 standard    1
## 15913                            1 tank    1
## 15914                           1 using    1
## 15915                             1 was    1
## 15916                          1,000 km    1
## 15917                      1,000 pounds    1
## 15918                       1,000 trees    1
## 15919                       1,000 yards    1
## 15920                       1,000m from    1
## 15921                          1,047 ft    1
## 15922                      1,090 mshort    1
## 15923                         1,100 and    1
## 15924                      1,100 meters    1
## 15925                          1,100 yd    1
## 15926                        1,120 feet    1
## 15927                          1,120 nm    1
## 15928                        1,150 feet    1
## 15929                        1,170 feet    1
## 15930                           1,200 m    1
## 15931                       1,200 yards    1
## 15932                        1,300 feet    1
## 15933                      1,360 meters    1
## 15934                          1,380 ft    1
## 15935                          1,400 ft    1
## 15936                          1,440 km    1
## 15937                        1,450 feet    1
## 15938                      1,450m short    1
## 15939                         1,500 lbs    1
## 15940                       1,500 miles    1
## 15941                          1,600 ft    1
## 15942                      1,600m short    1
## 15943                        1,620 feet    1
## 15944                        1,640 feet    1
## 15945                        1,700 feet    1
## 15946                          1,700 ft    1
## 15947                      1,700m short    1
## 15948                        1,725 feet    1
## 15949                      1,800m after    1
## 15950                        1,875 feet    1
## 15951                        1,900 feet    1
## 15952                      1.24 million    1
## 15953                          1.5 hour    1
## 15954                         1.5 hours    1
## 15955                       1.5 seconds    1
## 15956                       1.5km short    1
## 15957                            1.7 nm    1
## 15958                             10 11    1
## 15959                             10 15    1
## 15960                             10 16    1
## 15961                           10 1957    1
## 15962                             10 26    1
## 15963                             10 30    1
## 15964                       10 aircraft    1
## 15965                       10 airplane    1
## 15966                             10 an    1
## 15967                             10 at    1
## 15968                           10 crew    1
## 15969                           10 days    1
## 15970                        10 degrees    1
## 15971                           10 feet    1
## 15972                             10 ft    1
## 15973                          10 hours    1
## 15974                          10 knots    1
## 15975                           10 lost    1
## 15976                         10 meters    1
## 15977                           10 mins    1
## 15978                         10 months    1
## 15979                             10 nm    1
## 15980                             10 of    1
## 15981                         10 people    1
## 15982                          10 radio    1
## 15983                       10 soldiers    1
## 15984                             10 to    1
## 15985                           10 tons    1
## 15986                          10 years    1
## 15987                       10,000ft to    1
## 15988                         10,200 ft    1
## 15989                         10,530 ft    1
## 15990                       10,700 feet    1
## 15991                       10,982 feet    1
## 15992                           100 130    1
## 15993                           100 150    1
## 15994                           100 200    1
## 15995                          100 from    1
## 15996                  100 intermittent    1
## 15997                            100 km    1
## 15998                         100 lives    1
## 15999                        100 metres    1
## 16000                            100 or    1
## 16001                           100 was    1
## 16002                          100 were    1
## 16003                         1000 feet    1
## 16004                    101 passengers    1
## 16005                         1011 were    1
## 16006                       101b voodoo    1
## 16007                    101st airborne    1
## 16008                       102 minutes    1
## 16009                       1020 meters    1
## 16010                           103 the    1
## 16011                  105 thunderchief    1
## 16012                     105,000 prior    1
## 16013                        107 killed    1
## 16014                        107 people    1
## 16015                         108 miles    1
## 16016                       1080m after    1
## 16017                         109 knots    1
## 16018                           10km to    1
## 16019                       10kts below    1
## 16020                           10l and    1
## 16021                         10th died    1
## 16022                             11 21    1
## 16023                             11 34    1
## 16024                             11 56    1
## 16025                         11 aboard    1
## 16026                             11 at    1
## 16027                           11 feet    1
## 16028                           11 from    1
## 16029                             11 in    1
## 16030                        11 injured    1
## 16031                             11 km    1
## 16032                            11 kms    1
## 16033                         11 months    1
## 16034                             11 nm    1
## 16035                     11 passengers    1
## 16036                          11 story    1
## 16037                           11 then    1
## 16038                            11 was    1
## 16039                           11 when    1
## 16040                        11,000ft a    1
## 16041                         11,152 ft    1
## 16042                         11,400 ft    1
## 16043                       11,500 feet    1
## 16044                         11,600 ft    1
## 16045                         11,770 ft    1
## 16046                         11,800 ft    1
## 16047                        11.3 miles    1
## 16048                        111 german    1
## 16049                          113 feet    1
## 16050                         115 under    1
## 16051                        117 pounds    1
## 16052                           118 had    1
## 16053                          118a six    1
## 16054                          119s the    1
## 16055                             12 04    1
## 16056                             12 12    1
## 16057                           12 1953    1
## 16058                           12 1972    1
## 16059                           12 1993    1
## 16060                           12 2018    1
## 16061                             12 22    1
## 16062                             12 38    1
## 16063                             12 at    1
## 16064                       12 children    1
## 16065                           12 crew    1
## 16066                        12 degrees    1
## 16067                           12 feet    1
## 16068                         12 landed    1
## 16069                         12 months    1
## 16070                           12 over    1
## 16071                     12 passengers    1
## 16072                       12 perished    1
## 16073                         12 planes    1
## 16074                        12 seconds    1
## 16075                            12 the    1
## 16076                            12 ton    1
## 16077                          12 while    1
## 16078                           12 year    1
## 16079                       12,000 volt    1
## 16080                         12,013 ft    1
## 16081                         12,300 ft    1
## 16082                         12,600 ft    1
## 16083                           12.27 n    1
## 16084                        12.5 miles    1
## 16085                           120 150    1
## 16086                        120 meters    1
## 16087                         123 total    1
## 16088                       125,000 and    1
## 16089                         12nm from    1
## 16090                        12s flight    1
## 16091                     12th aviation    1
## 16092                             13 31    1
## 16093                          13 along    1
## 16094                            13 and    1
## 16095                             13 at    1
## 16096                       13 civilian    1
## 16097                        13 degrees    1
## 16098                           13 high    1
## 16099                          13 hours    1
## 16100                         13 killed    1
## 16101                             13 m2    1
## 16102                          13 meter    1
## 16103                         13 pounds    1
## 16104                              13 r    1
## 16105                          13 south    1
## 16106                             13 to    1
## 16107                       13,000 foot    1
## 16108                         13,400 ft    1
## 16109                         13,700 ft    1
## 16110                        13.6 miles    1
## 16111                         130 broke    1
## 16112                     130 transport    1
## 16113                          130.40 w    1
## 16114                           132 and    1
## 16115                           134 and    1
## 16116                     134a prepared    1
## 16117                       134kts with    1
## 16118                   135 contributed    1
## 16119                         135 knots    1
## 16120                     135 operators    1
## 16121                           135 the    1
## 16122                     135bj legaacy    1
## 16123                         137 knots    1
## 16124                            13c at    1
## 16125                             14 95    1
## 16126                            14 and    1
## 16127                      14 civilians    1
## 16128                           14 code    1
## 16129                           14 crew    1
## 16130                       14 cylinder    1
## 16131                        14 iranian    1
## 16132                            14 jet    1
## 16133                         14 killed    1
## 16134                        14 minutes    1
## 16135                             14 on    1
## 16136                          14 pilot    1
## 16137                        14 seconds    1
## 16138                        14 stating    1
## 16139                            14 utc    1
## 16140                            14 was    1
## 16141                           14 were    1
## 16142                           14 when    1
## 16143                           14 with    1
## 16144                         14,000 to    1
## 16145                         14,250 ft    1
## 16146                       14,346 feet    1
## 16147                       14,500 feet    1
## 16148                         14,700 ft    1
## 16149                          140 kias    1
## 16150                            141 as    1
## 16151                  141 contributing    1
## 16152                          1422 six    1
## 16153                   144 overreacted    1
## 16154                    144,000 square    1
## 16155                           145 and    1
## 16156                          1450 and    1
## 16157                          14s were    1
## 16158                           14th st    1
## 16159                             15 20    1
## 16160                           15 2012    1
## 16161                            15 26z    1
## 16162                             15 30    1
## 16163                             15 35    1
## 16164                         15 aboard    1
## 16165                            15 afw    1
## 16166                            15 air    1
## 16167                        15 crashed    1
## 16168                           15 days    1
## 16169                         15 degree    1
## 16170                             15 ft    1
## 16171                         15 minute    1
## 16172                         15 months    1
## 16173                              15 n    1
## 16174                             15 on    1
## 16175                             15 or    1
## 16176                   15 organization    1
## 16177                        15 russian    1
## 16178                        15 seconds    1
## 16179                       15 soldiers    1
## 16180                             15 to    1
## 16181                          15 tones    1
## 16182                        15 warning    1
## 16183                           15 were    1
## 16184                        15,000 all    1
## 16185                       15,000 feet    1
## 16186                       15,150 feet    1
## 16187                         15,500 ft    1
## 16188                         15,721 ft    1
## 16189                        15.5 miles    1
## 16190                           150 200    1
## 16191                            150 at    1
## 16192                      150 carrying    1
## 16193                         150 knots    1
## 16194                            150 kt    1
## 16195                           150 mph    1
## 16196                    150 passengers    1
## 16197                           150 the    1
## 16198                         150 yards    1
## 16199                     153 paintings    1
## 16200                      154 aircraft    1
## 16201                            154 on    1
## 16202                            155 kt    1
## 16203                          158 kias    1
## 16204                       158 persons    1
## 16205                       158930 were    1
## 16206                        159325 and    1
## 16207                         15f which    1
## 16208                            15l at    1
## 16209                           16 1959    1
## 16210                           16 21nm    1
## 16211                             16 50    1
## 16212                           16 bolt    1
## 16213                        16 columba    1
## 16214                           16 feet    1
## 16215                       16 fighters    1
## 16216                            16 jet    1
## 16217                          16 month    1
## 16218                         16 months    1
## 16219                     16 passengers    1
## 16220                         16 people    1
## 16221                         16 pilots    1
## 16222                           16 tons    1
## 16223                           16 year    1
## 16224                    16,000 instead    1
## 16225                       16,355 feet    1
## 16226                       16,700 feet    1
## 16227                         16,739 ft    1
## 16228                          16202 66    1
## 16229                         164 knots    1
## 16230                           165 mph    1
## 16231                      1655 central    1
## 16232                          16592 66    1
## 16233                   16601 passenger    1
## 16234                           16km se    1
## 16235                             17 09    1
## 16236                           17 1960    1
## 16237                           17 2003    1
## 16238                             17 at    1
## 16239                          17 buddy    1
## 16240                            17 but    1
## 16241                        17 crashed    1
## 16242                           17 feet    1
## 16243                             17 in    1
## 16244                         17 killed    1
## 16245                             17 of    1
## 16246                           17 year    1
## 16247                       17,000 feet    1
## 16248                         17,000 ft    1
## 16249                     17.10 shortly    1
## 16250                       170 degrees    1
## 16251                          170 kias    1
## 16252                         170 miles    1
## 16253                          171st st    1
## 16254                         172 knots    1
## 16255                             173 a    1
## 16256                           174 was    1
## 16257                         175 miles    1
## 16258                            175 of    1
## 16259                           17h was    1
## 16260                             18 12    1
## 16261                         18 aboard    1
## 16262                          18 after    1
## 16263                            18 and    1
## 16264                       18 approach    1
## 16265                        18 crashed    1
## 16266                           18 crew    1
## 16267                    18 crewmembers    1
## 16268                         18 during    1
## 16269                       18 eighteen    1
## 16270                            18 kms    1
## 16271                         18 minute    1
## 16272                         18 months    1
## 16273                             18 on    1
## 16274                         18 people    1
## 16275                          18 super    1
## 16276                      18 survivors    1
## 16277                            18 the    1
## 16278                           18 tons    1
## 16279                           18 when    1
## 16280                           18 year    1
## 16281                        18,400 msl    1
## 16282                        18.7 miles    1
## 16283                         180 knots    1
## 16284                             180 m    1
## 16285                           180 the    1
## 16286                            180 to    1
## 16287                          180 when    1
## 16288                           1800 ft    1
## 16289                       180deg turn    1
## 16290                       181 because    1
## 16291                       182 injured    1
## 16292                         182 knots    1
## 16293                           182 the    1
## 16294                      18l impacted    1
## 16295                          18r when    1
## 16296                             19 03    1
## 16297                           19 2000    1
## 16298                           19 2004    1
## 16299                            19 a.m    1
## 16300                         19 bodies    1
## 16301                             19 of    1
## 16302                             19 on    1
## 16303                         19 people    1
## 16304                            19 the    1
## 16305                       19,000 feet    1
## 16306                       19,600 feet    1
## 16307                        19.5 miles    1
## 16308                        190 ground    1
## 16309                         190 knots    1
## 16310                         190 miles    1
## 16311                            1900 c    1
## 16312                     1934 crrashed    1
## 16313                           1941 by    1
## 16314                         1941at mt    1
## 16315                           1943 we    1
## 16316                        1951 crash    1
## 16317                        1951 first    1
## 16318                        1953 after    1
## 16319                      1953 crashed    1
## 16320                          1954 the    1
## 16321                          1957 and    1
## 16322                      1958 shortly    1
## 16323                          1958 the    1
## 16324                           1959 no    1
## 16325                          195a was    1
## 16326                           1960 no    1
## 16327                     1960 olympics    1
## 16328                         1960 that    1
## 16329                          1960 the    1
## 16330                       1969 during    1
## 16331                           197 and    1
## 16332                           197 mph    1
## 16333                        1970 after    1
## 16334                        1970 other    1
## 16335                          1970 the    1
## 16336                           1972 an    1
## 16337                        1978 worst    1
## 16338                           1980 in    1
## 16339                   1980 tailstrike    1
## 16340                      1983 crashed    1
## 16341                         1985 from    1
## 16342                          1987 but    1
## 16343                           1989 65    1
## 16344                           199 the    1
## 16345                           1992 tv    1
## 16346                          1993 the    1
## 16347                           1994 in    1
## 16348                       1994 stated    1
## 16349                      1995 crashed    1
## 16350                          1996 and    1
## 16351                           1997 25    1
## 16352                        1a corsair    1
## 16353               1engine overspeeded    1
## 16354                     1engine smoke    1
## 16355                          1km from    1
## 16356                        1mile from    1
## 16357                             1r at    1
## 16358                         1r escape    1
## 16359                             1y by    1
## 16360                             2 000    1
## 16361                               2 1    1
## 16362                             2 3km    1
## 16363                            2 3rds    1
## 16364                             2 500    1
## 16365                               2 a    1
## 16366                             2 air    1
## 16367                         2 airport    1
## 16368                              2 at    1
## 16369                         2 baggage    1
## 16370                           2 blade    1
## 16371                          2 bleach    1
## 16372                           2 bolts    1
## 16373                         2 bombers    1
## 16374                            2 both    1
## 16375                        2 brothers    1
## 16376                          2 caught    1
## 16377                          2 caused    1
## 16378                      2 companions    1
## 16379                         2 crashed    1
## 16380                  2 engine.failure    1
## 16381                            2 feet    1
## 16382                             2 for    1
## 16383                             2 ils    1
## 16384                            2 inch    1
## 16385                     2 instructors    1
## 16386                       2 kilometer    1
## 16387                      2 kilometers    1
## 16388                             2 low    1
## 16389                               2 m    1
## 16390                            2 mile    1
## 16391                        2 military    1
## 16392                         2 million    1
## 16393                          2 months    1
## 16394                              2 of    1
## 16395                            2 over    1
## 16396                          2 pinion    1
## 16397                           2 plane    1
## 16398                     2 programming    1
## 16399                            2 prop    1
## 16400                            2 rear    1
## 16401                        2 reverser    1
## 16402                               2 s    1
## 16403                         2 seconds    1
## 16404                             2 spy    1
## 16405                        2 sudanese    1
## 16406                          2 sukhoi    1
## 16407                         2 surface    1
## 16408                          2 thrust    1
## 16409                        2 vertical    1
## 16410                          2 visual    1
## 16411                             2 vor    1
## 16412                            2 vors    1
## 16413                            2 were    1
## 16414                          2,000 at    1
## 16415                        2,000 foot    1
## 16416                     2,000ft power    1
## 16417                     2,000ft while    1
## 16418                    2,000m instead    1
## 16419                       2,000m past    1
## 16420                        2,050 feet    1
## 16421                          2,100 ft    1
## 16422                        2,150 feet    1
## 16423                      2,250 meters    1
## 16424                        2,310 feet    1
## 16425                        2,380 feet    1
## 16426                           2,400 m    1
## 16427                       2,400ft the    1
## 16428                          2,460 ft    1
## 16429                         2,500 lbs    1
## 16430                      2,500 metres    1
## 16431                       2,520m 22km    1
## 16432                        2,525 feet    1
## 16433                            2,5ã â    1
## 16434                          2,600 ft    1
## 16435                    2,600 meters.ã    1
## 16436                        2,650 feet    1
## 16437                        2,690 feet    1
## 16438                          2,700 ft    1
## 16439                        2,748 feet    1
## 16440                        2,760 feet    1
## 16441                          2,790 ft    1
## 16442                        2,800 feet    1
## 16443                      2,800 flying    1
## 16444                         2,800m 13    1
## 16445                        2,850 feet    1
## 16446                        2,900 feet    1
## 16447                          2,950 ft    1
## 16448                           2.2 lbs    1
## 16449                          2.3 tons    1
## 16450                             2.4 g    1
## 16451                             2.5 3    1
## 16452                          2.5 mile    1
## 16453                         2.55g and    1
## 16454                       2.5km short    1
## 16455                         2.8 miles    1
## 16456                             20 30    1
## 16457                         20 aboard    1
## 16458                             20 at    1
## 16459                         20 border    1
## 16460                           20 days    1
## 16461                             20 ft    1
## 16462                          20 hours    1
## 16463                        20 injured    1
## 16464                             20 kt    1
## 16465                        20 members    1
## 16466                           20 mile    1
## 16467                         20 minute    1
## 16468                             20 nm    1
## 16469                             20 on    1
## 16470                            20 ran    1
## 16471                           20 rick    1
## 16472                        20 seconds    1
## 16473                      20 witnesses    1
## 16474                           20 year    1
## 16475                          20 years    1
## 16476                       20,000 feet    1
## 16477                         20,000 ft    1
## 16478                           200 300    1
## 16479                      200 airliner    1
## 16480                           200 but    1
## 16481                           200 for    1
## 16482                            200 km    1
## 16483                             200 m    1
## 16484                        200 metres    1
## 16485                         200 miles    1
## 16486                           2000 53    1
## 16487                         2000 feet    1
## 16488                    2000 indicated    1
## 16489                            2000 m    1
## 16490                    2003 recovered    1
## 16491                          2003 the    1
## 16492                            2004 a    1
## 16493                      2004 ditched    1
## 16494                        2005 cause    1
## 16495                          2006 the    1
## 16496                           2009 an    1
## 16497                         200m down    1
## 16498                        2011 sites    1
## 16499                        2011 using    1
## 16500                      2012 crashed    1
## 16501                          2012 the    1
## 16502                            2013 8    1
## 16503                       2017 struck    1
## 16504                          2018 the    1
## 16505                          2029 the    1
## 16506                            206 ob    1
## 16507                           208 and    1
## 16508                        208 pilots    1
## 16509                             21 00    1
## 16510                             21 61    1
## 16511                             21 at    1
## 16512                          21 miles    1
## 16513                        21 minutes    1
## 16514                        21 trainer    1
## 16515                         21,000 to    1
## 16516                         210 miles    1
## 16517                           210 the    1
## 16518                             212 a    1
## 16519                    216 passengers    1
## 16520                         21nm from    1
## 16521                         21nm west    1
## 16522                           22 1934    1
## 16523                           22 1943    1
## 16524                             22 56    1
## 16525                             22 59    1
## 16526                             22 72    1
## 16527                          22 after    1
## 16528                            22 and    1
## 16529                          22 bobby    1
## 16530                            22 but    1
## 16531                            22 due    1
## 16532                          22 jiles    1
## 16533                         22 killed    1
## 16534                        22 members    1
## 16535                             22 on    1
## 16536                     22 passengers    1
## 16537                        22 seconds    1
## 16538                        22 without    1
## 16539                           22 year    1
## 16540                        22,000 and    1
## 16541                       22,000 feet    1
## 16542                       22,000 foot    1
## 16543                         22.03 the    1
## 16544                         22.05 the    1
## 16545                      22268 thirty    1
## 16546                          223 foot    1
## 16547                           2237 at    1
## 16548                        225 bodies    1
## 16549                            225 is    1
## 16550                        225 people    1
## 16551                            225 to    1
## 16552                      227 collided    1
## 16553                    227 passengers    1
## 16554                    228th squadron    1
## 16555                         22km from    1
## 16556                            22l at    1
## 16557                          22l when    1
## 16558                            23 and    1
## 16559                       23 approach    1
## 16560                       23 children    1
## 16561                            23 for    1
## 16562                         23 houses    1
## 16563                        23 minutes    1
## 16564                        23 seconds    1
## 16565                            23 the    1
## 16566                       23,000 feet    1
## 16567                         23,000 ft    1
## 16568                         23,000 to    1
## 16569                         23,900 ft    1
## 16570                         230 knots    1
## 16571                           230 mph    1
## 16572                         231 miles    1
## 16573                       232 crashed    1
## 16574                       23307 73209    1
## 16575                            234 14    1
## 16576                         236 which    1
## 16577                        24 causing    1
## 16578                             24 mi    1
## 16579                          24 miles    1
## 16580                             24 on    1
## 16581                        24 overran    1
## 16582                     24 structural    1
## 16583                         240 knots    1
## 16584                           240 mph    1
## 16585                    243 vietnamese    1
## 16586                            24l at    1
## 16587                           24l the    1
## 16588                        25 degrees    1
## 16589                             25 ft    1
## 16590                          25 hours    1
## 16591                           25 lead    1
## 16592                             25 of    1
## 16593                            25 the    1
## 16594                             25 to    1
## 16595                          25 years    1
## 16596                       25,000 feet    1
## 16597                         25,000 ft    1
## 16598                    250 kilometers    1
## 16599                         250 knots    1
## 16600                             250 m    1
## 16601                           250 the    1
## 16602                    25km northwest    1
## 16603                           25l the    1
## 16604                           26 1958    1
## 16605                           26 2012    1
## 16606                             26 33    1
## 16607                            26 and    1
## 16608                           26 feet    1
## 16609                             26 in    1
## 16610                           26 just    1
## 16611                         26 killed    1
## 16612                          26 miles    1
## 16613                        26 minutes    1
## 16614                             26 nm    1
## 16615                     26 overloaded    1
## 16616                     26 passengers    1
## 16617                          26 which    1
## 16618                          26 while    1
## 16619                            26 who    1
## 16620                          260 feet    1
## 16621                            260 in    1
## 16622                       263 degrees    1
## 16623                           265 mph    1
## 16624                           26k the    1
## 16625                           26l the    1
## 16626                           26z the    1
## 16627                           27 1953    1
## 16628                           27 1997    1
## 16629                              27 a    1
## 16630                            27 and    1
## 16631                           27 days    1
## 16632                         27 during    1
## 16633                         27 killed    1
## 16634                             27 km    1
## 16635                       27 soundman    1
## 16636                            27 the    1
## 16637                         27,200 ft    1
## 16638                        270 degree    1
## 16639                       270 degrees    1
## 16640                           270 mph    1
## 16641                       27deg flaps    1
## 16642                         27l after    1
## 16643                            27l at    1
## 16644                            28 and    1
## 16645                             28 as    1
## 16646                       28 families    1
## 16647                           28 into    1
## 16648                        28 minutes    1
## 16649                         28 sister    1
## 16650                      28 threshold    1
## 16651                         28 visual    1
## 16652                            28 was    1
## 16653                       28,000 feet    1
## 16654                     28,000 pounds    1
## 16655                             280 a    1
## 16656                    283 passengers    1
## 16657                         285 miles    1
## 16658                           28l all    1
## 16659                            28l at    1
## 16660                  28l continuation    1
## 16661                        28l during    1
## 16662                             29 59    1
## 16663                        29 brother    1
## 16664                        29 degrees    1
## 16665                           29 from    1
## 16666                      29 guitarist    1
## 16667                          29 miles    1
## 16668                        29 minutes    1
## 16669                        29 seconds    1
## 16670                       29,000 feet    1
## 16671                     29.97 advised    1
## 16672                          2km east    1
## 16673                         2km short    1
## 16674                         2nd stage    1
## 16675                        2nm inside    1
## 16676                        2t crashed    1
## 16677                               3 1    1
## 16678                              3 17    1
## 16679                            3 2011    1
## 16680                             3 300    1
## 16681                              3 35    1
## 16682                             3 400    1
## 16683                             3 air    1
## 16684                           3 built    1
## 16685                          3 caused    1
## 16686                        3 civilian    1
## 16687                         3 climbed    1
## 16688                        3 collided    1
## 16689                         3 crashed    1
## 16690                       3 descended    1
## 16691                       3 diverging    1
## 16692                         3 entered    1
## 16693                         3 fighter    1
## 16694                          3 flying    1
## 16695                            3 foot    1
## 16696                            3 four    1
## 16697                       3 generator    1
## 16698                          3 ground    1
## 16699                            3 hour    1
## 16700                         3 injured    1
## 16701                          3 junior    1
## 16702                            3 lack    1
## 16703                            3 left    1
## 16704                     3 maintenance    1
## 16705                            3 mile    1
## 16706                          3 missed    1
## 16707                              3 of    1
## 16708                              3 on    1
## 16709                             3 one    1
## 16710                              3 or    1
## 16711                          3 others    1
## 16712                           3 parts    1
## 16713                          3 pieces    1
## 16714                      3 pieces.the    1
## 16715                          3 pilots    1
## 16716                            3 plan    1
## 16717                           3 power    1
## 16718                   3 preoccupation    1
## 16719                           3 staff    1
## 16720                         3 student    1
## 16721                        3 students    1
## 16722                     3 technicians    1
## 16723                            3 then    1
## 16724                            3 tire    1
## 16725                            3 tons    1
## 16726                           3 touch    1
## 16727                          3 turned    1
## 16728                           3 which    1
## 16729                           3 while    1
## 16730                            3 year    1
## 16731                           3 years    1
## 16732                           3,000 m    1
## 16733                     3,000feet the    1
## 16734                         3,300 fpm    1
## 16735                          3,300 ft    1
## 16736                        3,556 feet    1
## 16737                        3,600 feet    1
## 16738                          3,600 ft    1
## 16739                        3,600 when    1
## 16740                        3,700 feet    1
## 16741                        3,750 feet    1
## 16742                          3,800 ft    1
## 16743                        3,830 foot    1
## 16744                          3,900 ft    1
## 16745                        3,975 feet    1
## 16746                        3.3 degree    1
## 16747                            3.3 in    1
## 16748                            3.4 km    1
## 16749                         3.4 miles    1
## 16750                            3.5 km    1
## 16751                            3.5 nm    1
## 16752                       3.5 seconds    1
## 16753                       3.5km short    1
## 16754                         3.8 miles    1
## 16755                           30 1983    1
## 16756                              30 a    1
## 16757                             30 at    1
## 16758                          30 dairy    1
## 16759                            30 day    1
## 16760                            30 dme    1
## 16761                             30 ft    1
## 16762                             30 is    1
## 16763                            30 kms    1
## 16764                          30 local    1
## 16765                        30 minuets    1
## 16766                     30 passengers    1
## 16767                     30 registered    1
## 16768                        30 seconds    1
## 16769                      30 survivors    1
## 16770                             30 to    1
## 16771                           30 when    1
## 16772                       30,000 feet    1
## 16773                        30.5 miles    1
## 16774                           300 600    1
## 16775                    300 detonation    1
## 16776                             300 m    1
## 16777                         300 under    1
## 16778                         300 yards    1
## 16779                        300,00 put    1
## 16780                           3000 ft    1
## 16781                        300m below    1
## 16782                          301st bg    1
## 16783                        309 aboard    1
## 16784                           31 2000    1
## 16785                            31 350    1
## 16786                              31 a    1
## 16787                       31 climbing    1
## 16788                           31 days    1
## 16789                          31 hours    1
## 16790                         31 killed    1
## 16791                         31 minute    1
## 16792                      31 occupants    1
## 16793                            31 oil    1
## 16794                           31 tons    1
## 16795                            31 u.s    1
## 16796                        310 during    1
## 16797                           310 the    1
## 16798                         310 three    1
## 16799                         310 while    1
## 16800                       314th troop    1
## 16801                           31c the    1
## 16802                            31l at    1
## 16803                           31l the    1
## 16804                          31l upon    1
## 16805                     31l.the plane    1
## 16806                         32 aboard    1
## 16807                            32 but    1
## 16808                            32 kms    1
## 16809                            32 the    1
## 16810                            32 who    1
## 16811                            320 ft    1
## 16812                           320 mph    1
## 16813                         320 there    1
## 16814                         3222 were    1
## 16815                         325 miles    1
## 16816                             326 9    1
## 16817                            328 ft    1
## 16818                          33 35553    1
## 16819                            33 and    1
## 16820                        33 ejected    1
## 16821                            33 her    1
## 16822                        33 instead    1
## 16823                         33 killed    1
## 16824                            33 utc    1
## 16825                           33 with    1
## 16826                       33,330 feet    1
## 16827                           330 the    1
## 16828                         330 under    1
## 16829                       330 without    1
## 16830                          335 feet    1
## 16831                         33a pilot    1
## 16832                           33r and    1
## 16833                          34 among    1
## 16834                        34 degrees    1
## 16835                         34 killed    1
## 16836                         34 landed    1
## 16837                          34 local    1
## 16838                          34 miles    1
## 16839                            34 the    1
## 16840                            34 was    1
## 16841                       34,500 feet    1
## 16842                        340 meters    1
## 16843                         340 miles    1
## 16844                           340 mph    1
## 16845                            3400 m    1
## 16846                       340b engine    1
## 16847                       343m across    1
## 16848                         349 after    1
## 16849                          34km wnw    1
## 16850                          35 among    1
## 16851                         35 clineã    1
## 16852                        35 degrees    1
## 16853                             35 ft    1
## 16854                          35 hours    1
## 16855                         35 killed    1
## 16856                         35 minute    1
## 16857                             35 on    1
## 16858                      35 scheduled    1
## 16859                            35 son    1
## 16860                           35 were    1
## 16861                          35 worms    1
## 16862                         35,000 ft    1
## 16863                         35,400 ft    1
## 16864                            350 46    1
## 16865                             350 a    1
## 16866                          350 died    1
## 16867                          350 feet    1
## 16868                          350 that    1
## 16869                           350 the    1
## 16870                            351 to    1
## 16871                        35553 were    1
## 16872                         35km from    1
## 16873                           35l and    1
## 16874                          36 among    1
## 16875                        36 degrees    1
## 16876                         36 killed    1
## 16877                        36 seconds    1
## 16878                            36 was    1
## 16879                         36,000 ft    1
## 16880                       360 degrees    1
## 16881                          360 feet    1
## 16882                          360ft in    1
## 16883                           367 due    1
## 16884                          36r fuel    1
## 16885                         37 aboard    1
## 16886                            37 and    1
## 16887                          37 miles    1
## 16888                        37 minutes    1
## 16889                       37,000 feet    1
## 16890                         37,500 in    1
## 16891                           370 and    1
## 16892                      375 birthday    1
## 16893                    37passengers 6    1
## 16894                            38 and    1
## 16895                            38 hit    1
## 16896                             38 km    1
## 16897                          38 miles    1
## 16898                       38 survived    1
## 16899                    387 originated    1
## 16900                     38ft becoming    1
## 16901                          39 among    1
## 16902                         39 cowboy    1
## 16903                        39 neither    1
## 16904                          39 years    1
## 16905                         39,000 ft    1
## 16906                           390 and    1
## 16907                         39th home    1
## 16908                       3c collided    1
## 16909                      3hrs serving    1
## 16910                          3km from    1
## 16911                           3km the    1
## 16912                             3r at    1
## 16913                         3rd class    1
## 16914                           3rd day    1
## 16915                        3rd engine    1
## 16916                         3rds down    1
## 16917                               4 1    1
## 16918                            4 2013    1
## 16919                              4 30    1
## 16920                      4 aircraft's    1
## 16921                           4 cargo    1
## 16922                          4 colgan    1
## 16923                         4 crashed    1
## 16924                           4 cuban    1
## 16925                             4 due    1
## 16926                          4 during    1
## 16927                       4 emergency    1
## 16928                     4 experienced    1
## 16929                         4 failure    1
## 16930                         4 fatigue    1
## 16931                        4 followed    1
## 16932                            4 four    1
## 16933                          4 french    1
## 16934                              4 ft    1
## 16935                           4 hours    1
## 16936                          4 houses    1
## 16937                          4 inches    1
## 16938                             4 kms    1
## 16939                           4 large    1
## 16940                              4 nm    1
## 16941                              4 of    1
## 16942                              4 on    1
## 16943                        4 throttle    1
## 16944                    4 thunderstorm    1
## 16945                              4 to    1
## 16946                             4 was    1
## 16947                        4 weakened    1
## 16948                            4 were    1
## 16949                            4 with    1
## 16950                            4 year    1
## 16951                         4,000 and    1
## 16952                        4,000 foot    1
## 16953                           4,000 m    1
## 16954                     4,000m cliffs    1
## 16955                        4,090 foot    1
## 16956                        4,100 feet    1
## 16957                          4,100 ft    1
## 16958                         4,193 lbs    1
## 16959                        4,250 feet    1
## 16960                          4,355 ft    1
## 16961                        4,500 foot    1
## 16962                          4,500 ft    1
## 16963                        4,600 feet    1
## 16964                          4,600 ft    1
## 16965                        4,980 feet    1
## 16966                         4.4 miles    1
## 16967                         4.5 miles    1
## 16968                      4.7 nautical    1
## 16969                         4.8g pull    1
## 16970                            40 but    1
## 16971                        40 crashed    1
## 16972                         40 degree    1
## 16973                         40 killed    1
## 16974                              40 m    1
## 16975                         40 meters    1
## 16976                         40 minute    1
## 16977                             40 of    1
## 16978                     40 passengers    1
## 16979                            40 the    1
## 16980                           40 this    1
## 16981                             40 to    1
## 16982                     40 violations    1
## 16983                           40 with    1
## 16984                             400 m    1
## 16985                           4000 ft    1
## 16986                           404 the    1
## 16987                        40m during    1
## 16988                          41 among    1
## 16989                          41 hours    1
## 16990                        41 minutes    1
## 16991                     41 passengers    1
## 16992                       41,000 feet    1
## 16993                         41,000 to    1
## 16994                       41,600 feet    1
## 16995                            410 of    1
## 16996                           42 7183    1
## 16997                           42 7408    1
## 16998                         42 aboard    1
## 16999                            42 and    1
## 17000                           42 crew    1
## 17001                             42 km    1
## 17002                          42 knots    1
## 17003                          42 miles    1
## 17004                             42 nm    1
## 17005                             42 on    1
## 17006                           42 that    1
## 17007                    420 additional    1
## 17008                          420 took    1
## 17009                       4207183 and    1
## 17010                         43 famous    1
## 17011                            43 her    1
## 17012                        43 injured    1
## 17013                       43 injuries    1
## 17014                         43 killed    1
## 17015                            43 the    1
## 17016                          43 years    1
## 17017                            44 and    1
## 17018                             44 ft    1
## 17019                         44 magnum    1
## 17020                          44 miles    1
## 17021                        44 minutes    1
## 17022                              44 n    1
## 17023                        44 persons    1
## 17024                         449 kilos    1
## 17025                         45 aboard    1
## 17026                            45 and    1
## 17027                        45 caliber    1
## 17028                       45 champion    1
## 17029                       45 fiancãƒâ    1
## 17030                          45 miles    1
## 17031                            45 was    1
## 17032                         450 miles    1
## 17033                           450 mph    1
## 17034                      45714 flying    1
## 17035                             45ã â    1
## 17036                           46'31 w    1
## 17037                             46 15    1
## 17038                         46 aboard    1
## 17039                        46 crashed    1
## 17040                        46 minutes    1
## 17041                     46 passengers    1
## 17042                       46094 45714    1
## 17043                       46325 46094    1
## 17044                      47 continued    1
## 17045                     47 helicopter    1
## 17046                         47 killed    1
## 17047                        47 minutes    1
## 17048                         47 planes    1
## 17049                          47 until    1
## 17050                           47 were    1
## 17051                            48 and    1
## 17052                        48 crashed    1
## 17053                     48 passengers    1
## 17054                            48 utc    1
## 17055                         483 knots    1
## 17056                           49 195a    1
## 17057                            49 and    1
## 17058                              49 e    1
## 17059                        49 husband    1
## 17060                         49,000 ft    1
## 17061                             4a or    1
## 17062                            4b was    1
## 17063                         4e landed    1
## 17064                            4g the    1
## 17065                            4km on    1
## 17066                           4nm too    1
## 17067                              5 16    1
## 17068                         5 armored    1
## 17069                          5 burned    1
## 17070                         5 coaches    1
## 17071                          5 cycles    1
## 17072                          5 degree    1
## 17073                            5 feet    1
## 17074                         5 fighter    1
## 17075                        5 japanese    1
## 17076                           5 knots    1
## 17077                            5 made    1
## 17078                        5 military    1
## 17079                              5 on    1
## 17080                           5 other    1
## 17081                         5 patrons    1
## 17082                          5 people    1
## 17083                          5 pieces    1
## 17084                             5 the    1
## 17085                             5 was    1
## 17086                           5 while    1
## 17087                         5,000 g's    1
## 17088                      5,000 pounds    1
## 17089                       5,000ft the    1
## 17090                        5,053 feet    1
## 17091                         5,165 lbs    1
## 17092                          5,200 ft    1
## 17093                          5,300 ft    1
## 17094                         5,400 fpm    1
## 17095                        5,500 feet    1
## 17096                        5,500 foot    1
## 17097                        5,600 foot    1
## 17098                          5,800 ft    1
## 17099                          5,900 ft    1
## 17100                         5.2 miles    1
## 17101                         5.5 miles    1
## 17102                      5.5 nautical    1
## 17103                          5.7 tons    1
## 17104                         5.85g the    1
## 17105                          50 after    1
## 17106                        50 degrees    1
## 17107                          50 hours    1
## 17108                         50 killed    1
## 17109                          50 knots    1
## 17110                         50 minute    1
## 17111                             50 nm    1
## 17112                             50 of    1
## 17113                      50 operators    1
## 17114                         50 people    1
## 17115                      50 prisoners    1
## 17116                             50 to    1
## 17117                          50 volts    1
## 17118                          50 years    1
## 17119                           500 650    1
## 17120                           500 800    1
## 17121                          500 foot    1
## 17122                        500 meters    1
## 17123                           500 mph    1
## 17124                            500 to    1
## 17125                        509th bomb    1
## 17126                          51 among    1
## 17127                     51 passengers    1
## 17128                       51,000 feet    1
## 17129                         5191 used    1
## 17130                          52 along    1
## 17131                           52 dean    1
## 17132                            52 may    1
## 17133                             52 nm    1
## 17134                 52 stratofortress    1
## 17135                            52 was    1
## 17136                        520 meters    1
## 17137                           523 his    1
## 17138                            53 and    1
## 17139                             53 in    1
## 17140                             53 km    1
## 17141                          53 miles    1
## 17142                             53 on    1
## 17143                            53 who    1
## 17144                          53 years    1
## 17145                           53d sea    1
## 17146                            53s to    1
## 17147                          54 miles    1
## 17148                        54 seconds    1
## 17149                          54 years    1
## 17150                         55 degree    1
## 17151                          55 hours    1
## 17152                        55 injured    1
## 17153                         55 killed    1
## 17154                        55 minutes    1
## 17155                          550 feet    1
## 17156                           550 mph    1
## 17157                            56 661    1
## 17158                            56 681    1
## 17159                     56 cartoonist    1
## 17160                        56 crashed    1
## 17161                     56 detonation    1
## 17162                        56 minutes    1
## 17163                            56 who    1
## 17164                        560 meters    1
## 17165                           560 mph    1
## 17166                            560 nm    1
## 17167                        57 minutes    1
## 17168                          57 tones    1
## 17169                           58 tons    1
## 17170                            582 nm    1
## 17171                            59 and    1
## 17172                     59 detonation    1
## 17173                         59 forced    1
## 17174                          595 feet    1
## 17175                           595 lbs    1
## 17176                          5a which    1
## 17177                      5g resulting    1
## 17178                          5l while    1
## 17179                        5r whether    1
## 17180                              6 12    1
## 17181                            6 1960    1
## 17182                              6 22    1
## 17183                            6 aids    1
## 17184                            6 both    1
## 17185                          6 caused    1
## 17186                            6 days    1
## 17187                          6 degree    1
## 17188                         6 degrees    1
## 17189                          6 engine    1
## 17190                            6 feet    1
## 17191                         6 harvard    1
## 17192                             6 hot    1
## 17193                           6 hours    1
## 17194                           6 miels    1
## 17195                        6 moldovan    1
## 17196                        6 nautical    1
## 17197                              6 nm    1
## 17198                             6 one    1
## 17199                      6 passengers    1
## 17200                          6 people    1
## 17201                           6 pilot    1
## 17202                         6 pilot's    1
## 17203                            6 poor    1
## 17204                       6 propeller    1
## 17205                         6 tempest    1
## 17206                             6 the    1
## 17207                              6 to    1
## 17208                             6 was    1
## 17209                           6 weeks    1
## 17210                            6 were    1
## 17211                               6 x    1
## 17212                            6 year    1
## 17213                           6 years    1
## 17214                      6,000ft soon    1
## 17215                          6,100 ft    1
## 17216                          6,120 ft    1
## 17217                          6,167 ft    1
## 17218                        6,200 feet    1
## 17219                          6,200 ft    1
## 17220                          6,300 ft    1
## 17221                          6,400 ft    1
## 17222                          6,560 ft    1
## 17223                       6,660 miles    1
## 17224                        6,700 feet    1
## 17225                        6,740 feet    1
## 17226                          6,800 ft    1
## 17227                          6,888 ft    1
## 17228                         6.7 miles    1
## 17229                         60 aboard    1
## 17230                         60 degree    1
## 17231                        60 injured    1
## 17232                           60 mile    1
## 17233                        60 minutes    1
## 17234                         60 others    1
## 17235                        60 seconds    1
## 17236                            60 was    1
## 17237                           60 were    1
## 17238                      600 business    1
## 17239                        600 meters    1
## 17240                           600 mph    1
## 17241                        600 pounds    1
## 17242                        600 rudder    1
## 17243                         6000 feet    1
## 17244                          600ft to    1
## 17245                      61 passenger    1
## 17246                            61 the    1
## 17247                              62 a    1
## 17248                       62 aircraft    1
## 17249                          62 miles    1
## 17250                          62 would    1
## 17251                            63 and    1
## 17252                          63 miles    1
## 17253                             63 on    1
## 17254                           6300 ft    1
## 17255                         64 killed    1
## 17256                          645 feet    1
## 17257                           65 0255    1
## 17258                             65 85    1
## 17259                           65 feet    1
## 17260                       65 nautical    1
## 17261                            650 ft    1
## 17262                         65735 and    1
## 17263                    65816 fourteen    1
## 17264                           66 0142    1
## 17265                          66 16202    1
## 17266                          66 16592    1
## 17267                          66 16601    1
## 17268                         66 degree    1
## 17269                       66 governor    1
## 17270                            66 his    1
## 17271                          66 miles    1
## 17272                          660 feet    1
## 17273                          661 were    1
## 17274                            674 ft    1
## 17275                         67nm from    1
## 17276                         680 miles    1
## 17277                         6800 feet    1
## 17278                          681 were    1
## 17279                         69 aboard    1
## 17280                        69 crashed    1
## 17281                       6d improper    1
## 17282                            6f had    1
## 17283                       6f reckless    1
## 17284                            6f the    1
## 17285                            6f was    1
## 17286                             6g to    1
## 17287                            7 2017    1
## 17288                          7 afghan    1
## 17289                        7 airliner    1
## 17290                              7 at    1
## 17291                         7 crashed    1
## 17292                            7 days    1
## 17293                              7 ft    1
## 17294                            7 fuel    1
## 17295                              7 in    1
## 17296                             7 kms    1
## 17297                        7 military    1
## 17298                              7 nm    1
## 17299                          7 ounces    1
## 17300                         7 seconds    1
## 17301                           7 story    1
## 17302                        7 survived    1
## 17303                    7,000 mountain    1
## 17304                          7,200 ft    1
## 17305                          7,250 ft    1
## 17306                          7,450 ft    1
## 17307                          7,550 ft    1
## 17308                          7,598 ft    1
## 17309                          7,600 ft    1
## 17310                        7,900 feet    1
## 17311                        7.7nm from    1
## 17312                       7.9 seconds    1
## 17313                        70 degrees    1
## 17314                              70 m    1
## 17315                         70 meters    1
## 17316                            70 mph    1
## 17317                         70 people    1
## 17318                           70 room    1
## 17319                           700 800    1
## 17320                           700 900    1
## 17321                             700 m    1
## 17322                        700 meters    1
## 17323                         700 miles    1
## 17324                           700 mph    1
## 17325                        700,000 to    1
## 17326                        700m short    1
## 17327                       705.32 such    1
## 17328                      707 crashing    1
## 17329                          707 that    1
## 17330                         707 three    1
## 17331                          707 used    1
## 17332                          71 miles    1
## 17333                         71 minute    1
## 17334                        7183 while    1
## 17335                          72 among    1
## 17336                            72 and    1
## 17337                           72 both    1
## 17338                          72 eight    1
## 17339                          727 both    1
## 17340                      727 overtook    1
## 17341                        727 struck    1
## 17342                            727 to    1
## 17343                     727 undershot    1
## 17344                          727 were    1
## 17345                         727 which    1
## 17346                             73 km    1
## 17347                       73209 46325    1
## 17348                           737 200    1
## 17349                           737 236    1
## 17350                           737 and    1
## 17351                        737 before    1
## 17352                           737 max    1
## 17353                          737 were    1
## 17354                       7408 faulty    1
## 17355                      747 accident    1
## 17356                           747 and    1
## 17357                          747 blew    1
## 17358                         747 cabin    1
## 17359                         747 pylon    1
## 17360                             75 ft    1
## 17361                             75 km    1
## 17362                             75 of    1
## 17363                           75 year    1
## 17364                          750 feet    1
## 17365                      757 filpping    1
## 17366                          757 left    1
## 17367                          757 were    1
## 17368                         75m short    1
## 17369                      76 descended    1
## 17370                           76 were    1
## 17371                     77 passengers    1
## 17372                           777 200    1
## 17373                         78 aboard    1
## 17374                         78 thrust    1
## 17375                            78 was    1
## 17376                          7841 and    1
## 17377                          78th and    1
## 17378                        79th floor    1
## 17379                            7b one    1
## 17380                              8 14    1
## 17381                              8 69    1
## 17382                               8 8    1
## 17383                          8 aboard    1
## 17384                       8 civilians    1
## 17385                     8 consecutive    1
## 17386                         8 crashed    1
## 17387                            8 died    1
## 17388                          8 flight    1
## 17389                              8 ft    1
## 17390                     8 helicopters    1
## 17391                              8 in    1
## 17392                            8 knot    1
## 17393                           8 knots    1
## 17394                        8 military    1
## 17395                          8 months    1
## 17396                       8 occupants    1
## 17397                      8 passengers    1
## 17398                          8 people    1
## 17399                               8 s    1
## 17400                          8 struck    1
## 17401                        8 survived    1
## 17402                             8 was    1
## 17403                            8 were    1
## 17404                           8 while    1
## 17405                          8,200 ft    1
## 17406                        8,250 feet    1
## 17407                        8,500 feet    1
## 17408                          8,640 ft    1
## 17409                        8,800 feet    1
## 17410                          8,800 ft    1
## 17411                         8.5 miles    1
## 17412                           80 feet    1
## 17413                             80 ft    1
## 17414                             80 km    1
## 17415                              80 m    1
## 17416                             80 of    1
## 17417                             80 to    1
## 17418                           800 and    1
## 17419                             800 m    1
## 17420                        800 meters    1
## 17421                         800ft and    1
## 17422                         800ft min    1
## 17423                       800m beyond    1
## 17424                        800m short    1
## 17425                          800m the    1
## 17426                          80km out    1
## 17427                    80nm southwest    1
## 17428                      815 aircraft    1
## 17429                        82 crashed    1
## 17430                         82 mother    1
## 17431                            83 was    1
## 17432                          830 feet    1
## 17433                         84 pounds    1
## 17434                           840 lbs    1
## 17435                         84km from    1
## 17436                       84th floors    1
## 17437                            85 mph    1
## 17438                             85 to    1
## 17439                             850 m    1
## 17440                         850 meter    1
## 17441                       853 because    1
## 17442                          853 crew    1
## 17443                          853 were    1
## 17444                        86 fighter    1
## 17445                            86 jet    1
## 17446                          86 pilot    1
## 17447                            86 the    1
## 17448                       86f fighter    1
## 17449                       87 aircraft    1
## 17450                            87 and    1
## 17451                          87 miles    1
## 17452                             87 on    1
## 17453                        87 rotated    1
## 17454                            87 was    1
## 17455                           870 the    1
## 17456                          8760 and    1
## 17457                         88 aboard    1
## 17458                        88 degrees    1
## 17459                           88 foot    1
## 17460                           880 and    1
## 17461                          880 crew    1
## 17462                       8840 killed    1
## 17463                            887 nm    1
## 17464                        89 crashed    1
## 17465                            89 was    1
## 17466                           89j air    1
## 17467                          89th ave    1
## 17468                             8t in    1
## 17469                         8th touch    1
## 17470                              9 16    1
## 17471                              9 29    1
## 17472                             9 and    1
## 17473                             9 atc    1
## 17474                      9 attempting    1
## 17475                            9 came    1
## 17476                           9 cargo    1
## 17477                        9 collided    1
## 17478                       9 combustor    1
## 17479                         9 crashed    1
## 17480                            9 days    1
## 17481                       9 descended    1
## 17482                      9 inadequacy    1
## 17483                   9 inadvertently    1
## 17484                          9 killed    1
## 17485                          9 landed    1
## 17486                            9 lost    1
## 17487                           9 meter    1
## 17488                            9 more    1
## 17489                              9 nm    1
## 17490                            9 none    1
## 17491                              9 on    1
## 17492                             9 p.m    1
## 17493                          9 series    1
## 17494                            9 shot    1
## 17495                        9 soldiers    1
## 17496                              9 sq    1
## 17497                          9 taxied    1
## 17498                           9 three    1
## 17499                              9 to    1
## 17500                            9 tons    1
## 17501                            9 when    1
## 17502                           9 while    1
## 17503                          9,200 ft    1
## 17504                        9,300 feet    1
## 17505                        9,500 feet    1
## 17506                          9,600 ft    1
## 17507                          9,646 ft    1
## 17508                        9,700 feet    1
## 17509                        9,900 feet    1
## 17510                        9,900 foot    1
## 17511                          9.000 ft    1
## 17512                            9.7 km    1
## 17513                         9.7 miles    1
## 17514                           90 feet    1
## 17515                           90 knts    1
## 17516                             90 of    1
## 17517                            9000 m    1
## 17518                          900m and    1
## 17519                          91 miles    1
## 17520                   91 paratroopers    1
## 17521                            91 the    1
## 17522                             92 km    1
## 17523                           94 feet    1
## 17524                             94 on    1
## 17525                         940 miles    1
## 17526                          94th and    1
## 17527                        95 crashed    1
## 17528                        95 degrees    1
## 17529                             95 to    1
## 17530                            950 ft    1
## 17531                             96 on    1
## 17532                          970 feet    1
## 17533                            980 ft    1
## 17534                          984 feet    1
## 17535                           9877 in    1
## 17536                          9877 was    1
## 17537                          990 lost    1
## 17538                       99th floors    1
## 17539                             9d at    1
## 17540                           a 1,047    1
## 17541                           a 1,200    1
## 17542                           a 1,400    1
## 17543                           a 1,600    1
## 17544                          a 10,500    1
## 17545                          a 10,530    1
## 17546                            a 10th    1
## 17547                          a 11,200    1
## 17548                          a 11,500    1
## 17549                              a 12    1
## 17550                              a 13    1
## 17551                          a 14,200    1
## 17552                          a 16,739    1
## 17553                          a 180deg    1
## 17554                            a 1980    1
## 17555                               a 2    1
## 17556                           a 2,790    1
## 17557                             a 223    1
## 17558                              a 26    1
## 17559                             a 270    1
## 17560                           a 3,000    1
## 17561                             a 300    1
## 17562                              a 31    1
## 17563                             a 3rd    1
## 17564                               a 4    1
## 17565                           a 4,000    1
## 17566                           a 4,090    1
## 17567                           a 4,200    1
## 17568                           a 4,500    1
## 17569                           a 4,800    1
## 17570                            a 4.8g    1
## 17571                              a 44    1
## 17572                               a 5    1
## 17573                           a 5,000    1
## 17574                           a 5,300    1
## 17575                              a 50    1
## 17576                             a 500    1
## 17577                              a 55    1
## 17578                              a 60    1
## 17579                              a 66    1
## 17580                               a 7    1
## 17581                           a 7,200    1
## 17582                           a 7,500    1
## 17583                           a 7,598    1
## 17584                           a 7,800    1
## 17585                              a 71    1
## 17586                              a 75    1
## 17587                           a 8,500    1
## 17588                              a 80    1
## 17589                           a 9,600    1
## 17590                               a ã    1
## 17591                         a aborted    1
## 17592                        a accurate    1
## 17593                          a aerial    1
## 17594                     a aerodynamic    1
## 17595                              a an    1
## 17596                         a antenna    1
## 17597                              â at    1
## 17598                             a atc    1
## 17599                             a atr    1
## 17600                            a auto    1
## 17601                      a automobile    1
## 17602                            a back    1
## 17603                             a bad    1
## 17604                          a balked    1
## 17605                     a ballon.went    1
## 17606                          a banana    1
## 17607                           a bandi    1
## 17608                          a banked    1
## 17609                         a banking    1
## 17610                            a barn    1
## 17611                           a basic    1
## 17612                         a bearing    1
## 17613                           a belem    1
## 17614                            a bell    1
## 17615                            a berm    1
## 17616                         a bicycle    1
## 17617                       a bicyclist    1
## 17618                            a bird    1
## 17619                           a black    1
## 17620                           a blade    1
## 17621                         a blanket    1
## 17622                        a blockage    1
## 17623                         a blocked    1
## 17624                           a blood    1
## 17625                            a blow    1
## 17626                         a blowout    1
## 17627                           a bluff    1
## 17628                          a bolder    1
## 17629                            a bolt    1
## 17630                          a bomber    1
## 17631                             a box    1
## 17632                             a boy    1
## 17633                         a braking    1
## 17634                       a breakdown    1
## 17635                         a breakup    1
## 17636                           a brick    1
## 17637                           a brief    1
## 17638                          a bright    1
## 17639                       a britannia    1
## 17640                       a broadcast    1
## 17641                          a brushy    1
## 17642                           a buick    1
## 17643                         a buildup    1
## 17644                             a bus    1
## 17645                       a bystander    1
## 17646                               a c    1
## 17647                            a cafe    1
## 17648                         a caisson    1
## 17649                      a california    1
## 17650                        a campaign    1
## 17651                     a campaigning    1
## 17652                        a canadair    1
## 17653                           a canoe    1
## 17654                      a carburetor    1
## 17655                          a castle    1
## 17656                        a catalina    1
## 17657                         a caution    1
## 17658                           a cedar    1
## 17659                          a center    1
## 17660                         a central    1
## 17661                       a certified    1
## 17662                  a ceskoslovenske    1
## 17663                             a cga    1
## 17664                       a checklist    1
## 17665                        a chemical    1
## 17666                         a chinese    1
## 17667                          a circle    1
## 17668                        a circling    1
## 17669                            a city    1
## 17670                           a civil    1
## 17671                           a clean    1
## 17672                       a clearance    1
## 17673                      a clockmaker    1
## 17674                         a clogged    1
## 17675                          a closer    1
## 17676                      a collection    1
## 17677                         a college    1
## 17678                          a column    1
## 17679                            a coma    1
## 17680                        a combined    1
## 17681                        a commando    1
## 17682                       a commotion    1
## 17683                         a compass    1
## 17684                         a complex    1
## 17685                       a component    1
## 17686                      a compressed    1
## 17687                        a computer    1
## 17688                        a concorde    1
## 17689                       a concreate    1
## 17690                      a concurrent    1
## 17691                      a connection    1
## 17692                         a conrete    1
## 17693                       a container    1
## 17694                    a contaminated    1
## 17695                     a contentious    1
## 17696                     a continental    1
## 17697                    a continuation    1
## 17698                         a control    1
## 17699                      a controller    1
## 17700                         a convent    1
## 17701                      a converging    1
## 17702                          a copper    1
## 17703                       a cornfield    1
## 17704                         a correct    1
## 17705                 a correspondingly    1
## 17706                          a cotton    1
## 17707                         a coupled    1
## 17708                             a cow    1
## 17709                           a crack    1
## 17710                           a crane    1
## 17711                        a crevasse    1
## 17712                           a crime    1
## 17713                      a critically    1
## 17714                        a croatian    1
## 17715                       a crocodile    1
## 17716                         a crucial    1
## 17717                          a cruise    1
## 17718                         a crushed    1
## 17719                         a culvert    1
## 17720                      a cumulative    1
## 17721                        a customer    1
## 17722                         a cyanide    1
## 17723                             a dam    1
## 17724                            a damp    1
## 17725                            a dark    1
## 17726                        a database    1
## 17727                            a dead    1
## 17728                     a deadheading    1
## 17729                       a declutter    1
## 17730                        a decrease    1
## 17731                            a deep    1
## 17732                        a degraded    1
## 17733                         a delayed    1
## 17734                         a densely    1
## 17735                          a densly    1
## 17736                       a departure    1
## 17737                      a depression    1
## 17738                             a des    1
## 17739                      a detonation    1
## 17740                       a deviation    1
## 17741                             a dhc    1
## 17742                            a dike    1
## 17743                        a diligent    1
## 17744                    a disagreement    1
## 17745                        a disaster    1
## 17746                       a disregard    1
## 17747                         a divorce    1
## 17748                          a doctor    1
## 17749                         a dormant    1
## 17750                         a douglas    1
## 17751                            a down    1
## 17752                            a drag    1
## 17753                        a drilling    1
## 17754                          a driver    1
## 17755                         a driving    1
## 17756                             a dry    1
## 17757                           a dummy    1
## 17758                          a during    1
## 17759                        a electric    1
## 17760                      a embankment    1
## 17761                       a emergency    1
## 17762                   â ëœglideslopeã    1
## 17763                          â ëœlost    1
## 17764                       â ëœretardã    1
## 17765                       a erroneous    1
## 17766                         a evasive    1
## 17767                       a explosive    1
## 17768                           a faãƒâ    1
## 17769                            a fail    1
## 17770                        a failsafe    1
## 17771                 a familiarization    1
## 17772                          a famous    1
## 17773                        a farewell    1
## 17774                        a farmhand    1
## 17775                       a farrell's    1
## 17776                           a fatal    1
## 17777                         a fatally    1
## 17778                           a ferry    1
## 17779                     a fieldlshort    1
## 17780                          a fierce    1
## 17781                         a filight    1
## 17782                        a fireball    1
## 17783                           a fired    1
## 17784                        a firehose    1
## 17785                            a fish    1
## 17786                         a fishing    1
## 17787                            a flag    1
## 17788                            a flap    1
## 17789                     a fluorescent    1
## 17790                             a fly    1
## 17791                        a forecast    1
## 17792                         a foreign    1
## 17793                        a forensic    1
## 17794                          a forged    1
## 17795                          a formal    1
## 17796                        a fortress    1
## 17797                            a four    1
## 17798                        a fracture    1
## 17799                         a frantic    1
## 17800                            a free    1
## 17801                         a freeway    1
## 17802                       a freighter    1
## 17803                           a fresh    1
## 17804                         a frontal    1
## 17805                           a frost    1
## 17806                           a fully    1
## 17807                     a functioning    1
## 17808                         a further    1
## 17809                            a fuse    1
## 17810                            a gain    1
## 17811                          a gambia    1
## 17812                          a garage    1
## 17813                          a garden    1
## 17814                            a gear    1
## 17815                         a general    1
## 17816                       a generator    1
## 17817                          a geneva    1
## 17818                           a given    1
## 17819                         a glacial    1
## 17820                     a glacier.the    1
## 17821                           a glass    1
## 17822                          a glider    1
## 17823                      a glideslope    1
## 17824                          a glitch    1
## 17825                        a goaround    1
## 17826                            a gold    1
## 17827                         a gondola    1
## 17828                         a goodbye    1
## 17829                       a gradually    1
## 17830                         a granite    1
## 17831                          a gravel    1
## 17832                           a great    1
## 17833                           a guard    1
## 17834                             a gun    1
## 17835                            a gust    1
## 17836                            a gwps    1
## 17837                            a hail    1
## 17838                       a hailstorm    1
## 17839                             a haj    1
## 17840                          a hangar    1
## 17841                         a hastily    1
## 17842                            a hawk    1
## 17843                        a hayfield    1
## 17844                              a he    1
## 17845                            a head    1
## 17846                          a hidden    1
## 17847                          a higher    1
## 17848                       a hijacking    1
## 17849                         a history    1
## 17850                         a hostage    1
## 17851                          a houses    1
## 17852                         a houston    1
## 17853                           a hurry    1
## 17854                   a hydroelectric    1
## 17855                           â icing    1
## 17856                        a improper    1
## 17857                      a inadequate    1
## 17858                    a intermittent    1
## 17859                          a island    1
## 17860                            a jail    1
## 17861                             a jam    1
## 17862                           a jetty    1
## 17863                         a jeweler    1
## 17864                       a jordanian    1
## 17865                             a joy    1
## 17866                            a ju88    1
## 17867                         a karaoke    1
## 17868                    a kindergarten    1
## 17869                           a knife    1
## 17870                           a knoll    1
## 17871                           a known    1
## 17872                           a later    1
## 17873                         a lateral    1
## 17874                            a lava    1
## 17875                         a leading    1
## 17876                         a leaking    1
## 17877                          a lesser    1
## 17878                           a lever    1
## 17879                         a lighter    1
## 17880                       a localized    1
## 17881                        a location    1
## 17882                            a lone    1
## 17883                          a longer    1
## 17884                            a loon    1
## 17885                            a lost    1
## 17886                           â loved    1
## 17887                         a lowland    1
## 17888                          a lumber    1
## 17889                            a make    1
## 17890                            a male    1
## 17891                        a mangrove    1
## 17892                          a manual    1
## 17893                          a margin    1
## 17894                          a marked    1
## 17895                           a marsh    1
## 17896                          a marshy    1
## 17897                          a martin    1
## 17898                         a massive    1
## 17899                          a master    1
## 17900                        a mechanic    1
## 17901                       a mechanism    1
## 17902                        a memorial    1
## 17903                        a mentally    1
## 17904                           a mercy    1
## 17905                         a mexican    1
## 17906                       a micoburst    1
## 17907                             a mil    1
## 17908                            a mine    1
## 17909                      a mineworker    1
## 17910                           a minor    1
## 17911                          a mirage    1
## 17912               a misinterpretation    1
## 17913                     a misjudgment    1
## 17914                            a miss    1
## 17915                        a missiion    1
## 17916                         a missing    1
## 17917                         a mission    1
## 17918                a misunderstanding    1
## 17919                             a mix    1
## 17920                            a mode    1
## 17921                          a modern    1
## 17922                       a momentary    1
## 17923                         a montain    1
## 17924                          a mooney    1
## 17925                          a mortar    1
## 17926                           a motel    1
## 17927                          a mother    1
## 17928                      a motorcycle    1
## 17929                       a mouintian    1
## 17930                           a mound    1
## 17931                      a mountain18    1
## 17932                     a mountaintop    1
## 17933                         a mountin    1
## 17934                              a mt    1
## 17935                             a mud    1
## 17936                         a mudbank    1
## 17937                            a nasa    1
## 17938                        a national    1
## 17939                      a navagation    1
## 17940                           a naval    1
## 17941                     a naviational    1
## 17942                             a nbc    1
## 17943                           a newly    1
## 17944                      a nicaraguan    1
## 17945                  a nitrocellulose    1
## 17946                           a noise    1
## 17947                         a nominal    1
## 17948                      a nonrevenue    1
## 17949                       a northerly    1
## 17950                        a nosedive    1
## 17951                           a notam    1
## 17952                        â occurred    1
## 17953                              â on    1
## 17954                         a onboard    1
## 17955                        a overhead    1
## 17956                         a overlap    1
## 17957                       a overshoot    1
## 17958                               a p    1
## 17959                         a package    1
## 17960                         a packing    1
## 17961                         a paddock    1
## 17962                     a palestinian    1
## 17963                             a pan    1
## 17964                           a panic    1
## 17965                         a parking    1
## 17966                       a parliment    1
## 17967                       a partially    1
## 17968                          a partly    1
## 17969                           a party    1
## 17970                            a path    1
## 17971                           a paved    1
## 17972                            a peak    1
## 17973                           a pecan    1
## 17974                      a pensionist    1
## 17975                       a penthouse    1
## 17976                       a perceived    1
## 17977                          a period    1
## 17978                        a periodic    1
## 17979                        a peruvian    1
## 17980                       a petrified    1
## 17981                       a petroleum    1
## 17982                      a phosphorus    1
## 17983                            a pine    1
## 17984                          a pirate    1
## 17985                      a playground    1
## 17986                            a plot    1
## 17987                          a plowed    1
## 17988                           a plume    1
## 17989                         a pointed    1
## 17990                         a pontoon    1
## 17991                            a pool    1
## 17992                       a populated    1
## 17993                        a portable    1
## 17994                         a portion    1
## 17995                        a position    1
## 17996                    a positionning    1
## 17997                       a powerline    1
## 17998                        a practice    1
## 17999                           a prank    1
## 18000                             a pre    1
## 18001                      a precarious    1
## 18002                       a preflight    1
## 18003                        a pressure    1
## 18004                      a preventive    1
## 18005                         a primary    1
## 18006                     a probability    1
## 18007                      a procedural    1
## 18008                       a procedure    1
## 18009                    a professional    1
## 18010                     a progressive    1
## 18011                      a prohibited    1
## 18012                            a prop    1
## 18013                 a psychoemotional    1
## 18014                      a psychology    1
## 18015                          a public    1
## 18016                            a puff    1
## 18017                      a purser.the    1
## 18018                           a pylon    1
## 18019                             a qnh    1
## 18020                          a quarry    1
## 18021                         a quicker    1
## 18022                          a racing    1
## 18023                      a radiosonde    1
## 18024                            a rail    1
## 18025                        a railroad    1
## 18026             a rainstorm.premature    1
## 18027                            a rate    1
## 18028                            a real    1
## 18029                         a reality    1
## 18030                      a reasonable    1
## 18031                             a red    1
## 18032                        a reducing    1
## 18033                       a reduction    1
## 18034                         a redwood    1
## 18035                      a refraction    1
## 18036                          a region    1
## 18037                       a regularly    1
## 18038                        a rejected    1
## 18039                      a relatively    1
## 18040                            a reno    1
## 18041                      a repetitive    1
## 18042                     a replacement    1
## 18043                   a repositioning    1
## 18044                          a rescue    1
## 18045                       a residence    1
## 18046                      a residental    1
## 18047                        a residual    1
## 18048                      a restaurant    1
## 18049                         a retired    1
## 18050                       a retracted    1
## 18051                        a reversal    1
## 18052                         a reverse    1
## 18053                          a review    1
## 18054                            a ride    1
## 18055                          a rivine    1
## 18056                           a rolls    1
## 18057                        a rotation    1
## 18058                           a royal    1
## 18059                          a rugged    1
## 18060                             a run    1
## 18061                         a rupture    1
## 18062                           a rural    1
## 18063                          a rusted    1
## 18064                        a saboteur    1
## 18065                          a safely    1
## 18066                          a safety    1
## 18067                        a sandbank    1
## 18068                           a sandy    1
## 18069                             a sas    1
## 18070                           a scale    1
## 18071                       a scapegoat    1
## 18072                       a scattered    1
## 18073                      a scientific    1
## 18074                           a scott    1
## 18075                         a sealing    1
## 18076                       a secondary    1
## 18077                            a semi    1
## 18078                           a senic    1
## 18079                          a sentry    1
## 18080                         a serious    1
## 18081                           a servo    1
## 18082                           a sever    1
## 18083                           a shaft    1
## 18084                          a shanty    1
## 18085                      a shantytown    1
## 18086                         a sharper    1
## 18087                           a sheer    1
## 18088                           a shell    1
## 18089                        a shipment    1
## 18090                       a shipsmast    1
## 18091                       a shockwave    1
## 18092                        a shooting    1
## 18093                        a shopping    1
## 18094                            a shot    1
## 18095                    a showboarding    1
## 18096                       a showstorm    1
## 18097                           a sibir    1
## 18098                            a side    1
## 18099                           a sight    1
## 18100                            a sign    1
## 18101                          a signal    1
## 18102                            a silo    1
## 18103                          a simple    1
## 18104                          a single    1
## 18105                       a situation    1
## 18106                             a six    1
## 18107                         a sixteen    1
## 18108                        a skeleton    1
## 18109                          a skiing    1
## 18110                           a sleet    1
## 18111                           a slide    1
## 18112                           a smoky    1
## 18113                        a snowbank    1
## 18114                       a snowdrift    1
## 18115                           a solid    1
## 18116                          a source    1
## 18117                       a southerly    1
## 18118                        a spitfire    1
## 18119                          a sports    1
## 18120                           a stage    1
## 18121                        a stalling    1
## 18122                       a stanchion    1
## 18123                         a standby    1
## 18124                       a statement    1
## 18125                          a static    1
## 18126                          a steady    1
## 18127                           a steam    1
## 18128                            a step    1
## 18129                         a sterile    1
## 18130                         a steward    1
## 18131                         a stinger    1
## 18132                        a stopover    1
## 18133                         a storage    1
## 18134                           a stray    1
## 18135                          a stream    1
## 18136                          a strike    1
## 18137                       a structure    1
## 18138                           a stuck    1
## 18139                         a student    1
## 18140                             a sub    1
## 18141                       a submerged    1
## 18142                    a subsequently    1
## 18143                   a substantially    1
## 18144                      a succession    1
## 18145                       a sugarcane    1
## 18146                        a suitcase    1
## 18147                          a supply    1
## 18148                           a surge    1
## 18149                       a suspected    1
## 18150                       a sustained    1
## 18151                          a swampy    1
## 18152                        a switched    1
## 18153                       a tailplane    1
## 18154                        a tailspin    1
## 18155                          a tangle    1
## 18156                            a taxi    1
## 18157                          a taxing    1
## 18158                         a taxiway    1
## 18159                              a tc    1
## 18160               a telecommunication    1
## 18161                       a telegraph    1
## 18162                       a temporary    1
## 18163                      a terrifying    1
## 18164                            a thai    1
## 18165                           a thick    1
## 18166                         a thickly    1
## 18167                            a thin    1
## 18168                        a throttle    1
## 18169                           a thump    1
## 18170                          a timing    1
## 18171                             a tnt    1
## 18172                           a tokyo    1
## 18173                             a top    1
## 18174                           a touch    1
## 18175                       a touchdown    1
## 18176                            a town    1
## 18177                         a traffic    1
## 18178                         a trailer    1
## 18179                        a trailing    1
## 18180                         a trainee    1
## 18181                   a transatlantic    1
## 18182                a transcontinental    1
## 18183                     a transformer    1
## 18184                      a transition    1
## 18185                    a transmission    1
## 18186                           a troop    1
## 18187                       a troubling    1
## 18188                             a tug    1
## 18189                    a turbocharger    1
## 18190                              a tv    1
## 18191                             a twa    1
## 18192                         a typical    1
## 18193                             a u.n    1
## 18194                     a uncontained    1
## 18195                    a uncontrolled    1
## 18196                  a unintelligible    1
## 18197                          a united    1
## 18198                        a unlocked    1
## 18199                    a unprescribed    1
## 18200                       a unsecured    1
## 18201                       a unusually    1
## 18202                          a uphill    1
## 18203                           a upper    1
## 18204                        a velocity    1
## 18205                         a vickers    1
## 18206                          a victim    1
## 18207                           a video    1
## 18208                         a visible    1
## 18209                        a volcanic    1
## 18210                           a volga    1
## 18211                         a voltage    1
## 18212                          a vortex    1
## 18213                         a vulture    1
## 18214                            a wake    1
## 18215                             a war    1
## 18216                         â warning    1
## 18217                          a warped    1
## 18218                         a wartime    1
## 18219                      a watermelon    1
## 18220                            a wave    1
## 18221                        a westerly    1
## 18222                       a whistling    1
## 18223                        a whiteout    1
## 18224                           a whole    1
## 18225                             a why    1
## 18226                     a windmilling    1
## 18227                           a wings    1
## 18228                            a wire    1
## 18229                         a women's    1
## 18230                          a wooden    1
## 18231                         a working    1
## 18232                            a zone    1
## 18233                           a.b won    1
## 18234                    a.c electrical    1
## 18235                           a.g von    1
## 18236                         a.m bound    1
## 18237                          a320 was    1
## 18238                          a330 and    1
## 18239                     a340 aircraft    1
## 18240                       aad babaker    1
## 18241                         aãƒâ reas    1
## 18242                        ababa bole    1
## 18243                          ababa to    1
## 18244                      abad village    1
## 18245                         abandon a    1
## 18246                       abandon his    1
## 18247                     abandon their    1
## 18248                      abandoned al    1
## 18249                      abandoned at    1
## 18250                     abandoned due    1
## 18251                     abandoned ifr    1
## 18252                  abandoned runway    1
## 18253                   abandoned their    1
## 18254               abandoned warehouse    1
## 18255                    abandoning all    1
## 18256                     abandoning an    1
## 18257              abatement guidelines    1
## 18258              abatement procedures    1
## 18259                     abbas airport    1
## 18260                     abbas because    1
## 18261                    abbottabad and    1
## 18262                    abbreviation r    1
## 18263                     abejorral ndb    1
## 18264                aberdare mountains    1
## 18265                     abidjan after    1
## 18266                     abidjan felix    1
## 18267                      abilities by    1
## 18268                      abilities of    1
## 18269                     ability level    1
## 18270                        ability or    1
## 18271                      ability that    1
## 18272                       ability the    1
## 18273                 abingdon airfield    1
## 18274                    abkhazi forces    1
## 18275                abkhazi separatist    1
## 18276                  abkhazian rebels    1
## 18277                    ablaze killing    1
## 18278                 abnormal attitude    1
## 18279               abnormal clearances    1
## 18280             abnormal longitudinal    1
## 18281                abnormal maneuvers    1
## 18282                       abnormal no    1
## 18283                     abnormal nose    1
## 18284                    abnormal pitch    1
## 18285             abnormalities however    1
## 18286                   abnormally high    1
## 18287                  abnormally steep    1
## 18288                   abnormally wide    1
## 18289                     aboard 158930    1
## 18290                     aboard 159325    1
## 18291                       aboard 3222    1
## 18292                         aboard 42    1
## 18293                    aboard 4207183    1
## 18294                       aboard 7841    1
## 18295                       aboard 8760    1
## 18296                       aboard 8840    1
## 18297                      aboard after    1
## 18298                        aboard all    1
## 18299                         aboard an    1
## 18300                       aboard both    1
## 18301                     aboard caused    1
## 18302                 aboard detonation    1
## 18303                       aboard each    1
## 18304                        aboard eal    1
## 18305                      aboard error    1
## 18306                    aboard escaped    1
## 18307                  aboard evacuated    1
## 18308                        aboard for    1
## 18309                         aboard he    1
## 18310                   aboard included    1
## 18311                  aboard initially    1
## 18312                    aboard injured    1
## 18313                    aboard leading    1
## 18314                    aboard leakage    1
## 18315                    aboard moments    1
## 18316                 aboard negligence    1
## 18317                      aboard other    1
## 18318                 aboard parachuted    1
## 18319                  aboard premature    1
## 18320                        aboard pro    1
## 18321                     aboard rather    1
## 18322                  aboard returning    1
## 18323                     aboard rhoads    1
## 18324                    aboard shifted    1
## 18325                   aboard suffered    1
## 18326                     aboard thirty    1
## 18327                      aboard three    1
## 18328                         aboard to    1
## 18329                   aboard tourists    1
## 18330                       aboard when    1
## 18331                      aboard while    1
## 18332                        aboard who    1
## 18333                   aboard wreckage    1
## 18334                          aboout 1    1
## 18335              aboriginal community    1
## 18336                       abort after    1
## 18337                abort successfully    1
## 18338                         abort was    1
## 18339                     aborted after    1
## 18340                  aborted although    1
## 18341                        aborted at    1
## 18342                  aborted attempts    1
## 18343                   aborted barrier    1
## 18344                   aborted because    1
## 18345                     aborted first    1
## 18346                       aborted for    1
## 18347                       aborted its    1
## 18348                        aborting a    1
## 18349                     aborting four    1
## 18350                         about 0.5    1
## 18351                       about 1,100    1
## 18352                       about 1,440    1
## 18353                      about 10,000    1
## 18354                         about 108    1
## 18355                      about 12,000    1
## 18356                         about 125    1
## 18357                          about 13    1
## 18358                          about 17    1
## 18359                         about 170    1
## 18360                        about 1800    1
## 18361                       about 2,000    1
## 18362                     about 2,000ft    1
## 18363                       about 2,500    1
## 18364                          about 21    1
## 18365                      about 25,000    1
## 18366                         about 250    1
## 18367                          about 27    1
## 18368                          about 29    1
## 18369                       about 3,700    1
## 18370                         about 3.5    1
## 18371                      about 30,000    1
## 18372                          about 32    1
## 18373                         about 320    1
## 18374                          about 34    1
## 18375                         about 340    1
## 18376                        about 34km    1
## 18377                          about 36    1
## 18378                          about 38    1
## 18379                          about 39    1
## 18380                           about 4    1
## 18381                       about 4,000    1
## 18382                       about 4,500    1
## 18383                         about 420    1
## 18384                          about 57    1
## 18385                        about 6300    1
## 18386                         about 7.5    1
## 18387                          about 73    1
## 18388                         about 750    1
## 18389                       about 8,250    1
## 18390                        about 80km    1
## 18391                         about 830    1
## 18392                          about 85    1
## 18393                         about 887    1
## 18394                       about 9,200    1
## 18395                          about 90    1
## 18396                         about 900    1
## 18397                          about an    1
## 18398                        about five    1
## 18399                         about her    1
## 18400                         about his    1
## 18401                          about it    1
## 18402                         about its    1
## 18403                      about midway    1
## 18404                about observations    1
## 18405                    about possible    1
## 18406                         about ten    1
## 18407                       about three    1
## 18408                          about v2    1
## 18409                      above 12,500    1
## 18410                       above 5,000    1
## 18411                        above both    1
## 18412                      above ground    1
## 18413                         above her    1
## 18414                         above mda    1
## 18415                         above mlw    1
## 18416                      above normal    1
## 18417                      above runway    1
## 18418                      above twenty    1
## 18419                          above vr    1
## 18420                       above where    1
## 18421                        abrupt and    1
## 18422                abrupt application    1
## 18423              abrupt deterioration    1
## 18424                       abrupt lack    1
## 18425                       abrupt pull    1
## 18426                      abrupt steep    1
## 18427                      abruptly and    1
## 18428              abruptly encountered    1
## 18429                     abruptly lose    1
## 18430                  abruptly reduced    1
## 18431                  abruptly swerved    1
## 18432                     abruptly that    1
## 18433                        absence in    1
## 18434                        absence on    1
## 18435                         abuja the    1
## 18436                            ac bus    1
## 18437                          ac power    1
## 18438                  academy building    1
## 18439                    acars messages    1
## 18440                     acccident not    1
## 18441                 accelerate before    1
## 18442                     accelerate to    1
## 18443                  accelerated rate    1
## 18444                 accelerated stall    1
## 18445                    accelerated to    1
## 18446                  acceleration and    1
## 18447                 acceleration crew    1
## 18448                 acceleration felt    1
## 18449               acceleration forces    1
## 18450              acceleration stoping    1
## 18451                 acceleration take    1
## 18452           acceleration undetected    1
## 18453               acceptable approach    1
## 18454                  acceptable limit    1
## 18455                     acceptance of    1
## 18456              accepted explanation    1
## 18457                   accepted policy    1
## 18458                    accepted rules    1
## 18459                    access medical    1
## 18460                      access panel    1
## 18461                 accessory section    1
## 18462                        accident 4    1
## 18463                    accident about    1
## 18464                    accident actor    1
## 18465                      accident air    1
## 18466                 accident airplane    1
## 18467                 accident alleging    1
## 18468                    accident along    1
## 18469                     accident also    1
## 18470                       accident an    1
## 18471                     accident area    1
## 18472                      accident atc    1
## 18473                   accident became    1
## 18474                  accident blaming    1
## 18475                   accident boeing    1
## 18476                     accident both    1
## 18477                      accident can    1
## 18478               accident controlled    1
## 18479                   accident during    1
## 18480                       accident en    1
## 18481                    accident heavy    1
## 18482                  accident include    1
## 18483                 accident included    1
## 18484                accident indicated    1
## 18485            accident investigation    1
## 18486                accident involving    1
## 18487                       accident is    1
## 18488                     accident lost    1
## 18489                      accident may    1
## 18490                   accident midair    1
## 18491                    accident might    1
## 18492             accident navagational    1
## 18493                       accident of    1
## 18494                       accident or    1
## 18495                     accident over    1
## 18496             accident overspeeding    1
## 18497                    accident pitot    1
## 18498                    accident plane    1
## 18499                 accident possibly    1
## 18500                    accident radar    1
## 18501                  accident remains    1
## 18502                 accident repaired    1
## 18503                   accident report    1
## 18504                 accident resulted    1
## 18505                accident resulting    1
## 18506                 accident savagely    1
## 18507                 accident scenario    1
## 18508                    accident still    1
## 18509                     accident that    1
## 18510                 accident thirteen    1
## 18511                    accident three    1
## 18512                       accident to    1
## 18513                      accident two    1
## 18514                  accident unknown    1
## 18515                  accident vehicle    1
## 18516                  accident victims    1
## 18517                   accident weight    1
## 18518                     accident went    1
## 18519              accident.pilot error    1
## 18520              accident.the primary    1
## 18521                 accidental caging    1
## 18522                    accidental cut    1
## 18523             accidental detonation    1
## 18524               accidental ignition    1
## 18525                accidental jamming    1
## 18526                   accidentally by    1
## 18527            accidentally connected    1
## 18528         accidentally disconnected    1
## 18529              accidentally dropped    1
## 18530            accidentally feathered    1
## 18531                 accidentally shut    1
## 18532               accidentally struck    1
## 18533             accidentally switched    1
## 18534              accidently feathered    1
## 18535                   accidently left    1
## 18536                 accidently struck    1
## 18537                  accidently tried    1
## 18538                      accidents of    1
## 18539                     accommodate a    1
## 18540               accompanist maurice    1
## 18541                  accompanying the    1
## 18542             accomplice marguerite    1
## 18543                         account a    1
## 18544                   accreted beyond    1
## 18545                 accretion causing    1
## 18546                     accumulate in    1
## 18547            accumulated flammables    1
## 18548                accumulated vapors    1
## 18549                 accumulated while    1
## 18550                accumulation after    1
## 18551               accumulative engine    1
## 18552                  accurate bearing    1
## 18553                    accurate check    1
## 18554              accurate information    1
## 18555                    accurate radio    1
## 18556                    accurately its    1
## 18557                           ace and    1
## 18558                         achieve a    1
## 18559                       achieve and    1
## 18560                       achieve the    1
## 18561                          acid and    1
## 18562                           acid on    1
## 18563                   acknowledged an    1
## 18564                 acknowledged that    1
## 18565                 acknowledged this    1
## 18566                 acoustics linings    1
## 18567                    acquire visual    1
## 18568                acquired excessive    1
## 18569                     acquiring and    1
## 18570                     acquitted but    1
## 18571                     acquitted due    1
## 18572                        across all    1
## 18573                         across an    1
## 18574                       across flat    1
## 18575                     across frozen    1
## 18576                   across hundreds    1
## 18577                       across rice    1
## 18578                     across runway    1
## 18579                       across some    1
## 18580                            act as    1
## 18581                            act by    1
## 18582                            act on    1
## 18583                    acted contrary    1
## 18584                        acted from    1
## 18585                    acted properly    1
## 18586                   acted strangely    1
## 18587                         acting as    1
## 18588                       acting head    1
## 18589                      action after    1
## 18590                       action both    1
## 18591                        action but    1
## 18592                         action by    1
## 18593                     action caused    1
## 18594                    action despite    1
## 18595                     action during    1
## 18596                  action emergency    1
## 18597                    action failure    1
## 18598                  action initiated    1
## 18599              action mismanagement    1
## 18600                   action required    1
## 18601                    action shortly    1
## 18602                     action taking    1
## 18603                       action this    1
## 18604                        action two    1
## 18605                      action which    1
## 18606                       action with    1
## 18607                       actions are    1
## 18608                    actions during    1
## 18609                       actions for    1
## 18610                        actions in    1
## 18611                 actions including    1
## 18612                  actions resulted    1
## 18613                   actions stalled    1
## 18614                     actions there    1
## 18615                     actions until    1
## 18616                      activated as    1
## 18617                 activated because    1
## 18618                     activated but    1
## 18619                 activated causing    1
## 18620                      activated in    1
## 18621                 activated instead    1
## 18622                 activated several    1
## 18623                    activated when    1
## 18624                     activates the    1
## 18625                activating springs    1
## 18626                     activation at    1
## 18627                     activation on    1
## 18628                        activity a    1
## 18629                       activity at    1
## 18630                    activity float    1
## 18631                activity including    1
## 18632                     activity loss    1
## 18633                     activity shot    1
## 18634                     activity that    1
## 18635                      activity was    1
## 18636                    activity while    1
## 18637                          actor 50    1
## 18638                      actor leslie    1
## 18639                      actor singer    1
## 18640                         actor vic    1
## 18641                     actor william    1
## 18642                        actors the    1
## 18643                    actress carole    1
## 18644                     actress donna    1
## 18645                      actress fern    1
## 18646                      actress jane    1
## 18647                      actress june    1
## 18648                  actress marãƒâ­a    1
## 18649                     actress susan    1
## 18650                    actress tamara    1
## 18651                       actress was    1
## 18652                   actual airspace    1
## 18653                   actual airspeed    1
## 18654                   actual altitude    1
## 18655                      actual cause    1
## 18656                    actual landing    1
## 18657                      actual stall    1
## 18658                      actual value    1
## 18659                    actual weather    1
## 18660                     actual weight    1
## 18661                   actually caused    1
## 18662               actually developing    1
## 18663                   actually flying    1
## 18664            actually inappropriate    1
## 18665                     actually made    1
## 18666                 actually reaching    1
## 18667                 actually retained    1
## 18668                    actually still    1
## 18669                     actually were    1
## 18670                  actuation handle    1
## 18671                  actuator circuit    1
## 18672                  actuator forward    1
## 18673                  actuator support    1
## 18674                            ad was    1
## 18675                     adak improper    1
## 18676                          adana 15    1
## 18677                         adana the    1
## 18678                          adana to    1
## 18679                       adapter and    1
## 18680                      adapter gear    1
## 18681                       adapter the    1
## 18682                       added power    1
## 18683                     added takeoff    1
## 18684                          added to    1
## 18685                 addition although    1
## 18686                       addition as    1
## 18687                  addition because    1
## 18688                  addition despite    1
## 18689                addition embraer's    1
## 18690                    addition fifty    1
## 18691                       addition it    1
## 18692              addition maintenance    1
## 18693                 addition software    1
## 18694                   addition strong    1
## 18695              additional available    1
## 18696                additional engines    1
## 18697                 additional factor    1
## 18698                 additional person    1
## 18699                 additional pounds    1
## 18700                 additional system    1
## 18701                       additive in    1
## 18702                       address and    1
## 18703                        address by    1
## 18704                      addressed to    1
## 18705                           ade the    1
## 18706                    adelaide hills    1
## 18707                  adelaide piloted    1
## 18708                     adelaide with    1
## 18709                      aden airport    1
## 18710                 adequate aircraft    1
## 18711                 adequate airfield    1
## 18712                adequate altimeter    1
## 18713            adequate certification    1
## 18714                 adequate distance    1
## 18715               adequate experience    1
## 18716                   adequate flight    1
## 18717                   adequate flying    1
## 18718                   adequate ground    1
## 18719                 adequate lookouts    1
## 18720                   adequate policy    1
## 18721              adequate positioning    1
## 18722              adequate preparation    1
## 18723               adequate procedures    1
## 18724                  adequate program    1
## 18725               adequate provisions    1
## 18726                    adequate radar    1
## 18727                    adequate rotor    1
## 18728                   adequate runway    1
## 18729                    adequate speed    1
## 18730                   adequate supply    1
## 18731             adequate surveillance    1
## 18732                   adequate visual    1
## 18733                  adequate weather    1
## 18734                  adequately brief    1
## 18735           adequately communicated    1
## 18736            adequately disseminate    1
## 18737                   adequately plan    1
## 18738                 adequately pumped    1
## 18739               adequately reported    1
## 18740                       ader turned    1
## 18741                            adf as    1
## 18742                            adf in    1
## 18743                    adf instrument    1
## 18744                        adfs while    1
## 18745                      adherence of    1
## 18746                  adhesive crashed    1
## 18747                adi antidetonation    1
## 18748                    adi comparator    1
## 18749                    adjacent areas    1
## 18750                 adjacent elevated    1
## 18751                     adjacent fire    1
## 18752                    adjacent horse    1
## 18753                adjacent mountains    1
## 18754                        adjust his    1
## 18755                        adjust the    1
## 18756                    adjustment the    1
## 18757         administration's approval    1
## 18758              administration's faa    1
## 18759          administration's failure    1
## 18760                administration and    1
## 18761            administration douglas    1
## 18762             administration flight    1
## 18763             administration midair    1
## 18764          administration oversight    1
## 18765                administration the    1
## 18766                 administration to    1
## 18767                    admitted there    1
## 18768                       admitted to    1
## 18769                          adolf 41    1
## 18770                           adopt a    1
## 18771                         adopted a    1
## 18772                       adopted for    1
## 18773                    adquate visual    1
## 18774                       adults from    1
## 18775                        adults the    1
## 18776                      advance both    1
## 18777                      advance just    1
## 18778                       advance the    1
## 18779                      advanced 737    1
## 18780                 advanced aircraft    1
## 18781                      advancing of    1
## 18782                  adventurer wiley    1
## 18783                adverse conditions    1
## 18784            adverse meteorological    1
## 18785            adverse meteriological    1
## 18786                 adverse operating    1
## 18787                      adverse wind    1
## 18788                     adverse winds    1
## 18789                    advese weather    1
## 18790                         advise of    1
## 18791                        advise the    1
## 18792                       advised gca    1
## 18793                      advised that    1
## 18794                      advised them    1
## 18795                      advising the    1
## 18796                   advisories from    1
## 18797                 advisories visual    1
## 18798                advisory practices    1
## 18799                  advisory service    1
## 18800                   advisory system    1
## 18801                  advisory warning    1
## 18802                      advocate the    1
## 18803                        aegean sea    1
## 18804             aerial disintegration    1
## 18805                       aerial mast    1
## 18806                       aerial tour    1
## 18807                aerobatic maneuver    1
## 18808               aerobatic maneuvers    1
## 18809                      aerobatics a    1
## 18810               aerobatics maneuver    1
## 18811                 aerobatics trying    1
## 18812                   aerobatics when    1
## 18813                       aerodome to    1
## 18814                 aerodrome through    1
## 18815                   aerodrome which    1
## 18816           aerodynamic performance    1
## 18817          aeroelastic oscillations    1
## 18818                        aeromar to    1
## 18819                  aeroplane slowed    1
## 18820                 aerospace quality    1
## 18821              aerospace scientists    1
## 18822                     aerosweet yak    1
## 18823                      ãƒâ insfjãƒâ    1
## 18824                           afb but    1
## 18825                            afb by    1
## 18826                       afb shortly    1
## 18827                  afer encounteing    1
## 18828                       afer taking    1
## 18829                      affairs from    1
## 18830                         affect on    1
## 18831                   affecting other    1
## 18832                     affecting the    1
## 18833                       afforded no    1
## 18834                        afghan air    1
## 18835                  afghan guerrilla    1
## 18836                   afghan soldiers    1
## 18837                     afghan troops    1
## 18838                          afire an    1
## 18839                         afire but    1
## 18840                       afloat long    1
## 18841                africa disappeared    1
## 18842                     africa killed    1
## 18843                      african anti    1
## 18844                   african cricket    1
## 18845                  african explorer    1
## 18846              african peacekeepers    1
## 18847                         aft belly    1
## 18848                             aft c    1
## 18849                         aft cabin    1
## 18850                        aft corner    1
## 18851                           aft end    1
## 18852                      aft fuselage    1
## 18853                     aft hydraulic    1
## 18854                          aft link    1
## 18855                      aft movement    1
## 18856                          aft part    1
## 18857                      aft pressure    1
## 18858                         aft servo    1
## 18859                          aft this    1
## 18860                  aft transmission    1
## 18861                           afte an    1
## 18862                         after 102    1
## 18863                           after 2    1
## 18864                          after 20    1
## 18865                          after 35    1
## 18866                           after 5    1
## 18867                          after 56    1
## 18868                        after 800m    1
## 18869                           after 9    1
## 18870                  after abandoning    1
## 18871                    after aborting    1
## 18872                       after about    1
## 18873                    after adequate    1
## 18874                         after all    1
## 18875                         after and    1
## 18876                  after announcing    1
## 18877                   after appearing    1
## 18878                   after attending    1
## 18879                       after began    1
## 18880                   after beginning    1
## 18881                    after catching    1
## 18882                    after changing    1
## 18883                    after chunking    1
## 18884                    after climbout    1
## 18885                  after compressor    1
## 18886                  after concluding    1
## 18887                  after conducting    1
## 18888                   after continued    1
## 18889                    after crashing    1
## 18890                          after de    1
## 18891                   after declaring    1
## 18892               after demonstrating    1
## 18893                       after dense    1
## 18894                   after descended    1
## 18895                   after detecting    1
## 18896                        after died    1
## 18897                 after directional    1
## 18898                 after disappeared    1
## 18899                 after discharging    1
## 18900                     after dumping    1
## 18901                after establishing    1
## 18902                  after eventually    1
## 18903                      after facing    1
## 18904                     after failing    1
## 18905                  after feathering    1
## 18906                       after first    1
## 18907                     after forcing    1
## 18908                        after free    1
## 18909                         after her    1
## 18910                       after icing    1
## 18911                          after in    1
## 18912                   after insisting    1
## 18913                     after intense    1
## 18914                after intercepting    1
## 18915                after intersecting    1
## 18916                   after kazakstan    1
## 18917                      after killed    1
## 18918                    after leveling    1
## 18919                    after lighting    1
## 18920                        after loss    1
## 18921                 after maintenance    1
## 18922                  after mechanical    1
## 18923                     after mikhail    1
## 18924              after misidentifying    1
## 18925                      after nearly    1
## 18926                       after noise    1
## 18927                    after numerous    1
## 18928                   after observing    1
## 18929                         after oil    1
## 18930                          after on    1
## 18931                     after opening    1
## 18932                  after performing    1
## 18933                       after pilot    1
## 18934                    after plunging    1
## 18935                        after poor    1
## 18936                   after preparing    1
## 18937                       after radio    1
## 18938                    after radioing    1
## 18939                   after receiving    1
## 18940                   after refueling    1
## 18941                 after replacement    1
## 18942                      after report    1
## 18943                    after reported    1
## 18944                  after requesting    1
## 18945                      after rising    1
## 18946                   after selecting    1
## 18947                       after seven    1
## 18948                      after severe    1
## 18949                    after severing    1
## 18950                    after sighting    1
## 18951                    after skidding    1
## 18952                       after spare    1
## 18953                    after spotting    1
## 18954                     after stating    1
## 18955                    after straying    1
## 18956                      after strong    1
## 18957                      after struck    1
## 18958                      after sudden    1
## 18959                   after surviving    1
## 18960                      after takoff    1
## 18961                        after that    1
## 18962                       after their    1
## 18963                       after there    1
## 18964                        after this    1
## 18965                    after trekking    1
## 18966               after undershooting    1
## 18967                          after v2    1
## 18968                      after veered    1
## 18969                      after visual    1
## 18970                          after vr    1
## 18971                       after water    1
## 18972                     after weather    1
## 18973                     after winning    1
## 18974                       after years    1
## 18975                      aftermath of    1
## 18976                        afw cashed    1
## 18977                        agadir the    1
## 18978                       again after    1
## 18979                          again an    1
## 18980                         again but    1
## 18981                          again by    1
## 18982                         again had    1
## 18983                      again harder    1
## 18984                         again her    1
## 18985                        again high    1
## 18986                      again normal    1
## 18987                          again on    1
## 18988                        again only    1
## 18989                    again overshot    1
## 18990                    again striking    1
## 18991                      again struck    1
## 18992                       again until    1
## 18993                       again while    1
## 18994                    against advice    1
## 18995                      against aids    1
## 18996                        against an    1
## 18997                  against borussia    1
## 18998                        against it    1
## 18999                 against published    1
## 19000              against requirements    1
## 19001                   against standby    1
## 19002                   against taliban    1
## 19003                    agencies acted    1
## 19004                  agency's failure    1
## 19005                          agency a    1
## 19006                   agent confessed    1
## 19007                        agent were    1
## 19008                   aggressive roll    1
## 19009                             agl a    1
## 19010                      agl followed    1
## 19011                    agostino rocca    1
## 19012                    aguadita after    1
## 19013                     agunish river    1
## 19014                      agusta state    1
## 19015                           ahead a    1
## 19016                    ahead narrowed    1
## 19017                         ahead nor    1
## 19018                   ahead realizing    1
## 19019                         ahead the    1
## 19020                     ahead warning    1
## 19021                      ahmed khalif    1
## 19022                        aid during    1
## 19023                            aid of    1
## 19024                           aid the    1
## 19025                           aid was    1
## 19026                          aide and    1
## 19027                       aide killed    1
## 19028                 aides possibility    1
## 19029                     aids aircraft    1
## 19030                    aids available    1
## 19031                         aids from    1
## 19032                          aids not    1
## 19033                        aids pilot    1
## 19034                       aids struck    1
## 19035                     aileron after    1
## 19036                     aileron boost    1
## 19037                   aileron flutter    1
## 19038                     aileron hinge    1
## 19039                        aileron in    1
## 19040                        aileron on    1
## 19041                   aileron primary    1
## 19042                  aileron suddenly    1
## 19043                      aileron tabs    1
## 19044                      aileron trim    1
## 19045                      ailerons and    1
## 19046                      ailerons but    1
## 19047                   ailerons caused    1
## 19048                       ailerons in    1
## 19049                       ailerons or    1
## 19050                      ailerons the    1
## 19051                           aim the    1
## 19052                      aiming point    1
## 19053                  air's inadequate    1
## 19054                             air a    1
## 19055                      air accident    1
## 19056                   air accumulated    1
## 19057                            air as    1
## 19058                       air balloon    1
## 19059                        air boeing    1
## 19060                        air bottle    1
## 19061                        air canada    1
## 19062                       air carrier    1
## 19063                        air center    1
## 19064                        air chinaã    1
## 19065                       air climate    1
## 19066                       air command    1
## 19067                      air commerce    1
## 19068                       air company    1
## 19069                  air contributing    1
## 19070                       air control    1
## 19071                       air crashed    1
## 19072                      air delivery    1
## 19073                         air depot    1
## 19074                       air ejected    1
## 19075                       air express    1
## 19076                      air facility    1
## 19077                       air failure    1
## 19078                        air faulty    1
## 19079                          air fiji    1
## 19080                       air flowing    1
## 19081                          air foce    1
## 19082                     air following    1
## 19083                        air ground    1
## 19084                            air he    1
## 19085                         air india    1
## 19086                       air leaking    1
## 19087                          air mass    1
## 19088                       air mixture    1
## 19089                      air national    1
## 19090                           air new    1
## 19091                         air noise    1
## 19092                         air nosed    1
## 19093                     air officials    1
## 19094                            air on    1
## 19095                      air operator    1
## 19096                 air participating    1
## 19097                        air pilots    1
## 19098                        air pocket    1
## 19099                   air pockets.the    1
## 19100                      air possibly    1
## 19101                          air race    1
## 19102                        air rather    1
## 19103                     air refueling    1
## 19104                           air sea    1
## 19105                        air speeds    1
## 19106                         air stair    1
## 19107                         air start    1
## 19108                       air starter    1
## 19109                     air station's    1
## 19110                    air sunshine's    1
## 19111                        air switch    1
## 19112                      air terminal    1
## 19113                         air under    1
## 19114                         air using    1
## 19115                          air were    1
## 19116                         air which    1
## 19117                            airã â    1
## 19118                airbags thereafter    1
## 19119                        airbase 15    1
## 19120                     airbase after    1
## 19121                     airbase while    1
## 19122                       airborn and    1
## 19123                        airborne a    1
## 19124                    airborne about    1
## 19125                       airborne an    1
## 19126                       airborne as    1
## 19127                       airborne at    1
## 19128                   airborne before    1
## 19129                    airborne began    1
## 19130                airborne collision    1
## 19131                 airborne division    1
## 19132                      airborne due    1
## 19133                airborne following    1
## 19134                   airborne ground    1
## 19135                     airborne lost    1
## 19136                       airborne on    1
## 19137                   airborne rolled    1
## 19138                   airborne sooner    1
## 19139                   airborne struck    1
## 19140                     airborne this    1
## 19141                   airborne turned    1
## 19142                     airborne went    1
## 19143                    airborne while    1
## 19144                  airborne without    1
## 19145                        airbus 320    1
## 19146                        airbus 330    1
## 19147                          airbus a    1
## 19148                       airbus a320    1
## 19149                       airbus a330    1
## 19150                    airbus because    1
## 19151                        airbus was    1
## 19152                       airbus went    1
## 19153                  aircarft crashed    1
## 19154                  aircraaft banked    1
## 19155           aircraft's acceleration    1
## 19156                    aircraft's aft    1
## 19157                aircraft's aileron    1
## 19158               aircraft's approach    1
## 19159             aircraft's artificial    1
## 19160               aircraft's attitude    1
## 19161                   aircraft's back    1
## 19162             aircraft's capability    1
## 19163                 aircraft's center    1
## 19164                  aircraft's climb    1
## 19165                 aircraft's design    1
## 19166                    aircraft's dme    1
## 19167                  aircraft's entry    1
## 19168                 aircraft's flight    1
## 19169                 aircraft's flying    1
## 19170                aircraft's forward    1
## 19171                   aircraft's fuel    1
## 19172                aircraft's grossly    1
## 19173                 aircraft's height    1
## 19174                   aircraft's high    1
## 19175             aircraft's horizontal    1
## 19176              aircraft's hydraulic    1
## 19177             aircraft's hydraulics    1
## 19178            aircraft's instruments    1
## 19179                aircraft's landing    1
## 19180           aircraft's longitudinal    1
## 19181                  aircraft's lower    1
## 19182                   aircraft's main    1
## 19183                aircraft's minimum    1
## 19184                   aircraft's nose    1
## 19185              aircraft's operating    1
## 19186                  aircraft's pitch    1
## 19187                  aircraft's power    1
## 19188                   aircraft's rate    1
## 19189                  aircraft's right    1
## 19190               aircraft's rotating    1
## 19191                 aircraft's slight    1
## 19192                   aircraft's tail    1
## 19193                   aircraft's trim    1
## 19194                    aircraft's two    1
## 19195                 aircraft's weight    1
## 19196                 aircraft's wing's    1
## 19197                  aircraft's wings    1
## 19198                aircraft's wingtip    1
## 19199                    aircraft's yaw    1
## 19200                       aircraft 12    1
## 19201                        aircraft 2    1
## 19202                       aircraft 20    1
## 19203                    aircraft 23307    1
## 19204                       aircraft 42    1
## 19205                    aircraft above    1
## 19206                 aircraft accident    1
## 19207              aircraft accompanied    1
## 19208               aircraft accurately    1
## 19209               aircraft adventurer    1
## 19210                 aircraft airborne    1
## 19211                      aircraft all    1
## 19212                    aircraft along    1
## 19213                       aircraft an    1
## 19214                 aircraft appeared    1
## 19215                      aircraft are    1
## 19216                   aircraft around    1
## 19217                 aircraft ascended    1
## 19218                  aircraft assumed    1
## 19219                      aircraft atc    1
## 19220                aircraft avoidance    1
## 19221                     aircraft b767    1
## 19222                       aircraft be    1
## 19223                   aircraft beyond    1
## 19224                     aircraft body    1
## 19225                    aircraft bound    1
## 19226                  aircraft brushed    1
## 19227                     aircraft carl    1
## 19228                  aircraft carrier    1
## 19229                   aircraft caused    1
## 19230                  aircraft charter    1
## 19231                  aircraft cleared    1
## 19232                aircraft colliding    1
## 19233                aircraft completed    1
## 19234               aircraft components    1
## 19235                 aircraft computer    1
## 19236                aircraft computers    1
## 19237                aircraft concealed    1
## 19238              aircraft corporation    1
## 19239                 aircraft damaging    1
## 19240                   aircraft debris    1
## 19241                    aircraft dense    1
## 19242                aircraft departing    1
## 19243                   aircraft design    1
## 19244                 aircraft designer    1
## 19245              aircraft destruction    1
## 19246               aircraft detonation    1
## 19247                   aircraft didn't    1
## 19248             aircraft disapppeared    1
## 19249                 aircraft diverted    1
## 19250                aircraft dornacker    1
## 19251                  aircraft elected    1
## 19252                       aircraft en    1
## 19253                aircraft encounted    1
## 19254             aircraft encountering    1
## 19255                    aircraft enter    1
## 19256                aircraft erroneous    1
## 19257                     aircraft even    1
## 19258               aircraft eventually    1
## 19259                 aircraft exceeded    1
## 19260              aircraft excessively    1
## 19261               aircraft expierence    1
## 19262                  aircraft factors    1
## 19263                      aircraft few    1
## 19264                  aircraft flew100    1
## 19265                    aircraft float    1
## 19266                aircraft flotation    1
## 19267                 aircraft followed    1
## 19268                    aircraft forty    1
## 19269                     aircraft fuel    1
## 19270                 aircraft fuselage    1
## 19271                      aircraft got    1
## 19272                 aircraft handling    1
## 19273                   aircraft having    1
## 19274                     aircraft high    1
## 19275                  aircraft hitting    1
## 19276                  aircraft however    1
## 19277                      aircraft ice    1
## 19278                      aircraft ils    1
## 19279                  aircraft imposed    1
## 19280               aircraft improperly    1
## 19281                aircraft incapable    1
## 19282                 aircraft ingested    1
## 19283                aircraft initially    1
## 19284                aircraft initiated    1
## 19285                   aircraft inside    1
## 19286                  aircraft instead    1
## 19287                 aircraft involved    1
## 19288                   aircraft joined    1
## 19289                     aircraft just    1
## 19290                  aircraft killing    1
## 19291                    aircraft later    1
## 19292                   aircraft lifted    1
## 19293              aircraft maintenance    1
## 19294           aircraft malfunctioning    1
## 19295           aircraft manufacturer's    1
## 19296                   aircraft missed    1
## 19297                  aircraft missing    1
## 19298                  aircraft misused    1
## 19299              aircraft momentarily    1
## 19300                  aircraft moments    1
## 19301                     aircraft most    1
## 19302                       aircraft ms    1
## 19303                     aircraft next    1
## 19304                       aircraft no    1
## 19305                     aircraft nose    1
## 19306                aircraft nosedived    1
## 19307                     aircraft ntsb    1
## 19308                 aircraft numerous    1
## 19309                      aircraft off    1
## 19310                     aircraft onto    1
## 19311                       aircraft or    1
## 19312               aircraft originally    1
## 19313                  aircraft orville    1
## 19314                      aircraft out    1
## 19315                     aircraft over    1
## 19316              aircraft overheating    1
## 19317             aircraft overspeeding    1
## 19318               aircraft overturned    1
## 19319                     aircraft part    1
## 19320            aircraft participating    1
## 19321                     aircraft pass    1
## 19322               aircraft passengers    1
## 19323             aircraft pennsylvania    1
## 19324              aircraft performance    1
## 19325                    aircraft pilot    1
## 19326                  aircraft piloted    1
## 19327                    aircraft pitch    1
## 19328                  aircraft pitched    1
## 19329                 aircraft pitching    1
## 19330                   aircraft plowed    1
## 19331                 aircraft plunging    1
## 19332                aircraft porpoised    1
## 19333                 aircraft possible    1
## 19334                 aircraft possibly    1
## 19335                 aircraft proceded    1
## 19336                aircraft proceeded    1
## 19337               aircraft progressed    1
## 19338            aircraft progressively    1
## 19339                  aircraft quickly    1
## 19340                     aircraft quit    1
## 19341                        aircraft r    1
## 19342                   aircraft rammed    1
## 19343                  aircraft rapidly    1
## 19344                 aircraft receives    1
## 19345                aircraft recovered    1
## 19346                aircraft rendering    1
## 19347               aircraft reportedly    1
## 19348                aircraft reporting    1
## 19349                 aircraft response    1
## 19350                 aircraft resulted    1
## 19351                     aircraft rose    1
## 19352                   aircraft rudder    1
## 19353                  aircraft running    1
## 19354                        aircraft s    1
## 19355                  aircraft seventy    1
## 19356                  aircraft several    1
## 19357                  aircraft sheared    1
## 19358                    aircraft shook    1
## 19359                    aircraft short    1
## 19360                   aircraft should    1
## 19361                aircraft shuttered    1
## 19362                  aircraft slammed    1
## 19363                       aircraft so    1
## 19364                     aircraft some    1
## 19365                aircraft specified    1
## 19366                    aircraft speed    1
## 19367                aircraft stability    1
## 19368                 aircraft stalling    1
## 19369                 aircraft starting    1
## 19370                  aircraft stating    1
## 19371                   aircraft stayed    1
## 19372                aircraft struggled    1
## 19373             aircraft sufficiently    1
## 19374                  aircraft surface    1
## 19375                aircraft sustained    1
## 19376                   aircraft system    1
## 19377                  aircraft takeoff    1
## 19378                     aircraft they    1
## 19379                   aircraft thirty    1
## 19380                   aircraft toward    1
## 19381                  aircraft turning    1
## 19382        aircraft uncontrollability    1
## 19383                    aircraft until    1
## 19384                    aircraft using    1
## 19385                     aircraft very    1
## 19386                  aircraft warning    1
## 19387                    aircraft we're    1
## 19388                 aircraft weighing    1
## 19389                aircraft witnesses    1
## 19390                   aircraft worker    1
## 19391                    aircraft would    1
## 19392                 aircraft wreckage    1
## 19393                   aircraft yawing    1
## 19394            aircraft.the crosswind    1
## 19395                  aircrafts limits    1
## 19396                    aircrew failed    1
## 19397                   aircrew fatigue    1
## 19398                 aircrew initiated    1
## 19399                        aircrew to    1
## 19400                   airdome shortly    1
## 19401                       aires after    1
## 19402                     aires airport    1
## 19403                       aires based    1
## 19404                      aires harbor    1
## 19405                    aires possible    1
## 19406                         aires the    1
## 19407                       aires while    1
## 19408                 airfield aircraft    1
## 19409                      airfield and    1
## 19410                 airfield approach    1
## 19411                       airfield as    1
## 19412                 airfield baseball    1
## 19413                  airfield because    1
## 19414                 airfield boundary    1
## 19415                      airfield but    1
## 19416                    airfield close    1
## 19417                    airfield could    1
## 19418                  airfield crashed    1
## 19419                 airfield evidence    1
## 19420                      airfield for    1
## 19421                     airfield fuel    1
## 19422                       airfield it    1
## 19423                  airfield landing    1
## 19424                     airfield left    1
## 19425                     airfield near    1
## 19426                    airfield prior    1
## 19427                  airfield shortly    1
## 19428                      airfield six    1
## 19429                       airfield so    1
## 19430                    airfield where    1
## 19431                    airfield which    1
## 19432                    airfiield into    1
## 19433                  airfoil surfaces    1
## 19434                  airframe failure    1
## 19435                      airframe ice    1
## 19436                 airframe resulted    1
## 19437                airframe structure    1
## 19438                 airframe surfaces    1
## 19439                       airframe to    1
## 19440                         airl taxi    1
## 19441                      airlifted to    1
## 19442                 airlilner crashed    1
## 19443                       airline's 1    1
## 19444                   airline's cargo    1
## 19445              airline's inspection    1
## 19446             airline's maintenance    1
## 19447              airline's management    1
## 19448              airline's procedures    1
## 19449                  airline's safety    1
## 19450                   airline captain    1
## 19451                     airline crews    1
## 19452                  airline disaster    1
## 19453                       airline had    1
## 19454                        airline he    1
## 19455                  airline industry    1
## 19456                airline management    1
## 19457                       airline one    1
## 19458                        airline to    1
## 19459                        airliner a    1
## 19460                   airliner around    1
## 19461                       airliner at    1
## 19462                     airliner both    1
## 19463                     airliner came    1
## 19464                 airliner composer    1
## 19465                    airliner could    1
## 19466                  airliner entered    1
## 19467              airliner experienced    1
## 19468                     airliner fell    1
## 19469                     airliner flew    1
## 19470                     airliner from    1
## 19471                airliner hijacking    1
## 19472                      airliner hit    1
## 19473                airliner initiated    1
## 19474                  airliner instead    1
## 19475                    airliner later    1
## 19476                       airliner on    1
## 19477                airliner operating    1
## 19478                     airliner over    1
## 19479                      airliner run    1
## 19480                  airliner shortly    1
## 19481                      airliner the    1
## 19482                      airliner two    1
## 19483                 airliner wreckage    1
## 19484                     airliners the    1
## 19485                       airlines 18    1
## 19486                 airlines advanced    1
## 19487                    airlines began    1
## 19488               airlines guidelines    1
## 19489             airlines insufficient    1
## 19490              airlines maintenance    1
## 19491                 airlines occurred    1
## 19492                       airlines on    1
## 19493                    airlines pilot    1
## 19494                 airlines reported    1
## 19495                 airlines terminal    1
## 19496                      airlines the    1
## 19497                       airlines to    1
## 19498                     airlines when    1
## 19499                       airlpane is    1
## 19500                     airmail plane    1
## 19501                    airmanship and    1
## 19502                  airmanship which    1
## 19503                    airplane's aft    1
## 19504              airplane's autobrake    1
## 19505                 airplane's center    1
## 19506               airplane's changing    1
## 19507              airplane's departure    1
## 19508               airplane's location    1
## 19509                   airplane's loss    1
## 19510                   airplane's nose    1
## 19511            airplane's performance    1
## 19512               airplane's position    1
## 19513              airplane's premature    1
## 19514                airplane's primary    1
## 19515                  airplane's range    1
## 19516                 airplane's single    1
## 19517                  airplane's speed    1
## 19518              airplane's structure    1
## 19519                 airplane accident    1
## 19520                       airplane as    1
## 19521                 airplane attitude    1
## 19522                  airplane because    1
## 19523                 airplane becoming    1
## 19524                   airplane before    1
## 19525                    airplane began    1
## 19526                    airplane broke    1
## 19527                      airplane but    1
## 19528                     airplane clip    1
## 19529                airplane contacted    1
## 19530                airplane continued    1
## 19531                    airplane crash    1
## 19532                 airplane departed    1
## 19533                airplane descended    1
## 19534                 airplane deviated    1
## 19535                      airplane did    1
## 19536                     airplane even    1
## 19537               airplane eventually    1
## 19538                 airplane fatality    1
## 19539                     airplane fell    1
## 19540                    airplane first    1
## 19541                    airplane flaps    1
## 19542                     airplane flew    1
## 19543                   airplane flight    1
## 19544             airplane flightcrew's    1
## 19545                   airplane impact    1
## 19546                 airplane impacted    1
## 19547               airplane inadequate    1
## 19548               airplane increasing    1
## 19549              airplane inoperative    1
## 19550                       airplane is    1
## 19551                     airplane left    1
## 19552                     airplane lose    1
## 19553                     airplane near    1
## 19554                      airplane not    1
## 19555                 airplane operated    1
## 19556                    airplane pitch    1
## 19557                    airplane prior    1
## 19558                      airplane ran    1
## 19559                  airplane skidded    1
## 19560                airplane spiraling    1
## 19561                  airplane started    1
## 19562                 airplane striking    1
## 19563                      airplane too    1
## 19564          airplane unintentionally    1
## 19565                    airplane water    1
## 19566                    airplane which    1
## 19567                    airplane while    1
## 19568                   airplanes given    1
## 19569                      airplanes in    1
## 19570                     airplanes the    1
## 19571                 airport's baggage    1
## 19572                   airport's fence    1
## 19573              airport's instrument    1
## 19574                   airport's means    1
## 19575                  airport's radars    1
## 19576                     airport's vor    1
## 19577                        airport 25    1
## 19578                         airport 4    1
## 19579                         airport 6    1
## 19580                         airport 8    1
## 19581                       airport air    1
## 19582                  airport although    1
## 19583                  airport approach    1
## 19584                 airport ascending    1
## 19585                 airport authority    1
## 19586                   airport boundry    1
## 19587                     airport broke    1
## 19588                 airport buildings    1
## 19589                        airport by    1
## 19590                 airport captain's    1
## 19591                   airport caracas    1
## 19592                  airport carrying    1
## 19593                   airport chadian    1
## 19594                   airport climbed    1
## 19595               airport combination    1
## 19596                    airport coming    1
## 19597                  airport complete    1
## 19598               airport congressman    1
## 19599                 airport contained    1
## 19600                 airport continued    1
## 19601                airport controller    1
## 19602                      airport crew    1
## 19603                      airport dark    1
## 19604                airport detonation    1
## 19605                 airport deviation    1
## 19606               airport discontinue    1
## 19607              airport disorienting    1
## 19608                   airport display    1
## 19609                   airport ditched    1
## 19610                  airport employee    1
## 19611                    airport errors    1
## 19612                   airport factors    1
## 19613                airport fatalities    1
## 19614                     airport fence    1
## 19615                      airport five    1
## 19616                      airport flew    1
## 19617                    airport forced    1
## 19618                    airport french    1
## 19619                      airport full    1
## 19620                     airport given    1
## 19621                       airport had    1
## 19622                 airport hijacking    1
## 19623                   airport hitting    1
## 19624               airport immediately    1
## 19625                  airport improper    1
## 19626            airport incapacitation    1
## 19627               airport involvement    1
## 19628                       airport its    1
## 19629                    airport lacked    1
## 19630                   airport landing    1
## 19631                 airport landmarks    1
## 19632                    airport london    1
## 19633                      airport lost    1
## 19634                        airport lt    1
## 19635                      airport maui    1
## 19636                       airport may    1
## 19637                    airport minima    1
## 19638         airport misidentification    1
## 19639                   airport molokai    1
## 19640                   airport moments    1
## 19641                airport navigation    1
## 19642                      airport near    1
## 19643                    airport ninety    1
## 19644                        airport no    1
## 19645                       airport not    1
## 19646                   airport nothing    1
## 19647                        airport of    1
## 19648                        airport or    1
## 19649                airport overloaded    1
## 19650                airport passengers    1
## 19651                 airport personnel    1
## 19652                   airport pilot's    1
## 19653                       airport pty    1
## 19654                    airport ramada    1
## 19655                       airport ran    1
## 19656                  airport shanghai    1
## 19657                      airport shot    1
## 19658                     airport since    1
## 19659                   airport sinking    1
## 19660                       airport six    1
## 19661                   airport slammed    1
## 19662                      airport soon    1
## 19663                   airport stalled    1
## 19664                   airport storage    1
## 19665                   airport surface    1
## 19666                  airport terminal    1
## 19667              airport thunderstorm    1
## 19668                    airport twelve    1
## 19669                     airport twice    1
## 19670                        airport un    1
## 19671                 airport undershot    1
## 19672               airport unfavorable    1
## 19673                airport visibility    1
## 19674                      airport wall    1
## 19675                      airport went    1
## 19676                    airport worker    1
## 19677                  airport wreckage    1
## 19678              airport.the aircraft    1
## 19679                 airport.the cargo    1
## 19680                  airport.the crew    1
## 19681                airport.the flight    1
## 19682                       airports in    1
## 19683                     airports that    1
## 19684                  airs operational    1
## 19685                      airship flew    1
## 19686                airship hindenburg    1
## 19687                        airship in    1
## 19688                        airship to    1
## 19689                       airship was    1
## 19690                       airshow the    1
## 19691                    airspace above    1
## 19692                      airspace all    1
## 19693                airspace allocated    1
## 19694                      airspace and    1
## 19695                      airspace atc    1
## 19696                   airspace during    1
## 19697                 airspace occupied    1
## 19698                     airspace part    1
## 19699               airspace separation    1
## 19700                      airspace the    1
## 19701                      airspace u.s    1
## 19702                    airspeed above    1
## 19703                 airspeed altitude    1
## 19704                      airspeed but    1
## 19705                   airspeed caused    1
## 19706             airspeed considerable    1
## 19707                      airspeed due    1
## 19708                   airspeed during    1
## 19709                 airspeed envelope    1
## 19710                  airspeed factors    1
## 19711               airspeed increasing    1
## 19712               airspeed indicators    1
## 19713                     airspeed just    1
## 19714                      airspeed not    1
## 19715                       airspeed of    1
## 19716                airspeed residents    1
## 19717                airspeed selection    1
## 19718                   airspeed slowed    1
## 19719                  airspeed stalled    1
## 19720                      airspeed the    1
## 19721                    airspeed until    1
## 19722                   airspeed values    1
## 19723                airspeed whereupon    1
## 19724                      airstirp and    1
## 19725                    airstrip after    1
## 19726                 airstrip designed    1
## 19727                  airstrip failure    1
## 19728               airstrip overloaded    1
## 19729                airstrip resulting    1
## 19730                       airstrip to    1
## 19731                      airstrip was    1
## 19732                         airway at    1
## 19733                      airway being    1
## 19734                airway disappeared    1
## 19735                        airway had    1
## 19736                        airway may    1
## 19737                 airway navigation    1
## 19738                         airway on    1
## 19739                     airway struck    1
## 19740                        airway the    1
## 19741                    airway thereby    1
## 19742                     airway twenty    1
## 19743                     airways after    1
## 19744                  airways aircraft    1
## 19745                  airways assigned    1
## 19746                   airways crashed    1
## 19747               airways maintenance    1
## 19748                      airways none    1
## 19749                        airways of    1
## 19750                     airways plane    1
## 19751                      airways shot    1
## 19752                      airways used    1
## 19753                      airways when    1
## 19754                     airways while    1
## 19755                  airworthiness in    1
## 19756         airworthiness information    1
## 19757                  airworthiness of    1
## 19758         airworthiness requirement    1
## 19759                      akron canton    1
## 19760                    akron exploded    1
## 19761                           al asad    1
## 19762                         al hasaba    1
## 19763                          al khoul    1
## 19764                         al minhar    1
## 19765                          al nursa    1
## 19766                         al potter    1
## 19767                          al qaeda    1
## 19768                  alabama although    1
## 19769                       alabama the    1
## 19770                     alameda naval    1
## 19771                     alan kulwicki    1
## 19772                          alarm 60    1
## 19773                   alarm connected    1
## 19774                         alarm did    1
## 19775                      alarm during    1
## 19776                          alarm if    1
## 19777                     alarm signals    1
## 19778                          alarm so    1
## 19779                    alarm software    1
## 19780                         alarm was    1
## 19781                        alarms and    1
## 19782                    alarms fifteen    1
## 19783                 alarms.cecelia is    1
## 19784                alaska congressman    1
## 19785                         alaska no    1
## 19786                    alaska pilot's    1
## 19787                        alaska the    1
## 19788                         alaska to    1
## 19789                        alaska u.s    1
## 19790                      alaska while    1
## 19791                       alaska with    1
## 19792                       albania the    1
## 19793                    albany because    1
## 19794                     albany county    1
## 19795                  albany municipal    1
## 19796                  alberquerque the    1
## 19797                       albert guay    1
## 19798                        alberta to    1
## 19799                    albuquerque by    1
## 19800                    albuquerque in    1
## 19801                   albuquerque the    1
## 19802                    albuquerque to    1
## 19803                       alcazaba 20    1
## 19804                     alcohol above    1
## 19805                    alcohol before    1
## 19806               alcohol consumption    1
## 19807                   alcohol crashed    1
## 19808                        alcohol in    1
## 19809                   alcohol shortly    1
## 19810                      alcohol shot    1
## 19811                alcohol windshield    1
## 19812                          alegre a    1
## 19813                alejandro bernales    1
## 19814                    aleman roadway    1
## 19815                     aleppo double    1
## 19816                         alert atc    1
## 19817                      alert during    1
## 19818                        alert lack    1
## 19819                        alert that    1
## 19820                    alert warnings    1
## 19821                        alerted to    1
## 19822                     alerting each    1
## 19823                      alertness in    1
## 19824                  alerts activated    1
## 19825                         alerts by    1
## 19826               alerts contributing    1
## 19827                        alerts the    1
## 19828                      alerts while    1
## 19829                   alexander lebed    1
## 19830                    alexandria the    1
## 19831               alexandrov emsemble    1
## 19832                      alfabia peak    1
## 19833                        alfredo le    1
## 19834                       algereia 15    1
## 19835                        algeria 80    1
## 19836                         algeria a    1
## 19837                     algeria libya    1
## 19838                       algeria the    1
## 19839                  algerian capital    1
## 19840                 algerian military    1
## 19841                          algie no    1
## 19842                         algiers a    1
## 19843                     algiers after    1
## 19844                   algiers algeria    1
## 19845                           ali mir    1
## 19846                      alianza lima    1
## 19847                        alice lake    1
## 19848                     align himself    1
## 19849                          align to    1
## 19850                        align with    1
## 19851                       aligning to    1
## 19852                     aligning with    1
## 19853                     alignment and    1
## 19854                  alignment during    1
## 19855               alignment following    1
## 19856            alignment insufficient    1
## 19857                     alignment not    1
## 19858                    alignment with    1
## 19859                     alin mountain    1
## 19860                     alititude too    1
## 19861                       alitiude of    1
## 19862                         alive but    1
## 19863                        alive fire    1
## 19864                          alive is    1
## 19865                         alive the    1
## 19866                       alkali lake    1
## 19867                            all 10    1
## 19868                           all 101    1
## 19869                           all 107    1
## 19870                            all 11    1
## 19871                           all 150    1
## 19872                           all 154    1
## 19873                            all 18    1
## 19874                            all 22    1
## 19875                           all 227    1
## 19876                            all 26    1
## 19877                           all 283    1
## 19878                            all 30    1
## 19879                           all 309    1
## 19880                            all 32    1
## 19881                  all 37passengers    1
## 19882                            all 41    1
## 19883                            all 42    1
## 19884                            all 61    1
## 19885                             all 9    1
## 19886                      all attempts    1
## 19887                      all attitude    1
## 19888                    all commercial    1
## 19889                      all controls    1
## 19890                       all crashed    1
## 19891                          all dc8s    1
## 19892                   all decapitated    1
## 19893                      all eighteen    1
## 19894                      all evidence    1
## 19895                       all factors    1
## 19896                       all fifteen    1
## 19897                         all fifty    1
## 19898                        all flight    1
## 19899                     all generator    1
## 19900                        all helped    1
## 19901                   all indications    1
## 19902                           all its    1
## 19903                             all l    1
## 19904                          all life    1
## 19905                         all light    1
## 19906                         all moved    1
## 19907                  all navigational    1
## 19908                         all night    1
## 19909                            all of    1
## 19910                           all oil    1
## 19911                           all one    1
## 19912                         all other    1
## 19913                       all primary    1
## 19914                         all radio    1
## 19915                        all runway    1
## 19916                       all runways    1
## 19917                        all rushed    1
## 19918                     all seventeen    1
## 19919                       all seventy    1
## 19920                         all sides    1
## 19921                      all survived    1
## 19922                         all times    1
## 19923                        all twelve    1
## 19924                       all victims    1
## 19925                       all weather    1
## 19926                          all were    1
## 19927                       all workers    1
## 19928                  allegations also    1
## 19929                    allegations of    1
## 19930                    alleged thomas    1
## 19931                    allegedly told    1
## 19932                     alleging that    1
## 19933                 allied democratic    1
## 19934                allied directorate    1
## 19935                     allied forces    1
## 19936                      allied night    1
## 19937                        allison 30    1
## 19938                      allocated to    1
## 19939                     allow another    1
## 19940                      allow pilots    1
## 19941                        allow such    1
## 19942                  allowable weight    1
## 19943                  allowed airlines    1
## 19944                       allowed and    1
## 19945                    allowed carbon    1
## 19946                 allowed excessive    1
## 19947                       allowed for    1
## 19948                        allowed in    1
## 19949                        allowed it    1
## 19950                   allowed leakage    1
## 19951                    allowed united    1
## 19952                 allowing airspeed    1
## 19953               allowing sufficient    1
## 19954                    allowing their    1
## 19955                    allowing water    1
## 19956                         allsup he    1
## 19957                          alma the    1
## 19958                    almaty airport    1
## 19959                      almaty while    1
## 19960                         almost 20    1
## 19961                         almost 30    1
## 19962                        almost 300    1
## 19963                          almost a    1
## 19964                         almost an    1
## 19965                         almost at    1
## 19966                      almost brand    1
## 19967                     almost double    1
## 19968                       almost half    1
## 19969                      almost level    1
## 19970                   almost overcome    1
## 19971                    almost stalled    1
## 19972                         aloft the    1
## 19973                    aloha airlines    1
## 19974                          alone at    1
## 19975                         alone the    1
## 19976                          along an    1
## 19977                         along its    1
## 19978                 along manhattan's    1
## 19979                       alpha floor    1
## 19980                           alps 25    1
## 19981                       alps french    1
## 19982                           alps in    1
## 19983                          alps the    1
## 19984                     also airports    1
## 19985                        also among    1
## 19986                        also asked    1
## 19987                       also casual    1
## 19988                       also causal    1
## 19989                   also considered    1
## 19990                 also deficiencies    1
## 19991                    also descended    1
## 19992                          also did    1
## 19993                      also dynamic    1
## 19994                     also exceeded    1
## 19995                     also executed    1
## 19996                        also found    1
## 19997                           also in    1
## 19998                     also ingested    1
## 19999                         also lost    1
## 20000                    also neglected    1
## 20001                          also not    1
## 20002                      also ordered    1
## 20003                  also restriction    1
## 20004                    also separated    1
## 20005                      also started    1
## 20006                     also surfaced    1
## 20007                     also survived    1
## 20008                         also this    1
## 20009                        also under    1
## 20010                 also unsuccessful    1
## 20011                          also was    1
## 20012                     alteration of    1
## 20013                       alternate a    1
## 20014                 alternate crashed    1
## 20015               alternate extension    1
## 20016                     alternate the    1
## 20017                   alternated with    1
## 20018                    alternating or    1
## 20019                    although blame    1
## 20020                although cautioned    1
## 20021                 although evidence    1
## 20022                     although full    1
## 20023                       although he    1
## 20024                    although never    1
## 20025                 although sabotage    1
## 20026                     although this    1
## 20027                      altimeter as    1
## 20028                      altimeter by    1
## 20029                 altimeter captain    1
## 20030                 altimeter crashed    1
## 20031                   altimeter cross    1
## 20032                  altimeter during    1
## 20033                   altimeter error    1
## 20034                 altimeter failure    1
## 20035                     altimeter for    1
## 20036                    altimeter from    1
## 20037                      altimeter in    1
## 20038               altimeter indicated    1
## 20039                altimeter possibly    1
## 20040                 altimeter readout    1
## 20041                altimeter reported    1
## 20042                 altimeter takeoff    1
## 20043                      altimeter to    1
## 20044                    altimeter took    1
## 20045                 altimeter trigger    1
## 20046                 altimeter warning    1
## 20047                    altimeters and    1
## 20048                 altimeters during    1
## 20049                 altimeters struck    1
## 20050                    altimeters the    1
## 20051                  altimetry system    1
## 20052                  altimiter struck    1
## 20053                     altimiter the    1
## 20054                     altitiude the    1
## 20055                      altitiude to    1
## 20056                  altitude against    1
## 20057                       altitude an    1
## 20058                    altitude based    1
## 20059                  altitude beneath    1
## 20060                     altitude both    1
## 20061                      altitude but    1
## 20062                     altitude call    1
## 20063                 altitude callouts    1
## 20064                   altitude caused    1
## 20065                  altitude ceiling    1
## 20066               altitude clearances    1
## 20067                  altitude cleared    1
## 20068                 altitude collided    1
## 20069                altitude corrector    1
## 20070                    altitude could    1
## 20071                 altitude crashing    1
## 20072                   altitude decent    1
## 20073                  altitude descent    1
## 20074                 altitude distance    1
## 20075                  altitude entered    1
## 20076              altitude environment    1
## 20077              altitude established    1
## 20078                  altitude failure    1
## 20079                      altitude few    1
## 20080                     altitude flew    1
## 20081                   altitude flight    1
## 20082                   altitude flying    1
## 20083                       altitude he    1
## 20084                 altitude headings    1
## 20085                  altitude helipad    1
## 20086                      altitude hit    1
## 20087                  altitude holding    1
## 20088                    altitude human    1
## 20089                    altitude icing    1
## 20090               altitude inadequate    1
## 20091                altitude indicator    1
## 20092             altitude inexperience    1
## 20093               altitude instrument    1
## 20094                       altitude is    1
## 20095                     altitude just    1
## 20096                     altitude lack    1
## 20097                     altitude long    1
## 20098                     altitude make    1
## 20099                 altitude maneuver    1
## 20100              altitude maneuvering    1
## 20101                    altitude maybe    1
## 20102                      altitude mda    1
## 20103                   altitude midair    1
## 20104                   altitude minima    1
## 20105                     altitude much    1
## 20106                altitude necessary    1
## 20107                       altitude no    1
## 20108                      altitude non    1
## 20109                      altitude one    1
## 20110                altitude orchestra    1
## 20111              altitude orientation    1
## 20112           altitude overconfidence    1
## 20113              altitude permissible    1
## 20114                     altitude poor    1
## 20115               altitude procedural    1
## 20116                  altitude rapidly    1
## 20117               altitude references    1
## 20118                 altitude required    1
## 20119             altitude restrictions    1
## 20120                    altitude right    1
## 20121                   altitude rising    1
## 20122                     altitude rock    1
## 20123                   altitude rolled    1
## 20124                altitude schooling    1
## 20125              altitude significant    1
## 20126                       altitude so    1
## 20127                      altitude sri    1
## 20128               altitude sufficient    1
## 20129                    altitude there    1
## 20130                    altitude three    1
## 20131                     altitude till    1
## 20132                    altitude total    1
## 20133             altitude transmission    1
## 20134                   altitude twenty    1
## 20135              altitude unawareness    1
## 20136                   altitude unsafe    1
## 20137                   altitude varied    1
## 20138                   altitude veered    1
## 20139               altitude violations    1
## 20140                 altitude warnings    1
## 20141                     altitude went    1
## 20142                altitude windshear    1
## 20143                altitudes depicted    1
## 20144                     altitudes for    1
## 20145              altitudes inadequate    1
## 20146                  altitudes issued    1
## 20147                      altitudes of    1
## 20148                   altitutde pilot    1
## 20149                       altiude and    1
## 20150                      alto airport    1
## 20151                          alto del    1
## 20152                           alto el    1
## 20153                     alto mountain    1
## 20154                      am's failure    1
## 20155                            am 326    1
## 20156                       am aircraft    1
## 20157                       am building    1
## 20158                      am returning    1
## 20159                     am subsidiary    1
## 20160                    amadeus mozart    1
## 20161                      amalthea the    1
## 20162                      amana struck    1
## 20163                     amaya located    1
## 20164                         amazon at    1
## 20165                      amazon river    1
## 20166                      amazon which    1
## 20167                     ambassador to    1
## 20168                           amber i    1
## 20169                     amber radioed    1
## 20170                     amber warning    1
## 20171                       amberley at    1
## 20172               ambient temperature    1
## 20173               ambiguous clearance    1
## 20174                 ambiguous holding    1
## 20175            ambiguous instructions    1
## 20176                          ambon in    1
## 20177                  ambulance flight    1
## 20178                     ambulance had    1
## 20179              ambulance helicopter    1
## 20180                     ambulance hit    1
## 20181                    ambulance left    1
## 20182                  ambulance struck    1
## 20183                     ambulance was    1
## 20184                    ambulance went    1
## 20185                       amended the    1
## 20186                       america the    1
## 20187                  american's first    1
## 20188                     american army    1
## 20189              american barnstormer    1
## 20190                  american bristol    1
## 20191                 american canadian    1
## 20192              american corporation    1
## 20193                    american eagle    1
## 20194                   american female    1
## 20195                   american flight    1
## 20196                     american gold    1
## 20197                 american military    1
## 20198               american passengers    1
## 20199                  american pianist    1
## 20200                      american pop    1
## 20201               american servicemen    1
## 20202              american singerjenni    1
## 20203                 american tourists    1
## 20204                   american troops    1
## 20205                    american while    1
## 20206                amidships breaking    1
## 20207                         amman for    1
## 20208                   amman hijackers    1
## 20209                         amman via    1
## 20210                        ammo depot    1
## 20211                  ammonium nitrate    1
## 20212               ammunition exploded    1
## 20213                       among other    1
## 20214                  among passengers    1
## 20215                        among them    1
## 20216              amount antihistamine    1
## 20217                       amount this    1
## 20218                     amountain for    1
## 20219                           amoy in    1
## 20220                     amplifier and    1
## 20221                   amplitude which    1
## 20222                    amritsar india    1
## 20223               amritsar structural    1
## 20224                 amsterdam crashed    1
## 20225                      amsterdam to    1
## 20226                    amusement park    1
## 20227                             an 11    1
## 20228                         an 11,500    1
## 20229                             an 12    1
## 20230                            an 12s    1
## 20231                             an 24    1
## 20232                             an 26    1
## 20233                              an 8    1
## 20234                            an 850    1
## 20235                     an abnormally    1
## 20236                        an absence    1
## 20237                       an accurate    1
## 20238                         an actual    1
## 20239                             an ad    1
## 20240                      an aerobatic    1
## 20241                     an aerobatics    1
## 20242                      an aerosweet    1
## 20243                        an aileron    1
## 20244                       an airborne    1
## 20245                         an airbus    1
## 20246                       an airframe    1
## 20247                        an airshow    1
## 20248                       an airstrip    1
## 20249                         an airway    1
## 20250                             an al    1
## 20251                      an alititude    1
## 20252                       an alitiude    1
## 20253                            an all    1
## 20254                      an altimetry    1
## 20255                      an ambiguous    1
## 20256                      an ambulance    1
## 20257                           an ammo    1
## 20258                             an an    1
## 20259                       an anchored    1
## 20260                        an appeals    1
## 20261                    an application    1
## 20262                       an apporach    1
## 20263                    an appropriate    1
## 20264                          an armed    1
## 20265                        an article    1
## 20266                          an asian    1
## 20267                       an astrofix    1
## 20268                   an asymmetrical    1
## 20269                        an audible    1
## 20270                           an auto    1
## 20271                    an autofeather    1
## 20272                      an automatic    1
## 20273                      an available    1
## 20274                        an average    1
## 20275                         an burned    1
## 20276                   an catastrophic    1
## 20277                          an earth    1
## 20278                     an earthquake    1
## 20279                        an eastern    1
## 20280                      an effective    1
## 20281                       an egyptian    1
## 20282                        an elderly    1
## 20283                    an electricity    1
## 20284                     an elementary    1
## 20285                        an embraer    1
## 20286                       an employee    1
## 20287                            an ems    1
## 20288                          an enemy    1
## 20289                       an engine.ã    1
## 20290                    an engineering    1
## 20291                      an enigmatic    1
## 20292                       an entirely    1
## 20293                          an entry    1
## 20294                    an environment    1
## 20295                    an erroneously    1
## 20296                         an escape    1
## 20297                    an established    1
## 20298                     an evacuation    1
## 20299                     an evaluation    1
## 20300                      an executive    1
## 20301                       an exercise    1
## 20302                           an exit    1
## 20303                      an extension    1
## 20304                     an eyewitness    1
## 20305                            an faa    1
## 20306                          an heavy    1
## 20307                              an i    1
## 20308                        an ignited    1
## 20309                        an illegal    1
## 20310                    an illusionary    1
## 20311                     an imbalanced    1
## 20312                       an imminent    1
## 20313                      an impending    1
## 20314                      an important    1
## 20315                    an improvement    1
## 20316                  an inappropriate    1
## 20317                     an incendiary    1
## 20318                     an incomplete    1
## 20319                   an inconviently    1
## 20320                    an incorrectly    1
## 20321                      an increased    1
## 20322                     an increasing    1
## 20323                     an industrial    1
## 20324                        an inertia    1
## 20325                       an inferior    1
## 20326                     an inoperable    1
## 20327                    an inoperative    1
## 20328                         an insane    1
## 20329                     an instructor    1
## 20330                  an insuffuciency    1
## 20331                    an intentional    1
## 20332                      an intercept    1
## 20333                   an intersecting    1
## 20334                   an investigator    1
## 20335                    an involuntary    1
## 20336                        an iranian    1
## 20337                        an israeli    1
## 20338                            an khe    1
## 20339                        an landing    1
## 20340                         an libyan    1
## 20341                            an oak    1
## 20342                          an oasis    1
## 20343                       an observer    1
## 20344                     an occurrence    1
## 20345                         an office    1
## 20346                      an officer's    1
## 20347                        an onboard    1
## 20348                      an operating    1
## 20349                         an orange    1
## 20350                          an order    1
## 20351                            an out    1
## 20352                       an outboard    1
## 20353                       an outdated    1
## 20354                        an outside    1
## 20355                     an overloaded    1
## 20356                       an oversize    1
## 20357                      an overspeed    1
## 20358                     an overweight    1
## 20359                           an park    1
## 20360                     an prohibited    1
## 20361                          an river    1
## 20362                           an rnav    1
## 20363                            an sos    1
## 20364                           an spin    1
## 20365                     an unapproved    1
## 20366                     an unarrested    1
## 20367                   an unconcrolled    1
## 20368                    an uncontained    1
## 20369                   an uncontroable    1
## 20370                  an uncontrolable    1
## 20371                  an uncoordinated    1
## 20372                          an under    1
## 20373                 an understatement    1
## 20374                    an undisclosed    1
## 20375                         an unduly    1
## 20376                     an unexpected    1
## 20377                    an unexplained    1
## 20378                    an unfeathered    1
## 20379                      an unguarded    1
## 20380                       an unheated    1
## 20381                    an uninhabited    1
## 20382                  an unjustifiable    1
## 20383                          an unlit    1
## 20384                      an unplanned    1
## 20385                  an unpredictable    1
## 20386                    an unpredicted    1
## 20387                     an unprepared    1
## 20388                   an unprogrammed    1
## 20389                    an unpublished    1
## 20390                    an unrealistic    1
## 20391                  an unserviceable    1
## 20392                         an unused    1
## 20393                      an unusually    1
## 20394                       an unwanted    1
## 20395                      an unwitting    1
## 20396                         an upload    1
## 20397                          an valve    1
## 20398                          an12 the    1
## 20399                    analysis based    1
## 20400                   analysis having    1
## 20401                       analysis of    1
## 20402                      analysis was    1
## 20403                       analyze the    1
## 20404                     analyzing the    1
## 20405                        anchor and    1
## 20406                  anchorage alaska    1
## 20407                    anchorage they    1
## 20408                       anchored at    1
## 20409                  anchored liberty    1
## 20410                         and 1,100    1
## 20411                           and 1.5    1
## 20412                            and 12    1
## 20413                           and 120    1
## 20414                            and 15    1
## 20415                            and 16    1
## 20416                           and 165    1
## 20417                        and 18,000    1
## 20418                           and 182    1
## 20419                           and 200    1
## 20420                          and 2000    1
## 20421                           and 216    1
## 20422                            and 22    1
## 20423                           and 360    1
## 20424                            and 40    1
## 20425                            and 41    1
## 20426                            and 43    1
## 20427                            and 46    1
## 20428                         and 5.85g    1
## 20429                           and 500    1
## 20430                            and 51    1
## 20431                        and 51,000    1
## 20432                            and 53    1
## 20433                            and 55    1
## 20434                            and 63    1
## 20435                            and 70    1
## 20436                       and 700,000    1
## 20437                          and 84th    1
## 20438                            and 87    1
## 20439                          and 89th    1
## 20440                             and 9    1
## 20441                           and 900    1
## 20442                            and 94    1
## 20443                            and 96    1
## 20444                          and 99th    1
## 20445                          and a340    1
## 20446                   and abandonment    1
## 20447                      and abnormal    1
## 20448                    and abnormally    1
## 20449                         and abort    1
## 20450                      and aborting    1
## 20451                        and abrupt    1
## 20452                       and absence    1
## 20453                     and accidents    1
## 20454                         and acted    1
## 20455                     and activated    1
## 20456                     and activates    1
## 20457                         and actor    1
## 20458                       and actress    1
## 20459                      and actually    1
## 20460                       and address    1
## 20461                    and adequately    1
## 20462                      and admitted    1
## 20463                        and adults    1
## 20464                        and aerial    1
## 20465                      and affected    1
## 20466                           and aft    1
## 20467                         and again    1
## 20468                       and against    1
## 20469                           and aid    1
## 20470                          and aids    1
## 20471                       and aileron    1
## 20472                      and airborne    1
## 20473                      and airliner    1
## 20474                       and airport    1
## 20475                      and airspace    1
## 20476                       and airways    1
## 20477                        and alaska    1
## 20478                      and aligning    1
## 20479                        and almost    1
## 20480                      and although    1
## 20481                     and altimeter    1
## 20482                    and altimeters    1
## 20483                            and am    1
## 20484                     and ambiguous    1
## 20485                      and ammonium    1
## 20486                         and angle    1
## 20487                       and another    1
## 20488                          and anti    1
## 20489                      and appeared    1
## 20490                       and applied    1
## 20491                         and apply    1
## 20492                      and applying    1
## 20493                    and approaches    1
## 20494                   and approaching    1
## 20495                      and argument    1
## 20496                        and arrest    1
## 20497                   and asphyxiated    1
## 20498                     and assistant    1
## 20499                    and associated    1
## 20500                     and astronaut    1
## 20501                           and atr    1
## 20502                      and attached    1
## 20503                       and attempt    1
## 20504                      and attempts    1
## 20505                     and attitudes    1
## 20506                       and audible    1
## 20507                          and auto    1
## 20508                     and autopilot    1
## 20509                  and autothrottle    1
## 20510                      and awaiting    1
## 20511                    and backfiring    1
## 20512                          and bail    1
## 20513                        and banked    1
## 20514                       and banking    1
## 20515                        and barges    1
## 20516                        and beacon    1
## 20517                      and bearings    1
## 20518                        and become    1
## 20519                        and before    1
## 20520                    and bellcranck    1
## 20521                         and belly    1
## 20522                         and berau    1
## 20523                        and better    1
## 20524                       and blowing    1
## 20525                      and breaches    1
## 20526                         and brook    1
## 20527                       and brother    1
## 20528                     and buffeting    1
## 20529                         and build    1
## 20530                      and building    1
## 20531                      and burining    1
## 20532                      and burned.ã    1
## 20533                       and burning    1
## 20534                       and bursing    1
## 20535                      and business    1
## 20536                          and bust    1
## 20537                            and by    1
## 20538                         and cabin    1
## 20539                       and cagayan    1
## 20540                       and calling    1
## 20541                      and careened    1
## 20542                         and cargo    1
## 20543                     and carrier's    1
## 20544                      and carrying    1
## 20545                   and cartwheeled    1
## 20546                  and cartwheeling    1
## 20547                       and ceiling    1
## 20548                       and central    1
## 20549                 and certification    1
## 20550                       and changed    1
## 20551                         and chief    1
## 20552                      and chrashed    1
## 20553                      and civilian    1
## 20554                      and cleaning    1
## 20555                       and cleared    1
## 20556                       and cline's    1
## 20557                         and cloud    1
## 20558                        and clouds    1
## 20559                      and collapse    1
## 20560                     and colliding    1
## 20561                      and comair's    1
## 20562                        and coming    1
## 20563                     and commenced    1
## 20564                    and committing    1
## 20565                 and communicating    1
## 20566                 and communication    1
## 20567                and communications    1
## 20568                       and compass    1
## 20569                      and complete    1
## 20570                   and complicated    1
## 20571                        and comply    1
## 20572                    and compressor    1
## 20573                  and concentrated    1
## 20574                     and concluded    1
## 20575                   and conflicting    1
## 20576                       and conform    1
## 20577                     and confusing    1
## 20578                     and confusion    1
## 20579                    and consequent    1
## 20580                    and consistent    1
## 20581                      and constant    1
## 20582                     and contacted    1
## 20583                      and contacts    1
## 20584                      and contents    1
## 20585                    and continuing    1
## 20586                  and contributing    1
## 20587                    and controlled    1
## 20588                   and controllers    1
## 20589                   and controlling    1
## 20590                      and controls    1
## 20591                     and convicted    1
## 20592                     and corrected    1
## 20593                     and cosmetics    1
## 20594                        and crased    1
## 20595                   and crashed.the    1
## 20596                      and creation    1
## 20597                      and critical    1
## 20598                       and crossed    1
## 20599                    and crosswinds    1
## 20600                        and cruise    1
## 20601                      and crushing    1
## 20602                           and cut    1
## 20603                       and cyanide    1
## 20604                             and d    1
## 20605                         and daily    1
## 20606                      and damaging    1
## 20607                            and de    1
## 20608                         and death    1
## 20609                        and debris    1
## 20610                  and decelerating    1
## 20611                      and deciding    1
## 20612                  and deficiencies    1
## 20613                       and deicing    1
## 20614                    and dependants    1
## 20615                        and design    1
## 20616                     and destoying    1
## 20617                    and destroying    1
## 20618                   and destruction    1
## 20619                        and detect    1
## 20620                     and determine    1
## 20621                       and develop    1
## 20622                     and developed    1
## 20623                      and deviated    1
## 20624                      and diabetes    1
## 20625                        and didn't    1
## 20626                     and different    1
## 20627                        and dipped    1
## 20628                    and directives    1
## 20629                      and directly    1
## 20630                and discintegrated    1
## 20631                  and discontinued    1
## 20632                   and disembarked    1
## 20633                  and disintegrate    1
## 20634                and disintegrating    1
## 20635                and disintegration    1
## 20636                     and dismissed    1
## 20637                   and disoriented    1
## 20638                      and dispatch    1
## 20639                     and displayed    1
## 20640                      and ditching    1
## 20641                     and divergent    1
## 20642                        and diving    1
## 20643                            and do    1
## 20644                 and documentation    1
## 20645                        and driver    1
## 20646                       and dropped    1
## 20647                          and drug    1
## 20648                           and dry    1
## 20649                       and duchess    1
## 20650                          and duty    1
## 20651                        and earned    1
## 20652                    and efficiency    1
## 20653                         and eight    1
## 20654                       and ejected    1
## 20655                      and ejecting    1
## 20656                      and elavator    1
## 20657                    and eliminated    1
## 20658                      and embedded    1
## 20659                      and emitting    1
## 20660                     and empennage    1
## 20661                   and encountered    1
## 20662                           and end    1
## 20663                       and enforce    1
## 20664                       and english    1
## 20665                      and entering    1
## 20666                         and entry    1
## 20667                     and erroneous    1
## 20668                      and escaping    1
## 20669                   and exacerbated    1
## 20670                   and exaggerated    1
## 20671                        and exceed    1
## 20672                     and exceeding    1
## 20673                     and excursion    1
## 20674                     and execution    1
## 20675                    and executives    1
## 20676                     and exercised    1
## 20677                     and exhibited    1
## 20678                        and exited    1
## 20679                       and exiting    1
## 20680                   and experienced    1
## 20681                       and explode    1
## 20682                     and explosion    1
## 20683                       and exposed    1
## 20684                       and extreme    1
## 20685                             and f    1
## 20686                       and falling    1
## 20687                          and farm    1
## 20688                       and feather    1
## 20689                           and few    1
## 20690                      and fighting    1
## 20691                       and fiipped    1
## 20692                          and fins    1
## 20693                          and flap    1
## 20694                       and flaring    1
## 20695                          and flat    1
## 20696                       and flilght    1
## 20697                       and flipped    1
## 20698                       and fog.the    1
## 20699                     and following    1
## 20700                          and food    1
## 20701                    and foodstuffs    1
## 20702                        and forced    1
## 20703                       and forcing    1
## 20704                       and forward    1
## 20705                         and found    1
## 20706                    and fracturing    1
## 20707                         and frame    1
## 20708                          and from    1
## 20709                         and frost    1
## 20710                         and froze    1
## 20711                        and frozen    1
## 20712                          and full    1
## 20713                        and garage    1
## 20714                         and gears    1
## 20715                        and gentle    1
## 20716                          and give    1
## 20717                          and gold    1
## 20718                          and good    1
## 20719                         and great    1
## 20720                      and guardian    1
## 20721                      and guidance    1
## 20722                     and gunpowder    1
## 20723                         and gusty    1
## 20724                          and gyro    1
## 20725                          and hard    1
## 20726                      and havelian    1
## 20727                       and heading    1
## 20728                        and helena    1
## 20729                        and helped    1
## 20730                 and henderson.say    1
## 20731                     and hijackers    1
## 20732                       and hitting    1
## 20733                         and homed    1
## 20734                      and honolulu    1
## 20735                        and hoover    1
## 20736                    and horizontal    1
## 20737                         and house    1
## 20738                          and hull    1
## 20739                         and humid    1
## 20740                      and humorist    1
## 20741                     and hydraulic    1
## 20742                    and identified    1
## 20743                      and ignition    1
## 20744                           and ils    1
## 20745                   and immediately    1
## 20746                     and impacting    1
## 20747                    and inaccurate    1
## 20748                 and inadvertently    1
## 20749                 and inappropriate    1
## 20750               and inappropriately    1
## 20751                       and inboard    1
## 20752                      and included    1
## 20753                    and incomplete    1
## 20754                     and increased    1
## 20755                    and increasing    1
## 20756                        and indian    1
## 20757                    and indirectly    1
## 20758                   and ineffective    1
## 20759                   and information    1
## 20760                    and infrequent    1
## 20761                      and ingested    1
## 20762                       and initial    1
## 20763                    and initiating    1
## 20764                   and inoperative    1
## 20765                       and inspect    1
## 20766                     and inspected    1
## 20767                    and instructed    1
## 20768                    and instructor    1
## 20769                    and instrument    1
## 20770                       and insured    1
## 20771                    and interfered    1
## 20772                 and international    1
## 20773                and interpretation    1
## 20774                 and investigation    1
## 20775                 and irresponsible    1
## 20776                            and is    1
## 20777                         and issue    1
## 20778                           and itã    1
## 20779                       and italian    1
## 20780                        and jammed    1
## 20781                      and judgment    1
## 20782                       and jumping    1
## 20783                      and kabuleti    1
## 20784                      and kandahar    1
## 20785                          and kill    1
## 20786                       and knocked    1
## 20787                   and landing.the    1
## 20788                         and later    1
## 20789                      and lavatory    1
## 20790                       and leakage    1
## 20791                       and leaking    1
## 20792                           and led    1
## 20793                       and leeches    1
## 20794                          and legs    1
## 20795                       and letdown    1
## 20796                         and levee    1
## 20797                         and level    1
## 20798                       and leveled    1
## 20799                      and lighting    1
## 20800                          and like    1
## 20801                        and likely    1
## 20802                          and load    1
## 20803                       and located    1
## 20804                      and location    1
## 20805                        and lodged    1
## 20806                          and long    1
## 20807                         and lower    1
## 20808                            and lt    1
## 20809                         and lungi    1
## 20810                          and mach    1
## 20811                       and machine    1
## 20812                          and mail    1
## 20813                          and main    1
## 20814                   and maintaining    1
## 20815                 and malfuncioning    1
## 20816                and malfunctioning    1
## 20817                        and manado    1
## 20818                    and management    1
## 20819                      and mandated    1
## 20820                   and maneuvering    1
## 20821                       and manilla    1
## 20822                 and manufacturing    1
## 20823                          and maps    1
## 20824                      and markings    1
## 20825                       and married    1
## 20826                           and may    1
## 20827                           and mcp    1
## 20828                     and meanwhile    1
## 20829                      and measures    1
## 20830                    and mechanical    1
## 20831                     and mechanics    1
## 20832                       and michael    1
## 20833                    and microburst    1
## 20834                         and might    1
## 20835                       and minimum    1
## 20836                  and misjudgement    1
## 20837                    and misjudging    1
## 20838                   and misjudgment    1
## 20839                    and misreading    1
## 20840                         and mixed    1
## 20841                       and molokai    1
## 20842                         and mongu    1
## 20843                       and monsoon    1
## 20844                          and most    1
## 20845                   and mountainous    1
## 20846                         and movie    1
## 20847                        and movies    1
## 20848                           and msa    1
## 20849                      and muhammad    1
## 20850                      and murdered    1
## 20851                      and musician    1
## 20852                      and narrowly    1
## 20853                       and nathaly    1
## 20854                    and navigating    1
## 20855                  and navigational    1
## 20856                     and navigator    1
## 20857                          and near    1
## 20858                       and nearing    1
## 20859                        and nearly    1
## 20860                  and necessitated    1
## 20861                 and necessitating    1
## 20862                          and need    1
## 20863                    and negligence    1
## 20864                    and newscaster    1
## 20865                         and night    1
## 20866                          and nine    1
## 20867                           and no2    1
## 20868                         and noise    1
## 20869                           and non    1
## 20870                     and nonflying    1
## 20871                         and north    1
## 20872                         and nosed    1
## 20873                           and nov    1
## 20874                        and number    1
## 20875                         and nurse    1
## 20876                   and obstructing    1
## 20877                   and obstruction    1
## 20878                     and officials    1
## 20879                          and once    1
## 20880                        and opened    1
## 20881                         and opera    1
## 20882                     and operating    1
## 20883                   and operational    1
## 20884                   and orientation    1
## 20885                           and out    1
## 20886                      and overcome    1
## 20887               and overcontrolling    1
## 20888                   and overpowered    1
## 20889                   and overrunning    1
## 20890                    and overseeing    1
## 20891                     and oversight    1
## 20892                    and overstress    1
## 20893                    and overtravel    1
## 20894                          and paid    1
## 20895                           and pan    1
## 20896                         and panic    1
## 20897                    and parachuted    1
## 20898                       and partial    1
## 20899                     and partially    1
## 20900                  and particularly    1
## 20901                       and passing    1
## 20902                        and patchy    1
## 20903                       and patient    1
## 20904                       and patrick    1
## 20905                 and photographers    1
## 20906                      and physical    1
## 20907                       and pianist    1
## 20908                         and plane    1
## 20909                        and planed    1
## 20910                      and platinum    1
## 20911                      and ploughed    1
## 20912                        and polish    1
## 20913                   and potentially    1
## 20914                    and powerplant    1
## 20915                     and premature    1
## 20916                 and preoccupation    1
## 20917                   and preparation    1
## 20918                    and prescribed    1
## 20919                     and president    1
## 20920                         and press    1
## 20921                      and pressure    1
## 20922                      and previous    1
## 20923                         and prior    1
## 20924                        and prison    1
## 20925                     and procedure    1
## 20926                     and proceeded    1
## 20927                  and professional    1
## 20928                      and progress    1
## 20929                    and propellers    1
## 20930                     and proximity    1
## 20931                 and psychological    1
## 20932                          and pull    1
## 20933                        and pulled    1
## 20934                        and qantas    1
## 20935                           and qfe    1
## 20936                       and quality    1
## 20937                         and radar    1
## 20938                      and radioing    1
## 20939                        and raised    1
## 20940                       and raising    1
## 20941                         and rapid    1
## 20942                       and reached    1
## 20943                         and react    1
## 20944                       and reacted    1
## 20945                      and reaction    1
## 20946                       and recover    1
## 20947                     and refueling    1
## 20948                     and refuelled    1
## 20949                     and reinstall    1
## 20950                       and related    1
## 20951                      and relative    1
## 20952                        and relief    1
## 20953                    and relighting    1
## 20954                        and remain    1
## 20955                      and remained    1
## 20956                        and remedy    1
## 20957                        and remove    1
## 20958                       and removed    1
## 20959                     and rendering    1
## 20960                        and repair    1
## 20961                      and repaired    1
## 20962                       and repairs    1
## 20963                      and repeated    1
## 20964                      and replaced    1
## 20965                      and reported    1
## 20966                     and reporting    1
## 20967                        and rescue    1
## 20968                       and rescued    1
## 20969                      and rescuers    1
## 20970                   and residential    1
## 20971                       and resolve    1
## 20972                       and respond    1
## 20973                     and responded    1
## 20974                          and rest    1
## 20975                       and restore    1
## 20976                    and restricted    1
## 20977                        and return    1
## 20978                        and rising    1
## 20979                       and roadway    1
## 20980                          and rock    1
## 20981                        and rolled    1
## 20982                          and rome    1
## 20983                          and roof    1
## 20984                          and rose    1
## 20985                       and rudders    1
## 20986                     and rupturing    1
## 20987                       and russian    1
## 20988                          and ryan    1
## 20989                        and safely    1
## 20990                        and safety    1
## 20991                          and salt    1
## 20992                       and savings    1
## 20993                           and saw    1
## 20994                     and scattered    1
## 20995                    and scattering    1
## 20996                      and security    1
## 20997                     and sedatives    1
## 20998                           and see    1
## 20999                        and seized    1
## 21000                       and sending    1
## 21001                          and sent    1
## 21002                       and service    1
## 21003                      and services    1
## 21004                       and seventy    1
## 21005                       and several    1
## 21006                      and severing    1
## 21007                       and shannon    1
## 21008                         and sharp    1
## 21009                           and she    1
## 21010                       and shelter    1
## 21011                         and short    1
## 21012                        and showed    1
## 21013                          and shut    1
## 21014                      and sideslip    1
## 21015                         and sight    1
## 21016                        and singer    1
## 21017                       and singers    1
## 21018                        and sister    1
## 21019                          and size    1
## 21020                      and skidding    1
## 21021                       and skipped    1
## 21022                       and skywest    1
## 21023                        and slamed    1
## 21024                      and slamming    1
## 21025                          and slat    1
## 21026                         and sleet    1
## 21027                         and slice    1
## 21028                      and slightly    1
## 21029                      and slippery    1
## 21030                          and slow    1
## 21031                         and small    1
## 21032                      and snow.the    1
## 21033                            and so    1
## 21034                   and socializing    1
## 21035                       and softner    1
## 21036                           and son    1
## 21037                          and song    1
## 21038                        and source    1
## 21039                         and south    1
## 21040                     and southwest    1
## 21041                        and sparks    1
## 21042                        and speeds    1
## 21043                         and split    1
## 21044                       and sprayed    1
## 21045                    and stabilized    1
## 21046                         and stabs    1
## 21047                      and stalling    1
## 21048                     and starlings    1
## 21049                        and stator    1
## 21050                         and steep    1
## 21051                       and steeper    1
## 21052                       and steeply    1
## 21053                         and still    1
## 21054                         and stong    1
## 21055                          and stop    1
## 21056                        and storms    1
## 21057                  and structurally    1
## 21058                     and struggled    1
## 21059                    and subsiquent    1
## 21060                        and sudden    1
## 21061                   and suffiecient    1
## 21062                        and summer    1
## 21063                           and sun    1
## 21064                   and supervising    1
## 21065                    and suppressed    1
## 21066                      and survived    1
## 21067                     and survivors    1
## 21068                  and suspiciously    1
## 21069                     and sustained    1
## 21070                       and swedish    1
## 21071                      and switched    1
## 21072                     and switching    1
## 21073                     and tailplane    1
## 21074                        and taipei    1
## 21075                          and take    1
## 21076                        and taking    1
## 21077                     and telegraph    1
## 21078                   and telegraphic    1
## 21079                     and temporary    1
## 21080                           and ten    1
## 21081                       and tensile    1
## 21082                      and terminal    1
## 21083                        and tested    1
## 21084                    and thereafter    1
## 21085                     and therefore    1
## 21086                      and thirteen    1
## 21087                        and thirty    1
## 21088                         and threw    1
## 21089                       and through    1
## 21090                      and throwing    1
## 21091                  and thunderstoms    1
## 21092                          and thus    1
## 21093                        and timely    1
## 21094                    and torrential    1
## 21095                         and touch    1
## 21096                     and touchdown    1
## 21097                        and traces    1
## 21098                       and traffic    1
## 21099                    and transition    1
## 21100                      and transmit    1
## 21101                   and transmitted    1
## 21102                           and try    1
## 21103                      and tumbling    1
## 21104                   and turbulences    1
## 21105                     and turbulent    1
## 21106                         and twice    1
## 21107                        and unable    1
## 21108                   and uncertified    1
## 21109                     and undershot    1
## 21110                    and undetected    1
## 21111                    and unexpected    1
## 21112                   and unfavorable    1
## 21113                    and unforeseen    1
## 21114                        and unique    1
## 21115                         and unita    1
## 21116                        and united    1
## 21117                     and unlighted    1
## 21118                     and unnoticed    1
## 21119                 and unpredictable    1
## 21120                      and untimely    1
## 21121                            and up    1
## 21122                         and urine    1
## 21123                       and uruapan    1
## 21124                       and utilize    1
## 21125                           and van    1
## 21126                       and various    1
## 21127                          and very    1
## 21128                     and vibration    1
## 21129                     and vigilance    1
## 21130                        and visual    1
## 21131                        and walked    1
## 21132                        and wanted    1
## 21133                       and warning    1
## 21134                         and wasnã    1
## 21135                         and white    1
## 21136                          and wide    1
## 21137                        and within    1
## 21138                     and witnesses    1
## 21139                        and wooded    1
## 21140                          and wore    1
## 21141                      and workload    1
## 21142                         and worse    1
## 21143                       and wounded    1
## 21144                       and written    1
## 21145                           and yaw    1
## 21146                          and zero    1
## 21147                       andaman sea    1
## 21148                       andean city    1
## 21149                  andean highlands    1
## 21150                      anderson air    1
## 21151                       andes after    1
## 21152                          andes as    1
## 21153                        andes crew    1
## 21154                       andes eight    1
## 21155                          andes it    1
## 21156                        andes near    1
## 21157                      andes struck    1
## 21158                       andes while    1
## 21159                       andies peak    1
## 21160                      andoas there    1
## 21161                    andra survived    1
## 21162                 andreas prodromou    1
## 21163                   andrew aycock's    1
## 21164                    andropov about    1
## 21165                       andy chapin    1
## 21166                           ane the    1
## 21167                           ane was    1
## 21168                       angel falls    1
## 21169                      angel flight    1
## 21170                       angeles air    1
## 21171                   angeles airport    1
## 21172                       angeles and    1
## 21173                       angeles atc    1
## 21174                     angeles based    1
## 21175             angeles international    1
## 21176                   angeles power's    1
## 21177                  angeles terminal    1
## 21178                      angeles when    1
## 21179                     angeles while    1
## 21180                 anghialos airport    1
## 21181                          angle as    1
## 21182                       angle bolts    1
## 21183                        angle both    1
## 21184                   angle displayed    1
## 21185                         angle had    1
## 21186                    angle inferior    1
## 21187                     angle instead    1
## 21188                     angle leading    1
## 21189                      angle limits    1
## 21190                          angle no    1
## 21191                       angle pilot    1
## 21192                  angle porpoising    1
## 21193                     angle reached    1
## 21194                      angle rolled    1
## 21195                     angle stalled    1
## 21196                         angle the    1
## 21197                        angle then    1
## 21198                          angle up    1
## 21199                     angle warning    1
## 21200                         angle was    1
## 21201                       angle which    1
## 21202                       angle while    1
## 21203                    angles moments    1
## 21204                         angles to    1
## 21205                    anglo american    1
## 21206                       angola when    1
## 21207                      anjimalai at    1
## 21208                     anjouan after    1
## 21209                 ankara's esenboga    1
## 21210                    ankara airport    1
## 21211                   ankara mountain    1
## 21212                       anna jantar    1
## 21213                    annette island    1
## 21214                    announced pull    1
## 21215                      announcing a    1
## 21216                   annual memorial    1
## 21217                      anomalies in    1
## 21218                      anomalies to    1
## 21219                         anomaly 2    1
## 21220                       another 158    1
## 21221                       another 181    1
## 21222                       another 650    1
## 21223                       another air    1
## 21224                      another area    1
## 21225                    another better    1
## 21226                     another bluff    1
## 21227                   another circuit    1
## 21228                       another dim    1
## 21229                 another direction    1
## 21230                    another during    1
## 21231                        another go    1
## 21232                        another in    1
## 21233                    another island    1
## 21234                       another let    1
## 21235                       another man    1
## 21236                      another navy    1
## 21237                     another piece    1
## 21238                     another pilot    1
## 21239                    another runway    1
## 21240                     another small    1
## 21241                   another steward    1
## 21242                       another the    1
## 21243                       another try    1
## 21244                   another turkish    1
## 21245                       another u.s    1
## 21246                          anson at    1
## 21247                     anson failure    1
## 21248                       answer from    1
## 21249                     antalya crash    1
## 21250               antananarivo double    1
## 21251                       antao while    1
## 21252                    antarctic crew    1
## 21253                   antarctic route    1
## 21254                     antarctica an    1
## 21255                     antenna 1,000    1
## 21256                     antenna broke    1
## 21257                      antenna mast    1
## 21258                        antenna on    1
## 21259                   antenna outside    1
## 21260                 antenna resulting    1
## 21261                       antenna the    1
## 21262                 antenna windshear    1
## 21263                      antenna wire    1
## 21264                      antennas and    1
## 21265                    anti corrosion    1
## 21266                   anti government    1
## 21267                    anti narcotics    1
## 21268                         anti node    1
## 21269                         anti rust    1
## 21270                  anticipate below    1
## 21271                anticipated should    1
## 21272                   anticipated the    1
## 21273            anticipated velocities    1
## 21274          antidetonation injection    1
## 21275                antihistamine both    1
## 21276                  antilock braking    1
## 21277                 antonio pigafetta    1
## 21278                       antonio six    1
## 21279                        antonov 18    1
## 21280                        antonov an    1
## 21281                   antonov crashed    1
## 21282                       antonov the    1
## 21283           anunstabilized approach    1
## 21284                  anuradhapura and    1
## 21285                          anvil of    1
## 21286                      any altitude    1
## 21287                        any answer    1
## 21288                       any appeals    1
## 21289                        any design    1
## 21290                     any deviation    1
## 21291                        any future    1
## 21292                          any high    1
## 21293                    any individual    1
## 21294                          any kind    1
## 21295                       any lateral    1
## 21296                        any number    1
## 21297                           any one    1
## 21298                         any radio    1
## 21299                       any remorse    1
## 21300                        any sounds    1
## 21301                          any time    1
## 21302                        any timely    1
## 21303                      any training    1
## 21304                        any visual    1
## 21305                        anymore it    1
## 21306                   anyone realized    1
## 21307                       anything in    1
## 21308                      anything was    1
## 21309                        aoa sensor    1
## 21310                       aom shortly    1
## 21311                      aorcraft hit    1
## 21312                       aparent the    1
## 21313                         apart 7.5    1
## 21314                       apart about    1
## 21315                       apart after    1
## 21316                apart contributing    1
## 21317                       apart icing    1
## 21318                         apart off    1
## 21319                    apart official    1
## 21320                        apart over    1
## 21321                        apart when    1
## 21322                 apartment complex    1
## 21323                   apartment house    1
## 21324                 apartment parking    1
## 21325                     apeldoorn and    1
## 21326                   aphrodite after    1
## 21327                     apica located    1
## 21328            apparent abnormalities    1
## 21329                   apparent action    1
## 21330                       apparent an    1
## 21331                     apparent lack    1
## 21332                    apparent level    1
## 21333                  apparent spatial    1
## 21334                      apparent the    1
## 21335                apparently causing    1
## 21336                apparently changed    1
## 21337              apparently continued    1
## 21338                    apparently due    1
## 21339               apparently exploded    1
## 21340               apparently fatigued    1
## 21341                   apparently gave    1
## 21342                    apparently got    1
## 21343                    apparently had    1
## 21344                    apparently hit    1
## 21345                   apparently lost    1
## 21346                  apparently minor    1
## 21347          apparently misunderstood    1
## 21348                    apparently not    1
## 21349                 apparently placed    1
## 21350                    apparently ran    1
## 21351                   apparently shut    1
## 21352                    apparently the    1
## 21353                 apparently unable    1
## 21354             apparently unfamiliar    1
## 21355                   apparently were    1
## 21356                    apparitions of    1
## 21357                     appeals court    1
## 21358                        appeals he    1
## 21359                 appeared confused    1
## 21360                appeared corrected    1
## 21361                       appeared on    1
## 21362                     appeared that    1
## 21363                   appeared unable    1
## 21364                      appearing as    1
## 21365                      appears that    1
## 21366                        apple tree    1
## 21367                         applied a    1
## 21368                   applied against    1
## 21369                      applied once    1
## 21370                     applied prior    1
## 21371                         applied t    1
## 21372                      applied when    1
## 21373                        apply full    1
## 21374                 apply oscillating    1
## 21375                       apply power    1
## 21376                       applying go    1
## 21377                  applying maximum    1
## 21378                     applying more    1
## 21379               applying procedures    1
## 21380                  applying reverse    1
## 21381                      appoach four    1
## 21382                 apporach improper    1
## 21383                       apporach in    1
## 21384                   apporach lights    1
## 21385              apporach malfunction    1
## 21386                    appoximately 1    1
## 21387        appreciably incapacitating    1
## 21388                   appreciate that    1
## 21389                  appreciating the    1
## 21390            apprehension resulting    1
## 21391                   apprehensive of    1
## 21392                      approach 0.5    1
## 21393                       approach 10    1
## 21394                       approach 15    1
## 21395                       approach 32    1
## 21396                        approach 5    1
## 21397                      approach 5.2    1
## 21398                       approach 50    1
## 21399                        approach 6    1
## 21400                      approach 600    1
## 21401                        approach 7    1
## 21402               approach accidently    1
## 21403                    approach again    1
## 21404                    approach aides    1
## 21405                     approach aids    1
## 21406                  approach aircrew    1
## 21407                 approach although    1
## 21408                 approach altitude    1
## 21409                 approach american    1
## 21410               approach apparently    1
## 21411                 approach appeared    1
## 21412                 approach approach    1
## 21413                     approach back    1
## 21414                      approach ban    1
## 21415                   approach beacon    1
## 21416                   approach beyond    1
## 21417                    approach broke    1
## 21418                   approach caused    1
## 21419                  approach causing    1
## 21420            approach characterized    1
## 21421                   approach charts    1
## 21422             approach continuation    1
## 21423                approach continued    1
## 21424             approach controller's    1
## 21425                    approach could    1
## 21426                   approach course    1
## 21427                   approach crew's    1
## 21428                 approach decision    1
## 21429                     approach deep    1
## 21430                  approach descent    1
## 21431                approach deviation    1
## 21432                approach displayed    1
## 21433                  approach ditched    1
## 21434                    approach error    1
## 21435               approach especially    1
## 21436                      approach etc    1
## 21437                  approach evasive    1
## 21438                approach excessive    1
## 21439                  approach execute    1
## 21440                approach execution    1
## 21441                   approach failed    1
## 21442                      approach fog    1
## 21443                     approach from    1
## 21444                    approach glide    1
## 21445                       approach go    1
## 21446                      approach had    1
## 21447                  approach himself    1
## 21448                      approach hit    1
## 21449                  approach horizon    1
## 21450                   approach hudbay    1
## 21451                  approach ignored    1
## 21452               approach impairment    1
## 21453                  approach inbound    1
## 21454           approach incapacitation    1
## 21455                  approach instead    1
## 21456                      approach led    1
## 21457                     approach line    1
## 21458                     approach made    1
## 21459                   approach midair    1
## 21460                  approach minimum    1
## 21461           approach misinformation    1
## 21462           approach misinterpreted    1
## 21463            approach necessitating    1
## 21464                  approach nothing    1
## 21465                     approach over    1
## 21466             approach overreliance    1
## 21467               approach parameters    1
## 21468              approach performance    1
## 21469                    approach phase    1
## 21470                    approach point    1
## 21471                 approach possible    1
## 21472                 approach properly    1
## 21473                    approach radio    1
## 21474                approach resultied    1
## 21475                    approach right    1
## 21476                  approach segment    1
## 21477                    approach short    1
## 21478                  approach shortly    1
## 21479           approach simultaneously    1
## 21480                    approach slope    1
## 21481                 approach striking    1
## 21482               approach structural    1
## 21483                   approach sudden    1
## 21484               approach techniques    1
## 21485                     approach they    1
## 21486                   approach toward    1
## 21487                     approach turn    1
## 21488                      approach two    1
## 21489                  approach weather    1
## 21490                approach.the pilot    1
## 21491                approach.the plane    1
## 21492                      approached a    1
## 21493                    approached and    1
## 21494               approached downwind    1
## 21495                approached durzana    1
## 21496                   approached each    1
## 21497                    approached for    1
## 21498                approached gaspãƒâ    1
## 21499                approached huanuco    1
## 21500                    approached its    1
## 21501                     approached la    1
## 21502                   approached land    1
## 21503                  approached level    1
## 21504                  approached marsa    1
## 21505                     approached mt    1
## 21506                    approached new    1
## 21507                 approached runway    1
## 21508                   approached with    1
## 21509                     approaches at    1
## 21510                     approaches be    1
## 21511               approaches improper    1
## 21512              approaching amberley    1
## 21513                    approaching an    1
## 21514              approaching argentia    1
## 21515                    approaching at    1
## 21516               approaching bishkek    1
## 21517              approaching boufarik    1
## 21518                 approaching cairo    1
## 21519                  approaching cali    1
## 21520               approaching charles    1
## 21521                  approaching cluj    1
## 21522                   approaching gca    1
## 21523                approaching juanda    1
## 21524               approaching lorient    1
## 21525                approaching luanda    1
## 21526                 approaching luang    1
## 21527                 approaching maria    1
## 21528                 approaching miles    1
## 21529                  approaching more    1
## 21530                   approaching new    1
## 21531               approaching ontario    1
## 21532             approaching palembang    1
## 21533                  approaching perm    1
## 21534                  approaching port    1
## 21535            approaching portsmouth    1
## 21536                approaching ruzyne    1
## 21537              approaching salonica    1
## 21538                 approaching sioux    1
## 21539              approaching tshikapa    1
## 21540                    approaching v1    1
## 21541            approaching washington    1
## 21542         approaching xiangkhoung's    1
## 21543                  approaching zone    1
## 21544                     appromately 3    1
## 21545                      approoach to    1
## 21546         appropriate configuration    1
## 21547               appropriate evasive    1
## 21548              appropriate response    1
## 21549                appropriate visual    1
## 21550                  appropriately to    1
## 21551                     approval from    1
## 21552                      approved air    1
## 21553                      approved and    1
## 21554                       approved as    1
## 21555                  approved company    1
## 21556                   approved design    1
## 21557                   approved device    1
## 21558                approved emergency    1
## 21559                      approved for    1
## 21560                     approved fuel    1
## 21561              approved maintenance    1
## 21562                   approved safety    1
## 21563                    approved seats    1
## 21564                   approximaely 30    1
## 21565                    approximate 25    1
## 21566                  approximate time    1
## 21567                approximately 0815    1
## 21568               approximately 1,000    1
## 21569              approximately 1,000m    1
## 21570               approximately 1,500    1
## 21571               approximately 1,900    1
## 21572                 approximately 1.2    1
## 21573                 approximately 1.5    1
## 21574               approximately 1.5km    1
## 21575                  approximately 11    1
## 21576                  approximately 12    1
## 21577                 approximately 120    1
## 21578                 approximately 175    1
## 21579                  approximately 18    1
## 21580                  approximately 19    1
## 21581               approximately 2,000    1
## 21582               approximately 2,300    1
## 21583                  approximately 22    1
## 21584                 approximately 270    1
## 21585                 approximately 3.5    1
## 21586                 approximately 300    1
## 21587                 approximately 325    1
## 21588                  approximately 34    1
## 21589              approximately 34,500    1
## 21590                  approximately 35    1
## 21591                  approximately 40    1
## 21592                 approximately 400    1
## 21593                   approximately 5    1
## 21594                  approximately 50    1
## 21595                 approximately 560    1
## 21596                 approximately 600    1
## 21597                 approximately 650    1
## 21598                 approximately 700    1
## 21599                  approximately 75    1
## 21600                  approximately 80    1
## 21601                   approximately 9    1
## 21602                  approximately 90    1
## 21603                 approximately 970    1
## 21604                   approximately a    1
## 21605                approximately half    1
## 21606                 approximately one    1
## 21607                        april 1996    1
## 21608                           april 3    1
## 21609                           april 4    1
## 21610                        apshara at    1
## 21611                           apu led    1
## 21612                         apu since    1
## 21613                       apure state    1
## 21614                         aqaba the    1
## 21615               aquaplaning crashed    1
## 21616                   aquaplaning did    1
## 21617                    aquino airport    1
## 21618                        arabia the    1
## 21619                    arafat crashed    1
## 21620                   aratanha during    1
## 21621                      arbetello in    1
## 21622             archerfield airfiield    1
## 21623              archerfield brisbane    1
## 21624                  archie twitchell    1
## 21625                  arching ignition    1
## 21626                    arcing ignited    1
## 21627                      arctic ocean    1
## 21628                   arctic twilight    1
## 21629                 ardmore municipal    1
## 21630                             are a    1
## 21631                    are attributed    1
## 21632                         are based    1
## 21633                      are crashing    1
## 21634                   are incorrectly    1
## 21635                           are not    1
## 21636                       are reports    1
## 21637                      are required    1
## 21638                       are several    1
## 21639                        are taught    1
## 21640                          are that    1
## 21641                           are the    1
## 21642                       are trained    1
## 21643                    are unofficial    1
## 21644                           area 10    1
## 21645                           area 13    1
## 21646                          area 3.3    1
## 21647                           area 30    1
## 21648                           area 42    1
## 21649                            area 5    1
## 21650                          area 5.5    1
## 21651                            area 6    1
## 21652                           area 70    1
## 21653                            area 8    1
## 21654                        area above    1
## 21655                          area all    1
## 21656                   area apparently    1
## 21657                           area as    1
## 21658                   area associated    1
## 21659                       area behind    1
## 21660                        area being    1
## 21661                      area between    1
## 21662                          area but    1
## 21663                           area by    1
## 21664                       area caused    1
## 21665                      area cleared    1
## 21666                        area close    1
## 21667                     area collided    1
## 21668                 area contributing    1
## 21669                        area crash    1
## 21670                         area crew    1
## 21671                         area data    1
## 21672                     area delaying    1
## 21673                  area disappeared    1
## 21674               area disintegrating    1
## 21675                  area encountered    1
## 21676                       area engine    1
## 21677                      area failure    1
## 21678                         area fire    1
## 21679                     area fourteen    1
## 21680                         area from    1
## 21681                       area george    1
## 21682                           area he    1
## 21683                      area hitting    1
## 21684                   area inaccurate    1
## 21685                         area less    1
## 21686                         area loss    1
## 21687                         area lost    1
## 21688                         area made    1
## 21689                          area mel    1
## 21690                         area most    1
## 21691                     area nineteen    1
## 21692                    area northwest    1
## 21693                          area not    1
## 21694                           area or    1
## 21695                        area pilot    1
## 21696                      area planted    1
## 21697                        area prior    1
## 21698                      area serious    1
## 21699                        area seven    1
## 21700                    area seventeen    1
## 21701                         area soon    1
## 21702                     area sparsely    1
## 21703                          area ten    1
## 21704                         area that    1
## 21705                        area there    1
## 21706                        area three    1
## 21707                           area to    1
## 21708                          area u.s    1
## 21709                        area until    1
## 21710                         area upon    1
## 21711                          area was    1
## 21712                         area when    1
## 21713                     area wreckage    1
## 21714                      areas access    1
## 21715                       areas under    1
## 21716                         areas was    1
## 21717                        areas with    1
## 21718                          arey the    1
## 21719                  argentia bristol    1
## 21720                       argentia it    1
## 21721                      argentina to    1
## 21722               argentine newspaper    1
## 21723                      arguing over    1
## 21724                  argument between    1
## 21725                        argyll and    1
## 21726                       ariel cause    1
## 21727                       arkansas it    1
## 21728                    arkansas while    1
## 21729                           arm and    1
## 21730                           arm the    1
## 21731                      armed forces    1
## 21732                         armed man    1
## 21733                         armed men    1
## 21734                          armed on    1
## 21735                      armed robery    1
## 21736                         armed the    1
## 21737                        armed with    1
## 21738                   armenian forces    1
## 21739                         arming of    1
## 21740                  armored vehicles    1
## 21741                        arms alone    1
## 21742                         arms fire    1
## 21743                         arms held    1
## 21744                      army arsenal    1
## 21745                         army band    1
## 21746                       army bomber    1
## 21747                      army chinook    1
## 21748                  army disappeared    1
## 21749                     army garrison    1
## 21750                    army personnel    1
## 21751                        army pilot    1
## 21752                      army soldier    1
## 21753                     army supplies    1
## 21754                    army transport    1
## 21755                         army unit    1
## 21756                          army who    1
## 21757                     arnold raphel    1
## 21758                        arose when    1
## 21759                        around 1.5    1
## 21760                     around 10,000    1
## 21761                        around 180    1
## 21762                          around 2    1
## 21763                        around 595    1
## 21764                        around 850    1
## 21765                         around 90    1
## 21766                   around although    1
## 21767                 around apparently    1
## 21768                         around as    1
## 21769                     around became    1
## 21770                    around because    1
## 21771                         around by    1
## 21772                    around causing    1
## 21773                   around collided    1
## 21774                 around conditions    1
## 21775              around configuration    1
## 21776                    around control    1
## 21777                      around could    1
## 21778                       around crew    1
## 21779                  around deviation    1
## 21780                         around do    1
## 21781                         around fl    1
## 21782                       around late    1
## 21783                     around lenana    1
## 21784                      around lever    1
## 21785                  around manoeuver    1
## 21786                  around manoeuvre    1
## 21787                     around nearly    1
## 21788                        around one    1
## 21789                      around pilot    1
## 21790                 around protection    1
## 21791                  around resulting    1
## 21792                       around snow    1
## 21793                       around soon    1
## 21794                      around there    1
## 21795                       around they    1
## 21796                       around this    1
## 21797                     around turned    1
## 21798               around undetermined    1
## 21799                    around weather    1
## 21800                     around within    1
## 21801                  arrangements for    1
## 21802             arrastradero mountain    1
## 21803                          arrest a    1
## 21804                 arrest aircraft's    1
## 21805                         arrest an    1
## 21806                        arrest and    1
## 21807                      arrested and    1
## 21808                       arrested as    1
## 21809                  arrested crashed    1
## 21810                      arrested for    1
## 21811                       arrested in    1
## 21812                      arrested one    1
## 21813                  arresting system    1
## 21814                       arrival and    1
## 21815                arrival assessment    1
## 21816                     arrival given    1
## 21817                        arrival in    1
## 21818                   arrival landing    1
## 21819                    arrive earlier    1
## 21820                        arrived at    1
## 21821                      arrived late    1
## 21822                        arriving a    1
## 21823                       arriving at    1
## 21824                       arriving on    1
## 21825                        arsenal at    1
## 21826                         artcc and    1
## 21827                          artcc or    1
## 21828               arterial hemorrhage    1
## 21829                    artery disease    1
## 21830                  article covering    1
## 21831               articulated control    1
## 21832                   artigas airport    1
## 21833                       artist were    1
## 21834                        arusha the    1
## 21835                         as 16,000    1
## 21836                            as 3.3    1
## 21837                             as 33    1
## 21838                            as 350    1
## 21839                       as airspeed    1
## 21840                        as another    1
## 21841                     as authorized    1
## 21842                        as burning    1
## 21843                      as causative    1
## 21844                        as cleared    1
## 21845                          as close    1
## 21846                             as co    1
## 21847                        as copilot    1
## 21848                        as correct    1
## 21849                         as deaths    1
## 21850                       as designed    1
## 21851                       as dictated    1
## 21852                          as false    1
## 21853                           as five    1
## 21854                         as flight    1
## 21855                          as icing    1
## 21856                             as if    1
## 21857                     as instructor    1
## 21858                           as khat    1
## 21859                           as laid    1
## 21860                        as landing    1
## 21861                           as long    1
## 21862                       as malaysia    1
## 21863                           as many    1
## 21864                           as mode    1
## 21865                          as nasty    1
## 21866                         as newton    1
## 21867                             as no    1
## 21868                     as operations    1
## 21869                        as opposed    1
## 21870                           as over    1
## 21871                         as oxygen    1
## 21872                           as page    1
## 21873                      as passenger    1
## 21874                          as pilot    1
## 21875                           as poor    1
## 21876                           as port    1
## 21877                      as published    1
## 21878                        as quickly    1
## 21879                      as requested    1
## 21880                         as runway    1
## 21881                        as serious    1
## 21882                            as she    1
## 21883                           as slow    1
## 21884                          as smoke    1
## 21885                        as spatial    1
## 21886                          as there    1
## 21887                          as thick    1
## 21888                       as training    1
## 21889                          as trees    1
## 21890                          as usual    1
## 21891                           as were    1
## 21892                          as whirl    1
## 21893                          asad air    1
## 21894                      ascend again    1
## 21895                   ascend followed    1
## 21896                       ascend from    1
## 21897                        ascend the    1
## 21898                      ascended out    1
## 21899                  ascended through    1
## 21900                      ascending at    1
## 21901                      ascending to    1
## 21902                       ascent that    1
## 21903                         ascent to    1
## 21904                  ascertaining the    1
## 21905                   aseman airlines    1
## 21906                 asheville airport    1
## 21907                        ashiya air    1
## 21908                     ashore struck    1
## 21909                        ashraff 52    1
## 21910                        asian tour    1
## 21911                           ask the    1
## 21912                           ask two    1
## 21913                       asked about    1
## 21914                  asked permission    1
## 21915                         asked the    1
## 21916                        asleep and    1
## 21917                        aspects of    1
## 21918                   asphalt covered    1
## 21919                    asphyxiated by    1
## 21920                   asphyxiated the    1
## 21921                     assembled the    1
## 21922                   assembly's acme    1
## 21923                   assembly became    1
## 21924             assembly contributing    1
## 21925                      assembly for    1
## 21926               assembly inadequate    1
## 21927                 assembly mounting    1
## 21928                      assembly new    1
## 21929                    assembly pilot    1
## 21930                assembly resulting    1
## 21931                assembly separated    1
## 21932                      assembly was    1
## 21933                     assembly when    1
## 21934                    assembly which    1
## 21935                        assess and    1
## 21936                        assess the    1
## 21937                     assessing the    1
## 21938          assessment certification    1
## 21939                    assessment the    1
## 21940                     assessment to    1
## 21941                assigned clearance    1
## 21942                   assigned course    1
## 21943                       assigned in    1
## 21944                    assigned route    1
## 21945                       assigned to    1
## 21946                    assigned track    1
## 21947                         assist in    1
## 21948                    assistance and    1
## 21949                  assistance force    1
## 21950                 assistance struck    1
## 21951                    assistance the    1
## 21952                   assistance they    1
## 21953                assistance without    1
## 21954                 assistant manager    1
## 21955                  assisted takeoff    1
## 21956                    associate wake    1
## 21957              associated circuitry    1
## 21958                   associated rain    1
## 21959                    associated the    1
## 21960                 associated thrust    1
## 21961                 associated washer    1
## 21962                    association in    1
## 21963                  association were    1
## 21964                         assumed a    1
## 21965                       assumed all    1
## 21966                        assumed an    1
## 21967                        assumed by    1
## 21968                   assumed control    1
## 21969                        assumed in    1
## 21970                    assumed manual    1
## 21971                      assumed that    1
## 21972                       assumed was    1
## 21973                       assuming it    1
## 21974                    assuming there    1
## 21975                     assumption of    1
## 21976                   assumption that    1
## 21977             assurance inspector's    1
## 21978                    assurance that    1
## 21979                   assure adequate    1
## 21980                     assure proper    1
## 21981                        assure the    1
## 21982                  assured attitude    1
## 21983                     assured based    1
## 21984                       astride the    1
## 21985                       astrofix to    1
## 21986                  astronaut manley    1
## 21987                      asuncion the    1
## 21988                        aswan area    1
## 21989                     aswan failure    1
## 21990                      asylum after    1
## 21991                asymetrical thrust    1
## 21992                   asymmetric fuel    1
## 21993                     asymmetric go    1
## 21994             asymmetrical elevator    1
## 21995                 asymmetrical flap    1
## 21996                 asymmetrical fuel    1
## 21997            asymmetrical refueling    1
## 21998              asymmetrical reverse    1
## 21999                asymmetrical stall    1
## 22000               asymmetry condition    1
## 22001                      asymmetry in    1
## 22002                asymmetry resulted    1
## 22003                           at 0240    1
## 22004                            at 027    1
## 22005                             at 04    1
## 22006                           at 0622    1
## 22007                           at 0753    1
## 22008                             at 08    1
## 22009                           at 0801    1
## 22010                          at 1,600    1
## 22011                         at 1,800m    1
## 22012                         at 10,000    1
## 22013                         at 10,200    1
## 22014                            at 100    1
## 22015                           at 1000    1
## 22016                         at 11,000    1
## 22017                         at 11,200    1
## 22018                         at 11,600    1
## 22019                         at 11,770    1
## 22020                         at 11,800    1
## 22021                         at 12,300    1
## 22022                         at 13,000    1
## 22023                         at 13,400    1
## 22024                         at 13,500    1
## 22025                         at 134kts    1
## 22026                         at 14,346    1
## 22027                            at 140    1
## 22028                           at 1422    1
## 22029                         at 15,000    1
## 22030                         at 15,150    1
## 22031                            at 155    1
## 22032                            at 158    1
## 22033                           at 1655    1
## 22034                             at 17    1
## 22035                          at 17.10    1
## 22036                          at 171st    1
## 22037                             at 18    1
## 22038                            at 182    1
## 22039                             at 19    1
## 22040                         at 19,000    1
## 22041                              at 2    1
## 22042                        at 2,000ft    1
## 22043                          at 2,100    1
## 22044                          at 2,200    1
## 22045                          at 2,250    1
## 22046                          at 2,460    1
## 22047                          at 2,500    1
## 22048                         at 2,520m    1
## 22049                          at 2,600    1
## 22050                          at 2,700    1
## 22051                         at 2,800m    1
## 22052                          at 2,950    1
## 22053                         at 20,000    1
## 22054                           at 2000    1
## 22055                             at 21    1
## 22056                         at 21,000    1
## 22057                         at 22,000    1
## 22058                          at 22.03    1
## 22059                          at 22.05    1
## 22060                           at 2237    1
## 22061                            at 225    1
## 22062                         at 23,000    1
## 22063                         at 23,900    1
## 22064                            at 230    1
## 22065                         at 24,000    1
## 22066                            at 240    1
## 22067                         at 25,000    1
## 22068                         at 27,200    1
## 22069                            at 270    1
## 22070                             at 29    1
## 22071                              at 3    1
## 22072                      at 3,000feet    1
## 22073                          at 3,556    1
## 22074                          at 3,600    1
## 22075                          at 3,900    1
## 22076                            at 3.4    1
## 22077                         at 33,000    1
## 22078                             at 34    1
## 22079                            at 340    1
## 22080                         at 35,000    1
## 22081                         at 35,400    1
## 22082                            at 350    1
## 22083                             at 36    1
## 22084                         at 36,000    1
## 22085                         at 37,000    1
## 22086                         at 39,000    1
## 22087                          at 4,200    1
## 22088                          at 4,250    1
## 22089                          at 4,355    1
## 22090                          at 4,600    1
## 22091                          at 4,700    1
## 22092                          at 4,800    1
## 22093                            at 40m    1
## 22094                         at 41,000    1
## 22095                             at 45    1
## 22096                            at 483    1
## 22097                          at 5,400    1
## 22098                          at 5,500    1
## 22099                          at 5,900    1
## 22100                             at 50    1
## 22101                          at 6,100    1
## 22102                          at 6,120    1
## 22103                          at 6,300    1
## 22104                          at 6,400    1
## 22105                          at 6,560    1
## 22106                          at 6,700    1
## 22107                          at 6,740    1
## 22108                             at 60    1
## 22109                           at 6000    1
## 22110                           at 6800    1
## 22111                          at 7,450    1
## 22112                          at 7,800    1
## 22113                          at 8,200    1
## 22114                          at 800ft    1
## 22115                          at 9,200    1
## 22116                          at 9,646    1
## 22117                          at 9,900    1
## 22118                          at 9.000    1
## 22119                           at 9000    1
## 22120                            at aad    1
## 22121                            at abu    1
## 22122                           at aden    1
## 22123                        at agunish    1
## 22124                          at akron    1
## 22125                        at alameda    1
## 22126                    at albuquerque    1
## 22127                         at almaty    1
## 22128                       at anderson    1
## 22129                        at anjouan    1
## 22130                   at antananarivo    1
## 22131                            at any    1
## 22132                       at approach    1
## 22133                        at ardmore    1
## 22134                         at around    1
## 22135                        at artigas    1
## 22136                          at aswan    1
## 22137                        at atalaya    1
## 22138                         at athens    1
## 22139                           at ayan    1
## 22140                         at bagram    1
## 22141                         at baguio    1
## 22142                        at bahrain    1
## 22143                          at balad    1
## 22144                        at baldwin    1
## 22145                            at ban    1
## 22146                   at bandaranaike    1
## 22147                        at bangoka    1
## 22148                       at barskoon    1
## 22149                         at baucau    1
## 22150                        at belfast    1
## 22151                       at belgrade    1
## 22152                        at benazir    1
## 22153                        at benning    1
## 22154                           at bert    1
## 22155                    at bhattedanda    1
## 22156                       at bordeaux    1
## 22157                           at bost    1
## 22158                       at brasilia    1
## 22159                    at brazzaville    1
## 22160                          at bring    1
## 22161                      at brussel's    1
## 22162                           at buga    1
## 22163                         at bukavu    1
## 22164                             at by    1
## 22165                            at cap    1
## 22166                    at chachapoyas    1
## 22167                    at charleville    1
## 22168                      at chicago's    1
## 22169                   at chilpancingo    1
## 22170                          at chita    1
## 22171                          at chuuk    1
## 22172                     at cincinnati    1
## 22173                          at clark    1
## 22174                      at clearlake    1
## 22175                      at cleveland    1
## 22176                          at close    1
## 22177                         at cofins    1
## 22178                         at cognac    1
## 22179                       at cointrin    1
## 22180                       at critical    1
## 22181                         at cruise    1
## 22182                        at crusing    1
## 22183                           at cuba    1
## 22184                       at curitiba    1
## 22185                          at dakar    1
## 22186                         at dallas    1
## 22187                          at daulo    1
## 22188                         at denver    1
## 22189                            at des    1
## 22190                        at detroit    1
## 22191                          at eagle    1
## 22192                            at eas    1
## 22193                      at eindhoven    1
## 22194                           at elko    1
## 22195                            at end    1
## 22196                      at etimeagut    1
## 22197                      at executive    1
## 22198                      at fairbanks    1
## 22199                      at fairchild    1
## 22200                          at fargo    1
## 22201                          at fat'h    1
## 22202                          at fault    1
## 22203                       at ferihegy    1
## 22204                         at findel    1
## 22205                           at fine    1
## 22206                          at first    1
## 22207                          at fl187    1
## 22208                          at fl190    1
## 22209                          at fl290    1
## 22210                          at fl340    1
## 22211                           at fl85    1
## 22212                           at fl90    1
## 22213                         at flight    1
## 22214                      at florencia    1
## 22215                            at fly    1
## 22216                         at fresno    1
## 22217                        at gambell    1
## 22218                         at gander    1
## 22219                         at geneva    1
## 22220                          at gimli    1
## 22221                           at goma    1
## 22222                          at great    1
## 22223                    at guadalajara    1
## 22224                           at guam    1
## 22225                      at guangzhou    1
## 22226                      at guildford    1
## 22227                       at gunpoint    1
## 22228                         at gyumri    1
## 22229                        at halifax    1
## 22230                         at havana    1
## 22231                     at heathfield    1
## 22232                         at heller    1
## 22233                           at home    1
## 22234                          at homer    1
## 22235                       at honolulu    1
## 22236                     at huntsville    1
## 22237                       at idlewild    1
## 22238                        at ikustsk    1
## 22239                       at ilopango    1
## 22240                   at indianapolis    1
## 22241                   at insufficient    1
## 22242                        at isfanan    1
## 22243                        at isparta    1
## 22244                        at jakarta    1
## 22245                        at juliaca    1
## 22246                         at juneau    1
## 22247                        at kahuiui    1
## 22248                         at kampot    1
## 22249                        at kanawha    1
## 22250                         at kardla    1
## 22251                           at kato    1
## 22252                          at kazan    1
## 22253                       at kiangwan    1
## 22254                         at kimhae    1
## 22255                          at kimpo    1
## 22256                      at kincolith    1
## 22257                       at kirtland    1
## 22258                        at klyuchi    1
## 22259                          at kosti    1
## 22260                         at kotika    1
## 22261                          at lagos    1
## 22262                      at lakehurst    1
## 22263                       at lakhurst    1
## 22264                        at laramie    1
## 22265                        at larissa    1
## 22266                            at lax    1
## 22267                            at lee    1
## 22268                           at lift    1
## 22269                        at liftoff    1
## 22270                       at likouala    1
## 22271                           at lima    1
## 22272                        at limoges    1
## 22273                      at lindbergh    1
## 22274                         at little    1
## 22275                      at ljubljana    1
## 22276                        at llandow    1
## 22277                       at lockheed    1
## 22278                           at long    1
## 22279                        at lookout    1
## 22280                         at lucapa    1
## 22281                      at luluaburg    1
## 22282                        at lunghwa    1
## 22283                         at lympne    1
## 22284                         at mactan    1
## 22285                        at madison    1
## 22286                         at madrid    1
## 22287                          at malta    1
## 22288                         at manaus    1
## 22289                      at mangalore    1
## 22290                         at manila    1
## 22291                        at maturin    1
## 22292                        at maximum    1
## 22293                       at mccarran    1
## 22294                          at medan    1
## 22295                       at mehrabad    1
## 22296                          at miami    1
## 22297                         at miller    1
## 22298                        at mineral    1
## 22299                    at minneapolis    1
## 22300                           at miri    1
## 22301                        at mitãƒâº    1
## 22302                       at mofadisu    1
## 22303                        at moffett    1
## 22304                         at mostar    1
## 22305                          at mount    1
## 22306                             at mt    1
## 22307                         at muncho    1
## 22308                            at mus    1
## 22309                         at nagpur    1
## 22310                           at naha    1
## 22311                        at nanyman    1
## 22312                       at ndjamena    1
## 22313                            at nea    1
## 22314                           at nice    1
## 22315                             at no    1
## 22316                         at normal    1
## 22317                      at northwest    1
## 22318                      at nouasseur    1
## 22319                         at nyaung    1
## 22320                          at obock    1
## 22321                          at ocean    1
## 22322                          at ohrid    1
## 22323                        at okinawa    1
## 22324                          at olaya    1
## 22325                           at once    1
## 22326                            at one    1
## 22327                             at or    1
## 22328                           at orly    1
## 22329                         at oshima    1
## 22330                           at pago    1
## 22331                          at palay    1
## 22332                      at paranaque    1
## 22333                          at paris    1
## 22334                          at pasco    1
## 22335                          at patna    1
## 22336                         at payham    1
## 22337                      at penshurst    1
## 22338                   at philadelphia    1
## 22339                           at pisa    1
## 22340                          at piura    1
## 22341                         at pointe    1
## 22342                           at poza    1
## 22343                        at preston    1
## 22344                      at prestwick    1
## 22345                       at pucallpa    1
## 22346                            at qui    1
## 22347                          at quito    1
## 22348                    at rattlesnake    1
## 22349                        at reduced    1
## 22350                          at right    1
## 22351                         at rijeka    1
## 22352                           at risk    1
## 22353                         at romney    1
## 22354                         at rostov    1
## 22355                       at rotation    1
## 22356                        at russian    1
## 22357                         at ruteng    1
## 22358                              at s    1
## 22359                         at saigon    1
## 22360                           at sale    1
## 22361                           at salt    1
## 22362                         at sampit    1
## 22363                       at sandoway    1
## 22364                           at seat    1
## 22365                        at seattle    1
## 22366                          at serra    1
## 22367                        at shannon    1
## 22368                        at sharjah    1
## 22369                          at sioux    1
## 22370                         at skagon    1
## 22371                        at skniliv    1
## 22372                       at skwentna    1
## 22373                       at skyguide    1
## 22374                           at slow    1
## 22375                       at smolensk    1
## 22376                    at southampton    1
## 22377                          at start    1
## 22378                        at station    1
## 22379                            at ste    1
## 22380                     at strezhevoy    1
## 22381                       at sulaiman    1
## 22382                       at taipei's    1
## 22383                        at takeoff    1
## 22384                         at talodi    1
## 22385                    at tamanrasset    1
## 22386                   at temperatures    1
## 22387                           at time    1
## 22388                          at tingo    1
## 22389                         at tintic    1
## 22390                         at tirana    1
## 22391                      at toncontin    1
## 22392                        at trabzon    1
## 22393                       at trinidad    1
## 22394                         at triple    1
## 22395                        at tripoli    1
## 22396                         at tumaco    1
## 22397                           at tura    1
## 22398                          at turin    1
## 22399                            at u.s    1
## 22400                             at up    1
## 22401                             at us    1
## 22402                            at v.c    1
## 22403                             at v1    1
## 22404                             at v2    1
## 22405                       at valencia    1
## 22406                            at van    1
## 22407                  at villavicencio    1
## 22408                         at walker    1
## 22409                         at wamena    1
## 22410                        at warmera    1
## 22411                         at warsaw    1
## 22412                         at warton    1
## 22413                     at washington    1
## 22414                           at west    1
## 22415                       at westover    1
## 22416                        at whuan's    1
## 22417                        at whyalla    1
## 22418                        at windsor    1
## 22419                         at zurich    1
## 22420                     atalaya beach    1
## 22421                         atc after    1
## 22422                          atc also    1
## 22423                      atc although    1
## 22424                        atc became    1
## 22425                       atc causing    1
## 22426                     atc clearance    1
## 22427                       atc cleared    1
## 22428                      atc confused    1
## 22429                       atc crashed    1
## 22430                       atc descent    1
## 22431                        atc didn't    1
## 22432                        atc during    1
## 22433                        atc errors    1
## 22434                    atc facilities    1
## 22435                      atc facility    1
## 22436                        atc failed    1
## 22437                          atc fell    1
## 22438                           atc for    1
## 22439                          atc gave    1
## 22440                            atc in    1
## 22441                  atc instructions    1
## 22442                            atc it    1
## 22443                           atc not    1
## 22444                       atc noticed    1
## 22445                            atc or    1
## 22446                         atc prior    1
## 22447                    atc procedural    1
## 22448                    atc procedures    1
## 22449                  atc questionable    1
## 22450                         atc radar    1
## 22451                        atc sector    1
## 22452                        atc should    1
## 22453                  atc specifically    1
## 22454                        atc struck    1
## 22455                        atc system    1
## 22456                       atc systems    1
## 22457                         atc tapes    1
## 22458                          atc then    1
## 22459                         atc tower    1
## 22460                       atc trainee    1
## 22461                         atc tried    1
## 22462                         atc while    1
## 22463                           atc.ã â    1
## 22464                      atcs crashed    1
## 22465                         athens by    1
## 22466                        athens cvr    1
## 22467                 athens structural    1
## 22468                      athens while    1
## 22469                        atlanta on    1
## 22470                      atlantic 100    1
## 22471                      atlantic 300    1
## 22472                        atlantic a    1
## 22473                    atlantic after    1
## 22474                      atlantic and    1
## 22475                     atlantic city    1
## 22476                    atlantic coast    1
## 22477                   atlantic during    1
## 22478                   atlantic flight    1
## 22479                  atlantic flilght    1
## 22480                    atlantic never    1
## 22481                       atlantic on    1
## 22482                atlantic passenger    1
## 22483                   atlantic treaty    1
## 22484                    atlantic while    1
## 22485                    atlas mountain    1
## 22486                     atlitiude and    1
## 22487                 atmospheric icing    1
## 22488                      atomic bombs    1
## 22489                          atop fog    1
## 22490                        atop water    1
## 22491                            atr 42    1
## 22492                     atr incidents    1
## 22493                         atr42 and    1
## 22494                  ats instructions    1
## 22495                            ats to    1
## 22496                      attach angle    1
## 22497                        attach the    1
## 22498                   attachment bolt    1
## 22499                 attachment clevis    1
## 22500                    attachment pin    1
## 22501                 attachment screws    1
## 22502              attachment structure    1
## 22503                   attachments was    1
## 22504                         attack at    1
## 22505                    attack crashed    1
## 22506                     attack eleven    1
## 22507                        attack low    1
## 22508                      attack prior    1
## 22509                    attack sensors    1
## 22510                     attack singer    1
## 22511                       attack that    1
## 22512                        attack the    1
## 22513                  attacked because    1
## 22514                      attacks over    1
## 22515                   attain adequate    1
## 22516                   attain remedial    1
## 22517                        attain the    1
## 22518                      attained and    1
## 22519                       attained by    1
## 22520                    attained prior    1
## 22521                   attaining 5,000    1
## 22522                   attawapiskat to    1
## 22523                       attemped go    1
## 22524                      attemping an    1
## 22525                      attempt also    1
## 22526                        attempt as    1
## 22527                   attempt because    1
## 22528                    attempt bounce    1
## 22529                  attempt breaking    1
## 22530                       attempt but    1
## 22531                     attempt cause    1
## 22532                attempt controlled    1
## 22533                attempt detonation    1
## 22534                     attempt ended    1
## 22535                       attempt fan    1
## 22536              attempt hydroplaning    1
## 22537                  attempt improper    1
## 22538                 attempt involving    1
## 22539                      attempt lack    1
## 22540                      attempt loss    1
## 22541                      attempt lost    1
## 22542                       attempt may    1
## 22543              attempt misjudgement    1
## 22544                        attempt no    1
## 22545                        attempt of    1
## 22546                        attempt on    1
## 22547                   attempt overran    1
## 22548                attempt procedural    1
## 22549                      attempt they    1
## 22550                    attempt unwise    1
## 22551                      attempt when    1
## 22552                     attempt while    1
## 22553                   attempted abort    1
## 22554                  attempted before    1
## 22555                   attempted below    1
## 22556                  attempted during    1
## 22557               attempted emergency    1
## 22558                     attempted for    1
## 22559                    attempted from    1
## 22560                attempted manually    1
## 22561                attempted recovery    1
## 22562                  attempted return    1
## 22563                  attempted safety    1
## 22564                     attempted the    1
## 22565                   attempted three    1
## 22566                  attempted visual    1
## 22567                    attempted when    1
## 22568                      attemptin to    1
## 22569                    attempting and    1
## 22570                attempting another    1
## 22571                    attempting for    1
## 22572                   attempting poor    1
## 22573                    attempting the    1
## 22574                    attempting too    1
## 22575                  attempting touch    1
## 22576                    attemptiong to    1
## 22577                  attempts crashed    1
## 22578                     attempts crew    1
## 22579                   attempts during    1
## 22580                       attempts on    1
## 22581                    attempts under    1
## 22582                     attempts were    1
## 22583                    attemptting to    1
## 22584                      attemting an    1
## 22585                        attend his    1
## 22586                      attendant 22    1
## 22587                 attendant andreas    1
## 22588                     attendant c.b    1
## 22589                 attendant drowned    1
## 22590                    attendant from    1
## 22591                attendant jumpseat    1
## 22592                  attendant manual    1
## 22593                    attendant onto    1
## 22594                attendant reported    1
## 22595                      attendant to    1
## 22596                     attendant was    1
## 22597                   attendant while    1
## 22598                     attendant who    1
## 22599                    attendants had    1
## 22600              attendants partially    1
## 22601               attendants survived    1
## 22602                     attendants to    1
## 22603                       attended an    1
## 22604                   attended annual    1
## 22605                     attending the    1
## 22606                 attention between    1
## 22607                  attention during    1
## 22608                      attention of    1
## 22609               attention resulting    1
## 22610                     attention the    1
## 22611                     attention was    1
## 22612                        attitude 2    1
## 22613                        attitude 5    1
## 22614                       attitude 54    1
## 22615                 attitude abnormal    1
## 22616                 attitude altitude    1
## 22617                       attitude as    1
## 22618                   attitude banked    1
## 22619                   attitude burned    1
## 22620                      attitude but    1
## 22621                  attitude control    1
## 22622                  attitude crashed    1
## 22623                      attitude due    1
## 22624                   attitude during    1
## 22625                      attitude for    1
## 22626                     attitude gust    1
## 22627              attitude immediately    1
## 22628                attitude increased    1
## 22629                attitude indicator    1
## 22630              attitude information    1
## 22631              attitude instruments    1
## 22632                  attitude killing    1
## 22633                     attitude most    1
## 22634              attitude orientation    1
## 22635                 attitude pitching    1
## 22636                 attitude possible    1
## 22637              attitude progressive    1
## 22638               attitude protection    1
## 22639                     attitude shot    1
## 22640                  attitude spatial    1
## 22641                 attitude spinning    1
## 22642                    attitude stall    1
## 22643                 attitude stalling    1
## 22644                 attitude striking    1
## 22645                  attitude through    1
## 22646               attitude throughout    1
## 22647                       attitude to    1
## 22648                    attitude until    1
## 22649                     attitude when    1
## 22650                    attitude which    1
## 22651                      attitudes of    1
## 22652                 attract attention    1
## 22653                       attract the    1
## 22654                    attributed the    1
## 22655                         au prince    1
## 22656                     audible alarm    1
## 22657                     audible stall    1
## 22658                    audible system    1
## 22659                      audie murphy    1
## 22660                            aug 31    1
## 22661                       august 2003    1
## 22662                       august 2005    1
## 22663                         august 27    1
## 22664                          august 4    1
## 22665                      aural signal    1
## 22666                    aural warnings    1
## 22667                   aurora borealis    1
## 22668              aurora international    1
## 22669                     australia but    1
## 22670                      australia it    1
## 22671                     australia the    1
## 22672                      australia to    1
## 22673                    australian and    1
## 22674               australian military    1
## 22675                australila crashed    1
## 22676                   authorities and    1
## 22677             authorities confirmed    1
## 22678                  authorities lack    1
## 22679              authorities reported    1
## 22680                 authorities until    1
## 22681                      authority in    1
## 22682                    authority when    1
## 22683              authorization taxied    1
## 22684                       authorize a    1
## 22685                     authorized by    1
## 22686              authorized intrusion    1
## 22687                   authorized left    1
## 22688               authorized minimums    1
## 22689                   authorized only    1
## 22690                 authorized person    1
## 22691              authorized resulting    1
## 22692            authorized transponder    1
## 22693                     authroized to    1
## 22694                         auto body    1
## 22695                        auto brake    1
## 22696                      auto feather    1
## 22697                       auto flight    1
## 22698                        auto parts    1
## 22699                     auto position    1
## 22700                      auto salvage    1
## 22701                     auto worker's    1
## 22702              autobrake procedures    1
## 22703                  autobrake system    1
## 22704                 autofeather after    1
## 22705                   autofeather and    1
## 22706              autofeather occurred    1
## 22707                    autofeather of    1
## 22708                autofeather sensor    1
## 22709                 autofeathered the    1
## 22710                automated aircraft    1
## 22711                 automated message    1
## 22712                 automated systems    1
## 22713                 automated warning    1
## 22714                 automatic coupled    1
## 22715                      automatic go    1
## 22716                    automatic nose    1
## 22717                   automatic pilot    1
## 22718                   automatic pitch    1
## 22719                 automatic spoiler    1
## 22720                automatic throttle    1
## 22721            automatic transferring    1
## 22722                 automatically cut    1
## 22723        automatically disconnected    1
## 22724             automatically recover    1
## 22725                 automobile struck    1
## 22726              automobiles decision    1
## 22727           autopilot automatically    1
## 22728                 autopilot because    1
## 22729                   autopilot being    1
## 22730                     autopilot but    1
## 22731                  autopilot caused    1
## 22732                 autopilot control    1
## 22733            autopilot disconnected    1
## 22734           autopilot disengagement    1
## 22735             autopilot disengaging    1
## 22736                 autopilot engaged    1
## 22737                 autopilot instead    1
## 22738                 autopilot linkage    1
## 22739                   autopilot might    1
## 22740                   autopilot panel    1
## 22741                  autopilot system    1
## 22742                   autopilot under    1
## 22743                     autopilot was    1
## 22744                   autopilot which    1
## 22745                    autopilot with    1
## 22746                     autopilot yaw    1
## 22747                   autorotated and    1
## 22748              autorotation fifteen    1
## 22749                  autothrottle and    1
## 22750              autothrottle engaged    1
## 22751               autothrottle system    1
## 22752                 autothrottle were    1
## 22753             autothrottles engaged    1
## 22754                   auxiliary power    1
## 22755                   auxillary tanks    1
## 22756                  auxilliary tanks    1
## 22757                          avail as    1
## 22758                   available after    1
## 22759               available alternate    1
## 22760                     available and    1
## 22761                      available at    1
## 22762                  available backup    1
## 22763                 available because    1
## 22764            available contributing    1
## 22765                    available cues    1
## 22766                     available due    1
## 22767                available evidence    1
## 22768                  available flight    1
## 22769                    available fuel    1
## 22770                 available landing    1
## 22771                 available navaids    1
## 22772                 available reverse    1
## 22773                  available runway    1
## 22774                   available which    1
## 22775                        avala hill    1
## 22776                      avalanche on    1
## 22777                   avalanche which    1
## 22778                            ave in    1
## 22779                    avenida miguel    1
## 22780                      average rate    1
## 22781                    average weight    1
## 22782                           avert a    1
## 22783                      avia express    1
## 22784             aviation's inadequate    1
## 22785                 aviation accident    1
## 22786                  aviation brigade    1
## 22787                  aviation crashed    1
## 22788                  aviation experts    1
## 22789                      aviation gas    1
## 22790                 aviation gasoline    1
## 22791                aviation officials    1
## 22792             aviation organization    1
## 22793               aviation regulation    1
## 22794              aviation regulations    1
## 22795                    aviation rules    1
## 22796                aviation standards    1
## 22797                     aviation unit    1
## 22798                      aviator jean    1
## 22799             aviodance opportunity    1
## 22800                          aviv the    1
## 22801                     avoid another    1
## 22802                     avoid gunfire    1
## 22803                      avoid higher    1
## 22804                     avoid hitting    1
## 22805                          avoid it    1
## 22806                    avoid military    1
## 22807                     avoid objects    1
## 22808                avoid overshooting    1
## 22809                         avoid pan    1
## 22810                        avoid poor    1
## 22811                   avoid procedure    1
## 22812                  avoid procedures    1
## 22813                       avoid storm    1
## 22814                    avoid striking    1
## 22815                     avoid traffic    1
## 22816                       avoid trees    1
## 22817                     avoid weather    1
## 22818                     avoid workers    1
## 22819                 avoidable weather    1
## 22820             avoidance maneuvering    1
## 22821                 avoidance manuver    1
## 22822             avoidance opportunity    1
## 22823              avoidance procedures    1
## 22824                     avoidance the    1
## 22825                 avoidance warning    1
## 22826                    avoidance with    1
## 22827                         avoided a    1
## 22828                     avoided blame    1
## 22829                       avoided the    1
## 22830                      avoiding and    1
## 22831                  avoiding cumulus    1
## 22832                         avro york    1
## 22833                      awaiting for    1
## 22834                         awake for    1
## 22835                       awake using    1
## 22836                         awards of    1
## 22837                         aware ran    1
## 22838                      awareness at    1
## 22839                      awareness by    1
## 22840                  awareness during    1
## 22841                 awareness failure    1
## 22842                    awareness from    1
## 22843                     awareness one    1
## 22844                 awareness spatial    1
## 22845                  awareness struck    1
## 22846                 awareness warning    1
## 22847                   awareness which    1
## 22848            awareness.this started    1
## 22849                        away after    1
## 22850                          away and    1
## 22851                          away but    1
## 22852                      away causing    1
## 22853                          away due    1
## 22854                       away during    1
## 22855                     away exploded    1
## 22856                         away flew    1
## 22857                           away in    1
## 22858                     away properly    1
## 22859                           away to    1
## 22860                   awkward landing    1
## 22861                      awkwardly by    1
## 22862                          ayan atc    1
## 22863                  aycock's medical    1
## 22864                  ayudhya aircraft    1
## 22865                    azari district    1
## 22866                    azores islands    1
## 22867                         azores no    1
## 22868                        azores the    1
## 22869                         azores to    1
## 22870                       azucar peak    1
## 22871                      azur airport    1
## 22872                              b 34    1
## 22873                             b 707    1
## 22874                             b 737    1
## 22875                               b a    1
## 22876                             b all    1
## 22877                              b an    1
## 22878                             b was    1
## 22879                             b why    1
## 22880                          b767 200    1
## 22881                       babaker the    1
## 22882                        babia gora    1
## 22883                           back as    1
## 22884                       back course    1
## 22885                        back drove    1
## 22886                         back east    1
## 22887                       back firing    1
## 22888                         back from    1
## 22889                          back his    1
## 22890                         back near    1
## 22891                         back once    1
## 22892                         back onto    1
## 22893                       back pelvis    1
## 22894                     back pressure    1
## 22895                         back ramp    1
## 22896                       back rodney    1
## 22897                      back slicing    1
## 22898                         back this    1
## 22899                      back through    1
## 22900                        back track    1
## 22901                         back when    1
## 22902                        back winds    1
## 22903                        back yards    1
## 22904                      backfire the    1
## 22905                    backfiring the    1
## 22906                       backing out    1
## 22907                    backup battery    1
## 22908                      backup means    1
## 22909                       backup tank    1
## 22910                 backwards crashed    1
## 22911                      baco located    1
## 22912                        baco while    1
## 22913                       bacolod but    1
## 22914                    bad directions    1
## 22915                        bad engine    1
## 22916                          bad fire    1
## 22917                      badly burned    1
## 22918                     badly damaged    1
## 22919                  badly fragmented    1
## 22920                     badly injured    1
## 22921                      badly loaded    1
## 22922                       baessell it    1
## 22923                   bag transferred    1
## 22924                   bagasin overran    1
## 22925                      bagdarin the    1
## 22926                      bagdogra afs    1
## 22927                      baggage door    1
## 22928                  baggage handlers    1
## 22929                  baggage handling    1
## 22930                      baggage that    1
## 22931                     baggage while    1
## 22932                      baggage with    1
## 22933                   baghdad shortly    1
## 22934                      baghdad shot    1
## 22935                       baghdad the    1
## 22936                        baghdad to    1
## 22937                        bagram air    1
## 22938                        bagram the    1
## 22939                      bagram while    1
## 22940                  bagrami district    1
## 22941                         bags were    1
## 22942                        baguio the    1
## 22943                     bahawalpur 60    1
## 22944                          bahia de    1
## 22945                      bahia solano    1
## 22946                       bahia while    1
## 22947             bahrain international    1
## 22948                       bahrain the    1
## 22949                     baiao parente    1
## 22950                          bajac 36    1
## 22951                   bakersfield and    1
## 22952                   baku instrument    1
## 22953                         balad air    1
## 22954                       balance and    1
## 22955              balance calculations    1
## 22956                 balance condition    1
## 22957                       balance for    1
## 22958                       balance the    1
## 22959                    balanced plane    1
## 22960                  balancing forces    1
## 22961                       balboa park    1
## 22962                        bald eagle    1
## 22963                     baldwin field    1
## 22964                          bali due    1
## 22965                bali international    1
## 22966                        bali while    1
## 22967                    balked landing    1
## 22968                  balkhash crashed    1
## 22969                        ball joint    1
## 22970                         ball team    1
## 22971                          ball was    1
## 22972                    ballast raised    1
## 22973                   ballon.went out    1
## 22974                       balloon and    1
## 22975                   balloon crashed    1
## 22976                    balloon struck    1
## 22977                    balsalt island    1
## 22978                      baltimore at    1
## 22979                      baltimore to    1
## 22980              baltimore washington    1
## 22981                   baltimore while    1
## 22982                    baltz survived    1
## 22983                     bamboo forest    1
## 22984                       ban applied    1
## 22985                            ban ta    1
## 22986                      banahaur the    1
## 22987                 banana plantation    1
## 22988                        band among    1
## 22989                         band andy    1
## 22990                            band e    1
## 22991                       band killed    1
## 22992                       band leader    1
## 22993                    band returning    1
## 22994                      band trumpet    1
## 22995                  bandaranaike the    1
## 22996                bandeirante planes    1
## 22997                        bandi hill    1
## 22998                          bang and    1
## 22999                   bangkok airport    1
## 23000                bangkok detonation    1
## 23001                   bangkok failure    1
## 23002             bangkok international    1
## 23003             bangoka international    1
## 23004                    bangui airport    1
## 23005                    bangui because    1
## 23006                        bangui the    1
## 23007                           bank 54    1
## 23008                            bank a    1
## 23009                        bank about    1
## 23010                        bank after    1
## 23011                           bank an    1
## 23012                   bank attempting    1
## 23013                       bank before    1
## 23014                      bank channel    1
## 23015                      bank control    1
## 23016               bank disintegration    1
## 23017                    bank employees    1
## 23018                         bank from    1
## 23019                         bank fuel    1
## 23020                           bank he    1
## 23021                      bank heavily    1
## 23022                           bank in    1
## 23023                    bank increased    1
## 23024                         bank lack    1
## 23025                          bank one    1
## 23026                      bank shortly    1
## 23027                       bank struck    1
## 23028                         bank that    1
## 23029                       bank trying    1
## 23030                        bank until    1
## 23031                        bank which    1
## 23032                        bank while    1
## 23033                         banked 10    1
## 23034                          banked 4    1
## 23035                         banked 60    1
## 23036                        banked and    1
## 23037                      banked angle    1
## 23038                       banked hard    1
## 23039                         banked in    1
## 23040                     banked ninety    1
## 23041                  banking customer    1
## 23042                     banking right    1
## 23043                   banking steeply    1
## 23044                     banning house    1
## 23045                          bar flew    1
## 23046                          bar kays    1
## 23047                  baranta mountain    1
## 23048                      barbados the    1
## 23049                        barbara de    1
## 23050                   barbara francis    1
## 23051                        barbara in    1
## 23052                   barcelona spain    1
## 23053                        barely 100    1
## 23054                    barely cleared    1
## 23055                       barely hear    1
## 23056                        barely off    1
## 23057                       barely rose    1
## 23058                       barely took    1
## 23059                      barges while    1
## 23060                       bari harbor    1
## 23061                        bari italy    1
## 23062                      barley field    1
## 23063                     barn adjacent    1
## 23064              barnstable municipal    1
## 23065                  barnstormer john    1
## 23066              barometric altimeter    1
## 23067                        baron lost    1
## 23068                   barrackpore afs    1
## 23069                    barre scranton    1
## 23070                        barrel and    1
## 23071                    barreling onto    1
## 23072                     barrells shot    1
## 23073                barrier inadequate    1
## 23074                   barrier mission    1
## 23075                barrigada bursting    1
## 23076                      barrow after    1
## 23077                     barrow alaska    1
## 23078                   barrule located    1
## 23079                     barskoon pass    1
## 23080                bartholomew salãƒâ    1
## 23081                          basa air    1
## 23082                            base a    1
## 23083                        base after    1
## 23084                           base at    1
## 23085                          base atc    1
## 23086                      base because    1
## 23087                        base cause    1
## 23088                    base converted    1
## 23089                        base dubai    1
## 23090                          base due    1
## 23091                       base engine    1
## 23092                           base he    1
## 23093                            base k    1
## 23094                        base level    1
## 23095                      base members    1
## 23096                         base most    1
## 23097                 base navigational    1
## 23098                           base on    1
## 23099                           base or    1
## 23100                        base pilot    1
## 23101                      base shortly    1
## 23102                         base shot    1
## 23103                          base six    1
## 23104                          base ten    1
## 23105                           base to    1
## 23106                          base two    1
## 23107                         base when    1
## 23108                        base while    1
## 23109                         based low    1
## 23110                  based occidental    1
## 23111                      based safety    1
## 23112                     based techint    1
## 23113                        based upon    1
## 23114                  basement despite    1
## 23115                    basic maneuver    1
## 23116                  basic procedural    1
## 23117                        basin this    1
## 23118                       bass strait    1
## 23119                     bassins about    1
## 23120                          basso 20    1
## 23121                   batagay airport    1
## 23122                         bates u.s    1
## 23123                         bates was    1
## 23124               batesville arkansas    1
## 23125                       baton rouge    1
## 23126                     batten during    1
## 23127                   batteries after    1
## 23128                 batteries ditched    1
## 23129                     batteries for    1
## 23130                      batteries in    1
## 23131                  batteries lasted    1
## 23132                  batteries thirty    1
## 23133                    batteries were    1
## 23134                 battery generator    1
## 23135                        battery or    1
## 23136                   battery standby    1
## 23137                       battery the    1
## 23138                     battery which    1
## 23139                    battle between    1
## 23140                        battled to    1
## 23141                         battles a    1
## 23142                    batuco crashed    1
## 23143                    batumi airport    1
## 23144                        batumi and    1
## 23145                        batumi atc    1
## 23146                        batumi the    1
## 23147                     baucau during    1
## 23148                   baumhauer among    1
## 23149                         bay 1,000    1
## 23150                            bay 12    1
## 23151                            bay 15    1
## 23152                           bay 150    1
## 23153                           bay 2.5    1
## 23154                             bay 3    1
## 23155                            bay 55    1
## 23156                         bay about    1
## 23157                        bay caught    1
## 23158                        bay during    1
## 23159                        bay failed    1
## 23160                       bay failure    1
## 23161                          bay lack    1
## 23162                       bay molokai    1
## 23163                          bay near    1
## 23164                            bay on    1
## 23165                       bay ontario    1
## 23166                     bay seventeen    1
## 23167                       bay several    1
## 23168                         bay short    1
## 23169                          bay snow    1
## 23170                        bay toward    1
## 23171                           bay two    1
## 23172                        bay waters    1
## 23173                     bayanday when    1
## 23174                         bayou the    1
## 23175                     bazar airport    1
## 23176                  bazzaville while    1
## 23177                             be 13    1
## 23178                            be 155    1
## 23179                            be 200    1
## 23180                      be activated    1
## 23181                        be applied    1
## 23182                       be arrested    1
## 23183                             be at    1
## 23184                       be attached    1
## 23185                     be attributed    1
## 23186                     be authorized    1
## 23187                         be blamed    1
## 23188                        be brought    1
## 23189                        be carried    1
## 23190                         be caused    1
## 23191                      be concluded    1
## 23192                      be conducted    1
## 23193                      be corrected    1
## 23194                      be countered    1
## 23195                    be counterfeit    1
## 23196                        be covered    1
## 23197                        be crossed    1
## 23198                 be decommissioned    1
## 23199                      be decreased    1
## 23200                      be defective    1
## 23201                      be delivered    1
## 23202                      be destroyed    1
## 23203                     be discharged    1
## 23204                        be ditched    1
## 23205                       be diverted    1
## 23206                            be due    1
## 23207                         be easily    1
## 23208                         be engine    1
## 23209                      be evacuated    1
## 23210                   be extinguished    1
## 23211                          be found    1
## 23212                      be fractured    1
## 23213                           be from    1
## 23214                         be gained    1
## 23215                          be glued    1
## 23216                      be hazardous    1
## 23217                       be hijacked    1
## 23218                        be ignited    1
## 23219                     be inadequate    1
## 23220                      be incorrect    1
## 23221                      be initiated    1
## 23222                            be led    1
## 23223                           be left    1
## 23224                        be located    1
## 23225                        be machine    1
## 23226                           be made    1
## 23227                       be manually    1
## 23228                        be misread    1
## 23229                           be much    1
## 23230                         be normal    1
## 23231                            be off    1
## 23232                             be on    1
## 23233                       be overcome    1
## 23234                       be parallel    1
## 23235                      be performed    1
## 23236                          be pilot    1
## 23237                         be plowed    1
## 23238                        be pointed    1
## 23239                           be poor    1
## 23240                      be premature    1
## 23241                         be proven    1
## 23242                        be reached    1
## 23243                    be reactivated    1
## 23244                      be recovered    1
## 23245                       be replaced    1
## 23246                       be reported    1
## 23247                        be rescued    1
## 23248                      be resistant    1
## 23249                       be returned    1
## 23250                       be ruptured    1
## 23251                       be selected    1
## 23252                      be seriously    1
## 23253                            be set    1
## 23254                   be specifically    1
## 23255                         be spoken    1
## 23256                           be suck    1
## 23257                      be sustained    1
## 23258                          be taken    1
## 23259                           be that    1
## 23260                            be too    1
## 23261                       be tortured    1
## 23262                         be trying    1
## 23263                        be turning    1
## 23264                 be uncontrollable    1
## 23265                          be under    1
## 23266                       be unstable    1
## 23267                          bea said    1
## 23268                         beach 1.2    1
## 23269                       beach after    1
## 23270                     beach airport    1
## 23271                         beach and    1
## 23272                          beach at    1
## 23273                   beach continued    1
## 23274                   beach following    1
## 23275                     beach holiday    1
## 23276                      beach houses    1
## 23277                   beach municipal    1
## 23278                        beach near    1
## 23279                        beach next    1
## 23280                          beach of    1
## 23281                          beach on    1
## 23282                       beach short    1
## 23283                     beach shortly    1
## 23284                        beach shot    1
## 23285               beacon broadcasting    1
## 23286                  beacon continued    1
## 23287                   beacon entering    1
## 23288                       beacon even    1
## 23289                     beacon oldham    1
## 23290                      beacon under    1
## 23291                        beacon was    1
## 23292                      beacon while    1
## 23293                        beacons in    1
## 23294                       beacons the    1
## 23295                      beacons were    1
## 23296                    beagle channel    1
## 23297                       beam hadn't    1
## 23298                     beard's creek    1
## 23299                    bearing cashed    1
## 23300                     bearing could    1
## 23301                   bearing failure    1
## 23302                  bearing failures    1
## 23303                        bearing on    1
## 23304                   bearing support    1
## 23305                      bearings and    1
## 23306                       bearings in    1
## 23307                      bearings not    1
## 23308                       bearings to    1
## 23309                       bearingsã â    1
## 23310                       beau allied    1
## 23311                   beauvais france    1
## 23312                        beaver one    1
## 23313                     became almost    1
## 23314                   became apparent    1
## 23315                   became confused    1
## 23316               became disconnected    1
## 23317                 became distracted    1
## 23318                   became embedded    1
## 23319                     became famous    1
## 23320                    became fixated    1
## 23321                       became iced    1
## 23322                   became inverted    1
## 23323                      became known    1
## 23324                     became lodged    1
## 23325                became preoccupied    1
## 23326                         became re    1
## 23327              became significantly    1
## 23328                         became so    1
## 23329                        became the    1
## 23330                   became unstable    1
## 23331                      became worse    1
## 23332                    becaon instead    1
## 23333                       because air    1
## 23334                    because cables    1
## 23335            because communications    1
## 23336                 because hydraulic    1
## 23337                   because several    1
## 23338                     because their    1
## 23339                   because weather    1
## 23340                      because with    1
## 23341                become disoriented    1
## 23342                    become evident    1
## 23343                      become fully    1
## 23344                become ineffective    1
## 23345                become inoperative    1
## 23346                   become inverted    1
## 23347              become progressively    1
## 23348                   become unstable    1
## 23349              becoming disoriented    1
## 23350               becoming distracted    1
## 23351                 becoming inverted    1
## 23352                   becoming lodged    1
## 23353                     becoming semi    1
## 23354                becoming spatially    1
## 23355                  becoming trapped    1
## 23356           becoming uncontrollable    1
## 23357                         bed after    1
## 23358                           bed the    1
## 23359                   bedford england    1
## 23360                        beech 1900    1
## 23361                     beech failure    1
## 23362                         beech was    1
## 23363                     beechcraft at    1
## 23364                beechcraft decided    1
## 23365                    beechcraft was    1
## 23366                         beed road    1
## 23367                   been accidently    1
## 23368                      been accused    1
## 23369                     been admitted    1
## 23370                           been an    1
## 23371                  been anticipated    1
## 23372                           been at    1
## 23373                      been avoided    1
## 23374                        been awake    1
## 23375                      been between    1
## 23376                      been blocked    1
## 23377                      been carried    1
## 23378                     been carrying    1
## 23379                      been checked    1
## 23380                       been chosen    1
## 23381                     been circling    1
## 23382                   been classified    1
## 23383                    been conducive    1
## 23384                   been detectable    1
## 23385                   been discovered    1
## 23386                    been disrupted    1
## 23387                     been drinking    1
## 23388                          been due    1
## 23389                      been erected    1
## 23390                     been exceeded    1
## 23391                    been exhausted    1
## 23392                       been filmed    1
## 23393                        been flown    1
## 23394                       been forced    1
## 23395                        been fully    1
## 23396                        been going    1
## 23397                     been grounded    1
## 23398                     been hampered    1
## 23399                     been hijacked    1
## 23400                          been hit    1
## 23401                   been identified    1
## 23402                     been impacted    1
## 23403                     been informed    1
## 23404                    been initiated    1
## 23405                         been left    1
## 23406                      been located    1
## 23407                       been melted    1
## 23408                        been metal    1
## 23409                     been misfiled    1
## 23410                    been misjudged    1
## 23411                           been no    1
## 23412                           been on    1
## 23413                     been operated    1
## 23414                      been patched    1
## 23415                      been peering    1
## 23416                        been pilot    1
## 23417                       been poured    1
## 23418                          been pre    1
## 23419                  been preoccupied    1
## 23420                     been presumed    1
## 23421                       been proven    1
## 23422                     been provided    1
## 23423                      been reduced    1
## 23424                      been related    1
## 23425                      been removed    1
## 23426                     been repaired    1
## 23427                     been reported    1
## 23428                     been required    1
## 23429                      been rumored    1
## 23430                      been running    1
## 23431                       been rushed    1
## 23432                    been sabotaged    1
## 23433                     been serviced    1
## 23434                      been several    1
## 23435                         been shut    1
## 23436                   been speculated    1
## 23437                     been stressed    1
## 23438                   been sufficient    1
## 23439                   been suggesting    1
## 23440                       been tested    1
## 23441                         been told    1
## 23442                          been too    1
## 23443                     been tracking    1
## 23444                     been training    1
## 23445                  been transferred    1
## 23446                    been triggered    1
## 23447                       been trying    1
## 23448                    been unscrewed    1
## 23449                       been warmed    1
## 23450                       been washed    1
## 23451                      been working    1
## 23452                          befoe it    1
## 23453                   before actually    1
## 23454                      before after    1
## 23455                        before and    1
## 23456                     before anyone    1
## 23457                         before as    1
## 23458                  before attaining    1
## 23459                  before beginning    1
## 23460                      before being    1
## 23461                   before boarding    1
## 23462                   before clipping    1
## 23463                  before colliding    1
## 23464                 before commencing    1
## 23465                    before contact    1
## 23466                    before crashed    1
## 23467                   before delivery    1
## 23468                    before descent    1
## 23469             before disintegrating    1
## 23470                     before diving    1
## 23471                     before ending    1
## 23472                        before eta    1
## 23473                    before exiting    1
## 23474                 before feathering    1
## 23475                       before fire    1
## 23476                     before flames    1
## 23477                     before flying    1
## 23478                        before gca    1
## 23479                      before going    1
## 23480                     before having    1
## 23481                         before he    1
## 23482                  before impacting    1
## 23483                    before knowing    1
## 23484                   before leveling    1
## 23485                     before losing    1
## 23486                     before making    1
## 23487                  before officials    1
## 23488                         before on    1
## 23489                 before performing    1
## 23490                    before reached    1
## 23491                   before required    1
## 23492                   before rescuers    1
## 23493                   before retiring    1
## 23494                    before rolling    1
## 23495                    before running    1
## 23496                   before slamming    1
## 23497                   before smashing    1
## 23498                   before stalling    1
## 23499                   before starting    1
## 23500                   before stopping    1
## 23501                   before striking    1
## 23502                 before succumbing    1
## 23503                   before suddenly    1
## 23504                       before take    1
## 23505                       before them    1
## 23506                      before there    1
## 23507                          began an    1
## 23508                         began and    1
## 23509                     began burning    1
## 23510                      began coming    1
## 23511                     began dumping    1
## 23512                      began flying    1
## 23513                   began following    1
## 23514                         began his    1
## 23515                    began leveling    1
## 23516                     began loosing    1
## 23517                        began near    1
## 23518                        began nine    1
## 23519                     began praying    1
## 23520                     began rapidly    1
## 23521                    began removing    1
## 23522                   began returning    1
## 23523                    began rotating    1
## 23524                    began shutting    1
## 23525                      began taking    1
## 23526                     began turning    1
## 23527                        begich and    1
## 23528                           begin a    1
## 23529                       begining of    1
## 23530                       beginning a    1
## 23531                     beginning its    1
## 23532                      beginning to    1
## 23533                         behalf of    1
## 23534                      behavior and    1
## 23535                behavior deviation    1
## 23536                         behind as    1
## 23537                   behind schedule    1
## 23538                      behind while    1
## 23539                          being 50    1
## 23540                       being added    1
## 23541                    being affected    1
## 23542                    being airborne    1
## 23543                   being attempted    1
## 23544                       being aware    1
## 23545                      being beyond    1
## 23546                     being capable    1
## 23547                        being care    1
## 23548                      being caught    1
## 23549                   being displayed    1
## 23550                 being established    1
## 23551                    being executed    1
## 23552                       being fired    1
## 23553                      being forced    1
## 23554                       being fully    1
## 23555                      being gunned    1
## 23556                     being heavier    1
## 23557                        being high    1
## 23558                       being holed    1
## 23559               being inadvertently    1
## 23560               being incapacitated    1
## 23561                    being informed    1
## 23562                    being ingested    1
## 23563                   being installed    1
## 23564                  being instructed    1
## 23565                  being jettisoned    1
## 23566                       being known    1
## 23567                      being logged    1
## 23568                        being made    1
## 23569                  being manoeuvred    1
## 23570                   being misloaded    1
## 23571                      being moored    1
## 23572                         being off    1
## 23573                      being opened    1
## 23574                     being ordered    1
## 23575                     being outside    1
## 23576                        being over    1
## 23577                   being performed    1
## 23578                      being picked    1
## 23579                       being pilot    1
## 23580                    being possibly    1
## 23581                      being pushed    1
## 23582                    being refueled    1
## 23583                   being restarted    1
## 23584                     being secured    1
## 23585                     being shipped    1
## 23586                          being so    1
## 23587                      being stolen    1
## 23588                   being subjected    1
## 23589                  being supervised    1
## 23590                       being taken    1
## 23591                        being told    1
## 23592                       being towed    1
## 23593                 being transported    1
## 23594                       being under    1
## 23595               being unpressurised    1
## 23596                       being waved    1
## 23597                        being with    1
## 23598                   beinn tharsuinn    1
## 23599                    beirut airport    1
## 23600                     beirut during    1
## 23601                 beirut structural    1
## 23602                 bekessamson while    1
## 23603                          belãƒâ n    1
## 23604                  belated decision    1
## 23605                         belaya in    1
## 23606                     belem airport    1
## 23607                         belem and    1
## 23608                         belem but    1
## 23609                     belem station    1
## 23610                         belem was    1
## 23611                        belfast in    1
## 23612                     belfast while    1
## 23613                     belgrade from    1
## 23614                    belgrade zemun    1
## 23615                         believe a    1
## 23616                believe vietnamese    1
## 23617                        believed a    1
## 23618                   believed caused    1
## 23619                      believing he    1
## 23620                      believing it    1
## 23621                    believing they    1
## 23622                      believing to    1
## 23623                          bell and    1
## 23624                        bell knoll    1
## 23625                     bellcranck in    1
## 23626                 belly compartment    1
## 23627                     belly counted    1
## 23628                       belly first    1
## 23629                        belly into    1
## 23630                        belly land    1
## 23631                      belly landed    1
## 23632                    belo horizonte    1
## 23633                      belonging to    1
## 23634                      below 10,000    1
## 23635                        below 1000    1
## 23636                       below 3,500    1
## 23637                          below 50    1
## 23638                         below 500    1
## 23639                          below an    1
## 23640                         below and    1
## 23641                       below break    1
## 23642                     below company    1
## 23643                          below en    1
## 23644                  below glideslope    1
## 23645                      below lowest    1
## 23646                     below mimimum    1
## 23647                   below minimumns    1
## 23648                        below mont    1
## 23649                         below msa    1
## 23650                      below normal    1
## 23651                    below obstacle    1
## 23652                below obstructions    1
## 23653                          below of    1
## 23654                 below permissible    1
## 23655                   below published    1
## 23656                       below stall    1
## 23657                       below their    1
## 23658                          below v1    1
## 23659                          below v2    1
## 23660                         below vfr    1
## 23661                        below what    1
## 23662                        belt broke    1
## 23663                       belt failed    1
## 23664                         belt sign    1
## 23665                        belt while    1
## 23666                 belts disappeared    1
## 23667                     belts failure    1
## 23668                          belts on    1
## 23669                         belts the    1
## 23670                        ben cauley    1
## 23671                          ben more    1
## 23672                     ben robertson    1
## 23673                    benazir bhutto    1
## 23674                       bending the    1
## 23675                   beneath minimum    1
## 23676                       bengal just    1
## 23677                     bengawan solo    1
## 23678                        beni mered    1
## 23679                  benning military    1
## 23680                    benningham for    1
## 23681                         benson 20    1
## 23682                   berau indonesia    1
## 23683                       bergen from    1
## 23684                         bergen on    1
## 23685                       berlevãƒâ g    1
## 23686                          berlin a    1
## 23687                  berlin premature    1
## 23688                       berlin shot    1
## 23689                         berlin to    1
## 23690                   berm supporting    1
## 23691                     bermuda after    1
## 23692                       bermuda and    1
## 23693                  bermuda official    1
## 23694                        bermuda to    1
## 23695                  bermuda triangle    1
## 23696                       bernales 59    1
## 23697                      bernard pass    1
## 23698                       bert mooney    1
## 23699                    besar mountain    1
## 23700                bessette kennedy's    1
## 23701                       best friend    1
## 23702                           best of    1
## 23703                     beta blocking    1
## 23704                         beta mode    1
## 23705                        better but    1
## 23706                         better in    1
## 23707                         better to    1
## 23708                         betty was    1
## 23709                     between 1,100    1
## 23710                       between 100    1
## 23711                       between 145    1
## 23712                       between 180    1
## 23713                       between 2.5    1
## 23714                    between 22,000    1
## 23715                     between 4,000    1
## 23716                        between an    1
## 23717                    between ceylon    1
## 23718                   between chessel    1
## 23719                    between cities    1
## 23720                  between civilian    1
## 23721                   between control    1
## 23722                   between curacao    1
## 23723                 between elmendorf    1
## 23724                  between florence    1
## 23725                between government    1
## 23726                      between guam    1
## 23727                       between his    1
## 23728                  between hisinchu    1
## 23729                between instrument    1
## 23730                      between lake    1
## 23731                    between muslim    1
## 23732                 between overhauls    1
## 23733                    between pilots    1
## 23734                       between qnh    1
## 23735                 between samarinda    1
## 23736                       between san    1
## 23737                     between santa    1
## 23738                       between sep    1
## 23739                    between sierra    1
## 23740                  between surabaya    1
## 23741                      between this    1
## 23742                 between totkomlos    1
## 23743                     between trees    1
## 23744                     between types    1
## 23745                         beyond 90    1
## 23746                   beyond approved    1
## 23747                   beyond critical    1
## 23748                 beyond experience    1
## 23749                        beyond his    1
## 23750                        beyond mda    1
## 23751                      beyond which    1
## 23752                   beyrough harbor    1
## 23753                             bg 15    1
## 23754                     bhabha father    1
## 23755                     bharatpur the    1
## 23756                  bhattedanda hill    1
## 23757              bhutto international    1
## 23758                          bi plane    1
## 23759                        bibb using    1
## 23760                      bicycle path    1
## 23761                  bicyclist riding    1
## 23762                         big pilot    1
## 23763           bijlmermeer residential    1
## 23764                       bilges were    1
## 23765                       bill graham    1
## 23766                    bill linderman    1
## 23767                    bill strothman    1
## 23768                    billings great    1
## 23769                      billings the    1
## 23770                      bima sumbawa    1
## 23771                         bin under    1
## 23772                   binalud heights    1
## 23773                       binstock 62    1
## 23774                      binstock had    1
## 23775                       binstockã â    1
## 23776                 bintang mountains    1
## 23777                     bintuni while    1
## 23778                         bioko and    1
## 23779                      bird hazards    1
## 23780                bird international    1
## 23781                birds accidentally    1
## 23782                          birds an    1
## 23783                          birds in    1
## 23784                        birds that    1
## 23785                      birds unable    1
## 23786                        birds were    1
## 23787                birmingham overran    1
## 23788            birobidzhan completely    1
## 23789              birthday celebration    1
## 23790                    birthday party    1
## 23791                        biscay the    1
## 23792                       bishkek for    1
## 23793                         bishop to    1
## 23794                          bit into    1
## 23795                        black down    1
## 23796                      black forest    1
## 23797                        black fork    1
## 23798                        black hawk    1
## 23799                        black hole    1
## 23800                    black mountain    1
## 23801                       blacked out    1
## 23802                       blackout of    1
## 23803                   blackwater lake    1
## 23804                      blade damper    1
## 23805                    blade disabled    1
## 23806                         blade due    1
## 23807                      blade during    1
## 23808                      blade failed    1
## 23809                        blade four    1
## 23810                        blade from    1
## 23811                       blade grips    1
## 23812                          blade in    1
## 23813                     blade leading    1
## 23814                          blade on    1
## 23815                  blade penetrated    1
## 23816                   blade punctured    1
## 23817                   blade resulting    1
## 23818                        blade root    1
## 23819                        blade spar    1
## 23820                         blade the    1
## 23821                        blade then    1
## 23822                        blade tips    1
## 23823                       blade while    1
## 23824               blades accidentally    1
## 23825                      blades being    1
## 23826                     blades failed    1
## 23827                   blades flapping    1
## 23828                        blades hit    1
## 23829                         blades of    1
## 23830                        blades one    1
## 23831                       blades stop    1
## 23832                       blades tore    1
## 23833              blades.the resulting    1
## 23834                          blair 27    1
## 23835                        blake mora    1
## 23836                          blame on    1
## 23837                         blamed an    1
## 23838              blanc miscalculation    1
## 23839                      blanc summit    1
## 23840                        blanc with    1
## 23841                   blanca mountain    1
## 23842                      blanca while    1
## 23843                     blancas hills    1
## 23844                   blanco mountain    1
## 23845                       blanco went    1
## 23846                        blanket of    1
## 23847                     blankets this    1
## 23848                     blast damaged    1
## 23849                   blast destroyed    1
## 23850                       blast fence    1
## 23851                    blast probably    1
## 23852                    blaze exploded    1
## 23853                         blaze may    1
## 23854                        bleach and    1
## 23855                         bleed air    1
## 23856                         bleed off    1
## 23857                      bleed valves    1
## 23858                    bleeder valves    1
## 23859                       blenheim in    1
## 23860                         blew away    1
## 23861                      blew causing    1
## 23862                          blew off    1
## 23863                          blew two    1
## 23864                         blind box    1
## 23865                          blind on    1
## 23866                       blind spots    1
## 23867                       blinding by    1
## 23868                  blinding monsoon    1
## 23869                blinding sandstorm    1
## 23870                blinding snowstorm    1
## 23871                blinding whiteness    1
## 23872                       blindly 180    1
## 23873                      blindness or    1
## 23874                    blizzard pilot    1
## 23875                   blizzard scadta    1
## 23876                      blizzard the    1
## 23877                 blizzard wreckage    1
## 23878                         block the    1
## 23879                       blockage of    1
## 23880                        blocked in    1
## 23881                    blocked runway    1
## 23882                   blocking device    1
## 23883                  blocking forward    1
## 23884                 blocking material    1
## 23885                       blocks crew    1
## 23886                   blocks striking    1
## 23887                         blood and    1
## 23888                          blow out    1
## 23889                        blow torch    1
## 23890                    blowdown limit    1
## 23891                      blowing dust    1
## 23892                      blowing snow    1
## 23893                           blown a    1
## 23894                     blown against    1
## 23895                        blown into    1
## 23896                   blown retreaded    1
## 23897                        blowout of    1
## 23898                         blue bell    1
## 23899                        blue ridge    1
## 23900                    bluefields was    1
## 23901                         bluen did    1
## 23902                   blues guitarist    1
## 23903                         bluff and    1
## 23904                   bluff exploding    1
## 23905                    bluff mountain    1
## 23906                     blume spain's    1
## 23907                       blvd twenty    1
## 23908                        blyn while    1
## 23909                           bo rein    1
## 23910                        boa viagem    1
## 23911                          boac and    1
## 23912                        boac crews    1
## 23913                           board a    1
## 23914                  board apparently    1
## 23915                         board did    1
## 23916                      board except    1
## 23917                     board fifteen    1
## 23918                        board fire    1
## 23919                         board has    1
## 23920                          board he    1
## 23921                     board heading    1
## 23922                   board including    1
## 23923                        board said    1
## 23924                    board strongly    1
## 23925                        board they    1
## 23926                         board was    1
## 23927                    board wreckage    1
## 23928                        boarded at    1
## 23929                       boarded the    1
## 23930                      boat invicta    1
## 23931                       boat landed    1
## 23932                           boat on    1
## 23933                      boat plunged    1
## 23934                         boat sank    1
## 23935                       boat struck    1
## 23936                        boat wakes    1
## 23937                          boat was    1
## 23938                         boat when    1
## 23939                         boats and    1
## 23940                     boats however    1
## 23941                         boats the    1
## 23942                        boats with    1
## 23943                        bobby neal    1
## 23944                       boca during    1
## 23945                      bodies found    1
## 23946                         bodies or    1
## 23947                       bodies that    1
## 23948                        bodies was    1
## 23949                     body aircraft    1
## 23950                        body broke    1
## 23951                           body by    1
## 23952                    body disabling    1
## 23953                      body missing    1
## 23954                        body never    1
## 23955                         body shop    1
## 23956                     boeing's tcas    1
## 23957                        boeing 757    1
## 23958                        boeing 777    1
## 23959                       boeing army    1
## 23960                      boeing aware    1
## 23961                          boeing b    1
## 23962                       boeing crew    1
## 23963                  boeing engineers    1
## 23964                       boeing made    1
## 23965                         boeing pw    1
## 23966                             bog 1    1
## 23967                      boggs alaska    1
## 23968                       bogoro peak    1
## 23969                       bogota's el    1
## 23970                      bogota after    1
## 23971                    bogota crashed    1
## 23972                       bogota more    1
## 23973                   bogota possible    1
## 23974                    bogota shortly    1
## 23975                        bogota the    1
## 23976                       bogota when    1
## 23977                        bohorok on    1
## 23978                     bojador after    1
## 23979                    bolder killing    1
## 23980                      bole airport    1
## 23981                   bolivar airport    1
## 23982             bolivar international    1
## 23983                     bolivar where    1
## 23984                     bolivia north    1
## 23985                     bolivian army    1
## 23986                   bolivian soccer    1
## 23987                       bolling air    1
## 23988                     bolomon after    1
## 23989                          bolt and    1
## 23990                       bolt backed    1
## 23991                      bolt backing    1
## 23992                          bolt for    1
## 23993                         bolt from    1
## 23994                           bolt in    1
## 23995                         bolt loss    1
## 23996                           bolt on    1
## 23997                         bolt that    1
## 23998                           bolt to    1
## 23999                        bolt while    1
## 24000                         bolts and    1
## 24001                     bolts causing    1
## 24002                         bolts faa    1
## 24003                      bolts failed    1
## 24004                         bolts led    1
## 24005                    bolts official    1
## 24006                   bolts resulting    1
## 24007                        bolts that    1
## 24008                        bomb after    1
## 24009                          bomb and    1
## 24010                         bomb blew    1
## 24011                           bomb by    1
## 24012                      bomb carrier    1
## 24013                       bomb caused    1
## 24014                   bomb consisting    1
## 24015                      bomb crashed    1
## 24016                    bomb detonated    1
## 24017                    bomb explosion    1
## 24018                         bomb fell    1
## 24019                          bomb had    1
## 24020                           bomb is    1
## 24021                           bomb on    1
## 24022                      bomb onboard    1
## 24023                       bomb placed    1
## 24024                           bomb to    1
## 24025                         bomb wing    1
## 24026                         bomb with    1
## 24027           bombardier's inadequate    1
## 24028                         bombay at    1
## 24029                      bombay india    1
## 24030                        bomber and    1
## 24031                         bomber in    1
## 24032                      bomber pilot    1
## 24033                bombers approached    1
## 24034                        bombers on    1
## 24035                       bombers the    1
## 24036                        bombing at    1
## 24037                       bombing has    1
## 24038                       bombing run    1
## 24039                       bombs being    1
## 24040                          bombs on    1
## 24041                        bombs onto    1
## 24042                        bombs were    1
## 24043                         bon range    1
## 24044                    bond promotion    1
## 24045                        bonded the    1
## 24046                      boniface and    1
## 24047                       bonito peak    1
## 24048                          book and    1
## 24049                 book individually    1
## 24050                          book the    1
## 24051                           boom at    1
## 24052                     boom fuselage    1
## 24053                           boom in    1
## 24054                    boom resulting    1
## 24055                          boom the    1
## 24056                      booms caused    1
## 24057                    boost assembly    1
## 24058                  boost enrichment    1
## 24059                      boost system    1
## 24060                     booster pumps    1
## 24061                     boosting this    1
## 24062                     boosting went    1
## 24063                   boot activation    1
## 24064                          boot was    1
## 24065                          boots at    1
## 24066                     boots crashed    1
## 24067                      boots should    1
## 24068                       boots while    1
## 24069                       bordeaux or    1
## 24070                        border act    1
## 24071                        border air    1
## 24072                         border as    1
## 24073                      border cause    1
## 24074                       border city    1
## 24075                    border crashed    1
## 24076                       border crew    1
## 24077                 border detonation    1
## 24078                     border guards    1
## 24079                        border not    1
## 24080                 border protection    1
## 24081                    border shortly    1
## 24082                       border when    1
## 24083                      border while    1
## 24084                       border with    1
## 24085                      bordering on    1
## 24086                        borders of    1
## 24087                    borealis while    1
## 24088                  boris trajkovski    1
## 24089                       borja after    1
## 24090                 borussia dortmund    1
## 24091                         bosnia in    1
## 24092                        bosnia the    1
## 24093                      bost airport    1
## 24094                     boston harbor    1
## 24095                      botafogo bay    1
## 24096                            both 2    1
## 24097                           both 27    1
## 24098                   both activating    1
## 24099                          both air    1
## 24100                     both airlines    1
## 24101                    both airplanes    1
## 24102                     both altitude    1
## 24103                        both angle    1
## 24104                      both because    1
## 24105                      both captain    1
## 24106                      both crashed    1
## 24107                       both during    1
## 24108                     both elevator    1
## 24109                      both factors    1
## 24110                  both flightcrews    1
## 24111                   both generators    1
## 24112                       both ground    1
## 24113                   both helicopter    1
## 24114                  both helicopters    1
## 24115                        both human    1
## 24116                   both instructor    1
## 24117                  both instruments    1
## 24118                       both killed    1
## 24119                         both left    1
## 24120                         both legs    1
## 24121                         both main    1
## 24122                        both range    1
## 24123                     both received    1
## 24124                        both right    1
## 24125                    both starboard    1
## 24126                         both tail    1
## 24127                      both trainee    1
## 24128                      both weather    1
## 24129                      both working    1
## 24130                       bottle used    1
## 24131                       bottles but    1
## 24132                    bottles stored    1
## 24133                     bottom before    1
## 24134                     bottom center    1
## 24135                      boufarik afb    1
## 24136                 boufarik airfield    1
## 24137                 boufarik military    1
## 24138                   bought multiple    1
## 24139                      bounce being    1
## 24140                    bounce causing    1
## 24141                  bounce generated    1
## 24142                       bounced 300    1
## 24143                 bounced collapsed    1
## 24144                 bounced contacted    1
## 24145                   bounced crashed    1
## 24146                    bounced higher    1
## 24147                    bounced lifted    1
## 24148                       bounced off    1
## 24149                        bounced on    1
## 24150                      bounced over    1
## 24151                   bounced several    1
## 24152                     bounced three    1
## 24153                        bounced up    1
## 24154                      bounced went    1
## 24155                       bound tower    1
## 24156                     boundaries in    1
## 24157                     boundaries of    1
## 24158                 boundary becoming    1
## 24159                   boundary either    1
## 24160                    boundary while    1
## 24161                      bounded over    1
## 24162                     boundry after    1
## 24163                       boundry and    1
## 24164                     boundry fence    1
## 24165                    bountiful peak    1
## 24166                  bourget airfield    1
## 24167                     bourget field    1
## 24168                          bow peak    1
## 24169                       bow section    1
## 24170                        bowery bay    1
## 24171                        bowl after    1
## 24172                     bowl assembly    1
## 24173                        box caused    1
## 24174                            box of    1
## 24175                       box seating    1
## 24176                          box with    1
## 24177                      boxer carlos    1
## 24178                       boxes which    1
## 24179                       boxing team    1
## 24180                             boy 3    1
## 24181                         boy heavy    1
## 24182                         boy pilot    1
## 24183                       boy stephen    1
## 24184                      boy survived    1
## 24185                     bozeman after    1
## 24186                        bozeman to    1
## 24187                       bracing the    1
## 24188                  braemar resevoir    1
## 24189                         brake and    1
## 24190                   brake correctly    1
## 24191                     brake failure    1
## 24192                   brake hydraulic    1
## 24193                          brake or    1
## 24194                     brake systems    1
## 24195                      brakes after    1
## 24196                        brakes and    1
## 24197                         brakes at    1
## 24198                         brakes by    1
## 24199                     brakes caused    1
## 24200                    brakes causing    1
## 24201                   brakes dragging    1
## 24202                         brakes on    1
## 24203                        brakes the    1
## 24204                       brakes were    1
## 24205                      brakes which    1
## 24206                 braking commenced    1
## 24207                      braking done    1
## 24208             braking effectiveness    1
## 24209                  braking impaired    1
## 24210           braking ineffectiveness    1
## 24211                       braking not    1
## 24212                     braking power    1
## 24213                   braking systems    1
## 24214                       braking the    1
## 24215                     braking using    1
## 24216                    branco airport    1
## 24217                         brand new    1
## 24218                        brasilia a    1
## 24219                       brasilia at    1
## 24220             brazilian chapecoense    1
## 24221                  brazilian limits    1
## 24222                 brazilian service    1
## 24223                   brazzaville and    1
## 24224                   brazzaville but    1
## 24225                    brazzaville in    1
## 24226                  brazzaville into    1
## 24227               brazzaville weather    1
## 24228                      breached the    1
## 24229                       breaches of    1
## 24230                      breaching it    1
## 24231                        bread when    1
## 24232                           break a    1
## 24233                         break and    1
## 24234                       break apart    1
## 24235                   break formation    1
## 24236                   break somewhere    1
## 24237                         break two    1
## 24238                        break when    1
## 24239                      breakdown in    1
## 24240                      breakdown of    1
## 24241                    breaker caused    1
## 24242                       breaker was    1
## 24243                       breakers as    1
## 24244                    breakers which    1
## 24245                        breaking a    1
## 24246                    breaking apart    1
## 24247                   breaking ground    1
## 24248                       breaking in    1
## 24249                    breaking loose    1
## 24250                      breaking off    1
## 24251                    breakup severe    1
## 24252                     breakwater in    1
## 24253                       breeching a    1
## 24254                       brega libya    1
## 24255                         brega the    1
## 24256               bremerhaven airport    1
## 24257                    brest guipavas    1
## 24258                        brick wall    1
## 24259                   bridge shearing    1
## 24260                   bridge spanning    1
## 24261                        bridger wy    1
## 24262                    bridgetown the    1
## 24263                         brief and    1
## 24264                      brief mayday    1
## 24265                    briefing after    1
## 24266                       briefing by    1
## 24267                      briefing did    1
## 24268                     briefing flew    1
## 24269                    briefing their    1
## 24270                   briefly overran    1
## 24271                      briefly then    1
## 24272                       brigade the    1
## 24273                 brigadier general    1
## 24274                    bright focused    1
## 24275                      bright light    1
## 24276                        bring both    1
## 24277                          bring it    1
## 24278                       brisbane at    1
## 24279                 brisbane improper    1
## 24280                     brisbane they    1
## 24281                      bristol beau    1
## 24282                     bristol field    1
## 24283                 bristol tennessee    1
## 24284                 britannia stalled    1
## 24285                      british 39th    1
## 24286                     british actor    1
## 24287                       british and    1
## 24288                      british anti    1
## 24289                      british army    1
## 24290                  british columbia    1
## 24291                  british mosquito    1
## 24292                      british nato    1
## 24293                  british overseas    1
## 24294                     british prime    1
## 24295                       british raf    1
## 24296                  british reopened    1
## 24297                     british spies    1
## 24298                   brittany region    1
## 24299                        brno after    1
## 24300                   broadcast radio    1
## 24301                   broadcasting on    1
## 24302                           broke a    1
## 24303                        broke both    1
## 24304                        broke down    1
## 24305                         broke due    1
## 24306                    broke improper    1
## 24307                          broke on    1
## 24308                        broke only    1
## 24309                     broke upwards    1
## 24310                        broke with    1
## 24311                        broken and    1
## 24312                       broken back    1
## 24313                 broken collarbone    1
## 24314                       broken head    1
## 24315                       broken hill    1
## 24316                        broken hub    1
## 24317                         broken in    1
## 24318                   broken overcast    1
## 24319                       broken ribs    1
## 24320                      broken rotor    1
## 24321                     broken spigot    1
## 24322                    broken tearing    1
## 24323                       broken this    1
## 24324                 broken windshield    1
## 24325                       broken wing    1
## 24326                       broken wire    1
## 24327                    bronchitis the    1
## 24328               bronislaw hubermann    1
## 24329                         bronson m    1
## 24330                          brook on    1
## 24331                    brooklyn forty    1
## 24332                         brother a    1
## 24333                       brother and    1
## 24334                      brothers and    1
## 24335                          brown 55    1
## 24336                       bruno range    1
## 24337                 brunswick failure    1
## 24338                        brush fire    1
## 24339                         brush the    1
## 24340                       brushed the    1
## 24341                     brushed trees    1
## 24342                      brushy field    1
## 24343                   brussel's haren    1
## 24344                      brussels was    1
## 24345                 bryant california    1
## 24346                             bt 13    1
## 24347                    bubank airport    1
## 24348                 bucaramanga after    1
## 24349                bucaramanga flying    1
## 24350                bucharesst crashed    1
## 24351                    bucharest with    1
## 24352                         buckled a    1
## 24353                        buckled as    1
## 24354                       buckled the    1
## 24355                       bucks elbow    1
## 24356                      bucurest the    1
## 24357                   buffalo niagara    1
## 24358                     buffalo texas    1
## 24359                       buffalo the    1
## 24360                      buffeted her    1
## 24361                   buffeting after    1
## 24362                     buffeting and    1
## 24363                      buffeting or    1
## 24364                    buffeting that    1
## 24365                   buffeting which    1
## 24366                    buga continued    1
## 24367                        buggers at    1
## 24368                       bugulma the    1
## 24369                 buick promotional    1
## 24370                        building a    1
## 24371                    building about    1
## 24372                       building as    1
## 24373                   building became    1
## 24374                       building by    1
## 24375                     building crew    1
## 24376                   building crew's    1
## 24377                   building during    1
## 24378                  building failure    1
## 24379                     building fuel    1
## 24380                     building hold    1
## 24381                  building housing    1
## 24382                  building missing    1
## 24383                     building near    1
## 24384                      building not    1
## 24385                    building short    1
## 24386                     building site    1
## 24387                 building spinning    1
## 24388                    building storm    1
## 24389              building uncommanded    1
## 24390                   buildings about    1
## 24391                      buildings as    1
## 24392                      buildings at    1
## 24393                  buildings during    1
## 24394                  buildings houses    1
## 24395                      buildings of    1
## 24396              buildings overloaded    1
## 24397                        buildup of    1
## 24398                     built crashed    1
## 24399                          built to    1
## 24400                          built up    1
## 24401                       buk missile    1
## 24402                        bukavu but    1
## 24403                       bukavu when    1
## 24404                       bukit besar    1
## 24405                           bulb it    1
## 24406                bulgarian airspace    1
## 24407                     bulgarian jet    1
## 24408                  bulkhead failure    1
## 24409                 bulkhead ruptured    1
## 24410                      bulkhead the    1
## 24411                      bulkhead was    1
## 24412                    bulkhead while    1
## 24413                     bull mountain    1
## 24414                       bullet from    1
## 24415                       bulletin in    1
## 24416               bulletin stipulated    1
## 24417                     bulletins and    1
## 24418               bulletins mandatory    1
## 24419                bullets penetrated    1
## 24420                       bumped from    1
## 24421                    bumps followed    1
## 24422                         bundle to    1
## 24423                    bungalow after    1
## 24424                     bungee system    1
## 24425                      buracao it's    1
## 24426                burangrang attempt    1
## 24427                burbank california    1
## 24428                   burbank failure    1
## 24429                       burbank the    1
## 24430                        burbank to    1
## 24431                      burbank when    1
## 24432                  burdakovka about    1
## 24433                         bureau to    1
## 24434                    burghley radio    1
## 24435                         buried by    1
## 24436                       buried eggs    1
## 24437                       buried most    1
## 24438                      burining the    1
## 24439                       burke after    1
## 24440              burketown queensland    1
## 24441                         burma the    1
## 24442                     burn although    1
## 24443                          burn and    1
## 24444                           burn at    1
## 24445                          burn the    1
## 24446                      burn through    1
## 24447                      burned 1,600    1
## 24448                         burned 10    1
## 24449                         burned 19    1
## 24450                          burned 2    1
## 24451                         burned 25    1
## 24452                          burned 3    1
## 24453                         burned 30    1
## 24454                          burned 5    1
## 24455                        burned 6.5    1
## 24456                      burned 7,800    1
## 24457                    burned absence    1
## 24458                    burned adverse    1
## 24459              burned approximately    1
## 24460               burned asymmetrical    1
## 24461                       burned both    1
## 24462                burned businessman    1
## 24463                      burned cause    1
## 24464               burned continuation    1
## 24465                   burned cracking    1
## 24466                       burned crew    1
## 24467                      burned crews    1
## 24468                      burned eight    1
## 24469                  burned estimated    1
## 24470                    burned fatigue    1
## 24471                       burned film    1
## 24472                   burned fracture    1
## 24473                  burned ingestion    1
## 24474                       burned into    1
## 24475                    burned killing    1
## 24476                    burned landing    1
## 24477                       burned loss    1
## 24478                burned malfunction    1
## 24479                       burned near    1
## 24480                      burned north    1
## 24481                        burned out    1
## 24482                     burned pilots    1
## 24483                      burned power    1
## 24484                       burned soon    1
## 24485                  burned starboard    1
## 24486                        burned ten    1
## 24487                        burned vfr    1
## 24488                       burned with    1
## 24489                        burned.ã â    1
## 24490                        burning of    1
## 24491              burning preparations    1
## 24492                     burning while    1
## 24493                     burnt crashed    1
## 24494                      bursing into    1
## 24495                          burst in    1
## 24496                         burst int    1
## 24497                        burst nose    1
## 24498                        burst tire    1
## 24499                       bursting in    1
## 24500                   burundi cyprien    1
## 24501                      bus accident    1
## 24502                            bus as    1
## 24503                           bus but    1
## 24504                        bus during    1
## 24505                           bus hit    1
## 24506                    bus puncturing    1
## 24507                           bus the    1
## 24508                          bus when    1
## 24509                         buses the    1
## 24510                bush international    1
## 24511                         bush into    1
## 24512                          bush the    1
## 24513                           bush to    1
## 24514                     business area    1
## 24515                       business at    1
## 24516                   business flight    1
## 24517                  business section    1
## 24518                   businessman f.h    1
## 24519                         bust into    1
## 24520                            but 15    1
## 24521                             but 2    1
## 24522                             but 8    1
## 24523                       but aborted    1
## 24524                        but abrupt    1
## 24525                         but after    1
## 24526                          but also    1
## 24527                            but an    1
## 24528                       but appears    1
## 24529                        but became    1
## 24530                          but been    1
## 24531                      but believed    1
## 24532                       but clipped    1
## 24533                      but collided    1
## 24534                       but contact    1
## 24535                         but dazed    1
## 24536                     but different    1
## 24537                   but disappeared    1
## 24538                      but diverted    1
## 24539                           but due    1
## 24540                     but elevators    1
## 24541                   but encountered    1
## 24542                    but eventually    1
## 24543                         but exact    1
## 24544                      but exploded    1
## 24545                          but fail    1
## 24546                       but finally    1
## 24547                          but gave    1
## 24548                            but he    1
## 24549                           but her    1
## 24550                    but installing    1
## 24551                        but jammed    1
## 24552                          but kept    1
## 24553                          but left    1
## 24554                           but los    1
## 24555                      but maintain    1
## 24556                          but many    1
## 24557                  but miraculously    1
## 24558                      but observed    1
## 24559                            but of    1
## 24560                          but once    1
## 24561                          but only    1
## 24562                         but other    1
## 24563                          but over    1
## 24564                        but passed    1
## 24565                    but persistent    1
## 24566                          but poor    1
## 24567                            but pt    1
## 24568                       but quickly    1
## 24569                        but rather    1
## 24570                       but release    1
## 24571                     but restarted    1
## 24572                        but rolled    1
## 24573                      but selected    1
## 24574                       but settled    1
## 24575                       but shortly    1
## 24576                       but staying    1
## 24577                        but strong    1
## 24578                             but t    1
## 24579                          but that    1
## 24580                            but to    1
## 24581                           but too    1
## 24582                          but upon    1
## 24583                       but weather    1
## 24584                          but went    1
## 24585                       but western    1
## 24586                          but when    1
## 24587                         but while    1
## 24588                          but with    1
## 24589                      but wouldn't    1
## 24590                butte acknowledged    1
## 24591                       butte after    1
## 24592                     butte airport    1
## 24593                   butte captain's    1
## 24594                         butte the    1
## 24595                         butte via    1
## 24596                   buzz osbourne's    1
## 24597                        buzzed the    1
## 24598                         buzzing a    1
## 24599                       buzzing the    1
## 24600                 bwabwata national    1
## 24601                              by 1    1
## 24602                          by 1,500    1
## 24603                             by 10    1
## 24604                            by 117    1
## 24605                             by 15    1
## 24606                           by 1951    1
## 24607                           by 2,5ã    1
## 24608                            by 200    1
## 24609                             by 30    1
## 24610                          by 4,193    1
## 24611                             by 40    1
## 24612                            by 4km    1
## 24613                          by 5,165    1
## 24614                            by 595    1
## 24615                              by 6    1
## 24616                             by 75    1
## 24617                          by 800ft    1
## 24618                            by 840    1
## 24619                            by 990    1
## 24620                      by abkhazian    1
## 24621                       by aborting    1
## 24622                   by accumulative    1
## 24623                     by activation    1
## 24624                        by adverse    1
## 24625                    by aeroelastic    1
## 24626                       by aircraft    1
## 24627                         by albert    1
## 24628                        by alcohol    1
## 24629                       by american    1
## 24630                            by any    1
## 24631                       by applying    1
## 24632                  by approximately    1
## 24633                          by armed    1
## 24634                       by armenian    1
## 24635                    by atmospheric    1
## 24636                           by auto    1
## 24637                      by available    1
## 24638                            by bad    1
## 24639                        by baggage    1
## 24640                        by banking    1
## 24641                          by being    1
## 24642                           by bird    1
## 24643                           by boac    1
## 24644                         by boeing    1
## 24645                          by bombs    1
## 24646                      by brazilian    1
## 24647                      by buffeting    1
## 24648                      by bulgarian    1
## 24649                              by c    1
## 24650                        by calgary    1
## 24651                           by calm    1
## 24652                        by captain    1
## 24653                            by car    1
## 24654                        by chechen    1
## 24655                      by chechnyan    1
## 24656                          by chief    1
## 24657                        by chinese    1
## 24658                        by coating    1
## 24659                       by comair's    1
## 24660                       by complete    1
## 24661                     by conditions    1
## 24662                      by confusion    1
## 24663                        by contact    1
## 24664                      by corrosion    1
## 24665                            by crm    1
## 24666                         by darwin    1
## 24667                         by debris    1
## 24668                     by descending    1
## 24669                     by detonating    1
## 24670                        by dimming    1
## 24671                     by downdrafts    1
## 24672                          by drift    1
## 24673                        by drunken    1
## 24674                        by eastern    1
## 24675                       by egyptian    1
## 24676                         by either    1
## 24677                      by emergency    1
## 24678                         by engine    1
## 24679                       by ensuring    1
## 24680                           by even    1
## 24681                      by evergreen    1
## 24682                      by executing    1
## 24683                       by exerting    1
## 24684                       by existing    1
## 24685                        by failing    1
## 24686                     by falsifying    1
## 24687                          by fedex    1
## 24688                           by feel    1
## 24689                        by fighter    1
## 24690                           by fine    1
## 24691                      by fishermen    1
## 24692                         by flight    1
## 24693                         by flying    1
## 24694                            by fog    1
## 24695                            by for    1
## 24696                          by force    1
## 24697                        by forcing    1
## 24698                        by foreign    1
## 24699                      by fractures    1
## 24700                        by francis    1
## 24701                       by fretting    1
## 24702                       by friendly    1
## 24703                        by frosted    1
## 24704                           by fuel    1
## 24705                          by fumes    1
## 24706                       by georgian    1
## 24707                          by greek    1
## 24708                      by guerrilla    1
## 24709                           by hard    1
## 24710                           by haze    1
## 24711                          by heavy    1
## 24712                            by her    1
## 24713                           by high    1
## 24714                            by his    1
## 24715                        by hypoxia    1
## 24716                       by imperial    1
## 24717                   by implementing    1
## 24718                     by inadequate    1
## 24719                    by incorrectly    1
## 24720                        by indians    1
## 24721                     by initiating    1
## 24722                     by inspection    1
## 24723                   by instructions    1
## 24724                   by insufficient    1
## 24725                   by interference    1
## 24726                  by intergranular    1
## 24727                        by iranian    1
## 24728                          by iraqi    1
## 24729                      by irregular    1
## 24730                        by italian    1
## 24731                           by itek    1
## 24732                       by jeppesen    1
## 24733                          by kuala    1
## 24734                           by ltta    1
## 24735                           by ltte    1
## 24736                        by machine    1
## 24737                      by magnesium    1
## 24738                         by manabu    1
## 24739                          by march    1
## 24740                         by maures    1
## 24741                        by members    1
## 24742                          by metal    1
## 24743                       by military    1
## 24744                       by mohammed    1
## 24745                       by moisture    1
## 24746                   by mountaineers    1
## 24747                      by mountains    1
## 24748                            by nbc    1
## 24749                         by nearby    1
## 24750                             by no    1
## 24751                            by non    1
## 24752                          by north    1
## 24753                            by not    1
## 24754                       by numerous    1
## 24755                      by officials    1
## 24756                            by oil    1
## 24757                    by omniflightã    1
## 24758                        by onboard    1
## 24759                        by opening    1
## 24760                        by opioids    1
## 24761                             by or    1
## 24762                        by orville    1
## 24763                   by overspeeding    1
## 24764                          by pablo    1
## 24765                      by pakistani    1
## 24766                    by parachuting    1
## 24767                      by personnel    1
## 24768                           by poor    1
## 24769                            by pre    1
## 24770                      by premature    1
## 24771                     by proceeding    1
## 24772                            by raf    1
## 24773                          by ramzi    1
## 24774                          by rapid    1
## 24775                       by reaching    1
## 24776                            by red    1
## 24777                     by refraction    1
## 24778                     by relatively    1
## 24779                       by removing    1
## 24780                      by residents    1
## 24781                    by restricting    1
## 24782                      by retarding    1
## 24783                            by rio    1
## 24784                          by royal    1
## 24785                    by sandinistan    1
## 24786                       by security    1
## 24787                      by selecting    1
## 24788                        by shaking    1
## 24789                            by six    1
## 24790                          by slush    1
## 24791                          by small    1
## 24792                           by snow    1
## 24793                           by some    1
## 24794                          by south    1
## 24795                       by specific    1
## 24796                       by spillage    1
## 24797                           by spla    1
## 24798                    by spontaneous    1
## 24799                         by static    1
## 24800                       by stopping    1
## 24801                         by strong    1
## 24802                        by surface    1
## 24803                           by tame    1
## 24804                          by their    1
## 24805                           by then    1
## 24806                          by thick    1
## 24807                           by this    1
## 24808                          by three    1
## 24809                      by thrusting    1
## 24810                             by to    1
## 24811                          by total    1
## 24812                          by tower    1
## 24813                          by toxic    1
## 24814                          by train    1
## 24815                        by trainee    1
## 24816                      by transport    1
## 24817                       by tripping    1
## 24818                          by tutsi    1
## 24819                         by united    1
## 24820                            by use    1
## 24821                          by using    1
## 24822                      by utilizing    1
## 24823                     by viabration    1
## 24824                          by which    1
## 24825                        by william    1
## 24826                           by wind    1
## 24827                          by winds    1
## 24828                      by witnesses    1
## 24829                           by worn    1
## 24830                             by xl    1
## 24831                    byck attempted    1
## 24832                       bypass fuel    1
## 24833                            bys at    1
## 24834                     bystander and    1
## 24835                             c 118    1
## 24836                            c 118a    1
## 24837                            c 119s    1
## 24838                             c 130    1
## 24839                               c 4    1
## 24840                             c and    1
## 24841                         c because    1
## 24842                     c ineffective    1
## 24843                        c marshall    1
## 24844                          c musick    1
## 24845                              c of    1
## 24846                     c transponder    1
## 24847                               c w    1
## 24848                       c.b lansing    1
## 24849                         c.g limit    1
## 24850                            c.g to    1
## 24851                          caa also    1
## 24852                            caa to    1
## 24853                         caa which    1
## 24854                       cab changed    1
## 24855                  cabin accidental    1
## 24856                         cabin air    1
## 24857                         cabin all    1
## 24858                        cabin area    1
## 24859                      cabin before    1
## 24860                       cabin being    1
## 24861                     cabin blowing    1
## 24862                         cabin but    1
## 24863                     cabin causing    1
## 24864                     cabin crashed    1
## 24865            cabin depressurization    1
## 24866               cabin depressurized    1
## 24867                      cabin during    1
## 24868                        cabin fire    1
## 24869                        cabin free    1
## 24870                          cabin he    1
## 24871                     cabin heating    1
## 24872              cabin incapacitating    1
## 24873                        cabin just    1
## 24874                     cabin killing    1
## 24875                        cabin left    1
## 24876                      cabin lights    1
## 24877                          cabin on    1
## 24878                         cabin one    1
## 24879              cabin pressurization    1
## 24880                      cabin proper    1
## 24881                        cabin soon    1
## 24882                       cabin there    1
## 24883                    cabin trapping    1
## 24884                       cabin under    1
## 24885                        cabin wall    1
## 24886                        cabin were    1
## 24887                     cabin windows    1
## 24888                        cabin with    1
## 24889                  cabinet minister    1
## 24890                       cable broke    1
## 24891                       cable crane    1
## 24892                      cable failed    1
## 24893                         cable the    1
## 24894                       cable while    1
## 24895                        cables and    1
## 24896                         cables by    1
## 24897                    cables causing    1
## 24898                     cables during    1
## 24899                         cables in    1
## 24900                      cables loose    1
## 24901                         cables or    1
## 24902                   cables plunging    1
## 24903                    cables running    1
## 24904                       cables were    1
## 24905                   cabling causing    1
## 24906                        cabo ruivo    1
## 24907                     cabre located    1
## 24908                 cacasus mountains    1
## 24909                     cachimbo with    1
## 24910                        cafe while    1
## 24911                        cafunfo in    1
## 24912                        cagayan de    1
## 24913                          cage was    1
## 24914                         caging of    1
## 24915                       cagliari in    1
## 24916                        cago plane    1
## 24917                        caguãƒâ nã    1
## 24918                        caida hill    1
## 24919                         cairns at    1
## 24920                cairns disappeared    1
## 24921                        cairns the    1
## 24922                     cairo airport    1
## 24923                      cairo almaza    1
## 24924                    cairo approach    1
## 24925                       cairo egypt    1
## 24926                      cairo flying    1
## 24927                          cairo it    1
## 24928                     cairo killing    1
## 24929                       cairo metal    1
## 24930                     cairo pilot's    1
## 24931                    cairo skychief    1
## 24932                          cairo to    1
## 24933                         cairo via    1
## 24934                  caisson anchored    1
## 24935                   cajas mountains    1
## 24936                     calabar while    1
## 24937                        calapan at    1
## 24938                       calapan the    1
## 24939                     calculated at    1
## 24940                    calculated the    1
## 24941                   calculating how    1
## 24942                   calculating the    1
## 24943                    calculation of    1
## 24944                    calculations 2    1
## 24945                  calculations for    1
## 24946                 calculations made    1
## 24947                   calculations on    1
## 24948                calculations which    1
## 24949                     calcutta city    1
## 24950                       calcutta to    1
## 24951                       calgary atc    1
## 24952                      calgary some    1
## 24953                          cali but    1
## 24954                     cali columbia    1
## 24955                         cali lack    1
## 24956                        cali while    1
## 24957                    caliber pistol    1
## 24958               california's shasta    1
## 24959                california aviator    1
## 24960                   california both    1
## 24961                  california coast    1
## 24962                    california due    1
## 24963                   california jury    1
## 24964                  california state    1
## 24965                     california to    1
## 24966                            call a    1
## 24967                          call all    1
## 24968                         call from    1
## 24969                          call out    1
## 24970                     call probably    1
## 24971                    call reporting    1
## 24972                         call that    1
## 24973                        call while    1
## 24974                          called a    1
## 24975                 called feathering    1
## 24976                      called green    1
## 24977                     called kataib    1
## 24978                   called military    1
## 24979                        called the    1
## 24980                     callejon pass    1
## 24981                calling deviations    1
## 24982                      calls before    1
## 24983                        calls from    1
## 24984                         calls the    1
## 24985                          calls to    1
## 24986                        calls with    1
## 24987                       calm waters    1
## 24988                         calm wind    1
## 24989                      camarines to    1
## 24990                        came apart    1
## 24991                     came crashing    1
## 24992                         came into    1
## 24993                          came too    1
## 24994                           came up    1
## 24995                     cameraman was    1
## 24996                    cameroon congo    1
## 24997                cameroon mountains    1
## 24998                     camiroaga the    1
## 24999                         camp dell    1
## 25000                           camp le    1
## 25001                        camp south    1
## 25002                     campaign aide    1
## 25003                  campaign crashed    1
## 25004                  campaigning trip    1
## 25005                 campbell kentucky    1
## 25006                     campbell lake    1
## 25007                 campbell military    1
## 25008                 campbell reported    1
## 25009                         can occur    1
## 25010                        canada and    1
## 25011                        canada but    1
## 25012                    canada checked    1
## 25013                   canada occurred    1
## 25014                         canada to    1
## 25015                        canada was    1
## 25016                        canadair c    1
## 25017                      canadair one    1
## 25018                      canadair the    1
## 25019                 canadian aviation    1
## 25020                  canadian cabinet    1
## 25021                    canadian coast    1
## 25022                     canadian folk    1
## 25023                canadian maneuvers    1
## 25024                     canadian tour    1
## 25025                         canal and    1
## 25026                          canal of    1
## 25027                         canal the    1
## 25028                     canana island    1
## 25029                canberra aerodrome    1
## 25030                      canberra the    1
## 25031                      candi kubeck    1
## 25032                  candidate cesare    1
## 25033                          canea in    1
## 25034                     canigou while    1
## 25035                    cannibalism to    1
## 25036                      cano damiãƒâ    1
## 25037                         canoe and    1
## 25038                        canoe down    1
## 25039                       canoeing up    1
## 25040                        canopy but    1
## 25041                        canopy did    1
## 25042                       cantelli 36    1
## 25043                   canton airfield    1
## 25044                      canyon 1,500    1
## 25045                         canyon 20    1
## 25046                         canyon 27    1
## 25047                       canyon band    1
## 25048                       canyon both    1
## 25049                     canyon cashed    1
## 25050                 canyon confronted    1
## 25051                      canyon error    1
## 25052                        canyon hit    1
## 25053                      canyon icing    1
## 25054                         canyon in    1
## 25055                       canyon into    1
## 25056                       canyon just    1
## 25057                   canyon national    1
## 25058                       canyon near    1
## 25059                         canyon on    1
## 25060                      canyon which    1
## 25061                      canyon while    1
## 25062                           cap des    1
## 25063                       cap haitien    1
## 25064                         cap white    1
## 25065                 capabalities were    1
## 25066            capabilities resulting    1
## 25067                  capability after    1
## 25068                    capability and    1
## 25069                   capability flew    1
## 25070                     capability to    1
## 25071                        capable of    1
## 25072                     capac airport    1
## 25073                       capacity to    1
## 25074                      capacity was    1
## 25075                     capanne while    1
## 25076                  caparao mountain    1
## 25077                      cape bojador    1
## 25078                    cape mendocino    1
## 25079                      cape spencer    1
## 25080                         cape york    1
## 25081                  capital airlines    1
## 25082                       capital but    1
## 25083                 capital mogadishu    1
## 25084                        capital of    1
## 25085                   capital shortly    1
## 25086                 capital witnesses    1
## 25087                      capltain was    1
## 25088                   capped mountain    1
## 25089                      capri island    1
## 25090                          caps and    1
## 25091                       capsized by    1
## 25092                 captain's actions    1
## 25093               captain's altimeter    1
## 25094                captain's apparent    1
## 25095               captain's attention    1
## 25096                 captain's chronic    1
## 25097              captain's commitment    1
## 25098                   captain's depth    1
## 25099               captain's deviation    1
## 25100                captain's director    1
## 25101             captain's distraction    1
## 25102                 captain's fatigue    1
## 25103                  captain's faulty    1
## 25104                  captain's flight    1
## 25105                    captain's gear    1
## 25106              captain's impairment    1
## 25107                captain's improper    1
## 25108               captain's inability    1
## 25109          captain's incapacitation    1
## 25110            captain's inexperience    1
## 25111            captain's insufficient    1
## 25112             captain's intentional    1
## 25113                    captain's lack    1
## 25114                    captain's legs    1
## 25115                 captain's license    1
## 25116                    captain's loss    1
## 25117       captain's misinterpretation    1
## 25118              captain's misreading    1
## 25119             captain's performance    1
## 25120                    captain's side    1
## 25121              captain's subsequent    1
## 25122                  captain's unwise    1
## 25123                     captain's use    1
## 25124                         captain a    1
## 25125                     captain acted    1
## 25126                   captain allowed    1
## 25127                  captain allowing    1
## 25128                   captain applied    1
## 25129              captain apprehensive    1
## 25130                   captain arrived    1
## 25131                captain associated    1
## 25132                   captain assumed    1
## 25133                 captain attempted    1
## 25134                     captain being    1
## 25135                    captain cannot    1
## 25136                    captain choose    1
## 25137                   captain circled    1
## 25138                   captain delayed    1
## 25139                 captain described    1
## 25140                      captain died    1
## 25141                captain disengaged    1
## 25142                 captain dispensed    1
## 25143                       captain due    1
## 25144                    captain edward    1
## 25145                     captain edwin    1
## 25146                  captain exceeded    1
## 25147                captain flightcrew    1
## 25148                      captain from    1
## 25149                       captain got    1
## 25150                    captain grabed    1
## 25151                    captain hansie    1
## 25152                        captain he    1
## 25153                     captain idled    1
## 25154                   captain ignored    1
## 25155             captain inadvertently    1
## 25156                 captain initiated    1
## 25157                   captain instead    1
## 25158               captain interpreted    1
## 25159                      captain john    1
## 25160                     captain known    1
## 25161                    captain landed    1
## 25162                      captain left    1
## 25163                    captain looked    1
## 25164                      captain loss    1
## 25165                   captain lowered    1
## 25166                  captain marshall    1
## 25167                captain mistakenly    1
## 25168                   captain noticed    1
## 25169                        captain or    1
## 25170               captain preoccupied    1
## 25171                    captain pushed    1
## 25172                   captain putting    1
## 25173                  captain remained    1
## 25174                 captain resulting    1
## 25175                    captain riding    1
## 25176                    captain robert    1
## 25177                      captain said    1
## 25178                  captain speaking    1
## 25179                   captain steered    1
## 25180                   captain stewart    1
## 25181                      captain such    1
## 25182                  captain suffered    1
## 25183                      captain that    1
## 25184                      captain this    1
## 25185                    captain trying    1
## 25186                    captain turned    1
## 25187                      captain were    1
## 25188                     captain while    1
## 25189                     captain would    1
## 25190              captains uncertainty    1
## 25191                      captured the    1
## 25192                     caqueta river    1
## 25193                 caquetãƒâ crashed    1
## 25194                        car 705.32    1
## 25195                     car according    1
## 25196                        car agency    1
## 25197                     car believing    1
## 25198                        car engine    1
## 25199                   car immediately    1
## 25200                       caracas had    1
## 25201                  caracas mountain    1
## 25202                        caracas on    1
## 25203                       caracas the    1
## 25204                      caracas when    1
## 25205                     caracas while    1
## 25206                 carbondale thirty    1
## 25207                 carborateur icing    1
## 25208                  carburetor drain    1
## 25209                   carburetor fuel    1
## 25210                carburetor intakes    1
## 25211                    carburetor may    1
## 25212                    cardiac arrest    1
## 25213                     cardiac death    1
## 25214                   cardiff airport    1
## 25215               cardinal outfielder    1
## 25216                cardington england    1
## 25217                         care free    1
## 25218                     careened into    1
## 25219            carefully ascertaining    1
## 25220                      cargo aboard    1
## 25221                  cargo aircraft's    1
## 25222                         cargo bay    1
## 25223                    cargo breaking    1
## 25224                      cargo caused    1
## 25225                  cargo configured    1
## 25226                        cargo fire    1
## 25227                     cargo fllight    1
## 25228                       cargo floor    1
## 25229                       cargo hatch    1
## 25230                          cargo in    1
## 25231                    cargo included    1
## 25232                        cargo lost    1
## 25233                  cargo operations    1
## 25234                        cargo plan    1
## 25235                      cargo planel    1
## 25236                     cargo related    1
## 25237                          cargo to    1
## 25238                      cargo weight    1
## 25239                       cargo while    1
## 25240                     caribbean the    1
## 25241                        carl smith    1
## 25242                      carlos cause    1
## 25243                       carlos cruz    1
## 25244                     carlos gardel    1
## 25245                       carnahan 66    1
## 25246                    carnsore point    1
## 25247                    carole lombard    1
## 25248               carolina detonation    1
## 25249                      carolina due    1
## 25250                       carolyn and    1
## 25251                      caroni river    1
## 25252                        carpich at    1
## 25253                  carpish mountain    1
## 25254                      carran field    1
## 25255                       carriage of    1
## 25256                        carried 12    1
## 25257                        carried 18    1
## 25258                        carried by    1
## 25259                       carried him    1
## 25260                        carried on    1
## 25261                 carrier's license    1
## 25262              carrier's procedures    1
## 25263                         carrier a    1
## 25264                       carrier and    1
## 25265                    carrier failed    1
## 25266                       carrier for    1
## 25267                       carrier had    1
## 25268                        carrier of    1
## 25269                  carrier possible    1
## 25270                      carrier wing    1
## 25271                        carring 26    1
## 25272                 carring reporters    1
## 25273                       carroll u.s    1
## 25274                           carry a    1
## 25275                          carry in    1
## 25276                       carrying 12    1
## 25277                    carrying 2,500    1
## 25278                       carrying 31    1
## 25279                        carrying 5    1
## 25280                       carrying 57    1
## 25281                       carrying 58    1
## 25282                        carrying 6    1
## 25283                        carrying 9    1
## 25284                       carrying 91    1
## 25285                  carrying african    1
## 25286                      carrying and    1
## 25287                 carrying bolivian    1
## 25288                carrying brazilian    1
## 25289                   carrying checks    1
## 25290                 carrying children    1
## 25291                 carrying civilian    1
## 25292                   carrying cruise    1
## 25293                carrying employees    1
## 25294               carrying executives    1
## 25295                  carrying firemen    1
## 25296                  carrying flowers    1
## 25297                 carrying football    1
## 25298                     carrying gold    1
## 25299                carrying hungarian    1
## 25300                 carrying infantry    1
## 25301                  carrying italian    1
## 25302              carrying journalists    1
## 25303                 carrying magazins    1
## 25304                   carrying mainly    1
## 25305                  carrying mexican    1
## 25306               carrying nicaraguan    1
## 25307                      carrying out    1
## 25308                     carrying palm    1
## 25309                carrying parachute    1
## 25310             carrying parachutists    1
## 25311               carrying passengers    1
## 25312             carrying peacekeeping    1
## 25313                   carrying relief    1
## 25314                     carrying rotc    1
## 25315                    carrying seven    1
## 25316                   carrying shrimp    1
## 25317                     carrying sick    1
## 25318                      carrying sir    1
## 25319                carrying skydivers    1
## 25320                  carrying spanish    1
## 25321                    carrying spare    1
## 25322                      carrying tin    1
## 25323                  carrying turkish    1
## 25324                      carrying u.s    1
## 25325                   carrying united    1
## 25326                       carrying us    1
## 25327                    carrying uzbek    1
## 25328                  carrying victims    1
## 25329                carrying villagers    1
## 25330                       cars coming    1
## 25331                         cars fell    1
## 25332                          cars mid    1
## 25333                    carstenz range    1
## 25334                     cartel headed    1
## 25335                       carter were    1
## 25336                    cartoonist for    1
## 25337                  cartwheeled slid    1
## 25338                 cartwheeling into    1
## 25339                       carved into    1
## 25340                  casablanca after    1
## 25341                casablanca because    1
## 25342                    casablanca the    1
## 25343                   casablanca were    1
## 25344                 cascade mountains    1
## 25345                        case check    1
## 25346                      case crashed    1
## 25347                      case however    1
## 25348                           case in    1
## 25349                      case missing    1
## 25350                        cases were    1
## 25351                         cashed 25    1
## 25352                         cashed as    1
## 25353                         cashed en    1
## 25354                         cashed in    1
## 25355                         cashed on    1
## 25356                       cashed onto    1
## 25357                     cassie gaines    1
## 25358                   castle delaware    1
## 25359                        castle nut    1
## 25360                   casual attitude    1
## 25361                         casual to    1
## 25362               casualties probable    1
## 25363                    casualties the    1
## 25364                   casualties were    1
## 25365                 catalina seaplane    1
## 25366              catastrophic effects    1
## 25367                catastrophic event    1
## 25368            catastrophic explosion    1
## 25369                   catastrophic in    1
## 25370           catastrophic mechanical    1
## 25371           catastrophic structural    1
## 25372                        catching a    1
## 25373                      catching the    1
## 25374                  cathedral church    1
## 25375                catskill mountains    1
## 25376                         cattle to    1
## 25377                        cauayan in    1
## 25378                   cauayan isabela    1
## 25379                caucasus mountains    1
## 25380                         caught by    1
## 25381                        caught fir    1
## 25382                        cauley was    1
## 25383                    causal factors    1
## 25384                        causal was    1
## 25385                      causation of    1
## 25386                 causative factors    1
## 25387                       cause about    1
## 25388                         cause and    1
## 25389                  cause attributed    1
## 25390                        cause both    1
## 25391                          cause by    1
## 25392                cause continuation    1
## 25393                  cause deployment    1
## 25394                         cause due    1
## 25395                   cause excessive    1
## 25396                         cause him    1
## 25397                         cause hit    1
## 25398                          cause is    1
## 25399                    cause nineteen    1
## 25400                    cause possible    1
## 25401                     cause several    1
## 25402                     cause sharply    1
## 25403                        cause shot    1
## 25404                     cause stalled    1
## 25405                       cause there    1
## 25406                        caused all    1
## 25407                    caused because    1
## 25408                  caused corrosion    1
## 25409                       caused crew    1
## 25410                     caused damage    1
## 25411                  caused dangerous    1
## 25412              caused decompression    1
## 25413             caused disorientation    1
## 25414               caused displacement    1
## 25415                     caused enough    1
## 25416                  caused excessive    1
## 25417                  caused explosive    1
## 25418                    caused failure    1
## 25419                     caused flight    1
## 25420                         caused he    1
## 25421                        caused him    1
## 25422                        caused hot    1
## 25423             caused incapacitation    1
## 25424                    caused largely    1
## 25425                      caused minor    1
## 25426                  caused misfiring    1
## 25427                    caused neither    1
## 25428                        caused non    1
## 25429                       caused nuts    1
## 25430                          caused o    1
## 25431                caused overheating    1
## 25432                      caused power    1
## 25433                   caused problems    1
## 25434                 caused propellers    1
## 25435                 caused separation    1
## 25436                     caused severe    1
## 25437                      caused smoke    1
## 25438                       caused some    1
## 25439                   caused stresses    1
## 25440                 caused structural    1
## 25441                  caused temporary    1
## 25442                       caused them    1
## 25443                      caused thick    1
## 25444                    caused unusual    1
## 25445                       caused when    1
## 25446                       causes have    1
## 25447                        causes the    1
## 25448                     causing cargo    1
## 25449                  causing complete    1
## 25450                    causing debris    1
## 25451                      causing drag    1
## 25452                    causing engine    1
## 25453                  causing eventual    1
## 25454                 causing excessive    1
## 25455                 causing extension    1
## 25456                 causing extensive    1
## 25457                      causing four    1
## 25458                   causing intense    1
## 25459                   causing multipe    1
## 25460                       causing one    1
## 25461                    causing pieces    1
## 25462                     causing rapid    1
## 25463               causing significant    1
## 25464               causing substantial    1
## 25465                 causing temporary    1
## 25466                      causing them    1
## 25467                   causing thermal    1
## 25468                 causing vibration    1
## 25469                      caution note    1
## 25470                      cautioned to    1
## 25471                      cavalier the    1
## 25472                      cavendish 28    1
## 25473                         cayee the    1
## 25474                  cazenga district    1
## 25475                        cccp 22268    1
## 25476                       ccrrect but    1
## 25477                            ce 208    1
## 25478                        cebu bound    1
## 25479                           cebu to    1
## 25480                   cecilia airport    1
## 25481                    cecilia cichan    1
## 25482                      cedar forest    1
## 25483                    cedar mountain    1
## 25484                   cedrel mountain    1
## 25485                    cedro mountain    1
## 25486                     ceiling after    1
## 25487                        ceiling at    1
## 25488                ceiling conditions    1
## 25489               ceiling considering    1
## 25490                 ceiling continued    1
## 25491                    ceiling during    1
## 25492                     ceiling night    1
## 25493                        ceiling of    1
## 25494                ceiling prescribed    1
## 25495                      ceiling rain    1
## 25496                   ceiling spatial    1
## 25497                  ceiling suddenly    1
## 25498                      ceiling when    1
## 25499                   ceilings clouds    1
## 25500                      ceilings due    1
## 25501                     ceilings high    1
## 25502                 ceilings whiteout    1
## 25503               celebration bearing    1
## 25504                  celebrity skiers    1
## 25505              celestial ammunition    1
## 25506                 celibrated polish    1
## 25507                    cell batteries    1
## 25508                      cell crashed    1
## 25509                        cell which    1
## 25510                         cells and    1
## 25511                    cells ruptured    1
## 25512                          cemet in    1
## 25513                      cemetery 300    1
## 25514                    cemetery short    1
## 25515                    cemetery while    1
## 25516                        cengalo on    1
## 25517                       center both    1
## 25518                        center had    1
## 25519                  center propeller    1
## 25520                    center shortly    1
## 25521                       center tank    1
## 25522                         center to    1
## 25523                       center were    1
## 25524                      centerline a    1
## 25525                    centerline and    1
## 25526                     centerline at    1
## 25527                 centerline became    1
## 25528                 centerline impact    1
## 25529                     centerline of    1
## 25530                centerline several    1
## 25531                     centerline to    1
## 25532                      centers that    1
## 25533                   centerville the    1
## 25534                  central airlines    1
## 25535                   central airport    1
## 25536                    central alaska    1
## 25537                central california    1
## 25538                        central dc    1
## 25539                   central glasgow    1
## 25540                       central hub    1
## 25541                       central new    1
## 25542                  central standard    1
## 25543                         centre of    1
## 25544                         cerdan 33    1
## 25545               cerritos california    1
## 25546                        cerro baco    1
## 25547                      cerro blanco    1
## 25548                     cerro carpich    1
## 25549                     cerro granada    1
## 25550                      cerro grande    1
## 25551                    cerro horqueta    1
## 25552                 cerro sincholagua    1
## 25553                        certain of    1
## 25554                     certainty but    1
## 25555                 certainty crashed    1
## 25556                      certainty he    1
## 25557                     certainty the    1
## 25558                   certificate 3rd    1
## 25559                    certificate an    1
## 25560                   certificate was    1
## 25561            certificated requiring    1
## 25562                 certification and    1
## 25563        certification requirements    1
## 25564                 certification was    1
## 25565          certificication envelope    1
## 25566                     certified aft    1
## 25567                 certified deicing    1
## 25568             certified operational    1
## 25569                  certified weight    1
## 25570                    cesare gaviria    1
## 25571             ceskoslovenske dakota    1
## 25572               ceskoslovenske loss    1
## 25573                         cessna 14    1
## 25574                        cessna 150    1
## 25575                        cessna 206    1
## 25576                        cessna 208    1
## 25577                      cessna about    1
## 25578                   cessna aircraft    1
## 25579                         cessna at    1
## 25580                       cessna both    1
## 25581                   cessna citation    1
## 25582                    cessna crashed    1
## 25583                     cessna failed    1
## 25584                       cessna from    1
## 25585                         cessna no    1
## 25586                     cessna system    1
## 25587                         cessna to    1
## 25588                        cessna two    1
## 25589                        ceylon and    1
## 25590                            cf 100    1
## 25591                           cf 101b    1
## 25592                   cfit controlled    1
## 25593                             cg to    1
## 25594                            cg too    1
## 25595                       cga landing    1
## 25596                             ch 47    1
## 25597                             ch 53    1
## 25598                            ch 53s    1
## 25599              chacaltaya mountains    1
## 25600                 chachacomani peak    1
## 25601            chachapoyas controlled    1
## 25602                           chad to    1
## 25603                    chadian rebels    1
## 25604                 chãƒâ teaubernard    1
## 25605                 chafed insulation    1
## 25606                      chafed wires    1
## 25607                      chain failed    1
## 25608                        chain link    1
## 25609                 chaiopeng between    1
## 25610                     chairman dick    1
## 25611                      chairman von    1
## 25612                     chalk's ocean    1
## 25613                     challenge his    1
## 25614                     challenged by    1
## 25615                 challenger flight    1
## 25616                   challenges from    1
## 25617               challenging landing    1
## 25618                      chambe while    1
## 25619                        chamber at    1
## 25620                 chamberlain field    1
## 25621              champadevi mountains    1
## 25622                     champion alan    1
## 25623                     champion jake    1
## 25624                   champion killed    1
## 25625                   champion marcel    1
## 25626                    champion rodeo    1
## 25627                       chance hill    1
## 25628                        chances of    1
## 25629                    chandler field    1
## 25630                        change and    1
## 25631                        change due    1
## 25632                    change heading    1
## 25633                         change of    1
## 25634                  change resulting    1
## 25635                       change took    1
## 25636                        change was    1
## 25637                  changed altitude    1
## 25638                 changed direction    1
## 25639                      changed from    1
## 25640                       changed his    1
## 25641                       changed its    1
## 25642                        changed to    1
## 25643                        changes in    1
## 25644                      changes made    1
## 25645                 changing attitude    1
## 25646                 changing handling    1
## 25647                      changing its    1
## 25648           changing meteorological    1
## 25649                      changing the    1
## 25650                       changing to    1
## 25651                    changing winds    1
## 25652                        channel 10    1
## 25653                        channel 50    1
## 25654                         channel a    1
## 25655             channel approximately    1
## 25656                     channel cause    1
## 25657                        channel en    1
## 25658                   channel failure    1
## 25659                        channel in    1
## 25660                        channel to    1
## 25661                       channel was    1
## 25662                     channel while    1
## 25663                     chantilly the    1
## 25664                       chaparra in    1
## 25665                chapecoense soccer    1
## 25666                  chaperi mountain    1
## 25667                         chapin 20    1
## 25668                characteristics in    1
## 25669               characteristics the    1
## 25670              characteristics were    1
## 25671                  characterized by    1
## 25672                       charge from    1
## 25673                         charge of    1
## 25674                      charged with    1
## 25675                  chargers running    1
## 25676                   charges against    1
## 25677                       charges atc    1
## 25678                        charges of    1
## 25679                     charging them    1
## 25680                  charlakhi island    1
## 25681                      charles town    1
## 25682                     charleston 30    1
## 25683                     charleston wv    1
## 25684                 charleston yeager    1
## 25685             charleville cloncurry    1
## 25686                     charlie peete    1
## 25687                 charlotte douglas    1
## 25688           charlottesville airport    1
## 25689                   charlston after    1
## 25690                          chart at    1
## 25691                         chart for    1
## 25692                        chart lost    1
## 25693                         chart the    1
## 25694                        chart used    1
## 25695                  charter aircraft    1
## 25696                  charter carrying    1
## 25697                       charter jet    1
## 25698                   charter overran    1
## 25699                     charter plane    1
## 25700                    charter planes    1
## 25701                       charter was    1
## 25702                chartered american    1
## 25703                   chartered cargo    1
## 25704                  chartered cessna    1
## 25705                    chartered from    1
## 25706               chartered passenger    1
## 25707                     chartered the    1
## 25708                        charts and    1
## 25709                   charts diverted    1
## 25710                    charts leading    1
## 25711                   charts provided    1
## 25712                        charts the    1
## 25713                       chase plane    1
## 25714                        chased the    1
## 25715                        chateau de    1
## 25716                     chatham sound    1
## 25717                         chavez 22    1
## 25718                          cheam at    1
## 25719                    cheat mountain    1
## 25720                 chechen guerillas    1
## 25721                  chechnyan rebels    1
## 25722                     check against    1
## 25723                  check altimeters    1
## 25724                         check and    1
## 25725                     check captain    1
## 25726                   check captain's    1
## 25727                         check his    1
## 25728                          check in    1
## 25729                    check interval    1
## 25730                          check on    1
## 25731                   check resulting    1
## 25732                        check that    1
## 25733                         check was    1
## 25734                       check while    1
## 25735                   checked baggage    1
## 25736                       checked sub    1
## 25737                      checking and    1
## 25738                      checking his    1
## 25739                       checklist a    1
## 25740                   checklist items    1
## 25741              checklist prejudiced    1
## 25742            checklist requirements    1
## 25743                      checklist so    1
## 25744                    checklist that    1
## 25745                      checklist to    1
## 25746                     checklist was    1
## 25747                   checklist which    1
## 25748                   checklists also    1
## 25749                        checks and    1
## 25750               checks contributing    1
## 25751                      chekiang the    1
## 25752                       chelan near    1
## 25753                   chelyabinsk the    1
## 25754                 chemical reaction    1
## 25755                            chen 6    1
## 25756                        chena dome    1
## 25757                        chengdu to    1
## 25758                       chessel and    1
## 25759                    chestnut ridge    1
## 25760                        chests all    1
## 25761                chetumal following    1
## 25762                    cheyenne pilot    1
## 25763                    cheyenne radio    1
## 25764                     cheyenne test    1
## 25765                    cheyenne under    1
## 25766                    cheyenne while    1
## 25767                          chi minh    1
## 25768                        chiang kai    1
## 25769                     chiao village    1
## 25770                  chicago's midway    1
## 25771                   chicago circled    1
## 25772                  chicago collided    1
## 25773                       chicago for    1
## 25774                    chicago o'hare    1
## 25775                      chicago when    1
## 25776                      chicago with    1
## 25777                 chichijima island    1
## 25778              chichontepec volcano    1
## 25779                      chiclayo and    1
## 25780                     chief general    1
## 25781                      chief mushaf    1
## 25782                        chief test    1
## 25783                   chikat mountain    1
## 25784                      child actors    1
## 25785                        child last    1
## 25786                        child myca    1
## 25787                          child on    1
## 25788                        child rene    1
## 25789                          child to    1
## 25790                         child was    1
## 25791                        children 3    1
## 25792                       children in    1
## 25793                       children on    1
## 25794                  children playing    1
## 25795                     children were    1
## 25796                  chile's national    1
## 25797                    chile carrying    1
## 25798                    chilean soccer    1
## 25799              chillacocha mountain    1
## 25800                  chilpancingo the    1
## 25801             chimborazo controlled    1
## 25802                        chime that    1
## 25803                    chimney before    1
## 25804                         china and    1
## 25805                     china clipper    1
## 25806                     china crashed    1
## 25807                         china the    1
## 25808                          chinaã â    1
## 25809                 chinese lachovlin    1
## 25810              chinese nationalists    1
## 25811                 chinese nationals    1
## 25812                   chinkiang under    1
## 25813                     chino airport    1
## 25814                      chino canyon    1
## 25815                      chinook when    1
## 25816                   chiquita lagoon    1
## 25817                         chita the    1
## 25818                chkalovsky airport    1
## 25819              chochabanba vanished    1
## 25820                         choice of    1
## 25821                      choir orfeon    1
## 25822                   choir reporters    1
## 25823                     cholera while    1
## 25824                          choose a    1
## 25825                     choosing that    1
## 25826                 choquetanga cause    1
## 25827                        chorro del    1
## 25828                     chose instead    1
## 25829                         chosen by    1
## 25830                  chosen diversion    1
## 25831                      chrashed the    1
## 25832              christchurch airport    1
## 25833                       christi bay    1
## 25834                  christians rugby    1
## 25835             christians throughout    1
## 25836                christmas vacation    1
## 25837              christopher columbus    1
## 25838                   chronic fatigue    1
## 25839                          chuck of    1
## 25840                  chugach mountain    1
## 25841                     chungking the    1
## 25842                      chunking the    1
## 25843                      chunking was    1
## 25844                        chunks and    1
## 25845                         chunks of    1
## 25846                        church and    1
## 25847                     churchill was    1
## 25848                   churia mountain    1
## 25849                     chute causing    1
## 25850                  chute deployment    1
## 25851                        chute from    1
## 25852                         chute had    1
## 25853                        chuuk weno    1
## 25854                        cichan was    1
## 25855                     cierva killed    1
## 25856                     cigarette and    1
## 25857                  cigarette caused    1
## 25858                 cigarette crashed    1
## 25859                      cigarette in    1
## 25860          cincinnati international    1
## 25861                      cindacta iii    1
## 25862                        cinq croix    1
## 25863                    cinta mountain    1
## 25864                   cintra mountain    1
## 25865                          cipãƒâ a    1
## 25866                        circle and    1
## 25867                       circle back    1
## 25868                       circle land    1
## 25869                         circle to    1
## 25870                      circle under    1
## 25871                         circled a    1
## 25872                       circled and    1
## 25873                    circled around    1
## 25874                     circled davao    1
## 25875                      circled into    1
## 25876                   circled several    1
## 25877                        circled to    1
## 25878                     circled until    1
## 25879                       circles for    1
## 25880                       circles its    1
## 25881                        circling a    1
## 25882                 circling canberra    1
## 25883                    circling gatow    1
## 25884               circling instrument    1
## 25885                  circling kaimana    1
## 25886                  circling pattern    1
## 25887                      circling six    1
## 25888                       circuit and    1
## 25889                      circuit back    1
## 25890                    circuit before    1
## 25891                        circuit of    1
## 25892                   circuit outside    1
## 25893                     circuit there    1
## 25894                        circuit to    1
## 25895                      circuit with    1
## 25896                circuitry probably    1
## 25897              circumstance crashed    1
## 25898                  circumstance the    1
## 25899               circumstances about    1
## 25900                  circumstances as    1
## 25901           circumstances conducive    1
## 25902                 circumstances few    1
## 25903                  circumstances in    1
## 25904           circumstances including    1
## 25905                  circumstances it    1
## 25906                circumstances near    1
## 25907             circumstances plunged    1
## 25908            circumstances required    1
## 25909                 circumstances was    1
## 25910           circumstantial evidence    1
## 25911                             cit y    1
## 25912                       citation ii    1
## 25913                     citation were    1
## 25914                    cities airport    1
## 25915                       cities when    1
## 25916                      citrus fruit    1
## 25917                    city amusement    1
## 25918                          city and    1
## 25919                         city area    1
## 25920                    city breeching    1
## 25921                      city causing    1
## 25922                      city crashed    1
## 25923                      city failure    1
## 25924                      city heading    1
## 25925                         city iowa    1
## 25926                           city it    1
## 25927                       city kansas    1
## 25928                           city la    1
## 25929                     city maryland    1
## 25930                 city navigational    1
## 25931                          city new    1
## 25932                          city one    1
## 25933                       city police    1
## 25934                    city president    1
## 25935                      city shortly    1
## 25936                       city street    1
## 25937                      city takeoff    1
## 25938                     city tocument    1
## 25939                         city utah    1
## 25940                        city while    1
## 25941                    city witnesses    1
## 25942                    ciudad bolivar    1
## 25943                    ciudad guayana    1
## 25944                     ciudad valles    1
## 25945                      civil airway    1
## 25946                    civil approach    1
## 25947                    civil aviation    1
## 25948                  civil aviation's    1
## 25949                   civil emergency    1
## 25950                       civil trial    1
## 25951                 civilian aircraft    1
## 25952                    civilian cargo    1
## 25953             civilian construction    1
## 25954             civilian contractor's    1
## 25955              civilian controllers    1
## 25956                civilian dependent    1
## 25957                   civilian houses    1
## 25958                  civilian iranian    1
## 25959               civilian passengers    1
## 25960                    civilian pilot    1
## 25961                civilian relatives    1
## 25962                    civilian ships    1
## 25963                      civilian the    1
## 25964                  civilians aboard    1
## 25965                     civilians and    1
## 25966                      civilians on    1
## 25967                     civilians one    1
## 25968                     civilians the    1
## 25969                     civilians two    1
## 25970                   civilization he    1
## 25971                  civilization she    1
## 25972                       cl2 gyrosyn    1
## 25973                        claim more    1
## 25974                          claim to    1
## 25975                         claimed a    1
## 25976                        claimed he    1
## 25977                      claimed that    1
## 25978                      claimed they    1
## 25979                        claimed to    1
## 25980                   clambered clear    1
## 25981                          clamp in    1
## 25982                       clapton was    1
## 25983                         clara the    1
## 25984                    clarence bates    1
## 25985                     clarence king    1
## 25986                  clarification of    1
## 25987                        clarity in    1
## 25988                         clark air    1
## 25989                     clark russell    1
## 25990                         class had    1
## 25991                  classic symptoms    1
## 25992                     classified by    1
## 25993                      clean flight    1
## 25994                  cleaning causing    1
## 25995                       clear along    1
## 25996                        clear cold    1
## 25997                    clear commands    1
## 25998                         clear due    1
## 25999                     clear fifteen    1
## 26000                         clear fog    1
## 26001                          clear it    1
## 26002                        clear lake    1
## 26003                    clear mountain    1
## 26004                clear obstructions    1
## 26005                     clear rapidly    1
## 26006                        clear that    1
## 26007                       clear trees    1
## 26008                       clearance a    1
## 26009                   clearance above    1
## 26010                      clearance an    1
## 26011                  clearance cashed    1
## 26012                clearance confused    1
## 26013               clearance congested    1
## 26014                   clearance could    1
## 26015                 clearance crashed    1
## 26016                clearance delivery    1
## 26017                 clearance factors    1
## 26018                   clearance given    1
## 26019                      clearance he    1
## 26020                      clearance in    1
## 26021            clearance instructions    1
## 26022                      clearance is    1
## 26023                  clearance issued    1
## 26024                     clearance not    1
## 26025                      clearance on    1
## 26026                      clearance or    1
## 26027                    clearance poor    1
## 26028            clearance requirements    1
## 26029                     clearance sid    1
## 26030               clearance standards    1
## 26031                    clearance that    1
## 26032                    clearance this    1
## 26033                   clearance until    1
## 26034                     clearance vfr    1
## 26035                     clearance was    1
## 26036                    clearance when    1
## 26037                   clearance while    1
## 26038                    clearance with    1
## 26039                    clearances and    1
## 26040                     clearances in    1
## 26041                     clearances of    1
## 26042                    clearances the    1
## 26043                         cleard to    1
## 26044                  cleared altitude    1
## 26045                   cleared failure    1
## 26046                        cleared of    1
## 26047                        cleared on    1
## 26048                      cleared them    1
## 26049                   cleared through    1
## 26050                       clearing in    1
## 26051                clearing procedure    1
## 26052                    clearlake iowa    1
## 26053                       clearly but    1
## 26054                   clearly defined    1
## 26055                clearly identified    1
## 26056                        clearly in    1
## 26057                       clemente 38    1
## 26058                      clemente was    1
## 26059                      clements bay    1
## 26060                        clergy the    1
## 26061             clermont ferrand.flew    1
## 26062                     cleveland bay    1
## 26063                     cleveland the    1
## 26064                        clevis and    1
## 26065                         clevis in    1
## 26066                       cliff after    1
## 26067                        cliff into    1
## 26068                      cliff lifted    1
## 26069                     cliff stalled    1
## 26070                       cliff which    1
## 26071                       cliff while    1
## 26072                     cliffs engine    1
## 26073                         cliffs in    1
## 26074                       cliffs just    1
## 26075                      cliffs while    1
## 26076                       climate the    1
## 26077                        climax the    1
## 26078                       climb angle    1
## 26079                    climb appeared    1
## 26080                          climb as    1
## 26081                     climb because    1
## 26082                      climb before    1
## 26083                     climb crashed    1
## 26084                      climb during    1
## 26085                     climb earlier    1
## 26086                      climb flight    1
## 26087                       climb icing    1
## 26088                        climb into    1
## 26089                     climb leading    1
## 26090                      climb likely    1
## 26091                    climb normally    1
## 26092                 climb performance    1
## 26093                       climb plane    1
## 26094                   climb procedure    1
## 26095                     climb profile    1
## 26096                     climb shortly    1
## 26097                       climb speed    1
## 26098                        climb that    1
## 26099                      climb thrust    1
## 26100                        climb very    1
## 26101                         climb was    1
## 26102                     climb without    1
## 26103                     climbed after    1
## 26104                       climbed and    1
## 26105                        climbed at    1
## 26106                        climbed in    1
## 26107                      climbed past    1
## 26108                   climbed through    1
## 26109                    climbing above    1
## 26110                    climbing angle    1
## 26111                 climbing attitude    1
## 26112                     climbing away    1
## 26113                       climbing by    1
## 26114                       climbing en    1
## 26115                     climbing flew    1
## 26116                     climbing into    1
## 26117                     climbing lost    1
## 26118                 climbing slightly    1
## 26119                    climbing speed    1
## 26120                     climbing then    1
## 26121                    climbing while    1
## 26122                    climbout after    1
## 26123                      climbout and    1
## 26124                  climbout forcing    1
## 26125                      climbout gca    1
## 26126                      climbout out    1
## 26127                    climbout phase    1
## 26128                   cline's manager    1
## 26129                          cline 30    1
## 26130                   cline allegedly    1
## 26131                        cline they    1
## 26132                          cline to    1
## 26133                         cline was    1
## 26134                          clineã â    1
## 26135                        clinic for    1
## 26136                          clip the    1
## 26137                        clip trees    1
## 26138                      clipped palm    1
## 26139                     clipped power    1
## 26140                      clipped roof    1
## 26141                      clipped some    1
## 26142                   clipper america    1
## 26143                 clipper caribbean    1
## 26144                 clipper celestial    1
## 26145                    clipper climax    1
## 26146              clipper constitution    1
## 26147                   clipper crashed    1
## 26148                  clipper defiance    1
## 26149                   clipper eclipse    1
## 26150                  clipper endeavor    1
## 26151                clipper friendship    1
## 26152                    clipper golden    1
## 26153                      clipper good    1
## 26154                     clipper great    1
## 26155                      clipper maid    1
## 26156                     clipper malay    1
## 26157                   clipper monarch    1
## 26158                      clipper navy    1
## 26159                  clipper novelist    1
## 26160                       clipper pan    1
## 26161                   clipper raidant    1
## 26162                   clipper romance    1
## 26163                 clipper sovereign    1
## 26164                  clipper talisman    1
## 26165                    clipper titian    1
## 26166                 clipper tradewind    1
## 26167                    clipper united    1
## 26168                    clipper victor    1
## 26169                    clipper winged    1
## 26170                      clipping the    1
## 26171                     clipping tree    1
## 26172                    clipping trees    1
## 26173                 clockmaker helped    1
## 26174                          clog the    1
## 26175                   clogged bleeder    1
## 26176                     clogged pitot    1
## 26177                     cloncurry and    1
## 26178                          close an    1
## 26179                   close attention    1
## 26180                       close calls    1
## 26181                   close encounter    1
## 26182                    close obstacle    1
## 26183                       close range    1
## 26184                      closed again    1
## 26185                    closed airport    1
## 26186                   closed airports    1
## 26187                 closed completely    1
## 26188                      closed doors    1
## 26189                        closed due    1
## 26190                        closed for    1
## 26191                    closed however    1
## 26192                         closed in    1
## 26193                         closed it    1
## 26194                        closely to    1
## 26195                  closer diversion    1
## 26196                 closing landscape    1
## 26197                       closure and    1
## 26198                     closure angle    1
## 26199                     closure rates    1
## 26200                      clothing and    1
## 26201                 cloud approaching    1
## 26202                  cloud conditions    1
## 26203                      cloud during    1
## 26204                          cloud in    1
## 26205                        cloud mass    1
## 26206                       cloud never    1
## 26207                   cloud prepatory    1
## 26208                   cloud resulting    1
## 26209                         cloud the    1
## 26210                         cloud was    1
## 26211                       cloud which    1
## 26212                         clouds 28    1
## 26213                         clouds 47    1
## 26214                 clouds associated    1
## 26215                     clouds before    1
## 26216                       clouds both    1
## 26217                 clouds controlled    1
## 26218                    clouds crashed    1
## 26219                      clouds cross    1
## 26220                clouds disappeared    1
## 26221                     clouds during    1
## 26222                       clouds flew    1
## 26223                        clouds fog    1
## 26224                    clouds hanging    1
## 26225                        clouds his    1
## 26226                         clouds it    1
## 26227                       clouds lack    1
## 26228                       clouds lost    1
## 26229                         clouds or    1
## 26230                       clouds over    1
## 26231                       clouds rain    1
## 26232                clouds reappearing    1
## 26233                    clouds reduced    1
## 26234                   clouds reducing    1
## 26235                     clouds severe    1
## 26236                clouds surrounding    1
## 26237               clouds thunderstorm    1
## 26238                         clouds to    1
## 26239                     clouds twenty    1
## 26240                       clouds upon    1
## 26241                        clouds was    1
## 26242                       clouds were    1
## 26243                       clouds when    1
## 26244                  clouds windshear    1
## 26245                           club as    1
## 26246                      club crashed    1
## 26247                          club med    1
## 26248                          club the    1
## 26249                       cluj napoca    1
## 26250                        clutch had    1
## 26251                        clutch was    1
## 26252                        clutha pub    1
## 26253                         co before    1
## 26254                        co charter    1
## 26255                           co lack    1
## 26256                     co ordination    1
## 26257                         co2 could    1
## 26258                       coach knute    1
## 26259                      coach robert    1
## 26260                        coaches on    1
## 26261                       coal miners    1
## 26262                   coarsening unit    1
## 26263                     coast crashed    1
## 26264                     coast failure    1
## 26265                        coast near    1
## 26266                     coast shortly    1
## 26267                        coast tail    1
## 26268                         coast two    1
## 26269                       coast under    1
## 26270                        coast when    1
## 26271                       coast while    1
## 26272                   coastal capital    1
## 26273                     coastline and    1
## 26274                   coastline while    1
## 26275                    coating flakes    1
## 26276                   coating flaking    1
## 26277              coaxial misalignment    1
## 26278                       cocaine and    1
## 26279            cochabamba disappeared    1
## 26280                      cockpit area    1
## 26281                        cockpit at    1
## 26282                 cockpit attempted    1
## 26283                 cockpit automated    1
## 26284                   cockpit because    1
## 26285                   cockpit causing    1
## 26286                   cockpit ceiling    1
## 26287                 cockpit checklist    1
## 26288                 cockpit clambered    1
## 26289                  cockpit darkness    1
## 26290               cockpit distracting    1
## 26291                 cockpit exchanges    1
## 26292                    cockpit filled    1
## 26293                     cockpit floor    1
## 26294                      cockpit from    1
## 26295                       cockpit hit    1
## 26296               cockpit indications    1
## 26297                   cockpit instead    1
## 26298           cockpit instrumentation    1
## 26299               cockpit limitations    1
## 26300                 cockpit procedure    1
## 26301                cockpit procedures    1
## 26302                 cockpit rendering    1
## 26303                  cockpit resource    1
## 26304                      cockpit roof    1
## 26305                   cockpit sharing    1
## 26306               cockpit supervision    1
## 26307                      cockpit tcas    1
## 26308                     cockpit three    1
## 26309                        cockpit to    1
## 26310                cockpit visibility    1
## 26311                   cockpit warning    1
## 26312                       cockpit was    1
## 26313                      cockpit went    1
## 26314                    cockpit window    1
## 26315                   cockpit windows    1
## 26316                     cockpit would    1
## 26317                     cocos islands    1
## 26318                           code of    1
## 26319                         code vapp    1
## 26320                     coded message    1
## 26321                      coerced into    1
## 26322                          cofg was    1
## 26323                      cofins three    1
## 26324                          cogar 51    1
## 26325                      cognac chãƒâ    1
## 26326                       coiba while    1
## 26327                          coin was    1
## 26328                    coincided with    1
## 26329                  cointrin airport    1
## 26330                           col des    1
## 26331                     col turganbek    1
## 26332                       col william    1
## 26333                 colcanin mountain    1
## 26334                          cold and    1
## 26335                       cold before    1
## 26336                  cold environment    1
## 26337                        cold front    1
## 26338                      cold weather    1
## 26339                        colgan air    1
## 26340                       colgan airã    1
## 26341                      collapse and    1
## 26342                       collapse as    1
## 26343                    collapse bolts    1
## 26344                   collapse inward    1
## 26345                      collapse the    1
## 26346                   collapsed after    1
## 26347                collapsed improper    1
## 26348                     collapsed two    1
## 26349                 collapsed violent    1
## 26350                    collarbone and    1
## 26351                    collect 37,500    1
## 26352                     collection of    1
## 26353          collectively contributed    1
## 26354                     collector box    1
## 26355                    college during    1
## 26356                       college san    1
## 26357                      collide with    1
## 26358                        collided a    1
## 26359                    collided after    1
## 26360                     collided head    1
## 26361                 collided hijacked    1
## 26362                    collided while    1
## 26363                     colliding the    1
## 26364                    collins killed    1
## 26365                      collision 17    1
## 26366                       collision a    1
## 26367                 collision against    1
## 26368                     collision and    1
## 26369                      collision as    1
## 26370                    collision crew    1
## 26371                  collision eleven    1
## 26372                collision exposure    1
## 26373                    collision five    1
## 26374              collision inadequate    1
## 26375                      collision it    1
## 26376                      collision of    1
## 26377                   collision pilot    1
## 26378              collision protection    1
## 26379                collision resulted    1
## 26380                    collision same    1
## 26381               collision seventeen    1
## 26382                     collision two    1
## 26383                     collision was    1
## 26384                   collision while    1
## 26385                    colllided with    1
## 26386                        cologne to    1
## 26387                      colombia for    1
## 26388               colombian caribbean    1
## 26389                  colombian jungle    1
## 26390               colombian territory    1
## 26391                      colombo both    1
## 26392                       colombo the    1
## 26393                       colon after    1
## 26394                       colon cargo    1
## 26395                    colonel norman    1
## 26396                      colony while    1
## 26397                  coloque mountain    1
## 26398                       colorado at    1
## 26399                       colorado in    1
## 26400                  colorado springs    1
## 26401                       colorful 11    1
## 26402                    columba guinea    1
## 26403             columbia metropolitan    1
## 26404                    columbia river    1
## 26405              columbian venezuelan    1
## 26406                     columbus took    1
## 26407                         column of    1
## 26408                     column shaker    1
## 26409                    column slipped    1
## 26410                     columnist tom    1
## 26411                    columnist were    1
## 26412                          coma for    1
## 26413                  comair's failure    1
## 26414                   comair's manual    1
## 26415                      comb because    1
## 26416                    combat mission    1
## 26417                      combat tours    1
## 26418                        combat u.s    1
## 26419                  combined effects    1
## 26420                  combined failure    1
## 26421                       combined to    1
## 26422                     combined with    1
## 26423                    combustion for    1
## 26424                      combustor on    1
## 26425                    combustor slow    1
## 26426                        come apart    1
## 26427                         come down    1
## 26428                         come into    1
## 26429                          come the    1
## 26430                           come up    1
## 26431                   comedian george    1
## 26432                    comet aircraft    1
## 26433                      coming apart    1
## 26434                       coming back    1
## 26435                       coming down    1
## 26436                       coming into    1
## 26437                        command 14    1
## 26438                 command adversely    1
## 26439                     command after    1
## 26440                        command as    1
## 26441                 command attempted    1
## 26442                        command by    1
## 26443                   command changed    1
## 26444                command consistent    1
## 26445                 command continued    1
## 26446                command continuing    1
## 26447              command coordination    1
## 26448                   command crashed    1
## 26449                   command decided    1
## 26450                  command deprived    1
## 26451                       command did    1
## 26452              command disconnected    1
## 26453                  command executed    1
## 26454                 command exercised    1
## 26455                      command from    1
## 26456                command initiating    1
## 26457                    command killed    1
## 26458                      command lack    1
## 26459                      command lost    1
## 26460                      command made    1
## 26461                       command may    1
## 26462                command misleading    1
## 26463                       command nor    1
## 26464                 command permitted    1
## 26465                     command pilot    1
## 26466                    command pulled    1
## 26467                    command pushed    1
## 26468          command responsibilities    1
## 26469                 command retracted    1
## 26470                  command suffered    1
## 26471                  command switched    1
## 26472                   command terrain    1
## 26473                      command took    1
## 26474                      command were    1
## 26475                     command while    1
## 26476                       command who    1
## 26477                      commanded by    1
## 26478                  commandeered the    1
## 26479              commander's decision    1
## 26480             commander's unability    1
## 26481                      commander as    1
## 26482                     commander not    1
## 26483                      commander of    1
## 26484                     commander the    1
## 26485                   commander which    1
## 26486                commanding officer    1
## 26487                     commando raid    1
## 26488                       commands as    1
## 26489                       commands of    1
## 26490                     commence with    1
## 26491                       commenced a    1
## 26492                commenced dropping    1
## 26493                     commenced its    1
## 26494                      commenced to    1
## 26495                    commenced with    1
## 26496                    commencing his    1
## 26497                        comment or    1
## 26498                       commented i    1
## 26499              commerce regulations    1
## 26500                      commerce ron    1
## 26501               commercial aircraft    1
## 26502                commercial airline    1
## 26503               commercial aviation    1
## 26504               commercial building    1
## 26505                commercial filming    1
## 26506                commercial flights    1
## 26507             commercial helicopter    1
## 26508                 commercial midair    1
## 26509                     commitment to    1
## 26510                      committed an    1
## 26511                 committed serious    1
## 26512                   committee found    1
## 26513                committing himself    1
## 26514                      commotion in    1
## 26515                   communicate his    1
## 26516                   communicate the    1
## 26517                 communicate their    1
## 26518                    communicate to    1
## 26519                   communicated to    1
## 26520             communicating through    1
## 26521                communicating with    1
## 26522            communication problems    1
## 26523               communication tower    1
## 26524                 communication two    1
## 26525                 communication was    1
## 26526         communications facilities    1
## 26527         communications guidelines    1
## 26528                 communications in    1
## 26529            communications leaving    1
## 26530             communications midair    1
## 26531          communications operators    1
## 26532         communications procedures    1
## 26533               communications were    1
## 26534               communications with    1
## 26535                    communist anti    1
## 26536                      community of    1
## 26537                 commuter airliner    1
## 26538                      commuter was    1
## 26539                comodoro rivadavia    1
## 26540                      comoros when    1
## 26541                     companies air    1
## 26542                    companies four    1
## 26543                    companion were    1
## 26544                     companions in    1
## 26545              company's dispatcher    1
## 26546                 company's failure    1
## 26547                   company's first    1
## 26548                  company's ground    1
## 26549              company's inadequate    1
## 26550                  company's laxity    1
## 26551                    company's load    1
## 26552             company's maintenance    1
## 26553                  company's minima    1
## 26554                 company airplanes    1
## 26555                  company approach    1
## 26556                company checklists    1
## 26557                       company due    1
## 26558                 company employees    1
## 26559                    company ground    1
## 26560                     company guard    1
## 26561                       company had    1
## 26562                        company he    1
## 26563                        company in    1
## 26564                company instrument    1
## 26565                      company knew    1
## 26566               company maintenance    1
## 26567                company management    1
## 26568                   company manuals    1
## 26569                  company minimums    1
## 26570                  company operator    1
## 26571                   company overran    1
## 26572                  company personne    1
## 26573                 company personnel    1
## 26574                  company policies    1
## 26575                    company policy    1
## 26576                  company sundance    1
## 26577                       company was    1
## 26578                      company were    1
## 26579                        companyã â    1
## 26580                     comparable to    1
## 26581                  comparator alarm    1
## 26582                comparator warning    1
## 26583               comparator warnings    1
## 26584                       compared to    1
## 26585                     compartment 6    1
## 26586                 compartment after    1
## 26587                   compartment and    1
## 26588                    compartment in    1
## 26589                    compartment it    1
## 26590               compartment located    1
## 26591                    compartment of    1
## 26592                    compartment or    1
## 26593               compartment planted    1
## 26594                 compartment three    1
## 26595                 compartment under    1
## 26596                  compartment wall    1
## 26597               compartment warning    1
## 26598                 compartment which    1
## 26599                compass artificial    1
## 26600                       compass cl2    1
## 26601                     compass error    1
## 26602                     compass gyros    1
## 26603                        compass in    1
## 26604                compass indication    1
## 26605               compass inoperative    1
## 26606                   compass leading    1
## 26607                 compass plummeted    1
## 26608                       compass was    1
## 26609                     compass which    1
## 26610                      compasses as    1
## 26611               compasses captain's    1
## 26612                   compatible with    1
## 26613                     compensate by    1
## 26614              compensation applied    1
## 26615                  compensations to    1
## 26616           compensator degradation    1
## 26617                   compensator ran    1
## 26618                   compensator the    1
## 26619                complete autopilot    1
## 26620                    complete check    1
## 26621              complete destruction    1
## 26622                   complete engine    1
## 26623              complete established    1
## 26624                     complete left    1
## 26625                    complete light    1
## 26626               complete mechanical    1
## 26627                 complete recovery    1
## 26628                       completed 3    1
## 26629                       completed a    1
## 26630                      completed in    1
## 26631                     completed the    1
## 26632                     completely 37    1
## 26633                    completely and    1
## 26634                  completely broke    1
## 26635                 completely burned    1
## 26636             completely demolished    1
## 26637              completely destroyed    1
## 26638                 completely follow    1
## 26639               completely separate    1
## 26640                     completing an    1
## 26641                    completing two    1
## 26642                         complex a    1
## 26643                     complex chain    1
## 26644                  complex improper    1
## 26645                   complex shortly    1
## 26646                     complex while    1
## 26647                     compliance of    1
## 26648             complicated maneuvers    1
## 26649               complicated removal    1
## 26650                  component failed    1
## 26651                 component failure    1
## 26652                 component greater    1
## 26653                      component in    1
## 26654               component positions    1
## 26655               components improper    1
## 26656                     components of    1
## 26657                      composer and    1
## 26658                      compound and    1
## 26659                     compounded by    1
## 26660                     compounds the    1
## 26661               compressed approach    1
## 26662                    compression of    1
## 26663                   compressor disc    1
## 26664                   compressor from    1
## 26665               compressor impeller    1
## 26666                    compressor led    1
## 26667                     compressor of    1
## 26668                 compressor spacer    1
## 26669                    compressor the    1
## 26670                   compressor this    1
## 26671                compressor turbine    1
## 26672               compressors crashed    1
## 26673                  compressors tore    1
## 26674                   compromised the    1
## 26675                 computed rotation    1
## 26676                       computer as    1
## 26677               computer controlled    1
## 26678                     computer data    1
## 26679                   computer flight    1
## 26680                      computer for    1
## 26681                    computer known    1
## 26682                   computer stored    1
## 26683                    computer which    1
## 26684                      computers to    1
## 26685              concealed themselves    1
## 26686                      concealing a    1
## 26687                  concentration of    1
## 26688                concepcion volcano    1
## 26689                        concept to    1
## 26690                     concept which    1
## 26691                     concern about    1
## 26692                      concern over    1
## 26693                        concern to    1
## 26694                   concerned about    1
## 26695                     concerned and    1
## 26696                    concerning use    1
## 26697                    concerns about    1
## 26698                     concert group    1
## 26699                        concert in    1
## 26700                      conclude the    1
## 26701                      concluded at    1
## 26702                     concluded the    1
## 26703                    concludes that    1
## 26704                   concluding that    1
## 26705                     conclusion of    1
## 26706                  concorde's tires    1
## 26707                       concorde in    1
## 26708                    concreate wall    1
## 26709                   concrete blocks    1
## 26710                  concrete culvert    1
## 26711                 concrete drainage    1
## 26712              concrete obstruction    1
## 26713            concurrent restoration    1
## 26714                 conditiions below    1
## 26715               conditiions crashed    1
## 26716                   condition arose    1
## 26717                      condition as    1
## 26718                      condition at    1
## 26719                  condition before    1
## 26720                  condition caused    1
## 26721               condition conducive    1
## 26722            condition contributing    1
## 26723                 condition existed    1
## 26724                condition external    1
## 26725                     condition for    1
## 26726                     condition hit    1
## 26727                 condition instead    1
## 26728                   condition known    1
## 26729                    condition made    1
## 26730                      condition or    1
## 26731                    condition over    1
## 26732                condition resulted    1
## 26733                    condition snow    1
## 26734                    condition that    1
## 26735                      condition to    1
## 26736              condition turbulence    1
## 26737                  condition turned    1
## 26738                     condition was    1
## 26739                conditioning packs    1
## 26740                    conditions 0.8    1
## 26741                     conditions 30    1
## 26742                      conditions 5    1
## 26743               conditions aircraft    1
## 26744             conditions apparently    1
## 26745             conditions authorized    1
## 26746                 conditions before    1
## 26747                  conditions broke    1
## 26748                  conditions buddy    1
## 26749                     conditions by    1
## 26750                  conditions cargo    1
## 26751                 conditions caused    1
## 26752                conditions causing    1
## 26753                conditions changed    1
## 26754                  conditions close    1
## 26755              conditions conducive    1
## 26756             conditions conductive    1
## 26757             conditions consisting    1
## 26758              conditions continued    1
## 26759               conditions contrary    1
## 26760                conditions coupled    1
## 26761                   conditions crew    1
## 26762                   conditions dark    1
## 26763              conditions described    1
## 26764                   conditions down    1
## 26765                 conditions either    1
## 26766                conditions entered    1
## 26767            conditions established    1
## 26768              conditions excessive    1
## 26769                  conditions exist    1
## 26770                conditions factors    1
## 26771                   conditions five    1
## 26772                    conditions fog    1
## 26773                    conditions for    1
## 26774                 conditions forced    1
## 26775                   conditions four    1
## 26776                 conditions french    1
## 26777                     conditions he    1
## 26778                conditions imposed    1
## 26779               conditions improper    1
## 26780               conditions improved    1
## 26781          conditions inappropriate    1
## 26782             conditions incomplete    1
## 26783              conditions incorrect    1
## 26784                conditions instead    1
## 26785                   conditions into    1
## 26786              conditions involving    1
## 26787                    conditions low    1
## 26788                   conditions made    1
## 26789             conditions microburst    1
## 26790                conditions minutes    1
## 26791           conditions misjudgement    1
## 26792                 conditions misled    1
## 26793              conditions nantucket    1
## 26794           conditions navigational    1
## 26795                   conditions near    1
## 26796                     conditions no    1
## 26797                  conditions north    1
## 26798                    conditions not    1
## 26799                    conditions one    1
## 26800             conditions overloaded    1
## 26801                   conditions poor    1
## 26802               conditions possible    1
## 26803            conditions preliminary    1
## 26804               conditions probable    1
## 26805               conditions produced    1
## 26806                  conditions radio    1
## 26807               conditions reported    1
## 26808               conditions required    1
## 26809              conditions requiring    1
## 26810            conditions restricting    1
## 26811               conditions returned    1
## 26812                 conditions rumors    1
## 26813                 conditions severe    1
## 26814                   conditions snow    1
## 26815                   conditions soon    1
## 26816                 conditions static    1
## 26817           conditions subsequently    1
## 26818                 conditions sudden    1
## 26819               conditions supplied    1
## 26820              conditions suspected    1
## 26821                   conditions this    1
## 26822          conditions thunderstorms    1
## 26823                  conditions tried    1
## 26824                    conditions two    1
## 26825                    conditions u.s    1
## 26826                  conditions under    1
## 26827              conditions undershot    1
## 26828                conditions weather    1
## 26829              conditions windshear    1
## 26830                  conditions worse    1
## 26831                  conditions would    1
## 26832           conditions.the aircraft    1
## 26833              conditions.the cause    1
## 26834                   conditons after    1
## 26835                     conditons and    1
## 26836                      conditons at    1
## 26837             conditons controllled    1
## 26838                 conditons failure    1
## 26839                      conditons of    1
## 26840                   conditons pilot    1
## 26841                   conditons while    1
## 26842                   condtions after    1
## 26843                     condtions and    1
## 26844                condtions crashing    1
## 26845                  condtions during    1
## 26846                    condtions fuel    1
## 26847                   condtions icing    1
## 26848                condtions improved    1
## 26849                 condtions shortly    1
## 26850                  condtions struck    1
## 26851                     condtions was    1
## 26852                   condtions while    1
## 26853                      conducted at    1
## 26854                    conducted user    1
## 26855                   conducted using    1
## 26856                  conducted within    1
## 26857                 conducted without    1
## 26858                 conducting aerial    1
## 26859                     conducting an    1
## 26860              conducting exercises    1
## 26861                    conducting sky    1
## 26862                    conducting the    1
## 26863               conducting training    1
## 26864                     conductive to    1
## 26865                     conductor and    1
## 26866                   conductor guido    1
## 26867                      condusive to    1
## 26868                      cone sheared    1
## 26869                   conferring with    1
## 26870                  confidence being    1
## 26871                     confidence in    1
## 26872                configueration and    1
## 26873            configueration crashed    1
## 26874              configueration plane    1
## 26875               configuration after    1
## 26876                  configuration at    1
## 26877             configuration brought    1
## 26878             configuration causing    1
## 26879             configuration crashed    1
## 26880                 configuration for    1
## 26881                 configuration nor    1
## 26882                  configuration of    1
## 26883          configuration officially    1
## 26884                  configuration on    1
## 26885               configuration which    1
## 26886                configurations and    1
## 26887                configure aircraft    1
## 26888                     configure and    1
## 26889              configured airplanes    1
## 26890                       confined to    1
## 26891                       confirm and    1
## 26892                     confirm their    1
## 26893                   confirmation of    1
## 26894             confirmed established    1
## 26895                    confirmed that    1
## 26896                     confirmed the    1
## 26897                     confirms that    1
## 26898                    conflict alert    1
## 26899                    conflict while    1
## 26900                  conflicting fire    1
## 26901               conflicting reports    1
## 26902               conflicting shortly    1
## 26903                  conflicting wind    1
## 26904                        conform it    1
## 26905                  conformance with    1
## 26906                    conforming the    1
## 26907                    confuse pilots    1
## 26908                    confused about    1
## 26909                   confused mental    1
## 26910                       confused on    1
## 26911                     confused them    1
## 26912               confusing exchanges    1
## 26913                confusing response    1
## 26914            confusing transmission    1
## 26915                 confusion because    1
## 26916                      confusion of    1
## 26917                    congested area    1
## 26918                      congo border    1
## 26919                       congo river    1
## 26920                       congo three    1
## 26921                         congo was    1
## 26922                     congolese air    1
## 26923                     congolese man    1
## 26924            congolese neighborhood    1
## 26925                   congress leader    1
## 26926                   congressman and    1
## 26927             congressman ildefonso    1
## 26928                  congressman nick    1
## 26929                    connected high    1
## 26930                     connected the    1
## 26931                 connecticut river    1
## 26932                    connecting the    1
## 26933                    connection led    1
## 26934                   connector clamp    1
## 26935                         connie as    1
## 26936                connie immediately    1
## 26937                    connie tearing    1
## 26938                        connie was    1
## 26939                   conrete barrier    1
## 26940               conributing factors    1
## 26941                     conrol system    1
## 26942                 consciousness and    1
## 26943                 consciousness due    1
## 26944                  consecutive days    1
## 26945                   consequence ran    1
## 26946                    consequences a    1
## 26947                   consequences of    1
## 26948               consequent extended    1
## 26949                  consequent shift    1
## 26950                  consequently did    1
## 26951               consequently failed    1
## 26952                 consequently they    1
## 26953                     consider that    1
## 26954                   considerable in    1
## 26955            considerable intensity    1
## 26956                 considerably been    1
## 26957                  considerably off    1
## 26958                considerably worse    1
## 26959                   considering its    1
## 26960                   considering the    1
## 26961                      consisted in    1
## 26962               consistent guidance    1
## 26963                     consisting in    1
## 26964                      constance in    1
## 26965                   constance while    1
## 26966                constant operation    1
## 26967                constatine airport    1
## 26968                 constellation and    1
## 26969             constellation because    1
## 26970                constellation crew    1
## 26971              constellation killed    1
## 26972              constellation pilots    1
## 26973        constellation.the aircraft    1
## 26974                     constituted a    1
## 26975             constitution collided    1
## 26976                    construction a    1
## 26977              construction between    1
## 26978            construction equipment    1
## 26979                construction group    1
## 26980             construction material    1
## 26981                construction while    1
## 26982                     consulting in    1
## 26983                       consumed an    1
## 26984                       consumed by    1
## 26985                      consumed the    1
## 26986                 consuming alcohol    1
## 26987                 consumption after    1
## 26988               consumption crashed    1
## 26989              consumption decision    1
## 26990                       contact and    1
## 26991                        contact as    1
## 26992                        contact by    1
## 26993                       contact due    1
## 26994                    contact during    1
## 26995                      contact from    1
## 26996                       contact may    1
## 26997                        contact of    1
## 26998                  contact reported    1
## 26999                     contacted air    1
## 27000                     contacted atc    1
## 27001                  contacted ground    1
## 27002               contacted mauritius    1
## 27003                 contacted palermo    1
## 27004                    contacted some    1
## 27005                     contacts with    1
## 27006                   contadora after    1
## 27007                 contain lightning    1
## 27008                contain sufficient    1
## 27009                       contained a    1
## 27010                      contained in    1
## 27011                    contained only    1
## 27012                container exceeded    1
## 27013                      container in    1
## 27014                     container the    1
## 27015                   containing only    1
## 27016                    containing tnt    1
## 27017               contaminate cockpit    1
## 27018                 contaminated fuel    1
## 27019                  contaminated the    1
## 27020                 contaminated wing    1
## 27021             contamination causing    1
## 27022             contamination crashed    1
## 27023             contamination ditched    1
## 27024                 contamination has    1
## 27025                 contamination jet    1
## 27026                 contamination led    1
## 27027                contamination loss    1
## 27028            contamination migrated    1
## 27029               contamination water    1
## 27030                contamination when    1
## 27031                        content of    1
## 27032                contentious matter    1
## 27033                     contents into    1
## 27034              continental airlines    1
## 27035                   continental and    1
## 27036              continental mechanic    1
## 27037                continental record    1
## 27038                  contingency plan    1
## 27039                        continue a    1
## 27040                     continue down    1
## 27041                  continue flights    1
## 27042                   continue flying    1
## 27043                      continue his    1
## 27044                       continue in    1
## 27045               continue instrument    1
## 27046                     continue into    1
## 27047                    continue night    1
## 27048                       continue on    1
## 27049                     continue then    1
## 27050                       continued a    1
## 27051                   continued about    1
## 27052           continued airworthiness    1
## 27053                     continued and    1
## 27054                 continued another    1
## 27055                  continued beyond    1
## 27056                continued directly    1
## 27057                     continued his    1
## 27058                 continued however    1
## 27059                     continued its    1
## 27060                     continued off    1
## 27061                   continued south    1
## 27062                continued straight    1
## 27063                 continued through    1
## 27064             continued unmoderated    1
## 27065            continued unsuccessful    1
## 27066                   continued until    1
## 27067                      continued up    1
## 27068                     continued use    1
## 27069                    continued with    1
## 27070                 continued without    1
## 27071                     continued yaw    1
## 27072                      continuing a    1
## 27073                     continuing an    1
## 27074                   continuing into    1
## 27075                     continuing to    1
## 27076                continuous descent    1
## 27077                   continuous roll    1
## 27078              continuously monitor    1
## 27079                 contol inadequate    1
## 27080                         contol of    1
## 27081                   contorl crashed    1
## 27082                     contra rebels    1
## 27083                   contract flight    1
## 27084                  contract several    1
## 27085                       contract to    1
## 27086                     contracted by    1
## 27087                  contracted trees    1
## 27088           contractor's helicopter    1
## 27089                  contractors near    1
## 27090                   contradicted by    1
## 27091         contradictory instruction    1
## 27092        contradictory instructions    1
## 27093                      contrary the    1
## 27094               contrast surrounded    1
## 27095                     contribute to    1
## 27096                   contributed the    1
## 27097               contributed towards    1
## 27098               contributing causes    1
## 27099             contributing directly    1
## 27100                      control also    1
## 27101                  control although    1
## 27102                  control approach    1
## 27103                    control batten    1
## 27104                      control both    1
## 27105                       control but    1
## 27106                    control bypass    1
## 27107                    control caused    1
## 27108                     control check    1
## 27109                control clearances    1
## 27110                  control collided    1
## 27111                   control company    1
## 27112                 control couplings    1
## 27113                  control crashing    1
## 27114                  control deadline    1
## 27115              control deficiencies    1
## 27116                control developing    1
## 27117                control difficulty    1
## 27118                control disconnect    1
## 27119                   control ditched    1
## 27120                 control diverting    1
## 27121                   control failure    1
## 27122                      control fire    1
## 27123                      control flew    1
## 27124                  control followed    1
## 27125                       control had    1
## 27126                    control handle    1
## 27127                      control horn    1
## 27128                      control into    1
## 27129                  control judgment    1
## 27130                      control late    1
## 27131                    control levers    1
## 27132                     control lines    1
## 27133                   control listing    1
## 27134               control malfunction    1
## 27135                   control officer    1
## 27136                  control official    1
## 27137                       control oil    1
## 27138                  control operated    1
## 27139                   control overran    1
## 27140                     control pitch    1
## 27141                 control practices    1
## 27142              control precipitated    1
## 27143                   control problem    1
## 27144                control procedures    1
## 27145                     control radar    1
## 27146                       control ran    1
## 27147                 control remaining    1
## 27148                  control reported    1
## 27149          control responsibilities    1
## 27150                    control rising    1
## 27151                     control servo    1
## 27152                   control shortly    1
## 27153                 control situation    1
## 27154                      control soon    1
## 27155                     control space    1
## 27156                   control spindle    1
## 27157                  control spiraled    1
## 27158                   control stalled    1
## 27159                     control stick    1
## 27160                      control stop    1
## 27161                control strategies    1
## 27162                    control stress    1
## 27163                  control surfaces    1
## 27164                    control switch    1
## 27165                       control tab    1
## 27166                     control tests    1
## 27167                      control they    1
## 27168                      control this    1
## 27169                control throughout    1
## 27170                 control undershot    1
## 27171              control undetermined    1
## 27172                   control unknown    1
## 27173                    control veered    1
## 27174                      control went    1
## 27175                     control worst    1
## 27176                  controled flight    1
## 27177               controllability due    1
## 27178                   controllable if    1
## 27179               controlled airspace    1
## 27180                    controlled and    1
## 27181              controlled emergency    1
## 27182                 controlled filght    1
## 27183                 controlled impact    1
## 27184                 controlled manner    1
## 27185               controlled military    1
## 27186                controlled systems    1
## 27187                    controlled the    1
## 27188                  controller's and    1
## 27189            controller's clearance    1
## 27190              controller's failure    1
## 27191             controller's improper    1
## 27192          controller's information    1
## 27193         controller's instructions    1
## 27194              controller's minimum    1
## 27195          controller's positioning    1
## 27196              controller's warning    1
## 27197             controller's warnings    1
## 27198                    controller and    1
## 27199             controller apparently    1
## 27200                controller cleared    1
## 27201                 controller didn't    1
## 27202                 controller during    1
## 27203                  controller eight    1
## 27204                 controller failed    1
## 27205                   controller gave    1
## 27206                 controller having    1
## 27207             controller identified    1
## 27208               controller improper    1
## 27209                     controller in    1
## 27210             controller instructed    1
## 27211                     controller it    1
## 27212                   controller lack    1
## 27213                 controller lacked    1
## 27214             controller mistakenly    1
## 27215               controller observed    1
## 27216                  controller peter    1
## 27217               controller reported    1
## 27218                  controller spoke    1
## 27219                   controller that    1
## 27220                  controller their    1
## 27221                controller thought    1
## 27222                   controller when    1
## 27223                controllers advice    1
## 27224                    controllers as    1
## 27225              controllers cleaning    1
## 27226               controllers cleared    1
## 27227                controllers failed    1
## 27228           controllers immediately    1
## 27229              controllers improper    1
## 27230              controllers involved    1
## 27231                  controllers lost    1
## 27232     controllers misidentification    1
## 27233              controllers received    1
## 27234                controllers saying    1
## 27235            controllers suggestion    1
## 27236                controllers thereã    1
## 27237                    controllers to    1
## 27238                  controllers were    1
## 27239                 controllers while    1
## 27240               controllers without    1
## 27241             controlling authority    1
## 27242                    controlling of    1
## 27243                   controlling vfr    1
## 27244                controllled flight    1
## 27245                 controls appeared    1
## 27246                       controls as    1
## 27247                    controls began    1
## 27248                       controls by    1
## 27249                    controls early    1
## 27250                      controls for    1
## 27251                      controls had    1
## 27252                 controls improper    1
## 27253               controls improperly    1
## 27254                       controls it    1
## 27255                   controls jambed    1
## 27256               controls maintained    1
## 27257                  controls optical    1
## 27258                   controls placed    1
## 27259                     controls poor    1
## 27260                 controls possibly    1
## 27261               controls preventing    1
## 27262                   controls rudder    1
## 27263                  controls slowing    1
## 27264                  controls started    1
## 27265                 controls suddenly    1
## 27266                     controls they    1
## 27267                    controls using    1
## 27268                     controls were    1
## 27269                     controls with    1
## 27270                  convair collided    1
## 27271                      convair lack    1
## 27272                    convair taxing    1
## 27273                       convair was    1
## 27274               convective activity    1
## 27275                  convent operated    1
## 27276                       convent the    1
## 27277                   convention from    1
## 27278                 converging course    1
## 27279                   conversant with    1
## 27280                  conversation and    1
## 27281               conversation during    1
## 27282              conversations having    1
## 27283                    converted into    1
## 27284             convicted continental    1
## 27285                convicts confessed    1
## 27286                         cook area    1
## 27287                        cook inlet    1
## 27288                          cool the    1
## 27289                 coolangatta after    1
## 27290                 cooperation among    1
## 27291                    cooperation by    1
## 27292                  coordinate their    1
## 27293                   coordinated and    1
## 27294       coordinated troubleshooting    1
## 27295                    coordinates 46    1
## 27296                  coordinating the    1
## 27297                    coordination a    1
## 27298               coordination aboard    1
## 27299             coordination altitude    1
## 27300                coordination among    1
## 27301                   coordination by    1
## 27302                 coordination crew    1
## 27303               coordination during    1
## 27304                   coordination in    1
## 27305         coordination insufficient    1
## 27306                  coordination led    1
## 27307           coordination overloaded    1
## 27308                coordination pilot    1
## 27309                  coordination the    1
## 27310                coordination which    1
## 27311                coordination while    1
## 27312                 coordination with    1
## 27313                          copas 49    1
## 27314              copenhagen exploding    1
## 27315                  copenhagen since    1
## 27316                 copilot's actions    1
## 27317                   copilot's calls    1
## 27318                 copilot's failure    1
## 27319                        copilot 30    1
## 27320                        copilot en    1
## 27321                   copilot escaped    1
## 27322                    copilot failed    1
## 27323                   copilot fatally    1
## 27324                  copilot grabbing    1
## 27325                    copilot lacked    1
## 27326                    copilot locked    1
## 27327                    copilot making    1
## 27328                copilot mistakenly    1
## 27329                   copilot radioed    1
## 27330                    copilot raised    1
## 27331                 copilot responded    1
## 27332                 copilot seriously    1
## 27333                  copilot survived    1
## 27334                      copilot then    1
## 27335                        copilot to    1
## 27336                     copilot while    1
## 27337                   copilot whipped    1
## 27338                       copilot who    1
## 27339                       coping with    1
## 27340                        copper and    1
## 27341                        copter was    1
## 27342                      cordeiro was    1
## 27343               cordillera mountain    1
## 27344                        cordoba in    1
## 27345                   cordova airport    1
## 27346                       cordova the    1
## 27347                    cores rotating    1
## 27348                          cores to    1
## 27349                         corner of    1
## 27350                     cornfield and    1
## 27351                   coronary artery    1
## 27352              corporate inspection    1
## 27353                  corporation john    1
## 27354                          corps of    1
## 27355                          corps rh    1
## 27356                   corps transport    1
## 27357                        corpses of    1
## 27358                    corpus christi    1
## 27359              correct deficiencies    1
## 27360                 correct departure    1
## 27361             correct discrepancies    1
## 27362                       correct due    1
## 27363                    correct engine    1
## 27364                       correct his    1
## 27365               correct information    1
## 27366                correct navigation    1
## 27367                     correct pitch    1
## 27368                  correct position    1
## 27369                     correct route    1
## 27370                     correct these    1
## 27371                 correct touchdown    1
## 27372                   corrected after    1
## 27373                      corrected at    1
## 27374                    corrected bill    1
## 27375                 corrected crashed    1
## 27376                     corrected due    1
## 27377                 corrected himself    1
## 27378                 corrected however    1
## 27379                 corrected through    1
## 27380                      corrected to    1
## 27381                    corrected with    1
## 27382                correction crashed    1
## 27383                    correction had    1
## 27384                     correction of    1
## 27385                    correction the    1
## 27386                    corrections to    1
## 27387                     correctly and    1
## 27388                      correctly as    1
## 27389               correctly determine    1
## 27390                 correctly failure    1
## 27391                  correctly follow    1
## 27392                    correctly gave    1
## 27393                correctly identify    1
## 27394             correctly interpreted    1
## 27395                    correctly read    1
## 27396                     correctly set    1
## 27397                    correctly that    1
## 27398                     correctly the    1
## 27399              correctly understand    1
## 27400                 corrector crashed    1
## 27401                   correspond with    1
## 27402                  corresponding to    1
## 27403         correspondingly incorrect    1
## 27404                  corresponds with    1
## 27405                  corroded midspar    1
## 27406                     corroded skin    1
## 27407                  corrosion banked    1
## 27408                  corrosion cracks    1
## 27409                 corrosion flutter    1
## 27410                    corrosion from    1
## 27411                corrosion measures    1
## 27412                    corrosion pits    1
## 27413                 corrosion pitting    1
## 27414                    corrosion thus    1
## 27415                   corsair airship    1
## 27416                       corsair hit    1
## 27417                     corsica after    1
## 27418                    corsican coast    1
## 27419                      cortese road    1
## 27420                   cosmetics after    1
## 27421                    cosmonaut yuri    1
## 27422                     costal cliffs    1
## 27423                     costs because    1
## 27424                            cote d    1
## 27425                   cotonou airport    1
## 27426                        cottage on    1
## 27427                        cotter pin    1
## 27428                       cotton bowl    1
## 27429                      cotton field    1
## 27430                  cottonwood trees    1
## 27431                      could attain    1
## 27432                      could barely    1
## 27433                       could cause    1
## 27434                    could conclude    1
## 27435                      could easily    1
## 27436                        could hear    1
## 27437                        could lead    1
## 27438                        could make    1
## 27439                     could neither    1
## 27440                       could never    1
## 27441                    could possibly    1
## 27442                     could provide    1
## 27443                       could reach    1
## 27444                      could regain    1
## 27445                      could rescue    1
## 27446                      could safely    1
## 27447                       couldn't be    1
## 27448                    couldn't climb    1
## 27449                     couldn't make    1
## 27450                         couldnã â    1
## 27451                        counted 35    1
## 27452                 counted spotlight    1
## 27453                      counter drug    1
## 27454                 counter narcotics    1
## 27455                 counter terrorism    1
## 27456                      counter type    1
## 27457                      countered by    1
## 27458                   counterfeit and    1
## 27459                       country and    1
## 27460                        country at    1
## 27461                    country flight    1
## 27462                        country in    1
## 27463                   country western    1
## 27464                     country where    1
## 27465                     country while    1
## 27466               countryside between    1
## 27467                    countryside it    1
## 27468                         county in    1
## 27469                  coupled approach    1
## 27470                       coupled ils    1
## 27471                      coupling and    1
## 27472               couplings resulting    1
## 27473                         course 10    1
## 27474                          course 8    1
## 27475                         course at    1
## 27476                     course banked    1
## 27477                   course bursting    1
## 27478                        course but    1
## 27479                  course deviation    1
## 27480                         course en    1
## 27481                      course error    1
## 27482                    course existed    1
## 27483                       course five    1
## 27484                       course from    1
## 27485                       course fuel    1
## 27486                         course he    1
## 27487                       course into    1
## 27488                  course necessary    1
## 27489                    course neither    1
## 27490                        course off    1
## 27491                         course on    1
## 27492                        course one    1
## 27493                       course over    1
## 27494                       course poor    1
## 27495                   course position    1
## 27496                    course pursued    1
## 27497                  course requested    1
## 27498                   course reversal    1
## 27499                      course short    1
## 27500                    course shortly    1
## 27501                     course signal    1
## 27502                      course stuck    1
## 27503                   course suffered    1
## 27504                      course there    1
## 27505                     course they'd    1
## 27506                    course towards    1
## 27507                       course upon    1
## 27508                       course with    1
## 27509                   course wreckage    1
## 27510                     court battles    1
## 27511                       court judge    1
## 27512                  court martialled    1
## 27513                          court of    1
## 27514                    court reversed    1
## 27515                   court sentenced    1
## 27516                     court shortly    1
## 27517                         court the    1
## 27518                       court trial    1
## 27519                           cover a    1
## 27520                         cover and    1
## 27521                     cover crashed    1
## 27522                     cover existed    1
## 27523                   cover hazardous    1
## 27524                    cover material    1
## 27525                  cover negatively    1
## 27526                       cover split    1
## 27527                         cover the    1
## 27528                         cover was    1
## 27529                       coverage at    1
## 27530                      coverage the    1
## 27531                       covered and    1
## 27532                     covered cerro    1
## 27533                        covered el    1
## 27534                   covered glacial    1
## 27535                    covered ground    1
## 27536                      covered hill    1
## 27537                    covered kolyma    1
## 27538                      covered lake    1
## 27539                  covered medicine    1
## 27540               covered mountainous    1
## 27541                 covered mountains    1
## 27542              covered mountainside    1
## 27543                    covered object    1
## 27544                      covered peak    1
## 27545                     covered power    1
## 27546                     covered rocky    1
## 27547                   covered terrain    1
## 27548                        covered to    1
## 27549                   covered volcano    1
## 27550                        covering a    1
## 27551                         covers to    1
## 27552                       cow crashed    1
## 27553                      cowboy copas    1
## 27554                    cowboy killled    1
## 27555                        cowl flaps    1
## 27556                         cowl open    1
## 27557                           cowl to    1
## 27558                  cowling although    1
## 27559                       cowling and    1
## 27560                          cows the    1
## 27561                       cox's bazar    1
## 27562                     cozumel while    1
## 27563                          crack at    1
## 27564                        crack from    1
## 27565                 crack originating    1
## 27566                      crack should    1
## 27567                       crack which    1
## 27568                      cracks after    1
## 27569                        cracks and    1
## 27570                 cracks attributed    1
## 27571                     cracks became    1
## 27572                        cracks due    1
## 27573                     cracks formed    1
## 27574                   cracks remained    1
## 27575                        cracks the    1
## 27576                      cracks which    1
## 27577                       cracow when    1
## 27578                     craft further    1
## 27579                         craft had    1
## 27580                        craft were    1
## 27581                         craig was    1
## 27582                        crane boom    1
## 27583                       crane crane    1
## 27584                     crane crashed    1
## 27585                    crane operator    1
## 27586                     crankcase and    1
## 27587             crankshaft inadequate    1
## 27588               crankshaft ruptured    1
## 27589                         crased in    1
## 27590                          crash 10    1
## 27591                         crash 125    1
## 27592                         crash 300    1
## 27593                          crash 32    1
## 27594                          crash 50    1
## 27595                          crash 67    1
## 27596                       crash about    1
## 27597                     crash another    1
## 27598                         crash are    1
## 27599                          crash as    1
## 27600                      crash became    1
## 27601                       crash break    1
## 27602                         crash but    1
## 27603                          crash by    1
## 27604                      crash cashed    1
## 27605                crash catastrophic    1
## 27606                       crash cause    1
## 27607                      crash damage    1
## 27608                     crash earlier    1
## 27609                          crash en    1
## 27610                     crash failure    1
## 27611                        crash gene    1
## 27612                        crash half    1
## 27613                          crash he    1
## 27614                         crash her    1
## 27615                     crash highest    1
## 27616                       crash icing    1
## 27617                    crash ignition    1
## 27618                  crash inadequate    1
## 27619                   crash including    1
## 27620               crash investigation    1
## 27621                   crash involving    1
## 27622                          crash is    1
## 27623                        crash lack    1
## 27624                        crash land    1
## 27625                         crash may    1
## 27626                   crash mcdonnell    1
## 27627                        crash near    1
## 27628                        crash only    1
## 27629                          crash or    1
## 27630                         crash out    1
## 27631                     crash putting    1
## 27632                     crash records    1
## 27633                    crash reported    1
## 27634                    crash resulted    1
## 27635                   crash resulting    1
## 27636                       crash right    1
## 27637                    crash sakhalin    1
## 27638                         crash san    1
## 27639                         crash she    1
## 27640                        crash shot    1
## 27641                     crash started    1
## 27642                       crash still    1
## 27643                      crash strong    1
## 27644                 crash superficial    1
## 27645                         crash ten    1
## 27646                     crash through    1
## 27647                         crash two    1
## 27648                  crash unexpected    1
## 27649                       crash vesna    1
## 27650                    crash victimsã    1
## 27651                        crash went    1
## 27652                 crashd mechanical    1
## 27653                         crashe in    1
## 27654                       crashed 0.5    1
## 27655                       crashed 0.7    1
## 27656                     crashed 1,000    1
## 27657                     crashed 1,090    1
## 27658                     crashed 1,450    1
## 27659                     crashed 1,600    1
## 27660                    crashed 1,600m    1
## 27661                    crashed 1,700m    1
## 27662                     crashed 1,875    1
## 27663                       crashed 100    1
## 27664                        crashed 11    1
## 27665                      crashed 12.5    1
## 27666                      crashed 13.6    1
## 27667                       crashed 150    1
## 27668                        crashed 16    1
## 27669                        crashed 17    1
## 27670                        crashed 19    1
## 27671                     crashed 2,500    1
## 27672                     crashed 2,650    1
## 27673                     crashed 2,900    1
## 27674                     crashed 2.5km    1
## 27675                       crashed 2.8    1
## 27676                        crashed 23    1
## 27677                        crashed 25    1
## 27678                     crashed 3,300    1
## 27679                       crashed 3.5    1
## 27680                     crashed 3.5km    1
## 27681                        crashed 37    1
## 27682                     crashed 4,000    1
## 27683                       crashed 4.4    1
## 27684                       crashed 4.5    1
## 27685                        crashed 45    1
## 27686                        crashed 70    1
## 27687                       crashed 700    1
## 27688                      crashed 700m    1
## 27689                       crashed 800    1
## 27690                      crashed 84km    1
## 27691                        crashed 87    1
## 27692                       crashed 8km    1
## 27693                       crashed 9.7    1
## 27694                       crashed 900    1
## 27695                        crashed 92    1
## 27696                  crashed adjacent    1
## 27697                  crashed aircraft    1
## 27698                  crashed american    1
## 27699              crashed asymmetrical    1
## 27700                       crashed atc    1
## 27701                 crashed attempted    1
## 27702                crashed attempting    1
## 27703                      crashed blew    1
## 27704                 crashed bronislaw    1
## 27705                    crashed burned    1
## 27706                     crashed burst    1
## 27707                        crashed by    1
## 27708                crashed carburetor    1
## 27709              crashed carelessness    1
## 27710                     crashed cargo    1
## 27711                    crashed cashed    1
## 27712                  crashed clipping    1
## 27713                  crashed collided    1
## 27714                  crashed complete    1
## 27715                 crashed continued    1
## 27716               crashed disappeared    1
## 27717                     crashed dived    1
## 27718                      crashed down    1
## 27719                      crashed east    1
## 27720                  crashed elevator    1
## 27721                 crashed encounted    1
## 27722                     crashed error    1
## 27723                  crashed exploded    1
## 27724                 crashed extremely    1
## 27725                      crashed five    1
## 27726                    crashed floats    1
## 27727                       crashed fog    1
## 27728                      crashed full    1
## 27729                crashed helicopter    1
## 27730                       crashed ice    1
## 27731               crashed immediately    1
## 27732               crashed inadvertent    1
## 27733                crashed instrument    1
## 27734             crashed investigation    1
## 27735                      crashed less    1
## 27736                  crashed loosened    1
## 27737                      crashed lost    1
## 27738                      crashed made    1
## 27739               crashed malfunction    1
## 27740            crashed malfunctioning    1
## 27741                    crashed midair    1
## 27742                    crashed midway    1
## 27743                   crashed minutes    1
## 27744                   crashed missing    1
## 27745                   crashed moments    1
## 27746                      crashed most    1
## 27747                 crashed northeast    1
## 27748                      crashed nose    1
## 27749                  crashed occurred    1
## 27750                  crashed offshore    1
## 27751                crashed overloaded    1
## 27752                crashed overturned    1
## 27753                      crashed past    1
## 27754                     crashed pilot    1
## 27755                   crashed pilot's    1
## 27756                      crashed poor    1
## 27757                  crashed possible    1
## 27758                    crashed potter    1
## 27759                 crashed premature    1
## 27760                     crashed right    1
## 27761                    crashed runway    1
## 27762                   crashed seconds    1
## 27763                crashed separation    1
## 27764                   crashed several    1
## 27765                  crashed shifting    1
## 27766                 crashed somewhere    1
## 27767                   crashed sources    1
## 27768                 crashed splitting    1
## 27769                       crashed ssw    1
## 27770                  crashed striking    1
## 27771                  crashed suffered    1
## 27772                        crashed sw    1
## 27773                       crashed ten    1
## 27774                   crashed terrain    1
## 27775                  crashed trailing    1
## 27776                    crashed twelve    1
## 27777                    crashed twenty    1
## 27778                crashed unexpected    1
## 27779               crashed unexplained    1
## 27780                      crashed west    1
## 27781                    crashed wheels    1
## 27782                   crashed whether    1
## 27783                    crashed whille    1
## 27784                 crashed windshear    1
## 27785                    crashed within    1
## 27786                  crashed wreckage    1
## 27787            crashed.the loadmaster    1
## 27788                  crashed.this was    1
## 27789                        crashes of    1
## 27790                      crashes with    1
## 27791                       crashing 20    1
## 27792                        crashing 3    1
## 27793                    crashing about    1
## 27794                 crashing although    1
## 27795                     crashing back    1
## 27796              crashing cooperation    1
## 27797                     crashing down    1
## 27798                     crashing from    1
## 27799                       crashing it    1
## 27800                       crashing on    1
## 27801                      crashing one    1
## 27802                     crashing onto    1
## 27803                  crashing outside    1
## 27804                  crashing shortly    1
## 27805                    crashing while    1
## 27806                         crater 25    1
## 27807                      crater kauai    1
## 27808                    crater unknown    1
## 27809                       crater wall    1
## 27810                        crater was    1
## 27811                       crater with    1
## 27812                         crazy and    1
## 27813                      cream parlor    1
## 27814                         created a    1
## 27815                        created an    1
## 27816                    created unsafe    1
## 27817                     created where    1
## 27818                creating excessive    1
## 27819                       creation of    1
## 27820                        creator of    1
## 27821                      creek coming    1
## 27822                     creek crashed    1
## 27823                       creek ridge    1
## 27824                         creek the    1
## 27825                          crest at    1
## 27826                          crest of    1
## 27827                     crevasse near    1
## 27828                       crevasse on    1
## 27829                    crew's ability    1
## 27830                 crew's acceptance    1
## 27831                    crew's actions    1
## 27832                crew's application    1
## 27833                    crew's attempt    1
## 27834                  crew's attention    1
## 27835                  crew's awareness    1
## 27836                  crew's continued    1
## 27837                    crew's descent    1
## 27838                  crew's disregard    1
## 27839                    crew's efforts    1
## 27840                   crew's handling    1
## 27841                  crew's inability    1
## 27842                crew's inattention    1
## 27843                       crew's last    1
## 27844                       crew's loss    1
## 27845                     crew's minima    1
## 27846               crew's misjudgement    1
## 27847                    crew's neglect    1
## 27848               crew's nonpertinent    1
## 27849                  crew's operation    1
## 27850             crew's overconfidence    1
## 27851                     crew's oxygen    1
## 27852                crew's performance    1
## 27853                       crew's poor    1
## 27854                   crew's response    1
## 27855                     crew's rushed    1
## 27856                            crew 2    1
## 27857                            crew 3    1
## 27858                            crew a    1
## 27859                   crew accidently    1
## 27860                 crew acknowledged    1
## 27861                       crew action    1
## 27862                      crew actions    1
## 27863                    crew activated    1
## 27864                        crew added    1
## 27865                         crew also    1
## 27866                   crew apparently    1
## 27867                           crew at    1
## 27868                     crew attended    1
## 27869                      crew because    1
## 27870                    crew believing    1
## 27871                      crew british    1
## 27872                        crew broke    1
## 27873                      crew brought    1
## 27874                        crew cause    1
## 27875                      crew climbed    1
## 27876                     crew complied    1
## 27877                    crew conducted    1
## 27878                      crew couldnã    1
## 27879                         crew crew    1
## 27880                 crew deliberately    1
## 27881                     crew deployed    1
## 27882                      crew descent    1
## 27883                   crew descovered    1
## 27884                      crew despite    1
## 27885                        crew didnã    1
## 27886                   crew discharged    1
## 27887                     crew ditching    1
## 27888                       crew divert    1
## 27889                        crew drank    1
## 27890                       crew either    1
## 27891                      crew entered    1
## 27892                       crew errors    1
## 27893                    crew executing    1
## 27894                    crew exercised    1
## 27895                    crew extending    1
## 27896                      crew failure    1
## 27897                      crew feather    1
## 27898                    crew feathered    1
## 27899                        crew first    1
## 27900                     crew flighing    1
## 27901                       crew flight    1
## 27902                     crew followed    1
## 27903                        crew found    1
## 27904                         crew from    1
## 27905                           crew go    1
## 27906                          crew got    1
## 27907                     crew guidance    1
## 27908                crew inadvertently    1
## 27909                  crew inattention    1
## 27910                    crew incapable    1
## 27911                    crew including    1
## 27912                    crew indicated    1
## 27913                  crew intercepted    1
## 27914                           crew is    1
## 27915                           crew it    1
## 27916                         crew kept    1
## 27917                         crew knew    1
## 27918                         crew lack    1
## 27919                       crew landed    1
## 27920                          crew led    1
## 27921                       crew likely    1
## 27922                         crew loss    1
## 27923                      crew lowered    1
## 27924               crew malfunctioning    1
## 27925                      crew managed    1
## 27926                       crew midair    1
## 27927               crew misinterpreted    1
## 27928             crew misunderstanding    1
## 27929                crew misunderstood    1
## 27930                         crew most    1
## 27931                        crew moved    1
## 27932                 crew navigational    1
## 27933                    crew neglected    1
## 27934                         crew none    1
## 27935                          crew not    1
## 27936                    crew operating    1
## 27937                        crew opted    1
## 27938                         crew over    1
## 27939                          crew pan    1
## 27940                    crew performed    1
## 27941                    crew placement    1
## 27942                 crew precipitated    1
## 27943                       crew pulled    1
## 27944                       crew pushed    1
## 27945                      crew reacted    1
## 27946                      crew reduced    1
## 27947                     crew reducing    1
## 27948                     crew released    1
## 27949                    crew responded    1
## 27950                     crew response    1
## 27951                         crew rest    1
## 27952                     crew resulted    1
## 27953                    crew retracted    1
## 27954                       crew rumors    1
## 27955                          crew saw    1
## 27956                     crew selected    1
## 27957                         crew sent    1
## 27958                          crew set    1
## 27959                      crew setting    1
## 27960                      crew shortly    1
## 27961                       crew should    1
## 27962                           crew so    1
## 27963                         crew soon    1
## 27964                        crew spent    1
## 27965                      crew spotted    1
## 27966                      crew stalled    1
## 27967                     crew suddenly    1
## 27968                  crew supervision    1
## 27969                      crew swerved    1
## 27970                     crew switched    1
## 27971                        crew there    1
## 27972                      crew thought    1
## 27973                        crew three    1
## 27974                    crew throttled    1
## 27975                     crew together    1
## 27976                      crew touched    1
## 27977                       crew turned    1
## 27978                        crew twice    1
## 27979                          crew two    1
## 27980                       crew unable    1
## 27981                   crew unconcious    1
## 27982                  crew unconscious    1
## 27983               crew underestimated    1
## 27984                    crew undershot    1
## 27985                    crew unfamilar    1
## 27986                       crew waited    1
## 27987                      crew without    1
## 27988                       crewman and    1
## 27989                    crewmember was    1
## 27990                crewmembers aboard    1
## 27991                    crewmembers as    1
## 27992                  crewmembers were    1
## 27993                      crews aboard    1
## 27994                       crews about    1
## 27995                         crews atc    1
## 27996                   crews attention    1
## 27997                      crews eleven    1
## 27998                         crews for    1
## 27999                  crews inadequate    1
## 28000                     crews karachi    1
## 28001                        crews lack    1
## 28002                          crews of    1
## 28003                    crews operated    1
## 28004                         crews put    1
## 28005                    crews searched    1
## 28006                        crews with    1
## 28007                     crews working    1
## 28008                   cricket captain    1
## 28009                  criclklewood and    1
## 28010                         crime but    1
## 28011                          crime on    1
## 28012                         crime the    1
## 28013                    crimes crashed    1
## 28014                  criminal charges    1
## 28015               criminal negligence    1
## 28016              criminally negligent    1
## 28017                        crimond in    1
## 28018                 crippled airliner    1
## 28019                        crisis for    1
## 28020                  cristais crashed    1
## 28021                      cristina for    1
## 28022                     cristobal the    1
## 28023                  cristobal twenty    1
## 28024                  criteria crashed    1
## 28025                      criteria the    1
## 28026                     criteria were    1
## 28027                    critical angle    1
## 28028                  critical because    1
## 28029                  critical ceiling    1
## 28030                 critical climbout    1
## 28031                critical condition    1
## 28032            critical deterioration    1
## 28033                   critical flight    1
## 28034                   critical period    1
## 28035                   critical points    1
## 28036             critical relationship    1
## 28037                   critical sooner    1
## 28038                    critical speed    1
## 28039                 critical steering    1
## 28040                     critical time    1
## 28041                       critical to    1
## 28042                  critical weather    1
## 28043                    critical which    1
## 28044                    criticality of    1
## 28045                    critically low    1
## 28046              criticizing american    1
## 28047                    crm principles    1
## 28048                croatian extremist    1
## 28049                   croce's company    1
## 28050                          croce 30    1
## 28051                 crocodile escaped    1
## 28052                  crocodile hidden    1
## 28053                        croix peak    1
## 28054                         croix the    1
## 28055                       croix while    1
## 28056                        cromer the    1
## 28057                         cronje 32    1
## 28058                           cross a    1
## 28059                          cross at    1
## 28060                    cross cemetery    1
## 28061                    cross checking    1
## 28062                     cross chilean    1
## 28063                     cross country    1
## 28064                        cross feed    1
## 28065                        cross flow    1
## 28066                   cross overshoot    1
## 28067                   cross reference    1
## 28068                      crossed into    1
## 28069                       crossed nor    1
## 28070                 crossfeed crashed    1
## 28071              crossfeed procedures    1
## 28072                    crossfeed this    1
## 28073                       crossing 30    1
## 28074                       crossing an    1
## 28075                   crossing impact    1
## 28076                    crossing point    1
## 28077                  crossing through    1
## 28078                      crossings be    1
## 28079                   crossover speed    1
## 28080                     crosswind and    1
## 28081                   crosswind which    1
## 28082                   crosswind while    1
## 28083                    crosswinds and    1
## 28084           crosswinds contributing    1
## 28085                   crosswinds that    1
## 28086                    crosswinds the    1
## 28087                          crowd at    1
## 28088                    crowded market    1
## 28089                 crowded streetcar    1
## 28090                      crown prince    1
## 28091                        croydon in    1
## 28092                       croydon the    1
## 28093                      crrashed and    1
## 28094                  crrashed moments    1
## 28095                         cruces de    1
## 28096                 crucial altimeter    1
## 28097                  crucial altitude    1
## 28098                    crucial flight    1
## 28099                         cruise as    1
## 28100                         cruise at    1
## 28101              cruise configuration    1
## 28102                       cruise ship    1
## 28103                  cruising altiude    1
## 28104                    cruising below    1
## 28105                   cruising height    1
## 28106                    cruising under    1
## 28107                      cruising vfr    1
## 28108                     crushed skull    1
## 28109                        crushing a    1
## 28110                  crusing altitude    1
## 28111                        crusing at    1
## 28112                          cruz and    1
## 28113                         cruz peak    1
## 28114                  crystal mountain    1
## 28115                 crystals produced    1
## 28116                        cuarto the    1
## 28117                          cub just    1
## 28118                     cuba collided    1
## 28119                          cuba the    1
## 28120                      cuban rebels    1
## 28121                        cubi point    1
## 28122                        cubuk hill    1
## 28123                             cue 2    1
## 28124                      cuenca under    1
## 28125                          cues and    1
## 28126                       cues during    1
## 28127                       cues rather    1
## 28128                         cues that    1
## 28129                         cues were    1
## 28130                        cues which    1
## 28131                       culata peak    1
## 28132                       culiacãƒâ n    1
## 28133                     culminated in    1
## 28134                         culver 26    1
## 28135                     culvert after    1
## 28136                       culvert and    1
## 28137                        cumana the    1
## 28138                  cumanãƒâ airport    1
## 28139                  cumulative sleep    1
## 28140                     cumulo nimbus    1
## 28141                    cumulus clouds    1
## 28142                     cuneo crashed    1
## 28143                      cup champion    1
## 28144                      curacao port    1
## 28145                       curfew took    1
## 28146                        curico and    1
## 28147                    curitiba after    1
## 28148                      curitiba atc    1
## 28149                  curitiba crashed    1
## 28150                   current federal    1
## 28151                    current ground    1
## 28152                   current heading    1
## 28153                       current vfr    1
## 28154                   current weather    1
## 28155                 currents buffeted    1
## 28156                   currents droped    1
## 28157              currents encountered    1
## 28158                       currents of    1
## 28159                     curtis turner    1
## 28160                       cusco after    1
## 28161                       cushion the    1
## 28162                      cushions and    1
## 28163                  cushions because    1
## 28164                      cushions the    1
## 28165                     cushions were    1
## 28166                     customary qfe    1
## 28167                       customer in    1
## 28168                      customer the    1
## 28169                     customers the    1
## 28170               customized aircraft    1
## 28171                           cut and    1
## 28172                         cut power    1
## 28173                       cut through    1
## 28174                            cut to    1
## 28175                      cutoff flush    1
## 28176                   cutter campbell    1
## 28177              cutter pontchartrain    1
## 28178                        cutting 46    1
## 28179                     cutting grass    1
## 28180                cuyapaipe mountain    1
## 28181                            cv 990    1
## 28182                      cvr possible    1
## 28183                         cvr tapes    1
## 28184                   cyanide capsule    1
## 28185                      cyanide lost    1
## 28186                        cycles had    1
## 28187                         cycles of    1
## 28188                    cygnus crashed    1
## 28189                        cylinder a    1
## 28190                   cylinder barrel    1
## 28191                     cylinder blow    1
## 28192                  cylinder crashed    1
## 28193                      cylinder due    1
## 28194                  cylinder exhaust    1
## 28195                cylinder extension    1
## 28196                  cylinder fatigue    1
## 28197                 cylinder fracture    1
## 28198                       cylinder in    1
## 28199                      cylinder may    1
## 28200            cylinder precipitating    1
## 28201                     cylinder vent    1
## 28202                    cylinder which    1
## 28203                      cylinders to    1
## 28204                       cynthia oti    1
## 28205                cyprien ntaryamira    1
## 28206                            d azur    1
## 28207                               d f    1
## 28208                          d shaped    1
## 28209                        d stresses    1
## 28210                             d.c a    1
## 28211                        d6 members    1
## 28212                       da aratanha    1
## 28213                            da lat    1
## 28214                         dadman 45    1
## 28215                    daet camarines    1
## 28216                  dag hammarskjãƒâ    1
## 28217                       daggett the    1
## 28218                       dahl killed    1
## 28219                     daily highway    1
## 28220                        daily mail    1
## 28221                        dairy cows    1
## 28222                     daji mountain    1
## 28223                    dakar collided    1
## 28224                        dakar went    1
## 28225                     dakka glacier    1
## 28226                      dakota after    1
## 28227                   dakota governor    1
## 28228                   dakota possibly    1
## 28229                     dakota twelve    1
## 28230                    dalian airport    1
## 28231                        dalian bay    1
## 28232                    dallas airport    1
## 28233                      dallas forth    1
## 28234                      dallas texas    1
## 28235                        dallas the    1
## 28236                       dam crashed    1
## 28237                       dam landing    1
## 28238                       dam stalled    1
## 28239                        damage all    1
## 28240                        damage and    1
## 28241                         damage by    1
## 28242                    damage fflight    1
## 28243                       damage from    1
## 28244                        damage had    1
## 28245                         damage so    1
## 28246                     damage veered    1
## 28247                         damaged 5    1
## 28248                        damaged by    1
## 28249                   damaged control    1
## 28250                      damaged fuel    1
## 28251                damaged insulation    1
## 28252                   damaged landing    1
## 28253                         damaged o    1
## 28254                   damaged several    1
## 28255                        damaged to    1
## 28256                      damaged wing    1
## 28257                     damaging fuel    1
## 28258                    damaging seven    1
## 28259                      damaging two    1
## 28260                      damascus but    1
## 28261                   damascus during    1
## 28262            damascus international    1
## 28263                     dame football    1
## 28264                         damiãƒâ n    1
## 28265                       damp runway    1
## 28266                     damper caused    1
## 28267                        damper was    1
## 28268                   damrey mountain    1
## 28269                       dana viking    1
## 28270                       dance party    1
## 28271                      danger after    1
## 28272                        danger and    1
## 28273                         danger of    1
## 28274              dangerous conditions    1
## 28275                  dangerous course    1
## 28276                  dangerous flying    1
## 28277                  dangerous health    1
## 28278                   dangerous icing    1
## 28279               dangerous proximity    1
## 28280               dangerous situation    1
## 28281                 dangerous weather    1
## 28282                    daniish soccer    1
## 28283                   danish football    1
## 28284                      daodenong in    1
## 28285                      dark crashed    1
## 28286                          dark the    1
## 28287                        dark while    1
## 28288                       darkness at    1
## 28289               darkness electrical    1
## 28290                      darkness fog    1
## 28291                       darkness it    1
## 28292                  darkness killing    1
## 28293                   darkness midair    1
## 28294                darkness premature    1
## 28295                     darkness very    1
## 28296                    darkness while    1
## 28297                     darling range    1
## 28298                          darwin d    1
## 28299                  dassault mystãƒâ    1
## 28300                        data glide    1
## 28301                           data in    1
## 28302                    data indicated    1
## 28303                           data or    1
## 28304                    data recorders    1
## 28305                         data show    1
## 28306                        data shown    1
## 28307                          data the    1
## 28308                           data to    1
## 28309                         data were    1
## 28310                  database problem    1
## 28311                       date severe    1
## 28312                     datum trimmer    1
## 28313                    daughter angel    1
## 28314                        daulo pass    1
## 28315                     davao airport    1
## 28316                     davey allison    1
## 28317                       david burke    1
## 28318                          dawei in    1
## 28319                            dax zk    1
## 28320                        day before    1
## 28321                            day by    1
## 28322                          day died    1
## 28323                     day grounding    1
## 28324                      day mountain    1
## 28325                           day she    1
## 28326                            day to    1
## 28327                    daybreak after    1
## 28328                          days and    1
## 28329                      days earlier    1
## 28330                           days in    1
## 28331                      days juliane    1
## 28332                           days of    1
## 28333                          days one    1
## 28334                    days preceding    1
## 28335                          days the    1
## 28336                      days through    1
## 28337                           days to    1
## 28338                        daytime in    1
## 28339                   daytime landing    1
## 28340                       daytona and    1
## 28341                   dazed exhausted    1
## 28342                      dazzling the    1
## 28343                             dc 7b    1
## 28344                      dc generator    1
## 28345                        dc8s after    1
## 28346                          dc8s jet    1
## 28347                             dc9 s    1
## 28348                         de azucar    1
## 28349                         de buenos    1
## 28350                       de cachimbo    1
## 28351                        de caracas    1
## 28352                      de chantilly    1
## 28353                          de colon    1
## 28354                         de cumbal    1
## 28355                           de daji    1
## 28356                             de el    1
## 28357                      de guadalupe    1
## 28358                          de huila    1
## 28359                           de iced    1
## 28360                           de icer    1
## 28361                        de janiero    1
## 28362                           de kino    1
## 28363                        de l'obiou    1
## 28364                       de luquillo    1
## 28365                       de mallorca    1
## 28366                     de mocambique    1
## 28367                         de perija    1
## 28368                          de rodes    1
## 28369                        de terraba    1
## 28370                      de valdemeca    1
## 28371                          de zulia    1
## 28372                deactivated engine    1
## 28373                  deactivated when    1
## 28374                          dead end    1
## 28375                   dead passengers    1
## 28376                     dead possible    1
## 28377                       dead rescue    1
## 28378                          dead she    1
## 28379                   deadheading pan    1
## 28380                  deadline crashed    1
## 28381                           deal of    1
## 28382                      dean forshee    1
## 28383                   dean kilpatrick    1
## 28384                       dean manuel    1
## 28385                       dean martin    1
## 28386                         dean paul    1
## 28387                       death after    1
## 28388                          death as    1
## 28389                          death by    1
## 28390                     death crashed    1
## 28391                        death half    1
## 28392                        death when    1
## 28393                        death with    1
## 28394                       deaths from    1
## 28395                        deaths the    1
## 28396                         deaths to    1
## 28397                       deaths with    1
## 28398                         debris 14    1
## 28399                     debris across    1
## 28400                       debris also    1
## 28401                    debris damaged    1
## 28402                     debris debris    1
## 28403                      debris found    1
## 28404                         debris in    1
## 28405                         debris on    1
## 28406                    debris outside    1
## 28407                  debris punctured    1
## 28408                  debris scattered    1
## 28409                         debris to    1
## 28410                      debris which    1
## 28411                        debt which    1
## 28412                     decades while    1
## 28413                   decapitated and    1
## 28414              decapitated criminal    1
## 28415                          decay to    1
## 28416                    decayed during    1
## 28417                   deceived flight    1
## 28418                 decelerated never    1
## 28419                   decelerating to    1
## 28420                   deceleration to    1
## 28421                     december 1970    1
## 28422                     decent during    1
## 28423                    decent started    1
## 28424                     decided after    1
## 28425                       decided for    1
## 28426                        decided on    1
## 28427                     decided while    1
## 28428                       deciding on    1
## 28429                  deciding whether    1
## 28430                   decision faulty    1
## 28431                      decision for    1
## 28432                 decision improper    1
## 28433                       decision on    1
## 28434                    decision while    1
## 28435                      decisions on    1
## 28436                      decisions or    1
## 28437                     decisions the    1
## 28438                      decisions to    1
## 28439                    decisive cause    1
## 28440                        deck cargo    1
## 28441                         deck when    1
## 28442                      declaired an    1
## 28443                      declared and    1
## 28444                       declared he    1
## 28445                     decline until    1
## 28446                      declined the    1
## 28447                    declutter mode    1
## 28448                decommissioned the    1
## 28449               decompression after    1
## 28450              decompression crew's    1
## 28451              decompression damage    1
## 28452                  decompression of    1
## 28453              decompression pulled    1
## 28454                    decrease below    1
## 28455                       decrease in    1
## 28456                   decreased below    1
## 28457                      decreased on    1
## 28458                 decreased rapidly    1
## 28459                     decreased the    1
## 28460                     decreasing to    1
## 28461                       deep crater    1
## 28462                        deep ditch    1
## 28463                        deep stall    1
## 28464                        deep while    1
## 28465                     deepest areas    1
## 28466                       defect fire    1
## 28467                      defect found    1
## 28468                      defect which    1
## 28469                       defective a    1
## 28470               defective altimeter    1
## 28471              defective artificial    1
## 28472                   defective cabin    1
## 28473                    defective fuel    1
## 28474                    defective left    1
## 28475                 defective turbine    1
## 28476                      defects were    1
## 28477                     defects which    1
## 28478                     defence force    1
## 28479                  defence squadron    1
## 28480                   defense command    1
## 28481                      defense dept    1
## 28482                     defense force    1
## 28483                     defense radar    1
## 28484                  defiance takeoff    1
## 28485                   deficiencies or    1
## 28486                 deficiencies were    1
## 28487                deficiencies which    1
## 28488                 deficiencies with    1
## 28489               deficient equipment    1
## 28490             deficient maintenance    1
## 28491                deficient teamwork    1
## 28492                   defined minimum    1
## 28493                       defined non    1
## 28494              definitely establish    1
## 28495               definitely identify    1
## 28496                definitely proving    1
## 28497                 deflected causing    1
## 28498                      deflected in    1
## 28499                 deflected sharply    1
## 28500                      deflected to    1
## 28501                    deflection and    1
## 28502                    deformation of    1
## 28503                      deformed the    1
## 28504                          deg from    1
## 28505                            deg of    1
## 28506                           deg the    1
## 28507                    degradation of    1
## 28508                    degradation to    1
## 28509                       degraded by    1
## 28510                 degraded decision    1
## 28511              degraded performance    1
## 28512                     degraded self    1
## 28513                       degraded to    1
## 28514                       degree dive    1
## 28515                   degree downward    1
## 28516                     degree flight    1
## 28517                       degree from    1
## 28518                    degree instead    1
## 28519                       degree left    1
## 28520                   degree nosedown    1
## 28521                        degree the    1
## 28522                        degrees 13    1
## 28523                        degrees 14    1
## 28524                        degrees 41    1
## 28525                        degrees 44    1
## 28526                        degrees 49    1
## 28527                         degrees a    1
## 28528                   degrees crashed    1
## 28529                 degrees descended    1
## 28530                       degrees due    1
## 28531                 degrees exceeding    1
## 28532                  degrees followed    1
## 28533                   degrees however    1
## 28534               degrees immediately    1
## 28535                   degrees instead    1
## 28536                      degrees less    1
## 28537                         degrees n    1
## 28538                        degrees of    1
## 28539                        degrees or    1
## 28540                  degrees outbound    1
## 28541                  degrees position    1
## 28542                   degrees shortly    1
## 28543                     degrees south    1
## 28544                   degrees thereby    1
## 28545                         degrees w    1
## 28546                      degrees went    1
## 28547                      degrees west    1
## 28548                     degrees which    1
## 28549                     degrees while    1
## 28550                        deice boot    1
## 28551                       deice boots    1
## 28552                         deice the    1
## 28553                     deiced before    1
## 28554                     deicer system    1
## 28555                     deicing could    1
## 28556                 deicing equipment    1
## 28557                        deicing of    1
## 28558                    deicing system    1
## 28559                       deicing the    1
## 28560                  dekalb peachtree    1
## 28561                         del cabre    1
## 28562                       del caguãƒâ    1
## 28563                         del cedro    1
## 28564                         del cerro    1
## 28565                         del indio    1
## 28566                         del monte    1
## 28567                         del padre    1
## 28568                         del plata    1
## 28569                           del rey    1
## 28570                      delaware the    1
## 28571                         delay and    1
## 28572                        delay both    1
## 28573                          delay by    1
## 28574                         delay the    1
## 28575                       delay their    1
## 28576                         delay was    1
## 28577                       delay would    1
## 28578                         delayed a    1
## 28579                    delayed action    1
## 28580               delayed application    1
## 28581                    delayed arming    1
## 28582                   delayed because    1
## 28583                  delayed decision    1
## 28584                delayed deployment    1
## 28585                 delayed detection    1
## 28586                    delayed flight    1
## 28587                       delayed his    1
## 28588                   delayed landing    1
## 28589               delayed recognition    1
## 28590                delayed retraction    1
## 28591                    delegates were    1
## 28592                       delgada sao    1
## 28593                         delhi and    1
## 28594                          delhi on    1
## 28595                         delhi the    1
## 28596                      deli dirfted    1
## 28597                     deliberate in    1
## 28598                    deliberate low    1
## 28599              deliberate reduction    1
## 28600              deliberately avoided    1
## 28601                 deliberately came    1
## 28602              deliberately causing    1
## 28603           deliberately descending    1
## 28604          deliberately maneuvering    1
## 28605                  deliver supplies    1
## 28606                      delivered by    1
## 28607                      delivered to    1
## 28608           delivering humanitarian    1
## 28609               delivering military    1
## 28610                delivering workers    1
## 28611                     delivery from    1
## 28612                 delivery position    1
## 28613                       delivery to    1
## 28614                    delivery valve    1
## 28615                          dell oro    1
## 28616                    delta aircraft    1
## 28617                     delta convair    1
## 28618                       delta plane    1
## 28619                      delta region    1
## 28620                        deluvio 38    1
## 28621                     demanded that    1
## 28622                   demeanor during    1
## 28623                 democratic forces    1
## 28624               democratic republic    1
## 28625                    demolished two    1
## 28626                  demolished while    1
## 28627                   demonstrating a    1
## 28628                 demonstration the    1
## 28629                           dena 14    1
## 28630                      denali state    1
## 28631                      denied there    1
## 28632                    denmark midair    1
## 28633                   denmark stalled    1
## 28634                       dennis rast    1
## 28635                    denpasair bali    1
## 28636                   denpasar ngurah    1
## 28637                       denpasar to    1
## 28638                    denpassar bali    1
## 28639                       dense cloud    1
## 28640                dense cumulonimbus    1
## 28641                       dense smoke    1
## 28642                      dense swampy    1
## 28643                      dense wooded    1
## 28644                       dense woods    1
## 28645                 densely populated    1
## 28646                    densely wooded    1
## 28647                     densly wooded    1
## 28648                         denver 53    1
## 28649                      denver after    1
## 28650                         denver an    1
## 28651                        denver and    1
## 28652                     denver center    1
## 28653                     denver flying    1
## 28654                        denver one    1
## 28655                     denver rather    1
## 28656                  denver stapleton    1
## 28657                      denver there    1
## 28658                       denver took    1
## 28659                      denver where    1
## 28660                        depart the    1
## 28661                    departed adana    1
## 28662                 departed adelaide    1
## 28663              departed archerfield    1
## 28664                       departed at    1
## 28665                      departed due    1
## 28666                      departed for    1
## 28667                     departed from    1
## 28668                    departed homer    1
## 28669                     departed hong    1
## 28670                 departed kinshasa    1
## 28671                    departed paris    1
## 28672                  departed towards    1
## 28673                departed vancouver    1
## 28674                  departed vorkuta    1
## 28675                   departing bahia    1
## 28676                 departing caracas    1
## 28677                 departing holding    1
## 28678                     departing jet    1
## 28679                  departing kariba    1
## 28680                      departing kc    1
## 28681                  departing merida    1
## 28682                   departing palma    1
## 28683                   departing perth    1
## 28684                   departing rhein    1
## 28685                  departing runwal    1
## 28686               department aviation    1
## 28687                       departure a    1
## 28688               departure according    1
## 28689                    departure afer    1
## 28690                   departure after    1
## 28691                 departure airport    1
## 28692                     departure and    1
## 28693                      departure at    1
## 28694               departure clearance    1
## 28695                   departure climb    1
## 28696                 departure control    1
## 28697                  departure course    1
## 28698                 departure crashed    1
## 28699                  departure delays    1
## 28700                      departure he    1
## 28701              departure inadequate    1
## 28702                   departure route    1
## 28703                  departure struck    1
## 28704                    departure town    1
## 28705                    departure when    1
## 28706                   departure which    1
## 28707                   dependants less    1
## 28708                     dependent and    1
## 28709                dependents crashed    1
## 28710                    dependents the    1
## 28711                       depicted on    1
## 28712               deplaned.one minute    1
## 28713                      deplaning at    1
## 28714                      deploy after    1
## 28715                         deploy in    1
## 28716                  deployed causing    1
## 28717                     deployed even    1
## 28718                       deployed in    1
## 28719                      deployed the    1
## 28720                    deployed while    1
## 28721                     deploying the    1
## 28722                    deployment and    1
## 28723                    deployment yaw    1
## 28724                      deportee the    1
## 28725                        deposit of    1
## 28726                          depot in    1
## 28727                         depot one    1
## 28728                     depressed the    1
## 28729                     depression in    1
## 28730            depressurization which    1
## 28731             depressurizations and    1
## 28732                  depressurize the    1
## 28733             depressurized causing    1
## 28734             deprivation louisiana    1
## 28735                      deprived him    1
## 28736                      deprived the    1
## 28737                     depriving all    1
## 28738                    dept preflight    1
## 28739                  depth perception    1
## 28740                    deputy defense    1
## 28741                 derendorf setting    1
## 28742                      derived from    1
## 28743                         derry and    1
## 28744                      derry pulled    1
## 28745                          des deux    1
## 28746                       des rosiers    1
## 28747                       des sraghna    1
## 28748                     descend after    1
## 28749                  descend altitude    1
## 28750                    descend before    1
## 28751                        descend by    1
## 28752                    descend during    1
## 28753                        descend en    1
## 28754                       descend for    1
## 28755                 descend impacting    1
## 28756                       descend one    1
## 28757             descend significantly    1
## 28758                        descend so    1
## 28759                       descend too    1
## 28760            descend uncontrollably    1
## 28761                      descend when    1
## 28762                   descended after    1
## 28763                      descended at    1
## 28764                    descended back    1
## 28765                  descended during    1
## 28766                descended ignoring    1
## 28767                 descended instead    1
## 28768                     descended its    1
## 28769                    descended onto    1
## 28770                     descended out    1
## 28771                    descended thru    1
## 28772                     descended vfr    1
## 28773                    descended well    1
## 28774                 descended without    1
## 28775                  descending after    1
## 28776                   descending bank    1
## 28777             descending controlled    1
## 28778                 descending during    1
## 28779                descending failure    1
## 28780                 descending flight    1
## 28781                   descending more    1
## 28782             descending navigation    1
## 28783                     descending on    1
## 28784                   descending over    1
## 28785                   descending path    1
## 28786                descending quickly    1
## 28787                descending rapidly    1
## 28788                 descending spiral    1
## 28789                descending steeply    1
## 28790                   descending then    1
## 28791                  descending three    1
## 28792                    descending too    1
## 28793                    descending two    1
## 28794                   descending when    1
## 28795                         descent a    1
## 28796                      descent area    1
## 28797                 descent atlitiude    1
## 28798                  descent attempts    1
## 28799                     descent began    1
## 28800                    descent beyond    1
## 28801                      descent both    1
## 28802                     descent butte    1
## 28803                    descent canyon    1
## 28804                   descent causing    1
## 28805                  descent clipping    1
## 28806                  descent couldn't    1
## 28807                       descent did    1
## 28808            descent disintegrating    1
## 28809                    descent ending    1
## 28810                    descent enered    1
## 28811                  descent existing    1
## 28812                    descent flight    1
## 28813                   descent heading    1
## 28814                       descent his    1
## 28815                     descent icing    1
## 28816                      descent idle    1
## 28817                 descent indicator    1
## 28818              descent inexperience    1
## 28819                 descent initially    1
## 28820                 descent initiated    1
## 28821                      descent lack    1
## 28822                   descent leading    1
## 28823                      descent made    1
## 28824                      descent mode    1
## 28825                  descent moisture    1
## 28826                descent navigation    1
## 28827              descent navigational    1
## 28828                     descent pilot    1
## 28829               descent prematurely    1
## 28830                   descent profile    1
## 28831                  descent resulted    1
## 28832                   descent shortly    1
## 28833                      descent shot    1
## 28834                    descent solely    1
## 28835                      descent soon    1
## 28836                   descent stopped    1
## 28837                  descent thinking    1
## 28838                       descent too    1
## 28839                      descent well    1
## 28840                      descent with    1
## 28841                       descet shot    1
## 28842                  descovered cabin    1
## 28843                      describe the    1
## 28844              described everything    1
## 28845                  described except    1
## 28846                      described in    1
## 28847                         desert 20    1
## 28848                        desert 3km    1
## 28849                          desert 6    1
## 28850                         desert 62    1
## 28851                         desert at    1
## 28852                        desert but    1
## 28853                      desert crash    1
## 28854                 desert detonation    1
## 28855                         desert on    1
## 28856                        desert ran    1
## 28857                    desert shortly    1
## 28858                      desert storm    1
## 28859                 design assessment    1
## 28860                   design capacity    1
## 28861                    design crashed    1
## 28862                      design fault    1
## 28863                         design in    1
## 28864                      design loads    1
## 28865                   design strength    1
## 28866                     design stress    1
## 28867                      design these    1
## 28868                 design tolerances    1
## 28869                       design were    1
## 28870                      design which    1
## 28871                  designate killed    1
## 28872                designated descent    1
## 28873              designated gambler's    1
## 28874                 designed aircraft    1
## 28875                      designed and    1
## 28876                  designed crashed    1
## 28877                      designed the    1
## 28878                     designed were    1
## 28879                     designer juan    1
## 28880                  designer ottavio    1
## 28881                         desire to    1
## 28882                        desnse fog    1
## 28883                        despite 15    1
## 28884                despite advisories    1
## 28885                       despite all    1
## 28886                     despite being    1
## 28887                  despite concerns    1
## 28888                    despite having    1
## 28889                        despite he    1
## 28890                       despite his    1
## 28891              despite insufficient    1
## 28892               despite jettisoning    1
## 28893                    despite losing    1
## 28894                   despite prompts    1
## 28895                    despite severe    1
## 28896                 despite suffering    1
## 28897               despite suggestions    1
## 28898                     despite three    1
## 28899                    despite trying    1
## 28900                despite visibility    1
## 28901                         dessert 8    1
## 28902                       dessert the    1
## 28903             destabilized approach    1
## 28904                   destinatiion of    1
## 28905                     destination a    1
## 28906               destination adverse    1
## 28907                   destination all    1
## 28908                   destination and    1
## 28909                 destination cause    1
## 28910                  destination city    1
## 28911               destination crashed    1
## 28912               destination failure    1
## 28913              destination montreal    1
## 28914          destination navigational    1
## 28915                  destination near    1
## 28916                    destination no    1
## 28917                 destination pilot    1
## 28918                  destination poor    1
## 28919              destination possible    1
## 28920             destination premature    1
## 28921               destination several    1
## 28922                destination severe    1
## 28923                   destination ten    1
## 28924                      destoryed in    1
## 28925                 destoying several    1
## 28926                       destroy the    1
## 28927                       destroyed 3    1
## 28928                   destroyed after    1
## 28929                  destroyed boeing    1
## 28930                 destroyed crashed    1
## 28931                   destroyed icing    1
## 28932          destroyed incapacitation    1
## 28933                 destroyed killing    1
## 28934                   destroyed pilot    1
## 28935                  destroyed unable    1
## 28936                     destroying 23    1
## 28937                      destroying 3    1
## 28938              destroying buildings    1
## 28939                 destroying eleven    1
## 28940                   destroying five    1
## 28941                destroying several    1
## 28942                    destroying two    1
## 28943                   destruction and    1
## 28944                    destruction as    1
## 28945              destruction severing    1
## 28946               destructive testing    1
## 28947                    detach crashed    1
## 28948                        detach for    1
## 28949                        detach the    1
## 28950                      detached the    1
## 28951                     detaching the    1
## 28952                       detailed in    1
## 28953                     detect during    1
## 28954                        detect its    1
## 28955                       detect this    1
## 28956                   detect visually    1
## 28957                 detectable during    1
## 28958                        detected a    1
## 28959                      detected and    1
## 28960                  detected because    1
## 28961                     detected crew    1
## 28962                   detected during    1
## 28963                      detected for    1
## 28964                       detected or    1
## 28965                     detecting the    1
## 28966                    detecting unit    1
## 28967                    detection also    1
## 28968                     detection and    1
## 28969                    detection both    1
## 28970                      detection by    1
## 28971            detection capabalities    1
## 28972                      detection of    1
## 28973              detection technology    1
## 28974                      detent after    1
## 28975                       detents and    1
## 28976                 detergent crashed    1
## 28977                   deteriorated he    1
## 28978                 deteriorating and    1
## 28979           deteriorating condtions    1
## 28980                deteriorating fuel    1
## 28981             deteriorating rapidly    1
## 28982                  deterioration in    1
## 28983                  deterioration on    1
## 28984                  determination of    1
## 28985                  determination or    1
## 28986                       determine a    1
## 28987              determine accurately    1
## 28988                     determine how    1
## 28989                  determine proper    1
## 28990                 determine whether    1
## 28991                     determine why    1
## 28992               determined although    1
## 28993                   determined both    1
## 28994                     determined by    1
## 28995              determined colllided    1
## 28996           determined contributing    1
## 28997                    determined new    1
## 28998             determined overloaded    1
## 28999               determined possibly    1
## 29000               determined shutting    1
## 29001                  determined since    1
## 29002                    determines the    1
## 29003              determining attitude    1
## 29004                    determining by    1
## 29005                   determining his    1
## 29006                   determining the    1
## 29007            determining visibility    1
## 29008                 determining which    1
## 29009                     detonate over    1
## 29010                      detonated at    1
## 29011                detonated grenades    1
## 29012                   detonated under    1
## 29013                    detonating the    1
## 29014                     detonation or    1
## 29015                  detroit michigan    1
## 29016               deuterating weather    1
## 29017                      deux bassins    1
## 29018                   develop control    1
## 29019                      develop full    1
## 29020                     develop power    1
## 29021                   develop unequal    1
## 29022                       developed a    1
## 29023                      developed an    1
## 29024                     developed and    1
## 29025                    developed from    1
## 29026                     developed its    1
## 29027                 developed landing    1
## 29028              developed mechanical    1
## 29029                   developed prior    1
## 29030                 developed through    1
## 29031                   developing from    1
## 29032                   developing fuel    1
## 29033          developing significantly    1
## 29034                     deviate below    1
## 29035                        deviate to    1
## 29036                       deviated 60    1
## 29037                     deviation and    1
## 29038                      deviation in    1
## 29039                     deviation led    1
## 29040                     deviation off    1
## 29041                     deviation the    1
## 29042                      deviation to    1
## 29043                deviations because    1
## 29044               deviations hindered    1
## 29045                     deviations of    1
## 29046                    device crashed    1
## 29047                   device designed    1
## 29048               device eyewitnesses    1
## 29049                        device for    1
## 29050                        device had    1
## 29051                         device of    1
## 29052                         device or    1
## 29053                     device within    1
## 29054               devices immediately    1
## 29055                      devices were    1
## 29056                         dfdr data    1
## 29057                           dhabi a    1
## 29058                          dhabi to    1
## 29059                   dhahran airport    1
## 29060                      dhangadhi in    1
## 29061                             dhc 6    1
## 29062                        dhc3 otter    1
## 29063                  diabetes managed    1
## 29064                   diagonally over    1
## 29065                         dial from    1
## 29066                      diameter due    1
## 29067                      diameter the    1
## 29068                  diaphragm failed    1
## 29069                      dick ebersol    1
## 29070                            did he    1
## 29071                          did it's    1
## 29072                          did make    1
## 29073                           did say    1
## 29074                did.realizing they    1
## 29075                     didn't become    1
## 29076                      didn't climb    1
## 29077                     didn't comply    1
## 29078                    didn't develop    1
## 29079                       didn't have    1
## 29080                       didn't know    1
## 29081                    didn't monitor    1
## 29082                   didn't properly    1
## 29083                    didn't realize    1
## 29084                  didn't recognize    1
## 29085                     didn't rotate    1
## 29086                        didn't see    1
## 29087                           didnã â    1
## 29088                            die on    1
## 29089                           died 20    1
## 29090                           died 31    1
## 29091                            died 5    1
## 29092                        died along    1
## 29093                       died before    1
## 29094                          died due    1
## 29095                         died five    1
## 29096                         died from    1
## 29097                        died prior    1
## 29098                      died stalled    1
## 29099                        died while    1
## 29100                    diego chargers    1
## 29101                     diego clipped    1
## 29102                      diego county    1
## 29103                         diego the    1
## 29104                          diego to    1
## 29105                       diego while    1
## 29106                         differ as    1
## 29107                 different airways    1
## 29108                    different area    1
## 29109             different controllers    1
## 29110                  different flight    1
## 29111               different occasions    1
## 29112                  different runway    1
## 29113                    different size    1
## 29114                 different sources    1
## 29115                 different taxiway    1
## 29116               different unrelated    1
## 29117              differential braking    1
## 29118                     difficult and    1
## 29119           difficult circumstances    1
## 29120                     difficult the    1
## 29121                   difficulties by    1
## 29122              difficulties crashed    1
## 29123                  difficulties due    1
## 29124               difficulties engine    1
## 29125                 difficulties fuel    1
## 29126               difficulties jammed    1
## 29127                difficulties three    1
## 29128                 difficulties were    1
## 29129                difficulties while    1
## 29130            difficulty controlling    1
## 29131                difficulty gaining    1
## 29132                difficulty keeping    1
## 29133                    difficulty one    1
## 29134                   digboi mountain    1
## 29135                        dike broke    1
## 29136                           dike on    1
## 29137                  diligent lookout    1
## 29138                dillingham airport    1
## 29139                    dillingham the    1
## 29140                  dillingham while    1
## 29141                           dim the    1
## 29142                    diminished the    1
## 29143                        dimming of    1
## 29144                           dinh le    1
## 29145                       dino martin    1
## 29146                     dioxide being    1
## 29147                    dioxide danger    1
## 29148                           dip and    1
## 29149                           dip its    1
## 29150                        dipped its    1
## 29151                        dipped the    1
## 29152                      dipped while    1
## 29153                   direct approach    1
## 29154                    direct landing    1
## 29155                         direct on    1
## 29156                      direct point    1
## 29157                         direct to    1
## 29158                        direct vor    1
## 29159                     directed back    1
## 29160                      directed the    1
## 29161                       directed to    1
## 29162                   direction after    1
## 29163                   direction along    1
## 29164               direction depriving    1
## 29165                  direction ensued    1
## 29166                    direction even    1
## 29167              direction eventually    1
## 29168                    direction from    1
## 29169                      direction he    1
## 29170                   direction heavy    1
## 29171                    direction into    1
## 29172                direction opposite    1
## 29173                direction probably    1
## 29174                direction resulted    1
## 29175                   direction taken    1
## 29176               direction witnesses    1
## 29177                directional beacon    1
## 29178               directional heading    1
## 29179                     directions in    1
## 29180                   directions made    1
## 29181                     directions to    1
## 29182                  directions which    1
## 29183                  directive making    1
## 29184               directive requiring    1
## 29185                    directives and    1
## 29186               directives couldn't    1
## 29187                    directives etc    1
## 29188                    directives not    1
## 29189              directives requiring    1
## 29190                   directives that    1
## 29191                    directives the    1
## 29192                    directly ahead    1
## 29193                  directly alerted    1
## 29194                      directly and    1
## 29195                       directly at    1
## 29196                     directly from    1
## 29197                       directly in    1
## 29198                 directly observed    1
## 29199                  directly towards    1
## 29200                    directly under    1
## 29201                        director a    1
## 29202                      director and    1
## 29203                    director georg    1
## 29204                  director horizon    1
## 29205                director indicator    1
## 29206                 director producer    1
## 29207                      director the    1
## 29208                      director was    1
## 29209               directorate general    1
## 29210                    directorate of    1
## 29211                       dirfted off    1
## 29212            dirigible's commanding    1
## 29213                   dirigible akron    1
## 29214                dirigible cruising    1
## 29215                         dirt bank    1
## 29216                       dirt runway    1
## 29217                    dirt strip.the    1
## 29218                       dirzzle and    1
## 29219                        disabled a    1
## 29220                    disabled after    1
## 29221               disabled artificial    1
## 29222                       disabled by    1
## 29223                   disabled engine    1
## 29224                 disabled position    1
## 29225                      disabling or    1
## 29226                     disabling the    1
## 29227           disagreement indication    1
## 29228                 disagreement with    1
## 29229                   disappeard from    1
## 29230                     disappeared a    1
## 29231                   disappeared and    1
## 29232         disappeared approximately    1
## 29233                    disappeared as    1
## 29234                disappeared behind    1
## 29235           disappeared disappeared    1
## 29236                  disappeared into    1
## 29237                   disappeared mid    1
## 29238                   disappeared the    1
## 29239                  disappeared with    1
## 29240               disappeared without    1
## 29241                 disappearing into    1
## 29242                  disappearing off    1
## 29243                disappearing while    1
## 29244              disappearing without    1
## 29245                  disapppeared off    1
## 29246                        disarm the    1
## 29247                    disaster after    1
## 29248                   disaster caused    1
## 29249                   disaster relief    1
## 29250                   disaster rescue    1
## 29251                      disaster the    1
## 29252                    disbonding and    1
## 29253                          disc the    1
## 29254               discarded cigarette    1
## 29255                      discarding a    1
## 29256                   discharge after    1
## 29257                 discharge between    1
## 29258                      discharge in    1
## 29259                   discharge which    1
## 29260                   discharge wicks    1
## 29261              discharged batteries    1
## 29262                 discharged carbon    1
## 29263                   discharged into    1
## 29264                discharged setting    1
## 29265                    discharged the    1
## 29266            discharging passengers    1
## 29267              discintegrated while    1
## 29268                 discintigrated in    1
## 29269                    discipline and    1
## 29270                     discipline by    1
## 29271              discipline consuming    1
## 29272                discipline fatigue    1
## 29273                 discipline flight    1
## 29274               discipline improper    1
## 29275                     discipline in    1
## 29276                   discipline poor    1
## 29277                  discipline which    1
## 29278                    disconnect and    1
## 29279               disconnected during    1
## 29280                 disconnected from    1
## 29281                   disconnected in    1
## 29282                  disconnecting of    1
## 29283                 disconnecting the    1
## 29284                 disconnection was    1
## 29285                 discontinuance of    1
## 29286               discontinue descent    1
## 29287               discontinue takeoff    1
## 29288                discontinue visual    1
## 29289                   discontinue vor    1
## 29290                  discontinued ifr    1
## 29291              discontinued takeoff    1
## 29292                  discontinued the    1
## 29293                      discover the    1
## 29294                      discovered 8    1
## 29295                  discovered after    1
## 29296                     discovered an    1
## 29297                    discovered and    1
## 29298                     discovered by    1
## 29299                 discovered during    1
## 29300                    discovered for    1
## 29301             discrepancies between    1
## 29302                  discrepancies in    1
## 29303              discrepancies logged    1
## 29304                    discrepancy in    1
## 29305               discussion revealed    1
## 29306                       disease ran    1
## 29307                    disembarked at    1
## 29308                 disengage causing    1
## 29309                     disengage the    1
## 29310                  disengaged after    1
## 29311                     disengaged in    1
## 29312                disengagement just    1
## 29313              disengaging probably    1
## 29314                 disintegrate into    1
## 29315               disintegrate pieces    1
## 29316                  disintegrated 10    1
## 29317               disintegrated after    1
## 29318                 disintegrated all    1
## 29319                  disintegrated as    1
## 29320                  disintegrated at    1
## 29321                 disintegrated atc    1
## 29322             disintegrated causing    1
## 29323            disintegrated damaging    1
## 29324                 disintegrated due    1
## 29325              disintegrated during    1
## 29326              disintegrated losing    1
## 29327                disintegrated next    1
## 29328                 disintegrated one    1
## 29329                disintegrated over    1
## 29330             disintegrated shortly    1
## 29331             disintegrated tearing    1
## 29332            disintegrated wreckage    1
## 29333           disintegrating aircraft    1
## 29334             disintegrating around    1
## 29335                 disintegrating in    1
## 29336              disintegrating there    1
## 29337               disintegrating upon    1
## 29338                 disintegration in    1
## 29339              disintegration while    1
## 29340                          disk and    1
## 29341                           disk as    1
## 29342                       disk failed    1
## 29343                           disk of    1
## 29344                   disk separation    1
## 29345                        disk which    1
## 29346                    dislodged from    1
## 29347                    dislodging out    1
## 29348                      dismissed in    1
## 29349                     dismissed the    1
## 29350                   dismounting the    1
## 29351            disobeyed instructions    1
## 29352        disorientation contributed    1
## 29353            disorientation crashed    1
## 29354            disorientation ditched    1
## 29355            disorientation factors    1
## 29356           disorientation improper    1
## 29357               disorientation lack    1
## 29358            disorientation leading    1
## 29359                 disorientation on    1
## 29360              disorientation pilot    1
## 29361            disorientation stalled    1
## 29362                 disorientation to    1
## 29363               disorientation when    1
## 29364              disorientation which    1
## 29365                 disoriented after    1
## 29366                  disoriented crew    1
## 29367                   disoriented the    1
## 29368                  disoriented when    1
## 29369                 disoriented while    1
## 29370                  disorienting the    1
## 29371                      dispatch and    1
## 29372               dispatch procedures    1
## 29373                dispatched despite    1
## 29374              dispatched illegally    1
## 29375                   dispatched with    1
## 29376                     dispatcher to    1
## 29377               dispatchers charged    1
## 29378                   dispatching and    1
## 29379                   dispatching for    1
## 29380                    dispensed with    1
## 29381               displaced threshold    1
## 29382                display manoeuvres    1
## 29383                        display of    1
## 29384                  display superior    1
## 29385                     display wrong    1
## 29386                      displayed by    1
## 29387                      displayed on    1
## 29388                       displays as    1
## 29389              disregarded decision    1
## 29390                   disregarded the    1
## 29391              disregarded warnings    1
## 29392                      disrupted by    1
## 29393           disseminate unambiguous    1
## 29394                  disseminated two    1
## 29395                dissemination from    1
## 29396                 dissenting report    1
## 29397                 dissipating stage    1
## 29398             dissymmetrical flight    1
## 29399                      distance 900    1
## 29400                 distance altitude    1
## 29401                distance available    1
## 29402             distance calculations    1
## 29403                   distance flying    1
## 29404                       distance in    1
## 29405                distance measuring    1
## 29406                distance remaining    1
## 29407                    distance still    1
## 29408                   distance turned    1
## 29409                    distance under    1
## 29410                     distance with    1
## 29411                distintegration of    1
## 29412                     distortion of    1
## 29413                     distracted as    1
## 29414                   distracted them    1
## 29415                  distracted while    1
## 29416                  distracting part    1
## 29417                   distracting the    1
## 29418                     distraction 4    1
## 29419                    distraction by    1
## 29420                distraction during    1
## 29421                  distraction from    1
## 29422          distractions experienced    1
## 29423                   distribute food    1
## 29424                   distributed the    1
## 29425                  distribution and    1
## 29426                    district after    1
## 29427                      district and    1
## 29428                 district bursting    1
## 29429                    district court    1
## 29430                       district in    1
## 29431                       district it    1
## 29432                    distruction of    1
## 29433                       ditch after    1
## 29434                        ditch cart    1
## 29435                        ditch near    1
## 29436                       ditch three    1
## 29437                         ditch was    1
## 29438                        ditch when    1
## 29439                       ditch while    1
## 29440                         ditched 1    1
## 29441                      ditched 1.25    1
## 29442                        ditched 35    1
## 29443                       ditched 700    1
## 29444                     ditched broke    1
## 29445                      ditched near    1
## 29446              ditched successfully    1
## 29447                       ditched the    1
## 29448                      ditching 1.5    1
## 29449                  ditching crashed    1
## 29450                     ditching took    1
## 29451                      ditching was    1
## 29452                     ditching with    1
## 29453                            dive 8    1
## 29454                        dive after    1
## 29455                   dive apparently    1
## 29456                           dive as    1
## 29457                       dive before    1
## 29458                        dive broke    1
## 29459                          dive but    1
## 29460                 dive contributing    1
## 29461                     dive crashing    1
## 29462                       dive during    1
## 29463                     dive executed    1
## 29464                     dive followed    1
## 29465                    dive following    1
## 29466                      dive hitting    1
## 29467                         dive into    1
## 29468                     dive inverted    1
## 29469                          dive led    1
## 29470                    dive resulting    1
## 29471                         dive some    1
## 29472                           dive to    1
## 29473                        dive until    1
## 29474                         dive when    1
## 29475                        dive while    1
## 29476                         dive with    1
## 29477                       dived again    1
## 29478                    dived crashing    1
## 29479                          dived in    1
## 29480                    dived inverted    1
## 29481                      diver robert    1
## 29482                   diverging roads    1
## 29483                         divers as    1
## 29484                   diversion canal    1
## 29485                      diversion of    1
## 29486                     diversion the    1
## 29487                       divert back    1
## 29488                       divert from    1
## 29489                       diverted en    1
## 29490                      diverted off    1
## 29491                    diverted while    1
## 29492                     diverting due    1
## 29493                    diverting from    1
## 29494                 diverting towards    1
## 29495                         diving at    1
## 29496                  diving exercises    1
## 29497                         diving in    1
## 29498                  diving maneuvers    1
## 29499                      diving plane    1
## 29500                     division from    1
## 29501                      divorce from    1
## 29502                      divorced her    1
## 29503                      divorced the    1
## 29504                    djall mountain    1
## 29505                         djebel ta    1
## 29506                    djerba tunisia    1
## 29507                           dme due    1
## 29508                     dme equipment    1
## 29509                           dme had    1
## 29510                        dme missed    1
## 29511                         dme south    1
## 29512                            do and    1
## 29513                             do it    1
## 29514                             do on    1
## 29515                             do so    1
## 29516                            do sol    1
## 29517                            do the    1
## 29518                           do this    1
## 29519                       dobodura at    1
## 29520                     doctor before    1
## 29521                  document monitor    1
## 29522                   documentation 3    1
## 29523                 documentation and    1
## 29524             documentation breakup    1
## 29525                          doing at    1
## 29526                         doing low    1
## 29527                        dollars in    1
## 29528                        dollars to    1
## 29529                     dolly sinatra    1
## 29530                 dolorosa district    1
## 29531                    dome northeast    1
## 29532                         dome ring    1
## 29533                domestic scheduled    1
## 29534                       domingo but    1
## 29535                    domingo unable    1
## 29536                domodedovo airport    1
## 29537                          don repo    1
## 29538                           don the    1
## 29539                         don their    1
## 29540                       donald duke    1
## 29541                         dondon 21    1
## 29542                           done as    1
## 29543                       done during    1
## 29544                   donetsk against    1
## 29545                       donetsk and    1
## 29546                   donetsk ukraine    1
## 29547                           dong ha    1
## 29548                        donna reed    1
## 29549                     donner summit    1
## 29550                     doomed flight    1
## 29551                           door 1r    1
## 29552                            door a    1
## 29553                         door also    1
## 29554                          door and    1
## 29555                         door blew    1
## 29556                      door closure    1
## 29557                 door contributing    1
## 29558                      door control    1
## 29559                      door despite    1
## 29560                     door exploded    1
## 29561                     door fifiteen    1
## 29562                           door is    1
## 29563                           door it    1
## 29564                      door killing    1
## 29565                      door latches    1
## 29566                         door lock    1
## 29567                         door open    1
## 29568                     door openings    1
## 29569                       door pillow    1
## 29570                     door resulted    1
## 29571                      door shortly    1
## 29572                           door to    1
## 29573                    doors breaking    1
## 29574                          doors to    1
## 29575                       doors which    1
## 29576                       doppler and    1
## 29577                       dora's seat    1
## 29578                        dore about    1
## 29579                      dore shortly    1
## 29580                   dormant volcano    1
## 29581                       dornacker a    1
## 29582                     dornacker had    1
## 29583                      dorothy hunt    1
## 29584                    dortmund pilot    1
## 29585                        dorval the    1
## 29586                       dottie west    1
## 29587                     doty recently    1
## 29588                    douala airport    1
## 29589                   douala wreckage    1
## 29590                douangchay phichit    1
## 29591                  double propeller    1
## 29592                        double the    1
## 29593                         double up    1
## 29594                        douglas dc    1
## 29595                    douglas denied    1
## 29596             douglas international    1
## 29597                        douglas md    1
## 29598                  douglas probably    1
## 29599                        douglas to    1
## 29600                           dove in    1
## 29601                           dove to    1
## 29602                         dover afb    1
## 29603             dovestones greenfield    1
## 29604                        down 2,200    1
## 29605                        down 2,748    1
## 29606                        down 2,800    1
## 29607                           down 35    1
## 29608                        down 4,700    1
## 29609                          down 520    1
## 29610                        down 6,000    1
## 29611                        down about    1
## 29612                 down accidentally    1
## 29613                          down air    1
## 29614                    down altitudes    1
## 29615                   down apparently    1
## 29616                           down as    1
## 29617                        down below    1
## 29618                      down bounced    1
## 29619                      down briefly    1
## 29620                          down but    1
## 29621                        down crash    1
## 29622                     down crashing    1
## 29623                     down currents    1
## 29624                        down draft    1
## 29625                          down due    1
## 29626                       down either    1
## 29627                       down engine    1
## 29628                     down executed    1
## 29629                          down fix    1
## 29630                         down four    1
## 29631                         down half    1
## 29632                      down halfway    1
## 29633                           down he    1
## 29634                         down high    1
## 29635                         down hill    1
## 29636                      down induced    1
## 29637                        down input    1
## 29638                         down just    1
## 29639                       down lifted    1
## 29640                         down load    1
## 29641                       down midair    1
## 29642                       down nearby    1
## 29643                           down no    1
## 29644                           down or    1
## 29645                         down over    1
## 29646                         down past    1
## 29647                        down power    1
## 29648                  down prematurely    1
## 29649                   down procedural    1
## 29650                   down procedures    1
## 29651                        down right    1
## 29652                        down rings    1
## 29653                       down runway    1
## 29654                      down several    1
## 29655                          down she    1
## 29656                        down short    1
## 29657                      down stalled    1
## 29658                       down struck    1
## 29659                      down through    1
## 29660                          down too    1
## 29661                          down two    1
## 29662                        down under    1
## 29663                        down until    1
## 29664                       down veered    1
## 29665                        down which    1
## 29666                         down wind    1
## 29667                      down without    1
## 29668                downdraft activity    1
## 29669                      downdraft at    1
## 29670                  downdraft caused    1
## 29671              downdraft conditions    1
## 29672                downdraft crashing    1
## 29673             downdraft encountered    1
## 29674               downdraft following    1
## 29675             downdraft immediately    1
## 29676                      downdraft in    1
## 29677                  downdraft missed    1
## 29678                     downdraft the    1
## 29679                downdrafts crashed    1
## 29680                     downdrafts on    1
## 29681                  downdrafts there    1
## 29682                  downdrafts which    1
## 29683                  downdrafts while    1
## 29684           downdraughts associated    1
## 29685                         downed to    1
## 29686                       downside to    1
## 29687                 downward attitude    1
## 29688                       downward in    1
## 29689                 downward movement    1
## 29690                    downward slope    1
## 29691                       downward to    1
## 29692                       downwind in    1
## 29693                      downwind leg    1
## 29694                 downwind overshot    1
## 29695                       downwind to    1
## 29696                     downwind when    1
## 29697                      dozen houses    1
## 29698                       dozen times    1
## 29699                        dqf landed    1
## 29700                       dr jonathan    1
## 29701                           dr voss    1
## 29702                        draft when    1
## 29703                        drafts the    1
## 29704                           drag as    1
## 29705                       drag caused    1
## 29706                          drag due    1
## 29707                       drag during    1
## 29708                         drag from    1
## 29709                         drag loss    1
## 29710                           drag of    1
## 29711                    drag resulting    1
## 29712                        drag strip    1
## 29713                         drag that    1
## 29714                           drag to    1
## 29715                      dragged into    1
## 29716                        dragged on    1
## 29717                       dragged the    1
## 29718                        dragged to    1
## 29719                   dragging caused    1
## 29720                    dragging which    1
## 29721                        drain plug    1
## 29722                    drainage canal    1
## 29723             drakensberg mountains    1
## 29724                     drank alcohol    1
## 29725                         drasin 34    1
## 29726                       drawing the    1
## 29727                           drift 3    1
## 29728                  drift correction    1
## 29729                     drift crashed    1
## 29730                         drift due    1
## 29731                         drift few    1
## 29732                         drift the    1
## 29733                        drift with    1
## 29734                        drifted 50    1
## 29735                     drifted below    1
## 29736                     drifted north    1
## 29737                 drifted unlighted    1
## 29738                       drifting 20    1
## 29739                       drifting 30    1
## 29740                      drifting fog    1
## 29741                      drifting off    1
## 29742                       drifting to    1
## 29743                drillilng platform    1
## 29744                      drilling rig    1
## 29745                     drilling site    1
## 29746                         drills by    1
## 29747                      drinking the    1
## 29748                     drive failure    1
## 29749                        drive fuel    1
## 29750                        drive gear    1
## 29751                       drive quill    1
## 29752                         drive the    1
## 29753                       driven gyro    1
## 29754                    driver crossed    1
## 29755                     driver curtis    1
## 29756                      driver davey    1
## 29757                     driver graham    1
## 29758                         driver in    1
## 29759                      driving rain    1
## 29760                 driving rainstorm    1
## 29761                      driving snow    1
## 29762                       driving the    1
## 29763                     drizzle delay    1
## 29764                      drizzle rain    1
## 29765                       drizzle the    1
## 29766                          drop and    1
## 29767                      drop crashed    1
## 29768                         drop from    1
## 29769                          drop its    1
## 29770                      drop mission    1
## 29771                           drop of    1
## 29772                        drop point    1
## 29773                      drop sharply    1
## 29774                          drop the    1
## 29775                       drop trying    1
## 29776                        drop which    1
## 29777                        droped the    1
## 29778                         droping a    1
## 29779                    dropped around    1
## 29780                        dropped as    1
## 29781                      dropped back    1
## 29782                   dropped heavily    1
## 29783                       dropped off    1
## 29784                      dropped onto    1
## 29785                      dropped open    1
## 29786                       dropped out    1
## 29787                      dropped over    1
## 29788                  dropping ballast    1
## 29789                    dropping below    1
## 29790                  dropping mission    1
## 29791                 dropping supplies    1
## 29792                      dropping the    1
## 29793                         drops the    1
## 29794                          drops to    1
## 29795                  drought stricken    1
## 29796                         drove the    1
## 29797                       drowned due    1
## 29798                   drowned failure    1
## 29799                        drowned on    1
## 29800                      drowned poor    1
## 29801                   drowned shortly    1
## 29802                      drowned tail    1
## 29803                      drowned when    1
## 29804                     drowned while    1
## 29805                  drowning failure    1
## 29806                      drowning its    1
## 29807                       drug cartel    1
## 29808                          drug jet    1
## 29809                      drug leaving    1
## 29810                      drug mission    1
## 29811                    drug producing    1
## 29812                    drug smuggling    1
## 29813                  drug traffickers    1
## 29814                     drugs factors    1
## 29815                         drugs the    1
## 29816                           drum in    1
## 29817                           drum on    1
## 29818                         drum roll    1
## 29819                   drunken escaped    1
## 29820                    drunken police    1
## 29821                          dry cell    1
## 29822                        dry flying    1
## 29823                          dry fuel    1
## 29824                         dry grass    1
## 29825                        dry leased    1
## 29826                    dryden ontario    1
## 29827                         duabi the    1
## 29828                       dual flight    1
## 29829                     dubai airport    1
## 29830                         dubai and    1
## 29831                   dubai incorrect    1
## 29832                         dubai the    1
## 29833                       dubai tower    1
## 29834               dubroff accompanied    1
## 29835                   dubrovnik while    1
## 29836                     duc civilians    1
## 29837                        duchess of    1
## 29838                        due either    1
## 29839                         due south    1
## 29840                           due top    1
## 29841                       duel engine    1
## 29842                            dug in    1
## 29843                          duh peak    1
## 29844                          duke and    1
## 29845                           duke of    1
## 29846                          duke was    1
## 29847                           dum the    1
## 29848                      dummy target    1
## 29849                    dumont airport    1
## 29850                        dump chute    1
## 29851                        dump right    1
## 29852                    dunes improper    1
## 29853                       duration of    1
## 29854                during abandonment    1
## 29855               during acceleration    1
## 29856                   during aircraft    1
## 29857                       during anti    1
## 29858                 during approaches    1
## 29859                     during ascent    1
## 29860                   during attempts    1
## 29861                      during climb    1
## 29862                   during daylight    1
## 29863                    during daytime    1
## 29864                       during flap    1
## 29865                      during flood    1
## 29866                       during good    1
## 29867                        during ifr    1
## 29868                        during ils    1
## 29869                  during inclement    1
## 29870                 during inspection    1
## 29871                       during last    1
## 29872                       during less    1
## 29873                    during liftoff    1
## 29874                  during mandatory    1
## 29875                   during military    1
## 29876                      during night    1
## 29877                     during normal    1
## 29878                  during operation    1
## 29879                      during other    1
## 29880                   during overhaul    1
## 29881                  during overnight    1
## 29882                        during pre    1
## 29883                     during recent    1
## 29884                   during required    1
## 29885                    during routine    1
## 29886                  during simulated    1
## 29887                       during test    1
## 29888                      during tests    1
## 29889                       during that    1
## 29890                 during thelanding    1
## 29891                      during three    1
## 29892               during thunderstorm    1
## 29893                      during times    1
## 29894                   during twilight    1
## 29895               during uncontrolled    1
## 29896               during undocumented    1
## 29897                        during vfr    1
## 29898                     during winter    1
## 29899                      during world    1
## 29900                       during wwii    1
## 29901                 durining daylight    1
## 29902                       durzana air    1
## 29903                      dust failure    1
## 29904                          dust the    1
## 29905                         dusty low    1
## 29906                        dutch army    1
## 29907                         dutch boy    1
## 29908                       dutch coast    1
## 29909                        dutch crew    1
## 29910                    dutch engineer    1
## 29911                      dutch soccer    1
## 29912                        dutch town    1
## 29913                        dutch word    1
## 29914                    duties between    1
## 29915                    duties crashed    1
## 29916                    duties instead    1
## 29917                         duties on    1
## 29918                    duties pilot's    1
## 29919                     duties pilots    1
## 29920                       duties this    1
## 29921                      duty crashed    1
## 29922                         duty crew    1
## 29923                           duty it    1
## 29924                        duty pilot    1
## 29925                      duty several    1
## 29926                           duty to    1
## 29927                        duty while    1
## 29928                     dyersburg and    1
## 29929                         dyess air    1
## 29930                        dyke after    1
## 29931                          dyke and    1
## 29932                         dyke near    1
## 29933                        dyke while    1
## 29934                      dynamic lift    1
## 29935                     dynamo moscow    1
## 29936                           e helen    1
## 29937                          e howard    1
## 29938                          e jauhar    1
## 29939                          e sardeh    1
## 29940                       e selfridge    1
## 29941                             e the    1
## 29942                          e travis    1
## 29943                   each helicopter    1
## 29944                        each latch    1
## 29945                           each of    1
## 29946                      each other's    1
## 29947                    each other.the    1
## 29948                        each pilot    1
## 29949                      each radioed    1
## 29950                          each the    1
## 29951                         each time    1
## 29952                          eager to    1
## 29953                  eagle management    1
## 29954                    eagle mountain    1
## 29955                        eagle rock    1
## 29956                       eal captain    1
## 29957                         eal plane    1
## 29958                        earhart 40    1
## 29959                        earhart to    1
## 29960                      earl carroll    1
## 29961                         earlier a    1
## 29962                  earlier accident    1
## 29963                   earlier carried    1
## 29964                    earlier midair    1
## 29965                     earlier shift    1
## 29966                    earlier struck    1
## 29967                      earlier than    1
## 29968                       earlier the    1
## 29969                    earliest known    1
## 29970                       early creek    1
## 29971                 early dissipating    1
## 29972                      early during    1
## 29973                      early ground    1
## 29974                early inexperience    1
## 29975                        early loss    1
## 29976                     early morning    1
## 29977                  early navigation    1
## 29978                      early report    1
## 29979                 early retardation    1
## 29980                     early stalled    1
## 29981                          earned a    1
## 29982                         earth 700    1
## 29983                      earth almost    1
## 29984                    earth bursting    1
## 29985                         earth dam    1
## 29986                  earth embankment    1
## 29987                       earth icing    1
## 29988                          earth in    1
## 29989                        earth into    1
## 29990                       earth mound    1
## 29991                      earth moving    1
## 29992                        earth near    1
## 29993                        earth nose    1
## 29994                     earth plowing    1
## 29995                earthquake crashed    1
## 29996               earthquake stricken    1
## 29997                earthquake victims    1
## 29998                    eas industries    1
## 29999                        easily and    1
## 30000                         easily be    1
## 30001                          east and    1
## 30002                          east leg    1
## 30003                         east side    1
## 30004                       east slopes    1
## 30005                         east sout    1
## 30006                          east the    1
## 30007                         east then    1
## 30008                       east within    1
## 30009                  easterly heading    1
## 30010                     eastern burma    1
## 30011                   eastern ecuador    1
## 30012                 eastern employees    1
## 30013                      eastern most    1
## 30014                 eastern outskirts    1
## 30015                   eastern section    1
## 30016                     eastern slope    1
## 30017                    eastern slopes    1
## 30018                     eastleigh air    1
## 30019                           easy to    1
## 30020                           eat but    1
## 30021                       ebersol and    1
## 30022                       eclipse the    1
## 30023                         ecuador c    1
## 30024                 ecuador colombian    1
## 30025                ecuador earthquake    1
## 30026                      ecuador flew    1
## 30027                       ecuador for    1
## 30028                        ecuador in    1
## 30029                 ecuadorian border    1
## 30030                  eczacibasi group    1
## 30031                  edelca president    1
## 30032                     edge assembly    1
## 30033                      edge control    1
## 30034                      edge heavily    1
## 30035                       edge lights    1
## 30036                      edge section    1
## 30037                          edges of    1
## 30038                    edinburgh from    1
## 30039                         editor of    1
## 30040                     edmonton with    1
## 30041                     eduardo gomes    1
## 30042               edward rickenbacker    1
## 30043                           edwin c    1
## 30044                      eelam rebels    1
## 30045                   effect damaging    1
## 30046                       effect flew    1
## 30047                       effect that    1
## 30048                        effect the    1
## 30049                  effected because    1
## 30050                  effected crashed    1
## 30051                     effected lost    1
## 30052                 effective control    1
## 30053                  effective engine    1
## 30054                 effective lookout    1
## 30055              effective separation    1
## 30056                     effective use    1
## 30057              effectively excluded    1
## 30058               effectively limited    1
## 30059                effectively manage    1
## 30060                  effectively shut    1
## 30061                  effectiveness of    1
## 30062                  effectiveness on    1
## 30063                  effectiveness to    1
## 30064                       effects hit    1
## 30065                  effectuating his    1
## 30066                    efficiency and    1
## 30067           efficiency contributing    1
## 30068                         effort to    1
## 30069                        effort was    1
## 30070                        efforts of    1
## 30071                       efforts the    1
## 30072                        efforts to    1
## 30073                           eggs in    1
## 30074                           egypt a    1
## 30075                   egypt spiritual    1
## 30076                      egypt thirty    1
## 30077                       egypt while    1
## 30078                    egyptian coast    1
## 30079                   egyptian forces    1
## 30080                 egyptian princess    1
## 30081                      eight aboard    1
## 30082                        eight crew    1
## 30083                      eight killed    1
## 30084                   eight occupants    1
## 30085                          eight on    1
## 30086                         eight out    1
## 30087                      eight people    1
## 30088                     eight persons    1
## 30089                   eighteen killed    1
## 30090                   eighteen member    1
## 30091                  eighteen members    1
## 30092                     eindhoven air    1
## 30093                 eisenhower powers    1
## 30094                          either a    1
## 30095                either alternating    1
## 30096                      either artcc    1
## 30097                        either did    1
## 30098               either establishing    1
## 30099                     either french    1
## 30100                        either ifr    1
## 30101                either interrupted    1
## 30102                 either mechanical    1
## 30103                        either not    1
## 30104                         either of    1
## 30105                       either shot    1
## 30106                 either suppressed    1
## 30107                    either through    1
## 30108                       ejected and    1
## 30109                        ejected at    1
## 30110                      ejected from    1
## 30111                        ejected to    1
## 30112                        ejecting a    1
## 30113                      ejecting the    1
## 30114                     ejection from    1
## 30115                       ejectors in    1
## 30116                           el alto    1
## 30117                   el arrastradero    1
## 30118                       el callejon    1
## 30119                        el deluvio    1
## 30120                       el junquito    1
## 30121                         el kelãƒâ    1
## 30122                     el manzanillo    1
## 30123                        el ovejero    1
## 30124                          el rucio    1
## 30125                         el sabino    1
## 30126                         el saluda    1
## 30127                       el salvador    1
## 30128                         el sheikh    1
## 30129                       el silencio    1
## 30130                       el tabalazo    1
## 30131                          el tigre    1
## 30132                          el yopal    1
## 30133                         el yunque    1
## 30134                        elands bay    1
## 30135                   elapsed between    1
## 30136                    elastic limits    1
## 30137                     elavator gust    1
## 30138                        elba after    1
## 30139                    elbow mountain    1
## 30140                 elderly passenger    1
## 30141                     elderly woman    1
## 30142                         elected a    1
## 30143                       electing to    1
## 30144                 electric elevator    1
## 30145                    electric lines    1
## 30146             electric transmission    1
## 30147              electrical actuation    1
## 30148                electrical arching    1
## 30149                electrical contact    1
## 30150                     electrical dc    1
## 30151                   electrical mast    1
## 30152                  electrical panel    1
## 30153                electrical problem    1
## 30154                 electrical rudder    1
## 30155                electrical severed    1
## 30156                  electricity pole    1
## 30157         electromagnetic phenomena    1
## 30158                    electronic and    1
## 30159              electronic equipment    1
## 30160                electronic locator    1
## 30161               electronics crashed    1
## 30162                        element in    1
## 30163                 elementary school    1
## 30164                      elements and    1
## 30165                         elena the    1
## 30166                     elephant pass    1
## 30167                  elevated western    1
## 30168                     elevation and    1
## 30169                      elevation it    1
## 30170                        elevator a    1
## 30171                       elevator as    1
## 30172                 elevator assembly    1
## 30173                    elevator boost    1
## 30174                    elevator cable    1
## 30175                   elevator cables    1
## 30176              elevator contributed    1
## 30177                 elevator controls    1
## 30178                  elevator crashed    1
## 30179                     elevator crew    1
## 30180               elevator deflection    1
## 30181                   elevator during    1
## 30182            elevator effectiveness    1
## 30183                 elevator followed    1
## 30184                elevator jackscrew    1
## 30185                       elevator of    1
## 30186                 elevator operator    1
## 30187                    elevator shaft    1
## 30188                    elevator spars    1
## 30189                   elevator spring    1
## 30190                   elevator system    1
## 30191                      elevator tab    1
## 30192                   elevator torque    1
## 30193                   elevator travel    1
## 30194                     elevator were    1
## 30195                     elevators and    1
## 30196                   elevators broke    1
## 30197                 elevators control    1
## 30198             elevators immobilized    1
## 30199                  elevators locked    1
## 30200                     elevators the    1
## 30201                   elevators which    1
## 30202                       eleven high    1
## 30203                      eleven homes    1
## 30204                    eleven minutes    1
## 30205                    eleven seconds    1
## 30206           eliminated insufficient    1
## 30207                 elizabethville it    1
## 30208                         elk river    1
## 30209                      elko airport    1
## 30210                         ella lake    1
## 30211                         ellen and    1
## 30212                    elliot croce's    1
## 30213                  elliot roosevelt    1
## 30214                     ellsworth air    1
## 30215                     elmendorf afb    1
## 30216                     elmendorf air    1
## 30217                   elstree airport    1
## 30218                           emb 135    1
## 30219                         emb 135bj    1
## 30220                    embankment 328    1
## 30221               embankment adjacent    1
## 30222                  embankment after    1
## 30223                  embankment along    1
## 30224                 embankment before    1
## 30225              embankment captain's    1
## 30226                 embankment caught    1
## 30227                embankment crashed    1
## 30228                   embankment sent    1
## 30229                   embankment went    1
## 30230                   embedded cumulo    1
## 30231                  embraer's manual    1
## 30232                       embraer emb    1
## 30233                       embraer was    1
## 30234                      embraer were    1
## 30235                  emeraude crashed    1
## 30236                      emergence of    1
## 30237                   emergencies and    1
## 30238                   emergency about    1
## 30239                emergency approach    1
## 30240                      emergency as    1
## 30241                   emergency began    1
## 30242                   emergency belly    1
## 30243                   emergency brake    1
## 30244                  emergency brakes    1
## 30245                 emergency braking    1
## 30246                emergency briefing    1
## 30247              emergency conditions    1
## 30248              emergency consisting    1
## 30249                   emergency crews    1
## 30250                 emergency daytime    1
## 30251                  emergency decent    1
## 30252               emergency developed    1
## 30253                  emergency drills    1
## 30254                  emergency escape    1
## 30255              emergency evacuation    1
## 30256                emergency exercise    1
## 30257                emergency followed    1
## 30258                  emergency forced    1
## 30259               emergency frequency    1
## 30260                    emergency from    1
## 30261                   emergency hatch    1
## 30262             emergency landing.the    1
## 30263                emergency landings    1
## 30264                     emergency led    1
## 30265                emergency maneuver    1
## 30266                 emergency numbers    1
## 30267                emergency occurred    1
## 30268               emergency operation    1
## 30269                emergency planning    1
## 30270                    emergency poor    1
## 30271              emergency procedural    1
## 30272                  emergency pullup    1
## 30273               emergency reporting    1
## 30274                 emergency shortly    1
## 30275                    emergency shot    1
## 30276                    emergency shut    1
## 30277              emergency situations    1
## 30278              emergency suspension    1
## 30279                 emergency takeoff    1
## 30280                    emergency this    1
## 30281             emergency transponder    1
## 30282                   emergency until    1
## 30283                 emergency vehicle    1
## 30284                emergency vehicles    1
## 30285                  emergency wheels    1
## 30286                   emergency while    1
## 30287                 emergency without    1
## 30288                    emitting smoke    1
## 30289                          emmy was    1
## 30290                 empennage crashed    1
## 30291                      empennage of    1
## 30292                empennage surfaces    1
## 30293                  emperor kanishka    1
## 30294                       emphasis on    1
## 30295                      empire state    1
## 30296                       employed by    1
## 30297                    employed until    1
## 30298                    employee david    1
## 30299                      employee did    1
## 30300                      employee was    1
## 30301                     employees the    1
## 30302                    employees were    1
## 30303                    employees when    1
## 30304                   empty buildings    1
## 30305                      empty center    1
## 30306                        empty tank    1
## 30307                      emptying the    1
## 30308                      ems dispatch    1
## 30309                       ems mission    1
## 30310                    emsemble choir    1
## 30311                           en rote    1
## 30312                        enable the    1
## 30313                    enclosed cabin    1
## 30314                       encounted a    1
## 30315                     encounted bad    1
## 30316                   encounteing low    1
## 30317                      encounter as    1
## 30318             encounter immediately    1
## 30319                   encounter rough    1
## 30320                     encountered a    1
## 30321                   encountered bad    1
## 30322                 encountered below    1
## 30323                 encountered dense    1
## 30324              encountered drifting    1
## 30325                encountered during    1
## 30326                encountered engine    1
## 30327               encountered extreme    1
## 30328                encountered forced    1
## 30329            encountered inadequate    1
## 30330                 encountered local    1
## 30331                  encountered lost    1
## 30332                    encountered on    1
## 30333                  encountered over    1
## 30334              encountered problems    1
## 30335           encountered supercooled    1
## 30336                   encountered the    1
## 30337            encountered throughout    1
## 30338         encountered thunderstorms    1
## 30339                  encountered very    1
## 30340               encountered violent    1
## 30341                 encountered while    1
## 30342                 encountered would    1
## 30343                   encountering 60    1
## 30344              encountering adverse    1
## 30345                encountering clear    1
## 30346                 encountering gale    1
## 30347                 encountering hail    1
## 30348                encountering icing    1
## 30349                  encountering ifr    1
## 30350           encountering instrument    1
## 30351                  encountering low    1
## 30352             encountering marginal    1
## 30353                 encountering snow    1
## 30354               encountering strong    1
## 30355        encountering thunderstorms    1
## 30356          encountering unfavorable    1
## 30357            encountering windshear    1
## 30358                   encounters with    1
## 30359                       end crashed    1
## 30360                         end icing    1
## 30361                        end marker    1
## 30362                       end markers    1
## 30363                          end play    1
## 30364                    end settlement    1
## 30365                            end up    1
## 30366                         ende both    1
## 30367                      endeavor the    1
## 30368                   endeavouring to    1
## 30369                        ending the    1
## 30370                    enemy aircraft    1
## 30371                       enemy boats    1
## 30372                      enemy ground    1
## 30373                          enered a    1
## 30374                        energy for    1
## 30375                         energy no    1
## 30376                 energy preventing    1
## 30377                 enforce adherence    1
## 30378                       enforce its    1
## 30379                       enforce the    1
## 30380                    enforcement of    1
## 30381                     engaged climb    1
## 30382                   engaged crashed    1
## 30383                    engaged during    1
## 30384                  engaged manually    1
## 30385                    engaged rolled    1
## 30386                    engaged struck    1
## 30387                      engaged with    1
## 30388                     engagement of    1
## 30389                       engaging in    1
## 30390                      engaging the    1
## 30391                   engine's blades    1
## 30392                      engine's hot    1
## 30393                      engine's low    1
## 30394                      engine's oil    1
## 30395                      engine's pt2    1
## 30396                     engine's ring    1
## 30397                          engine 3    1
## 30398                          engine 4    1
## 30399                      engine about    1
## 30400                  engine accessory    1
## 30401                      engine afire    1
## 30402                        engine air    1
## 30403                   engine airplane    1
## 30404                       engine also    1
## 30405                         engine an    1
## 30406                    engine another    1
## 30407                       engine anti    1
## 30408                   engine appeared    1
## 30409                    engine appears    1
## 30410                   engine assembly    1
## 30411                engine autofeather    1
## 30412                     engine banked    1
## 30413                        engine but    1
## 30414                       engine cars    1
## 30415                      engine cause    1
## 30416                    engine causing    1
## 30417                     engine cessna    1
## 30418                      engine climb    1
## 30419                engine compartment    1
## 30420                  engine condition    1
## 30421                 engine connecting    1
## 30422                 engine consulting    1
## 30423                  engine continued    1
## 30424                   engine contrary    1
## 30425                    engine control    1
## 30426                   engine controls    1
## 30427                       engine core    1
## 30428                       engine cowl    1
## 30429                  engine crankcase    1
## 30430                 engine crankshaft    1
## 30431                      engine crash    1
## 30432                       engine crew    1
## 30433                     engine debris    1
## 30434                engine destruction    1
## 30435                     engine didn't    1
## 30436                engine directional    1
## 30437                  engine emergency    1
## 30438                    engine entered    1
## 30439                       engine even    1
## 30440                   engine evidence    1
## 30441                  engine evidently    1
## 30442                    engine exhaust    1
## 30443                     engine exited    1
## 30444                  engine exploding    1
## 30445                   engine failured    1
## 30446                 engine feathering    1
## 30447                    engine fighter    1
## 30448                     engine flamed    1
## 30449                  engine following    1
## 30450                     engine forced    1
## 30451                    engine forcing    1
## 30452                       engine from    1
## 30453                         engine go    1
## 30454                        engine hit    1
## 30455                        engine ice    1
## 30456                   engine ignition    1
## 30457                        engine ils    1
## 30458                engine immediately    1
## 30459                 engine inadequate    1
## 30460                      engine inlet    1
## 30461                 engine instrument    1
## 30462                    engine intakes    1
## 30463                       engine just    1
## 30464                       engine made    1
## 30465                       engine make    1
## 30466                        engine may    1
## 30467                     engine midair    1
## 30468                    engine minutes    1
## 30469                     engine mounts    1
## 30470                   engine nacelles    1
## 30471              engine necessitating    1
## 30472                        engine not    1
## 30473                  engine operation    1
## 30474                 engine overloaded    1
## 30475         engine overpressurization    1
## 30476                   engine oversped    1
## 30477               engine overspeeding    1
## 30478                 engine overweight    1
## 30479                      engine parts    1
## 30480                engine performance    1
## 30481                     engine pieces    1
## 30482                      engine pilot    1
## 30483                   engine possible    1
## 30484                 engine powerplant    1
## 30485               engine problems.the    1
## 30486                 engine propellers    1
## 30487                         engine re    1
## 30488                    engine remains    1
## 30489                   engine rendered    1
## 30490                  engine restarted    1
## 30491                   engine resulted    1
## 30492                   engine reversed    1
## 30493                   engine reverser    1
## 30494                        engine rpm    1
## 30495                    engine running    1
## 30496                   engine seaplane    1
## 30497                     engine seized    1
## 30498                 engine separation    1
## 30499                    engine service    1
## 30500                      engine speed    1
## 30501                    engine starter    1
## 30502                 engine structural    1
## 30503                  engine suffering    1
## 30504                       engine then    1
## 30505                      engine these    1
## 30506                       engine they    1
## 30507                      engine three    1
## 30508                  engine throttles    1
## 30509                   engine together    1
## 30510                    engine touched    1
## 30511                      engine tried    1
## 30512                   engine turbines    1
## 30513                  engine turboprop    1
## 30514                  engine turbulent    1
## 30515                        engine two    1
## 30516                       engine type    1
## 30517                  engine vibration    1
## 30518                    engine without    1
## 30519                      engine would    1
## 30520                      engine yawed    1
## 30521                        engine.ã â    1
## 30522                  engine.after the    1
## 30523                 engine.failure of    1
## 30524                  engine.the blade    1
## 30525                  engineer's upper    1
## 30526                      engineer a.g    1
## 30527             engineer accidentally    1
## 30528                      engineer and    1
## 30529                       engineer as    1
## 30530                  engineer battled    1
## 30531                  engineer carried    1
## 30532                 engineer disabled    1
## 30533                      engineer don    1
## 30534                   engineer during    1
## 30535                engineer feathered    1
## 30536                     engineer from    1
## 30537              engineer immediately    1
## 30538               engineer instructor    1
## 30539                engineer neglected    1
## 30540                 engineer switched    1
## 30541                  engineer trainee    1
## 30542                      engineer was    1
## 30543                     engineer were    1
## 30544                    engineer which    1
## 30545                      engineer who    1
## 30546                       engineerã â    1
## 30547             engineering materials    1
## 30548                   engineers after    1
## 30549                    engineers when    1
## 30550                engines accelerate    1
## 30551                        engines at    1
## 30552                  engines attempts    1
## 30553                   engines because    1
## 30554                    engines before    1
## 30555                     engines began    1
## 30556                     engines broke    1
## 30557                     engines burst    1
## 30558                        engines by    1
## 30559                    engines caught    1
## 30560                   engines contact    1
## 30561              engines contributing    1
## 30562                      engines crew    1
## 30563                    engines didn't    1
## 30564                engines electrical    1
## 30565                    engines eleven    1
## 30566                  engines exploded    1
## 30567                   engines failure    1
## 30568                    engines faulty    1
## 30569                     engines first    1
## 30570                    engines flamed    1
## 30571                 engines following    1
## 30572                    engines forced    1
## 30573                    engines idling    1
## 30574                  engines impaired    1
## 30575                  engines improper    1
## 30576                   engines instead    1
## 30577                      engines into    1
## 30578                        engines it    1
## 30579                      engines just    1
## 30580                      engines lack    1
## 30581             engines necessitating    1
## 30582                      engines nine    1
## 30583                       engines one    1
## 30584                 engines operating    1
## 30585                        engines or    1
## 30586                     engines other    1
## 30587                 engines overspeed    1
## 30588               engines prematurely    1
## 30589                 engines producing    1
## 30590                      engines quit    1
## 30591                 engines resulting    1
## 30592                   engines running    1
## 30593                      engines shot    1
## 30594                   engines stalled    1
## 30595                     engines still    1
## 30596                engines successful    1
## 30597                      engines this    1
## 30598                      engines torn    1
## 30599                     engines under    1
## 30600                      engines when    1
## 30601              engines.the aircraft    1
## 30602                   england crashed    1
## 30603                    england during    1
## 30604                        england it    1
## 30605                      england when    1
## 30606                      english also    1
## 30607                        english be    1
## 30608                     english coast    1
## 30609                        english in    1
## 30610              english instructions    1
## 30611                       engulfed in    1
## 30612                   enhanced ground    1
## 30613                   enigmatic coded    1
## 30614                        enough and    1
## 30615                       enough drag    1
## 30616                        enough for    1
## 30617                       enough fuel    1
## 30618                      enough power    1
## 30619                      enough sleep    1
## 30620                     enough thrust    1
## 30621                       enquiry was    1
## 30622                enrichment capsule    1
## 30623                       enroute and    1
## 30624                   enroute crashed    1
## 30625                       enroute the    1
## 30626                        ensued and    1
## 30627                    ensued between    1
## 30628                        ensued the    1
## 30629                       ensued when    1
## 30630                 ensuing confusion    1
## 30631                  ensuing critical    1
## 30632                    ensuing forced    1
## 30633                   ensuing outward    1
## 30634                      ensuing roll    1
## 30635                          ensure a    1
## 30636                         ensure an    1
## 30637                  ensure continued    1
## 30638                      ensure flaps    1
## 30639                         ensure he    1
## 30640                        ensure its    1
## 30641                 ensure structural    1
## 30642                       ensure they    1
## 30643                    ensure traffic    1
## 30644                      ensuring the    1
## 30645                    entebbe uganda    1
## 30646                          enter an    1
## 30647                          enter it    1
## 30648                    entered cruise    1
## 30649                     entered greek    1
## 30650                entered instrument    1
## 30651                      entered some    1
## 30652                    entering dense    1
## 30653                     entering from    1
## 30654                 entering overhang    1
## 30655                  entertainer dean    1
## 30656                 entertainer frank    1
## 30657                    entertainer in    1
## 30658              entertainment system    1
## 30659                   entire aircraft    1
## 30660                   entire eighteen    1
## 30661                 entire evansville    1
## 30662                     entire flight    1
## 30663                  entire hydraulic    1
## 30664                  entire lokomotiv    1
## 30665                   entire national    1
## 30666                      entire shift    1
## 30667                  entirely cleared    1
## 30668                  entirely covered    1
## 30669                entirely different    1
## 30670                    entourage were    1
## 30671                       entrance of    1
## 30672                       entrance to    1
## 30673                     entrapment of    1
## 30674                          entry in    1
## 30675                       envelope at    1
## 30676               envelope boundaries    1
## 30677                      envelope the    1
## 30678                     envelope with    1
## 30679                     enveloppe too    1
## 30680                   environment bad    1
## 30681              environment followed    1
## 30682               environment limited    1
## 30683                environment midair    1
## 30684                 environment pilot    1
## 30685                   environment the    1
## 30686                 environment which    1
## 30687          environmental conditions    1
## 30688                   ëœglideslopeã â    1
## 30689                        ëœlost his    1
## 30690                       ëœretardã â    1
## 30691                         epomeo on    1
## 30692                      epr readings    1
## 30693                           epr the    1
## 30694                     equator after    1
## 30695                  equipment aboard    1
## 30696                   equipment after    1
## 30697                equipment allowing    1
## 30698                 equipment circled    1
## 30699                 equipment factors    1
## 30700                  equipment failed    1
## 30701                equipment failures    1
## 30702                 equipment founder    1
## 30703               equipment frequency    1
## 30704                    equipment from    1
## 30705            equipment navigational    1
## 30706                      equipment on    1
## 30707                  equipment parked    1
## 30708                   equipment short    1
## 30709                    equipment they    1
## 30710                   equipment while    1
## 30711              equipped sightseeing    1
## 30712                     equivalent to    1
## 30713                       erdenet the    1
## 30714                    erebus because    1
## 30715                      erebus while    1
## 30716                     erected which    1
## 30717                        erevan due    1
## 30718                      eric clapton    1
## 30719                        erin while    1
## 30720                    ernest lundeen    1
## 30721                           ero and    1
## 30722                   erosion burning    1
## 30723                  erratic airspeed    1
## 30724                  erratic approach    1
## 30725                    erratic manner    1
## 30726                   erratic pattern    1
## 30727               erratic performance    1
## 30728                   erratically and    1
## 30729                     erroneous air    1
## 30730                erroneous airspeed    1
## 30731                    erroneous data    1
## 30732               erroneous depiction    1
## 30733                 erroneous heading    1
## 30734                  erroneous height    1
## 30735              erroneous impression    1
## 30736              erroneous navigation    1
## 30737                 erroneous setting    1
## 30738             erroneously associate    1
## 30739               erroneously decided    1
## 30740               erroneously thought    1
## 30741                    erroneously to    1
## 30742                 error abandonment    1
## 30743                    error altitude    1
## 30744                          error an    1
## 30745                     error another    1
## 30746                  error attempting    1
## 30747                     error because    1
## 30748                        error both    1
## 30749                       error check    1
## 30750                          error co    1
## 30751                 error commander's    1
## 30752                  error conducting    1
## 30753                  error continuing    1
## 30754                     error current    1
## 30755                  error descending    1
## 30756                     error descent    1
## 30757                         error did    1
## 30758                   error directing    1
## 30759                         error due    1
## 30760                      error errors    1
## 30761                   error excessive    1
## 30762                        error flew    1
## 30763                    error followed    1
## 30764                        error fuel    1
## 30765                      error george    1
## 30766                        error gpsw    1
## 30767                      error ground    1
## 30768                        error high    1
## 30769                  error inadequate    1
## 30770                          error it    1
## 30771                     error landing    1
## 30772                         error low    1
## 30773                        error made    1
## 30774                      error midair    1
## 30775                error misalignment    1
## 30776                  error negligence    1
## 30777                         error non    1
## 30778                          error or    1
## 30779                      error piilot    1
## 30780                        error poor    1
## 30781                    error possible    1
## 30782                    error presence    1
## 30783                     error quentin    1
## 30784                   error resulting    1
## 30785                     error sensory    1
## 30786                       error short    1
## 30787                        error shot    1
## 30788                      error slowed    1
## 30789                       error there    1
## 30790                       error three    1
## 30791                       error under    1
## 30792                   error undershot    1
## 30793                      error united    1
## 30794                      error unwise    1
## 30795                      error visual    1
## 30796                   error weather's    1
## 30797                   error.the plane    1
## 30798                   errors combined    1
## 30799                 errors concerning    1
## 30800                     errors during    1
## 30801                     errors failed    1
## 30802                        errors led    1
## 30803                         errors of    1
## 30804                       errors upon    1
## 30805                        errors was    1
## 30806                       errors with    1
## 30807                         erupt the    1
## 30808                        erupted at    1
## 30809                    erupted debris    1
## 30810                      erupted four    1
## 30811                       erupted the    1
## 30812                      erupted when    1
## 30813                     erupted while    1
## 30814                       eruption at    1
## 30815                            es sir    1
## 30816                       escalate to    1
## 30817                        escape hit    1
## 30818                         escape of    1
## 30819                      escape slide    1
## 30820                      escape until    1
## 30821                     escape window    1
## 30822                   escaped causing    1
## 30823                 escaped prisoners    1
## 30824                     escaped there    1
## 30825                      escaped with    1
## 30826                     escaping from    1
## 30827                        escobar in    1
## 30828            escobedo international    1
## 30829                  especially their    1
## 30830                      esperanca on    1
## 30831                   esperanza after    1
## 30832             essential instruments    1
## 30833              essential navigation    1
## 30834              essentially required    1
## 30835                           est and    1
## 30836          establish communications    1
## 30837                     establish his    1
## 30838                 establish outside    1
## 30839                  establish runway    1
## 30840                     establish the    1
## 30841                   establish under    1
## 30842                     established a    1
## 30843               established airport    1
## 30844              established approach    1
## 30845                   established but    1
## 30846                    established by    1
## 30847              established division    1
## 30848                   established for    1
## 30849                  established from    1
## 30850                    established go    1
## 30851                established ground    1
## 30852                    established in    1
## 30853             established procedure    1
## 30854                 established radio    1
## 30855                  established safe    1
## 30856                   established the    1
## 30857               established uniform    1
## 30858                 established until    1
## 30859                  established with    1
## 30860                    establishing a    1
## 30861                   establishing an    1
## 30862               establishing visual    1
## 30863                         estate of    1
## 30864                   estevao ribeiro    1
## 30865                    estimate their    1
## 30866                      estimated 10    1
## 30867                   estimated speed    1
## 30868                    estimated time    1
## 30869                     estimation of    1
## 30870                        estuary an    1
## 30871                     estuary icing    1
## 30872                             eta a    1
## 30873                         etc among    1
## 30874                         etc cargo    1
## 30875                       ethiopia by    1
## 30876                      ethiopia the    1
## 30877                etienne mauritania    1
## 30878                 etimeagut airport    1
## 30879                 eucalyptus forest    1
## 30880                   eucalyptus tree    1
## 30881                   eugene lefebvre    1
## 30882                        eurasia in    1
## 30883                      europa point    1
## 30884               european gymnastics    1
## 30885                    european union    1
## 30886                      evacuate but    1
## 30887                 evacuate families    1
## 30888                     evacuate kham    1
## 30889                     evacuated off    1
## 30890                    evacuating 243    1
## 30891                    evacuating the    1
## 30892                      evacuation a    1
## 30893             evacuation electrical    1
## 30894                 evacuation flight    1
## 30895            evacuation overheating    1
## 30896             evacuation procedures    1
## 30897                   evacuation upon    1
## 30898                   evacuation when    1
## 30899               evacuations through    1
## 30900               evaluate accurately    1
## 30901                 evaluate existing    1
## 30902                 evaluate properly    1
## 30903                      evaluate the    1
## 30904                      evaluated by    1
## 30905                    evaluating the    1
## 30906                 evaluation flight    1
## 30907                         evans and    1
## 30908             evansville basketball    1
## 30909                            even a    1
## 30910                      even further    1
## 30911                          even had    1
## 30912                           even in    1
## 30913                          even the    1
## 30914                         even with    1
## 30915                         event and    1
## 30916                         event was    1
## 30917                   events happened    1
## 30918                    events quickly    1
## 30919                       events that    1
## 30920                    eventual flame    1
## 30921                  eventually after    1
## 30922                    eventually all    1
## 30923               eventually becoming    1
## 30924                 eventually burned    1
## 30925                  eventually crash    1
## 30926               eventually crashing    1
## 30927              eventually dismissed    1
## 30928                eventually ditched    1
## 30929                   eventually flew    1
## 30930                   eventually flow    1
## 30931                     eventually he    1
## 30932               eventually involved    1
## 30933                   eventually lose    1
## 30934                   eventually lost    1
## 30935                eventually reached    1
## 30936                  eventually relit    1
## 30937              eventually resulting    1
## 30938                 eventually rolled    1
## 30939                 eventually spread    1
## 30940                eventually stalled    1
## 30941              eventually suspended    1
## 30942                 eventually taking    1
## 30943                    eventually the    1
## 30944               eventually weakened    1
## 30945                           ever be    1
## 30946                    ever recovered    1
## 30947                    everest struck    1
## 30948                   everglades 18.7    1
## 30949                everglades shortly    1
## 30950                evergreen airlines    1
## 30951                        every four    1
## 30952                   everyone except    1
## 30953                      everyone was    1
## 30954                     everything as    1
## 30955                   evidence cashed    1
## 30956                evidence indicated    1
## 30957                       evidence it    1
## 30958                  evidence pointed    1
## 30959                 evidence revealed    1
## 30960                   evidence showed    1
## 30961                    evidence there    1
## 30962                       evidence to    1
## 30963                     evidences the    1
## 30964                      evident that    1
## 30965                        evident to    1
## 30966                     evidently had    1
## 30967                      evidently in    1
## 30968                       ex convicts    1
## 30969                         ex soviet    1
## 30970                    exacerbated by    1
## 30971                   exacerbated the    1
## 30972                    exact altitude    1
## 30973               exact determination    1
## 30974                      exact origin    1
## 30975                  exaggerated view    1
## 30976                          exam the    1
## 30977                    examination of    1
## 30978                        examine at    1
## 30979                     examiners and    1
## 30980                       exceed bank    1
## 30981                      exceeded 600    1
## 30982                 exceeded american    1
## 30983                     exceeded both    1
## 30984                 exceeded collided    1
## 30985                   exceeded design    1
## 30986                   exceeded during    1
## 30987                      exceeded his    1
## 30988                 exceeded impacted    1
## 30989                  exceeded maximum    1
## 30990                    exceeded their    1
## 30991                    exceeded those    1
## 30992                         except it    1
## 30993                 exceptionally bad    1
## 30994              exceptionally severe    1
## 30995            excessive accumulation    1
## 30996                excessive airspeed    1
## 30997                  excessive amount    1
## 30998                    excessive bank    1
## 30999                   excessive cargo    1
## 31000                   excessive cross    1
## 31001                  excessive flying    1
## 31002                       excessive g    1
## 31003                    excessive lead    1
## 31004                    excessive load    1
## 31005                     excessive low    1
## 31006                   excessive pitch    1
## 31007               excessive reduction    1
## 31008                    excessive roll    1
## 31009                  excessive stress    1
## 31010                 excessive takeoff    1
## 31011                excessive vertical    1
## 31012               excessive vibration    1
## 31013                 excessive voltage    1
## 31014                     excessive yaw    1
## 31015                  excessively high    1
## 31016                  excessively long    1
## 31017                   excessively low    1
## 31018                  excessively nose    1
## 31019                         excesss g    1
## 31020                    exchanger fohe    1
## 31021                  exchanges before    1
## 31022                 exchanges between    1
## 31023                     excluded from    1
## 31024                     excursion and    1
## 31025                      excursion of    1
## 31026                execssive workload    1
## 31027                        execute an    1
## 31028                 execute procedure    1
## 31029                       executed an    1
## 31030                      executed but    1
## 31031                      executed for    1
## 31032                 executed improper    1
## 31033                       executed in    1
## 31034                   executed missed    1
## 31035                     executed part    1
## 31036                    executed steep    1
## 31037                  executed takeoff    1
## 31038                    executed until    1
## 31039                    executing full    1
## 31040               executing maneuvers    1
## 31041                 executive airport    1
## 31042                     executive jet    1
## 31043                      executive of    1
## 31044                     executives of    1
## 31045                    executives the    1
## 31046                        exercise a    1
## 31047                      exercise all    1
## 31048                exercise authority    1
## 31049                  exercise captain    1
## 31050                    exercise error    1
## 31051                      exercise his    1
## 31052              exercise operational    1
## 31053                 exercise positive    1
## 31054                exercise requisite    1
## 31055                     exercise that    1
## 31056                     exercise when    1
## 31057                    exercise which    1
## 31058                     exercise with    1
## 31059             exercises application    1
## 31060                      exercises in    1
## 31061                     exercises off    1
## 31062                     exercises the    1
## 31063                    exercises were    1
## 31064                    exercises when    1
## 31065                    exercises with    1
## 31066               exercises witnesses    1
## 31067                     exercising of    1
## 31068                 exeriencing heavy    1
## 31069               exerting sufficient    1
## 31070                 exhaust connector    1
## 31071                    exhaust system    1
## 31072                   exhaust systems    1
## 31073                      exhaust when    1
## 31074                     exhausted and    1
## 31075                      exhausted by    1
## 31076                    exhausted fuel    1
## 31077                    exhausted half    1
## 31078                      exhausted or    1
## 31079                  exhaustion after    1
## 31080                    exhaustion and    1
## 31081                    exhaustion due    1
## 31082                 exhaustion during    1
## 31083             exhaustion inadequate    1
## 31084                     exhaustion of    1
## 31085              exhaustion resulting    1
## 31086                exhibited evidence    1
## 31087                  exhibited little    1
## 31088                 exhibition valued    1
## 31089                      exile killed    1
## 31090                         exist the    1
## 31091                       existed and    1
## 31092                        existed as    1
## 31093                       existed for    1
## 31094                      existed when    1
## 31095                     existed while    1
## 31096                       existing at    1
## 31097               existing conditions    1
## 31098                      existing faa    1
## 31099                  existing fatigue    1
## 31100              existing regulations    1
## 31101                   existing runway    1
## 31102                  existing russian    1
## 31103                 existing terminal    1
## 31104                        exit doors    1
## 31105                       exit opened    1
## 31106                       exited onto    1
## 31107                      exiting into    1
## 31108                        exiting it    1
## 31109                       exiting the    1
## 31110                      exlpoded and    1
## 31111                  expect clearance    1
## 31112                   expect recovery    1
## 31113                 expect turbulence    1
## 31114                      expected due    1
## 31115                       expected in    1
## 31116                      expecting an    1
## 31117                      expecting to    1
## 31118                  expedition found    1
## 31119                experience ability    1
## 31120                     experience an    1
## 31121                    experience and    1
## 31122                     experience as    1
## 31123               experience training    1
## 31124           experienced asymetrical    1
## 31125          experienced asymmetrical    1
## 31126                  experienced crew    1
## 31127            experienced difficulty    1
## 31128                experienced double    1
## 31129                experienced during    1
## 31130            experienced electrical    1
## 31131                 experienced heavy    1
## 31132                 experienced icing    1
## 31133                    experienced in    1
## 31134                  experienced loss    1
## 31135                    experienced on    1
## 31136                 experienced pilot    1
## 31137                 experienced pitch    1
## 31138             experienced propeller    1
## 31139                 experienced rotor    1
## 31140               experienced several    1
## 31141               experienced shortly    1
## 31142              experienced superior    1
## 31143                   experienced the    1
## 31144               experienced trouble    1
## 31145                   experienced two    1
## 31146        experienced uncontrollable    1
## 31147         experiencing catastrophic    1
## 31148        experiencing communication    1
## 31149              experiencing control    1
## 31150           experiencing difficulty    1
## 31151                 experiencing duel    1
## 31152                experiencing heavy    1
## 31153            experiencing hydraulic    1
## 31154                experiencing icing    1
## 31155               experiencing severe    1
## 31156              experiencing shaking    1
## 31157               experiencing strong    1
## 31158           experiencing structural    1
## 31159           experiencing turbulence    1
## 31160              experiencing unknown    1
## 31161            experiencing vibration    1
## 31162                experimenting with    1
## 31163                   experts believe    1
## 31164                      experts said    1
## 31165                      experts were    1
## 31166                      expierence a    1
## 31167                    expired making    1
## 31168                        expired on    1
## 31169                       explain how    1
## 31170                       explain why    1
## 31171                   explanation for    1
## 31172                    explanation is    1
## 31173                    explanation of    1
## 31174                   explanation the    1
## 31175                  explanations are    1
## 31176                         explode a    1
## 31177                        explode in    1
## 31178                       explode the    1
## 31179                       exploded 16    1
## 31180                        exploded 3    1
## 31181                    exploded after    1
## 31182            exploded approximately    1
## 31183                   exploded before    1
## 31184                    exploded cause    1
## 31185                 exploded followed    1
## 31186                   exploded inside    1
## 31187                       exploded it    1
## 31188                     exploded just    1
## 31189                  exploded moments    1
## 31190                    exploded north    1
## 31191                  exploded onboard    1
## 31192                      exploded one    1
## 31193                     exploded open    1
## 31194               exploded scattering    1
## 31195                     exploded shot    1
## 31196                  exploded sixteen    1
## 31197                     exploded when    1
## 31198                     exploding 125    1
## 31199                  exploding midair    1
## 31200                    exploding more    1
## 31201                      exploding on    1
## 31202                     exploding the    1
## 31203                   explorer martin    1
## 31204                       explosion a    1
## 31205                      explosion at    1
## 31206                  explosion before    1
## 31207                    explosion blew    1
## 31208                   explosion could    1
## 31209                 explosion crashed    1
## 31210                     explosion led    1
## 31211                      explosion or    1
## 31212                   explosion short    1
## 31213              explosion structural    1
## 31214                    explosion that    1
## 31215                    explosion took    1
## 31216                explosion wreckage    1
## 31217                    explosions and    1
## 31218                  explosions crash    1
## 31219                   explosions tore    1
## 31220                  explosive charge    1
## 31221                   explosive laden    1
## 31222                     explosive was    1
## 31223                    explosives was    1
## 31224                exposed electrical    1
## 31225                   exposed himself    1
## 31226                       exposure as    1
## 31227                       exposure or    1
## 31228                  express airfield    1
## 31229                       express and    1
## 31230                  express collided    1
## 31231                        express dc    1
## 31232                       express the    1
## 31233                        express to    1
## 31234                express tupolov134    1
## 31235                     expressed his    1
## 31236                      extend while    1
## 31237                       extended by    1
## 31238                   extended crew's    1
## 31239                    extended delay    1
## 31240                 extended downwind    1
## 31241                      extended end    1
## 31242                    extended first    1
## 31243                extended following    1
## 31244                       extended it    1
## 31245                     extended lack    1
## 31246                  extended landing    1
## 31247              extended lubrication    1
## 31248                 extended manually    1
## 31249                extended nosewheel    1
## 31250                       extended on    1
## 31251                 extended position    1
## 31252                extended primarily    1
## 31253                   extended runway    1
## 31254                     extended take    1
## 31255                       extended to    1
## 31256                extended touchdown    1
## 31257                   extended visual    1
## 31258                   extending above    1
## 31259                    extending into    1
## 31260                    extending it's    1
## 31261                     extension and    1
## 31262                      extension at    1
## 31263               extension checklist    1
## 31264                     extension the    1
## 31265                  extensive damage    1
## 31266                extent established    1
## 31267                 extent understood    1
## 31268                       exterior of    1
## 31269                    external cargo    1
## 31270                  external control    1
## 31271                     external fire    1
## 31272                       external or    1
## 31273                    external power    1
## 31274                    external speed    1
## 31275                    extinguish the    1
## 31276                  extinguished but    1
## 31277                   extinguished by    1
## 31278                  extinguished the    1
## 31279           extinguishers installed    1
## 31280                extinguishers into    1
## 31281              extinguishing system    1
## 31282                        extra fuel    1
## 31283                       extra radar    1
## 31284                 extreme buffeting    1
## 31285                extreme downdrafts    1
## 31286                      extreme heat    1
## 31287                      extreme high    1
## 31288                     extreme icing    1
## 31289                       extreme out    1
## 31290                     extreme pitch    1
## 31291                    extreme unsafe    1
## 31292                   extreme weather    1
## 31293                     extremely bad    1
## 31294               extremely difficult    1
## 31295                    extremely hard    1
## 31296               extremely hazardous    1
## 31297               extremely inclement    1
## 31298                     extremely low    1
## 31299                   extremely rapid    1
## 31300                  extremely severe    1
## 31301                   extremely short    1
## 31302                   extremist group    1
## 31303                extremists crashed    1
## 31304                  eyewitness shows    1
## 31305                   eyewitnesses on    1
## 31306                             f 100    1
## 31307                             f 105    1
## 31308                              f 27    1
## 31309                              f 4b    1
## 31310                              f 4e    1
## 31311                              f 60    1
## 31312                             f 86f    1
## 31313                             f 89j    1
## 31314                        f binstock    1
## 31315                            f that    1
## 31316                         f.h craig    1
## 31317                              f4 b    1
## 31318                           f4 crew    1
## 31319                           f4 when    1
## 31320                    faa's approval    1
## 31321                     faa's average    1
## 31322                  faa's inadequate    1
## 31323                        faa's lack    1
## 31324                           faa ats    1
## 31325                       faa decided    1
## 31326                           faa for    1
## 31327                           faa had    1
## 31328                       faa imposed    1
## 31329                   faa intentional    1
## 31330                       faa ordered    1
## 31331                          faa paid    1
## 31332                   faa replacement    1
## 31333                         faa texas    1
## 31334                         faa tried    1
## 31335                         faa water    1
## 31336                         faa while    1
## 31337                          faa with    1
## 31338                      faaa airport    1
## 31339                         faãƒâ ade    1
## 31340                          face and    1
## 31341                           face at    1
## 31342                        face cliff    1
## 31343                        face masks    1
## 31344                  facililities the    1
## 31345                      facilities a    1
## 31346                    facilities and    1
## 31347                    facilities for    1
## 31348                     facilities in    1
## 31349              facilities premature    1
## 31350                     facilities to    1
## 31351                      facility and    1
## 31352                   facility cashed    1
## 31353                  facility located    1
## 31354               facility management    1
## 31355                 facility managers    1
## 31356                     facility near    1
## 31357                       facing back    1
## 31358                     facing faulty    1
## 31359                        facing the    1
## 31360                        fact known    1
## 31361                        fact occur    1
## 31362                        fact their    1
## 31363                         factor an    1
## 31364                 factor associated    1
## 31365                       factor crew    1
## 31366                     factor during    1
## 31367                    factor instead    1
## 31368                        factor may    1
## 31369                     factor midair    1
## 31370                      factor might    1
## 31371                    factor shortly    1
## 31372                       factor shot    1
## 31373                       factor that    1
## 31374                       factor with    1
## 31375                         factors 1    1
## 31376                         factors a    1
## 31377                       factors all    1
## 31378                       factors and    1
## 31379                       factors atc    1
## 31380                    factors caused    1
## 31381               factors contributed    1
## 31382                   factors crashed    1
## 31383                  factors involved    1
## 31384                      factors lost    1
## 31385                       factors may    1
## 31386                       factors one    1
## 31387                       factors the    1
## 31388                        factors to    1
## 31389                     factory after    1
## 31390                   factory chimney    1
## 31391                      factory crew    1
## 31392                   factory located    1
## 31393                      factory yard    1
## 31394                         facts and    1
## 31395                         facts may    1
## 31396                      faial island    1
## 31397                          fail and    1
## 31398                           fail as    1
## 31399                     fail followed    1
## 31400                           fail in    1
## 31401                   fail instructed    1
## 31402                         fail safe    1
## 31403                          fail the    1
## 31404                           fail to    1
## 31405                   failed although    1
## 31406                 failed approaches    1
## 31407                    failed attempt    1
## 31408                   failed attitude    1
## 31409                    failed battery    1
## 31410                      failed broke    1
## 31411                 failed completely    1
## 31412                   failed creating    1
## 31413                   failed cylinder    1
## 31414                     failed debris    1
## 31415              failed disconnection    1
## 31416                     failed engine    1
## 31417                    failed exhaust    1
## 31418                    failed failure    1
## 31419                        failed for    1
## 31420                       failed half    1
## 31421                       failed just    1
## 31422                    failed killing    1
## 31423                    failed leading    1
## 31424                       failed loss    1
## 31425                 failed mechanical    1
## 31426                         failed no    1
## 31427                         failed or    1
## 31428                 failed procedural    1
## 31429                  failed refueling    1
## 31430                  failed rendering    1
## 31431                  failed resulting    1
## 31432                   failed spoilers    1
## 31433                    failed suicide    1
## 31434                       failed that    1
## 31435                       failed thus    1
## 31436                      failed twice    1
## 31437                      failed under    1
## 31438                        failed was    1
## 31439                  failed whereupon    1
## 31440                   failsafe design    1
## 31441                      failsafe the    1
## 31442                        failue due    1
## 31443                    failue minutes    1
## 31444                         failue on    1
## 31445                        failure 10    1
## 31446                         failure 5    1
## 31447                      failure both    1
## 31448                     failure broke    1
## 31449                        failure by    1
## 31450                   failure causing    1
## 31451                 failure checklist    1
## 31452                  failure complete    1
## 31453                failure consisting    1
## 31454                  failure decision    1
## 31455                  failure diverted    1
## 31456               failure encountered    1
## 31457                  failure exercise    1
## 31458                 failure extremely    1
## 31459                   failure fatigue    1
## 31460                  failure flameout    1
## 31461                     failure flaps    1
## 31462                 failure following    1
## 31463                      failure four    1
## 31464                      failure from    1
## 31465                       failure hit    1
## 31466                  failure improper    1
## 31467                  failure involved    1
## 31468                   failure leading    1
## 31469                       failure led    1
## 31470                      failure left    1
## 31471                      failure lift    1
## 31472                    failure likely    1
## 31473                       failure may    1
## 31474                      failure mode    1
## 31475                        failure no    1
## 31476                 failure occurring    1
## 31477               failure overloading    1
## 31478                   failure overran    1
## 31479                  failure overshot    1
## 31480              failure precipitated    1
## 31481                     failure prior    1
## 31482                    failure severe    1
## 31483                  failure shrapnel    1
## 31484                    failure single    1
## 31485                     failure smoke    1
## 31486                      failure soon    1
## 31487                     failure tried    1
## 31488               failure uncommanded    1
## 31489                failure undersized    1
## 31490                failure undetected    1
## 31491                       failure use    1
## 31492                   failure weather    1
## 31493                      failure when    1
## 31494                      failure whle    1
## 31495                    failure within    1
## 31496                      failured the    1
## 31497                 failures baseball    1
## 31498                  failures created    1
## 31499                   failures during    1
## 31500                 failures followed    1
## 31501                 failures occurred    1
## 31502                       failures or    1
## 31503                     failures were    1
## 31504                   fairbanks radio    1
## 31505                    fairbanks with    1
## 31506                     fairchild air    1
## 31507                 fairchild crashed    1
## 31508                   fairfax airport    1
## 31509                     fairfield new    1
## 31510                        faiure and    1
## 31511                      faiure while    1
## 31512                    fake passports    1
## 31513                        falcon dam    1
## 31514                  falkland islands    1
## 31515                          fall 300    1
## 31516                         fall from    1
## 31517                         fall into    1
## 31518                          fall off    1
## 31519                         fall over    1
## 31520                           fall to    1
## 31521                      fallen below    1
## 31522                    fallibility on    1
## 31523                  falling airspeed    1
## 31524                       falling and    1
## 31525                      falling high    1
## 31526                        falling in    1
## 31527                       falling out    1
## 31528                     falling while    1
## 31529                      falling with    1
## 31530                         falls and    1
## 31531                     falls crashed    1
## 31532                          falls mt    1
## 31533                       fallujah to    1
## 31534                      false alerts    1
## 31535                        false fire    1
## 31536                       false glide    1
## 31537                  false impression    1
## 31538                  false indication    1
## 31539                     false notions    1
## 31540                    false position    1
## 31541                       false right    1
## 31542                       false speed    1
## 31543                       false stall    1
## 31544                     false warning    1
## 31545                  falsely declared    1
## 31546                  falsely perceive    1
## 31547                    falsifying his    1
## 31548                           faman f    1
## 31549                   familarity with    1
## 31550                  familiarity with    1
## 31551               familiarization and    1
## 31552            familiarization period    1
## 31553               familiarize himself    1
## 31554                      families and    1
## 31555                       families of    1
## 31556                     families were    1
## 31557                    familiies left    1
## 31558                      family house    1
## 31559                    family members    1
## 31560                   famine stricken    1
## 31561                 famous helicopter    1
## 31562                         fan blade    1
## 31563                           fan hub    1
## 31564                            fan of    1
## 31565                       fanblade of    1
## 31566                        fanny cano    1
## 31567                           fans on    1
## 31568                         far above    1
## 31569                          far back    1
## 31570                          far east    1
## 31571                       far forward    1
## 31572                           fare by    1
## 31573                  farewell crashed    1
## 31574                       fargo after    1
## 31575                        fargo with    1
## 31576                  farkhutdinov was    1
## 31577                      farllones in    1
## 31578                           farm 40    1
## 31579                          farm and    1
## 31580                       farm around    1
## 31581                    farm buildings    1
## 31582                        farm field    1
## 31583                        farm hedge    1
## 31584                        farm house    1
## 31585                           farm in    1
## 31586                         farm land    1
## 31587                       farm worker    1
## 31588                 farmhand observed    1
## 31589                   farmhouse after    1
## 31590                     farmhouse and    1
## 31591                  farmhouse struck    1
## 31592                      farmland six    1
## 31593                      farmlands in    1
## 31594                 farmlands killing    1
## 31595                     farms crashed    1
## 31596                   farnborough air    1
## 31597                     farrell's ice    1
## 31598                     farther south    1
## 31599                     farthest from    1
## 31600                      fast bounced    1
## 31601                      fast descent    1
## 31602                       fast during    1
## 31603                       fast enough    1
## 31604                  fast experienced    1
## 31605                           fast in    1
## 31606                      fast initial    1
## 31607                 fast instructions    1
## 31608                           fast on    1
## 31609                          fast the    1
## 31610                    fast touchdown    1
## 31611                        fast while    1
## 31612                    fasteners that    1
## 31613                     fasteners the    1
## 31614                        faster and    1
## 31615                       faster that    1
## 31616                     fat'h airport    1
## 31617                    fatal airplane    1
## 31618                    fatal aviation    1
## 31619                      fatal boeing    1
## 31620                 fatal combination    1
## 31621                     fatal failure    1
## 31622                    fatal injuries    1
## 31623                     fatal mistake    1
## 31624                     fatal results    1
## 31625                    fatalities 225    1
## 31626                     fatalities an    1
## 31627                 fatalities during    1
## 31628               fatalities included    1
## 31629                    fatalities was    1
## 31630                       fatality in    1
## 31631                      fatality the    1
## 31632                      fatality was    1
## 31633                    fated airliner    1
## 31634                          father a    1
## 31635                        father the    1
## 31636                       father were    1
## 31637                         fatigue a    1
## 31638                        fatigue an    1
## 31639                        fatigue as    1
## 31640                   fatigue brought    1
## 31641                        fatigue by    1
## 31642                   fatigue causing    1
## 31643               fatigue contributed    1
## 31644                    fatigue damage    1
## 31645                      fatigue dark    1
## 31646            fatigue disorientation    1
## 31647                fatigue inadequate    1
## 31648                 fatigue initiated    1
## 31649                fatigue inoperable    1
## 31650                      fatigue lack    1
## 31651                       fatigue led    1
## 31652                    fatigue likely    1
## 31653                   fatigue moments    1
## 31654                        fatigue on    1
## 31655                       fatigue one    1
## 31656                    fatigue origin    1
## 31657                fatigue originated    1
## 31658                fatigue permitting    1
## 31659                    fatigue struck    1
## 31660                 fatigue.the plane    1
## 31661                      fatigued and    1
## 31662                   fatigued failed    1
## 31663                    fatigued pilot    1
## 31664                         fault and    1
## 31665                      fault during    1
## 31666                         fault was    1
## 31667                        fault with    1
## 31668                         faulted 3    1
## 31669                         faults in    1
## 31670                        faulty air    1
## 31671                  faulty altimeter    1
## 31672                      faulty cabin    1
## 31673                  faulty execution    1
## 31674                     faulty flying    1
## 31675                       faulty fuel    1
## 31676                 faulty indication    1
## 31677                 faulty instrument    1
## 31678                   faulty judgment    1
## 31679                   faulty lighting    1
## 31680                    faulty loading    1
## 31681                       faulty main    1
## 31682                faulty maintenance    1
## 31683                  faulty procedure    1
## 31684                       faulty rear    1
## 31685                 faulty restarting    1
## 31686                      faulty speed    1
## 31687                     faulty switch    1
## 31688                faulty temperature    1
## 31689                     faulty wiring    1
## 31690                            fcs as    1
## 31691                           fear of    1
## 31692                    feather action    1
## 31693                     feather after    1
## 31694                        feather an    1
## 31695                       feather and    1
## 31696                       feather for    1
## 31697                      feathered as    1
## 31698                     feathered but    1
## 31699                      feathered by    1
## 31700                 feathered causing    1
## 31701                  feathered coming    1
## 31702                 feathered engines    1
## 31703                   feathered flaps    1
## 31704                      feathered in    1
## 31705                feathered manually    1
## 31706                      feathered on    1
## 31707                feathered position    1
## 31708               feathered positions    1
## 31709                    feathered soon    1
## 31710                 feathered stalled    1
## 31711                    feathered upon    1
## 31712              feathering mechanism    1
## 31713                    feathering oil    1
## 31714              feathering procedure    1
## 31715                feathering reduced    1
## 31716                   feathering that    1
## 31717               featherweight boxer    1
## 31718                       features an    1
## 31719                     features made    1
## 31720                        feb 1941at    1
## 31721                     february 1941    1
## 31722                          fed from    1
## 31723                   federal airways    1
## 31724                     fedex crashed    1
## 31725                         feed pipe    1
## 31726                     feed selected    1
## 31727                          feed the    1
## 31728                          feel and    1
## 31729                 feel malfunctions    1
## 31730                         feel that    1
## 31731                           feet 15    1
## 31732                         feet 16km    1
## 31733                           feet 20    1
## 31734                          feet 500    1
## 31735                     feet although    1
## 31736                           feet an    1
## 31737                           feet at    1
## 31738                         feet away    1
## 31739                     feet bursting    1
## 31740                        feet cause    1
## 31741                     feet ceilings    1
## 31742                         feet crew    1
## 31743                   feet destroying    1
## 31744                  feet encountered    1
## 31745                       feet flight    1
## 31746                       feet flying    1
## 31747                     feet followed    1
## 31748                    feet following    1
## 31749                        feet forty    1
## 31750                        feet icing    1
## 31751                     feet improper    1
## 31752                    feet inclement    1
## 31753                 feet insufficient    1
## 31754                      feet killing    1
## 31755                      feet landing    1
## 31756                         feet left    1
## 31757                  feet misjudgment    1
## 31758                   feet navigation    1
## 31759                         feet next    1
## 31760                        feet north    1
## 31761                     feet obscured    1
## 31762                          feet one    1
## 31763                         feet part    1
## 31764                          feet per    1
## 31765                     feet possible    1
## 31766                    feet precluded    1
## 31767                    feet preparing    1
## 31768                        feet prior    1
## 31769                        feet radar    1
## 31770                        feet radio    1
## 31771                      feet resting    1
## 31772                        feet right    1
## 31773                       feet rolled    1
## 31774                   feet scattering    1
## 31775                    feet seriously    1
## 31776                      feet seventy    1
## 31777                          feet sir    1
## 31778                         feet soon    1
## 31779                     feet suddenly    1
## 31780                         feet then    1
## 31781                         feet this    1
## 31782                        feet three    1
## 31783                       feet turned    1
## 31784                        feet until    1
## 31785                   feet visibility    1
## 31786                          feet was    1
## 31787                         feet went    1
## 31788                         feet west    1
## 31789                        feet which    1
## 31790                         feet with    1
## 31791                      feet without    1
## 31792                    feet witnesses    1
## 31793                  felipe camiroaga    1
## 31794                          felix at    1
## 31795                        felix pass    1
## 31796                       fell 33,330    1
## 31797                         fell 38ft    1
## 31798                       fell almost    1
## 31799                          fell and    1
## 31800                       fell asleep    1
## 31801                         fell free    1
## 31802                           fell in    1
## 31803                         fell more    1
## 31804                           fell on    1
## 31805                          fell out    1
## 31806                      fell skidded    1
## 31807                         fell tail    1
## 31808                          felt and    1
## 31809                          felt the    1
## 31810                 female commercial    1
## 31811                  female passenger    1
## 31812                      female pilot    1
## 31813                   female teenager    1
## 31814                       fence 3,500    1
## 31815                          fence an    1
## 31816                          fence as    1
## 31817                          fence at    1
## 31818                      fence became    1
## 31819                        fence both    1
## 31820                         fence its    1
## 31821                   fence momentary    1
## 31822                          fence re    1
## 31823                     fence ripping    1
## 31824                         fence six    1
## 31825                      fence struck    1
## 31826                         fence use    1
## 31827                        fence went    1
## 31828                    fenestron with    1
## 31829                      fergus river    1
## 31830                 ferguson kentucky    1
## 31831                  ferihegy airport    1
## 31832                        fern andra    1
## 31833                 ferrand.flew into    1
## 31834                        ferried to    1
## 31835                  ferry passengers    1
## 31836                 ferry positioning    1
## 31837                         ferry run    1
## 31838                        ferrying a    1
## 31839                     ferrying fire    1
## 31840                      ferrying oil    1
## 31841                   ferrying troops    1
## 31842                      ferrying u.s    1
## 31843                        fertas the    1
## 31844                       festival in    1
## 31845                    festivities at    1
## 31846                         few hours    1
## 31847                          few into    1
## 31848                    few kilometers    1
## 31849                        few straps    1
## 31850                 fflight attendant    1
## 31851                      fflying over    1
## 31852                             fg 1a    1
## 31853                        fiancãƒâ e    1
## 31854                       fidelity in    1
## 31855                         field 1.5    1
## 31856                         field 1.7    1
## 31857                          field 20    1
## 31858                          field 30    1
## 31859                         field 300    1
## 31860                           field 4    1
## 31861                          field 40    1
## 31862                         field 560    1
## 31863                          field 75    1
## 31864                        field 800m    1
## 31865                           field a    1
## 31866               field approximately    1
## 31867                          field as    1
## 31868                       field badly    1
## 31869                     field between    1
## 31870                     field bounced    1
## 31871                       field bound    1
## 31872                    field breaking    1
## 31873                    field bursting    1
## 31874                     field causing    1
## 31875                         field due    1
## 31876                       field first    1
## 31877                        field flap    1
## 31878                      field fueled    1
## 31879                         field hit    1
## 31880                    field hospital    1
## 31881                   field hydraulic    1
## 31882                    field inverted    1
## 31883               field investigators    1
## 31884                     field killing    1
## 31885                     field landing    1
## 31886                        field lead    1
## 31887                      field losing    1
## 31888                 field malfunction    1
## 31889                     field moments    1
## 31890                   field municipal    1
## 31891                        field near    1
## 31892                        field next    1
## 31893                          field of    1
## 31894                        field only    1
## 31895                     field pilot's    1
## 31896                        field poor    1
## 31897                 field preparatory    1
## 31898                   field prevented    1
## 31899                    field reported    1
## 31900                    field reversal    1
## 31901                  field shattering    1
## 31902                      field turned    1
## 31903                      field whille    1
## 31904                        field wing    1
## 31905                    fieldlshort of    1
## 31906                       fields shot    1
## 31907                        fields the    1
## 31908                       fields went    1
## 31909                       fierce fire    1
## 31910              fifiteen journalists    1
## 31911                      fifteen feet    1
## 31912                    fifteen killed    1
## 31913                     fifteen times    1
## 31914                         fifth the    1
## 31915                       fifty eight    1
## 31916                         fifty one    1
## 31917                     fight against    1
## 31918                    fight controls    1
## 31919                     fight fatigue    1
## 31920                        fight from    1
## 31921                     fight several    1
## 31922                   fighter's pilot    1
## 31923                  fighter aircraft    1
## 31924                      fighter both    1
## 31925                  fighter collided    1
## 31926                    fighter firing    1
## 31927                 fighter initiated    1
## 31928                      fighter jets    1
## 31929                   fighter leaving    1
## 31930                        fighter no    1
## 31931                      fighter over    1
## 31932                     fighter rocky    1
## 31933                      fighter they    1
## 31934                    fighter thirty    1
## 31935                   fighter towards    1
## 31936                      fighter with    1
## 31937                       fighters 30    1
## 31938                        fighters a    1
## 31939                    fighters after    1
## 31940                      fighters and    1
## 31941                    fighters broke    1
## 31942                    fighters could    1
## 31943                       fighters in    1
## 31944                       fighters of    1
## 31945                     fighters were    1
## 31946                       fighting in    1
## 31947                      fighting the    1
## 31948                      fighting was    1
## 31949                    figure skating    1
## 31950             figures participating    1
## 31951                   figures suggest    1
## 31952                      fiipped over    1
## 31953                   fiji inadequate    1
## 31954                          file any    1
## 31955                      file shortly    1
## 31956                         filed for    1
## 31957                   filed indicated    1
## 31958                         filght in    1
## 31959                       filght into    1
## 31960                      filight plan    1
## 31961                       filight the    1
## 31962                     film director    1
## 31963                         filmed as    1
## 31964                       filming the    1
## 31965                     filpping over    1
## 31966                       filter bowl    1
## 31967                         filter of    1
## 31968                           fin and    1
## 31969                         fin broke    1
## 31970                           fin due    1
## 31971                     fin separated    1
## 31972                            fin to    1
## 31973                           final 4    1
## 31974                final approach.the    1
## 31975                          final as    1
## 31976                      final bounce    1
## 31977                  final controller    1
## 31978                     final crashed    1
## 31979                 final destination    1
## 31980                     final glimpse    1
## 31981                      final impact    1
## 31982                          final it    1
## 31983                     final landing    1
## 31984                     final minutes    1
## 31985                     final portion    1
## 31986                       final seven    1
## 31987                        final shot    1
## 31988                          final to    1
## 31989                      final visual    1
## 31990                finally discovered    1
## 31991                     finally found    1
## 31992                      finally into    1
## 31993                  finally involved    1
## 31994                    finally landed    1
## 31995                      finally left    1
## 31996                finally recognized    1
## 31997                   finally stopped    1
## 31998                    finally struck    1
## 31999                      finally they    1
## 32000                       finals when    1
## 32001                     financed this    1
## 32002                    financial talk    1
## 32003                 financial trouble    1
## 32004                          find her    1
## 32005                          find his    1
## 32006                          find out    1
## 32007                    findel airport    1
## 32008                        finder due    1
## 32009                        finder the    1
## 32010                    finding debris    1
## 32011                         fine airs    1
## 32012                        fingers on    1
## 32013                   finished flying    1
## 32014                   finished giving    1
## 32015                      finished his    1
## 32016               finished performing    1
## 32017              finisterre mountains    1
## 32018                         finland 5    1
## 32019                       finland and    1
## 32020                   finland shortly    1
## 32021                        fiords the    1
## 32022                           fir the    1
## 32023                            fire 1    1
## 32024                           fire 35    1
## 32025                           fire 50    1
## 32026                          fire 500    1
## 32027                        fire alarm    1
## 32028                           fire as    1
## 32029                   fire attributed    1
## 32030                        fire began    1
## 32031                     fire blocking    1
## 32032                        fire cabin    1
## 32033                       fire coming    1
## 32034                    fire descended    1
## 32035                    fire destroyed    1
## 32036                    fire detecting    1
## 32037                    fire detection    1
## 32038                   fire detonation    1
## 32039                     fire deviated    1
## 32040                          fire due    1
## 32041                       fire either    1
## 32042                    fire emergency    1
## 32043                       fire engine    1
## 32044                    fire equipment    1
## 32045                   fire eventually    1
## 32046                     fire exploded    1
## 32047                    fire explosion    1
## 32048                fire extinguishing    1
## 32049                      fire factors    1
## 32050                      fire fighter    1
## 32051                     fire fighting    1
## 32052                        fire flaps    1
## 32053                     fire followed    1
## 32054                    fire following    1
## 32055                       fire forced    1
## 32056                          fire had    1
## 32057                         fire half    1
## 32058                       fire handle    1
## 32059                           fire he    1
## 32060                         fire high    1
## 32061                        fire house    1
## 32062                    fire illusions    1
## 32063                     fire improper    1
## 32064                  fire inadvertent    1
## 32065                  fire indications    1
## 32066                    fire initiated    1
## 32067                           fire it    1
## 32068                       fire jammed    1
## 32069                         fire lack    1
## 32070                          fire led    1
## 32071                         fire lost    1
## 32072                       fire midair    1
## 32073                         fire most    1
## 32074                     fire multiple    1
## 32075                         fire near    1
## 32076                         fire nine    1
## 32077                           fire no    1
## 32078                      fire onboard    1
## 32079                          fire one    1
## 32080                         fire only    1
## 32081                           fire or    1
## 32082                         fire over    1
## 32083                         fire poor    1
## 32084                     fire possible    1
## 32085                        fire power    1
## 32086                     fire probable    1
## 32087                   fire procedural    1
## 32088                     fire progress    1
## 32089                     fire resulted    1
## 32090                     fire severity    1
## 32091                      fire shutoff    1
## 32092                         fire slid    1
## 32093                     fire soldiers    1
## 32094                         fire soon    1
## 32095                      fire stalled    1
## 32096                       fire struck    1
## 32097                 fire subsequently    1
## 32098                  fire suppression    1
## 32099                          fire ten    1
## 32100                      fire testing    1
## 32101                         fire than    1
## 32102                         fire then    1
## 32103                       fire thirty    1
## 32104                       fire though    1
## 32105                      fire through    1
## 32106                fire thunderstorms    1
## 32107                          fire too    1
## 32108                      fire trailed    1
## 32109                   fire undetected    1
## 32110                       fire upwind    1
## 32111                        fire using    1
## 32112                       fire visual    1
## 32113                         fire wake    1
## 32114                     fire weakened    1
## 32115                         fire with    1
## 32116                        fire works    1
## 32117                 fire.the accident    1
## 32118               fire.the passengers    1
## 32119                  fireball failure    1
## 32120                          fired at    1
## 32121                  fired destroying    1
## 32122                      fired during    1
## 32123                       fired usair    1
## 32124                  firehose without    1
## 32125                        firemen to    1
## 32126                       firemen who    1
## 32127                      fires during    1
## 32128                          fires in    1
## 32129                      firewall and    1
## 32130                  firewall shutoff    1
## 32131                         firing an    1
## 32132                   firing missiles    1
## 32133                      firing which    1
## 32134                         first 200    1
## 32135                    first accident    1
## 32136                    first aircraft    1
## 32137                     first airline    1
## 32138                     first airport    1
## 32139                    first american    1
## 32140                          first at    1
## 32141                    first aviation    1
## 32142                        first back    1
## 32143                        first both    1
## 32144                       first broke    1
## 32145                        first came    1
## 32146                    first canadian    1
## 32147                        first case    1
## 32148                    first collided    1
## 32149                     first contact    1
## 32150                     first crashed    1
## 32151                  first definitely    1
## 32152                 first determining    1
## 32153                         first don    1
## 32154                  first experience    1
## 32155                      first female    1
## 32156                  first identified    1
## 32157                         first ils    1
## 32158                      first impact    1
## 32159                          first in    1
## 32160                   first inability    1
## 32161                         first man    1
## 32162                       first model    1
## 32163                       first night    1
## 32164                       first pilot    1
## 32165                       first point    1
## 32166                      first proven    1
## 32167                    first recorded    1
## 32168                     first reports    1
## 32169                        first sign    1
## 32170                     first spatial    1
## 32171                    first striking    1
## 32172                      first struck    1
## 32173                        first test    1
## 32174                         first the    1
## 32175                        first then    1
## 32176                       first there    1
## 32177                   first touchdown    1
## 32178                       first trans    1
## 32179                         first try    1
## 32180                         first two    1
## 32181                         first u.s    1
## 32182                    first.the crew    1
## 32183                          firth of    1
## 32184                          fish and    1
## 32185                      fish crashed    1
## 32186                         fish pond    1
## 32187                   fishermen major    1
## 32188                      fishing boat    1
## 32189                         fit bolts    1
## 32190                     fitting bolts    1
## 32191                        fitting of    1
## 32192                     fitting pilot    1
## 32193                     fitting press    1
## 32194                     five aircraft    1
## 32195                         five crew    1
## 32196                      five goigira    1
## 32197                        five hours    1
## 32198                       five houses    1
## 32199                   five kilometers    1
## 32200                           five km    1
## 32201                      five members    1
## 32202                    five occupants    1
## 32203                        five other    1
## 32204                       five others    1
## 32205                          five out    1
## 32206                           five to    1
## 32207                         five were    1
## 32208                         five year    1
## 32209                        five years    1
## 32210                             fix a    1
## 32211                      fix hijacked    1
## 32212                       fix passage    1
## 32213                          fix this    1
## 32214                         fix which    1
## 32215                        fixated on    1
## 32216                     fjord shortly    1
## 32217                            fl 100    1
## 32218                            fl 115    1
## 32219                            fl 130    1
## 32220                            fl 173    1
## 32221                            fl 190    1
## 32222                            fl 197    1
## 32223                            fl 199    1
## 32224                            fl 210    1
## 32225                            fl 260    1
## 32226                            fl 280    1
## 32227                            fl 370    1
## 32228                            fl 390    1
## 32229                         fl100 and    1
## 32230                     fl100 because    1
## 32231                         fl100 but    1
## 32232                         fl100 the    1
## 32233                       fl100 there    1
## 32234                         fl110 the    1
## 32235                           fl130 a    1
## 32236                         fl130 the    1
## 32237                   fl140 meanwhile    1
## 32238                         fl140 the    1
## 32239                         fl147 the    1
## 32240                     fl150 crashed    1
## 32241                     fl150 however    1
## 32242                         fl150 the    1
## 32243                       fl170 until    1
## 32244                         fl180 and    1
## 32245                         fl187 atc    1
## 32246                         fl190 the    1
## 32247                         fl200 the    1
## 32248                       fl230 water    1
## 32249                           fl240 a    1
## 32250                         fl240 the    1
## 32251                     fl270 crashed    1
## 32252                         fl270 the    1
## 32253                         fl290 the    1
## 32254                    fl330 allowing    1
## 32255                         fl330 and    1
## 32256                        fl330 when    1
## 32257                     fl340 towards    1
## 32258                          fl380 at    1
## 32259                          fl85 the    1
## 32260                          fl90 and    1
## 32261                         flag pole    1
## 32262                       flagpole on    1
## 32263                      flagship new    1
## 32264                 flagstaff medical    1
## 32265                    flakes blocked    1
## 32266                       flaking off    1
## 32267                        flame only    1
## 32268                       flameout 30    1
## 32269                     flameout loss    1
## 32270                       flameout no    1
## 32271                      flames 2,000    1
## 32272                         flames 27    1
## 32273                          flames 9    1
## 32274                     flames aboard    1
## 32275                         flames an    1
## 32276                         flames at    1
## 32277                 flames attachment    1
## 32278                      flames broke    1
## 32279                        flames but    1
## 32280                         flames by    1
## 32281                      flames cairo    1
## 32282                     flames caused    1
## 32283                    flames causing    1
## 32284                     flames coming    1
## 32285                     flames crew's    1
## 32286                    flames despite    1
## 32287                       flames dfdr    1
## 32288                    flames ditched    1
## 32289                        flames due    1
## 32290                      flames eight    1
## 32291                     flames eighty    1
## 32292                     flames engine    1
## 32293                      flames error    1
## 32294                    flames erupted    1
## 32295                    flames failure    1
## 32296                    flames fatigue    1
## 32297                        flames few    1
## 32298                     flames flight    1
## 32299                      flames heavy    1
## 32300                        flames hit    1
## 32301                   flames improper    1
## 32302                     flames julian    1
## 32303                    flames killing    1
## 32304                        flames klm    1
## 32305                       flames lost    1
## 32306                       flames made    1
## 32307                flames malfunction    1
## 32308             flames malfunctioning    1
## 32309                  flames microbust    1
## 32310               flames navigational    1
## 32311                         flames no    1
## 32312                        flames one    1
## 32313                   flames possible    1
## 32314                      flames power    1
## 32315                        flames pre    1
## 32316                   flames probable    1
## 32317                 flames procedural    1
## 32318                     flames severe    1
## 32319                      flames short    1
## 32320                     flames shortl    1
## 32321                       flames shot    1
## 32322                      flames smoke    1
## 32323                         flames to    1
## 32324                      flames total    1
## 32325                    flames weather    1
## 32326                       flames went    1
## 32327                       flames were    1
## 32328                       flames when    1
## 32329                  flames windshear    1
## 32330                   flames wreckage    1
## 32331                flames.the failure    1
## 32332                    flamesand came    1
## 32333                  flaming wreckage    1
## 32334                   flammability at    1
## 32335                   flammable fluid    1
## 32336                    flammable fuel    1
## 32337               flammable hydraulic    1
## 32338                  flammable liquid    1
## 32339                     flammables in    1
## 32340                 flange aggravated    1
## 32341                         flange on    1
## 32342                  flange splitting    1
## 32343                       flap angles    1
## 32344                      flap anomaly    1
## 32345                    flap asymmetry    1
## 32346                   flap attachment    1
## 32347               flap configueration    1
## 32348               flap configurations    1
## 32349                      flap control    1
## 32350                     flap controls    1
## 32351                          flap due    1
## 32352                           flap of    1
## 32353                    flap operating    1
## 32354                     flap position    1
## 32355                   flap retraction    1
## 32356                         flap slat    1
## 32357                       flap system    1
## 32358                      flapping and    1
## 32359                           flaps 1    1
## 32360                          flaps 15    1
## 32361                       flaps after    1
## 32362                          flaps as    1
## 32363                     flaps crashed    1
## 32364                   flaps descended    1
## 32365                flaps flightcrew's    1
## 32366                         flaps for    1
## 32367                        flaps gust    1
## 32368                          flaps in    1
## 32369                 flaps incorrectly    1
## 32370                 flaps inoperative    1
## 32371                   flaps partially    1
## 32372                       flaps prior    1
## 32373                    flaps produced    1
## 32374                         flaps set    1
## 32375                         flaps too    1
## 32376                         flaps was    1
## 32377                       flaps which    1
## 32378                       flaps while    1
## 32379                     flaps without    1
## 32380                          flare at    1
## 32381                         flare but    1
## 32382                          flare on    1
## 32383                   flare resulting    1
## 32384                     flare started    1
## 32385                        flared too    1
## 32386                      flarepath he    1
## 32387                    flares strored    1
## 32388                  flaring distance    1
## 32389                       flaring out    1
## 32390                        flash fire    1
## 32391                          flash of    1
## 32392                   flash preceding    1
## 32393                       flat barley    1
## 32394                       flat glassy    1
## 32395                    flat grassland    1
## 32396                         flat land    1
## 32397                     flat lighting    1
## 32398                      flatlands of    1
## 32399                         flats off    1
## 32400                      flaw allowed    1
## 32401                          flaw and    1
## 32402                          flaw led    1
## 32403                        flaw right    1
## 32404                         flaw that    1
## 32405                        flaw which    1
## 32406                  flecheiras beach    1
## 32407                           flew 20    1
## 32408                            flew a    1
## 32409                        flew along    1
## 32410                         flew back    1
## 32411                     flew directly    1
## 32412                         flew from    1
## 32413                      flew hangars    1
## 32414                       flew inside    1
## 32415                     flew inverted    1
## 32416                        flew north    1
## 32417                     flew opposite    1
## 32418                          flew out    1
## 32419                         flew past    1
## 32420                     flew straight    1
## 32421                      flew through    1
## 32422                      flew towards    1
## 32423                         flew with    1
## 32424                     flew100 miles    1
## 32425                 fligh encountered    1
## 32426                      flighing vfr    1
## 32427                flight's deviation    1
## 32428                        flight 055    1
## 32429                         flight 10    1
## 32430                       flight 15.5    1
## 32431                         flight 17    1
## 32432                        flight 174    1
## 32433                         flight 18    1
## 32434                        flight 182    1
## 32435                          flight 2    1
## 32436                         flight 20    1
## 32437                        flight 212    1
## 32438                        flight 232    1
## 32439                        flight 387    1
## 32440                         flight 40    1
## 32441                        flight 420    1
## 32442                       flight 5191    1
## 32443                        flight 523    1
## 32444                        flight 8.5    1
## 32445                        flight 870    1
## 32446                      flight about    1
## 32447                      flight above    1
## 32448                     flight action    1
## 32449                      flight apart    1
## 32450              flight approximately    1
## 32451                  flight attempted    1
## 32452                     flight became    1
## 32453                    flight beneath    1
## 32454                    flight between    1
## 32455                     flight beyond    1
## 32456                      flight blame    1
## 32457                    flight breakup    1
## 32458                      flight cargo    1
## 32459                     flight cashed    1
## 32460               flight catastrophic    1
## 32461                      flight cause    1
## 32462                     flight caused    1
## 32463                    flight changed    1
## 32464                      flight check    1
## 32465                   flight collided    1
## 32466                 flight conditions    1
## 32467              flight configuration    1
## 32468                 flight continuing    1
## 32469                flight controllers    1
## 32470                flight corrections    1
## 32471                flight crewmembers    1
## 32472                 flight designated    1
## 32473                   flight deviated    1
## 32474                        flight did    1
## 32475                 flight discipline    1
## 32476                flight dispatchers    1
## 32477                    flight ditched    1
## 32478                       flight door    1
## 32479                     flight during    1
## 32480                     flight either    1
## 32481                  flight emergency    1
## 32482                     flight engine    1
## 32483                  flight engineerã    1
## 32484                    flight entered    1
## 32485                   flight envelope    1
## 32486                flight experienced    1
## 32487                  flight explosion    1
## 32488                    flight fatigue    1
## 32489                    flight finally    1
## 32490                       flight five    1
## 32491                      flight flown    1
## 32492                        flight for    1
## 32493                      flight heavy    1
## 32494                      flight hours    1
## 32495                        flight i.e    1
## 32496                        flight ice    1
## 32497                   flight ignition    1
## 32498                      flight iinto    1
## 32499                flight immediately    1
## 32500                 flight impossible    1
## 32501                 flight inadequate    1
## 32502                flight inattention    1
## 32503                flight information    1
## 32504                  flight initiated    1
## 32505                 flight inspection    1
## 32506            flight instrumentation    1
## 32507   flight instruments.contributing    1
## 32508              flight investigation    1
## 32509                       flight just    1
## 32510                     flight landed    1
## 32511                      flight leaks    1
## 32512                      flight level    1
## 32513                      flight loads    1
## 32514                  flight louisiana    1
## 32515                       flight made    1
## 32516                   flight maneuver    1
## 32517                    flight manuals    1
## 32518                    flight medical    1
## 32519                       flight most    1
## 32520                         flight no    1
## 32521                        flight nor    1
## 32522                        flight not    1
## 32523                    flight officer    1
## 32524                   flight omission    1
## 32525                flight originating    1
## 32526                        flight out    1
## 32527                 flight overloaded    1
## 32528                   flight overshot    1
## 32529                    flight pattern    1
## 32530                    flight pitched    1
## 32531                      flight plans    1
## 32532                       flight poor    1
## 32533               flight preparations    1
## 32534                      flight prior    1
## 32535                  flight procedure    1
## 32536                flight proficiency    1
## 32537                    flight profile    1
## 32538                    flight program    1
## 32539                   flight progress    1
## 32540                 flight progressed    1
## 32541                       flight prop    1
## 32542                   flight properly    1
## 32543                    flight radioed    1
## 32544                        flight ran    1
## 32545                     flight record    1
## 32546                   flight recovery    1
## 32547                    flight replied    1
## 32548                   flight returned    1
## 32549                      flight route    1
## 32550                     flight rudder    1
## 32551                     flight safely    1
## 32552                    flight service    1
## 32553                        flight she    1
## 32554                 flight simulation    1
## 32555                    flight soldier    1
## 32556                    flight stalled    1
## 32557                   flight suffered    1
## 32558                flight supervision    1
## 32559                   flight symmetry    1
## 32560                    flight systems    1
## 32561                    flight tearing    1
## 32562                  flight technique    1
## 32563                       flight then    1
## 32564                      flight there    1
## 32565                       flight they    1
## 32566                      flight three    1
## 32567                       flight thus    1
## 32568                       flight time    1
## 32569                      flight track    1
## 32570                    flight tracker    1
## 32571                      flight tried    1
## 32572                      flight tweny    1
## 32573                 flight undetected    1
## 32574                      flight until    1
## 32575                         flight us    1
## 32576               flight verification    1
## 32577                 flight vibrations    1
## 32578                       flight wing    1
## 32579                    flight without    1
## 32580                  flight447 passed    1
## 32581               flightcraft company    1
## 32582              flightcrew's delayed    1
## 32583            flightcrew's excessive    1
## 32584         flightcrew's inexperience    1
## 32585             flightcrew's judgment    1
## 32586                 flightcrew's lack    1
## 32587        flightcrew's preoccupation    1
## 32588           flightcrew's subsequent    1
## 32589                  flightcrew's use    1
## 32590                flightcrew allowed    1
## 32591                    flightcrew and    1
## 32592                    flightcrew did    1
## 32593                 flightcrew during    1
## 32594                flightcrew members    1
## 32595                  flightcrew other    1
## 32596                   flightcrew that    1
## 32597                    flightcrew was    1
## 32598               flightcrews failure    1
## 32599                    flightcrews to    1
## 32600               flightcrrew members    1
## 32601             flightpath deviations    1
## 32602                    flightpath the    1
## 32603                       flights and    1
## 32604                     flights being    1
## 32605              flights contributing    1
## 32606               flights destination    1
## 32607                      flights into    1
## 32608                       flights one    1
## 32609                      flights they    1
## 32610                      flights when    1
## 32611                     fligth caused    1
## 32612                      flilght into    1
## 32613                       flilght not    1
## 32614                 flilght personnel    1
## 32615                     flilght while    1
## 32616                       flipped and    1
## 32617                       flipped the    1
## 32618                       flipping at    1
## 32619                  fllight deviated    1
## 32620                       fllight hit    1
## 32621                    fllightcrew to    1
## 32622                   float contacted    1
## 32623                         float dug    1
## 32624                    float equipped    1
## 32625                       float level    1
## 32626               floatation cushions    1
## 32627               floatplane carrying    1
## 32628                 floats demolished    1
## 32629                      floats first    1
## 32630                     floats struck    1
## 32631                       floats then    1
## 32632                    floats visible    1
## 32633                           floe in    1
## 32634                      flood relief    1
## 32635                      flooded with    1
## 32636                  flooding crashed    1
## 32637                       flooding in    1
## 32638                       floor above    1
## 32639                          floor as    1
## 32640                    floor damaging    1
## 32641                    floor function    1
## 32642                          floor on    1
## 32643                         floor the    1
## 32644                     floors ablaze    1
## 32645                      florence and    1
## 32646                   florence struck    1
## 32647                      florence the    1
## 32648                      florencia in    1
## 32649                   florencia while    1
## 32650                     flores island    1
## 32651                  florianpolis the    1
## 32652                     florida after    1
## 32653                        florida on    1
## 32654                   florida refugee    1
## 32655             floridablanca climbed    1
## 32656                flotation cushions    1
## 32657               flotation equipment    1
## 32658                         flow back    1
## 32659                           flow in    1
## 32660                           flow of    1
## 32661                      flow problem    1
## 32662                    flow resulting    1
## 32663                          flow was    1
## 32664                       flowers and    1
## 32665                       flowers had    1
## 32666                      flowing back    1
## 32667                        flown back    1
## 32668                     flown because    1
## 32669                       flown below    1
## 32670                      flown during    1
## 32671                  flown especially    1
## 32672                          flown go    1
## 32673                      flown safely    1
## 32674                         flown the    1
## 32675                        flown with    1
## 32676                        flu talked    1
## 32677                    fluctuation of    1
## 32678                          fluid be    1
## 32679                      fluid caught    1
## 32680                    fluid exlpoded    1
## 32681                        fluid loss    1
## 32682                         fluid the    1
## 32683                        fluid when    1
## 32684                 fluorescent light    1
## 32685                        flush with    1
## 32686                      flushing bay    1
## 32687                       flutter and    1
## 32688                   flutter brought    1
## 32689                   flutter natural    1
## 32690                 flutter vibration    1
## 32691                        flux gauge    1
## 32692                         fly after    1
## 32693                         fly again    1
## 32694                      fly although    1
## 32695                           fly and    1
## 32696                            fly as    1
## 32697                         fly blood    1
## 32698                           fly bys    1
## 32699                       fly crashed    1
## 32700                           fly for    1
## 32701                            fly it    1
## 32702                        fly killed    1
## 32703                           fly out    1
## 32704                       fly outside    1
## 32705                     fly prisoners    1
## 32706                      fly visually    1
## 32707                     flyby crashed    1
## 32708                          flyby to    1
## 32709                      flyer donald    1
## 32710                       flyer flown    1
## 32711                      flyer killed    1
## 32712                         flyer who    1
## 32713                      flying 1,000    1
## 32714                         flying 15    1
## 32715                         flying 50    1
## 32716                      flying 8,640    1
## 32717                      flying about    1
## 32718                   flying aircraft    1
## 32719                      flying along    1
## 32720                       flying back    1
## 32721                     flying barely    1
## 32722                     flying became    1
## 32723                    flying between    1
## 32724                       flying blew    1
## 32725                      flying blind    1
## 32726                         flying by    1
## 32727                      flying close    1
## 32728                    flying closely    1
## 32729                       flying club    1
## 32730                    flying country    1
## 32731                      flying crash    1
## 32732                    flying crashed    1
## 32733                 flying discipline    1
## 32734                flying erratically    1
## 32735                 flying experience    1
## 32736                       flying fast    1
## 32737                     flying german    1
## 32738                         flying he    1
## 32739                      flying hours    1
## 32740                flying instruments    1
## 32741                      flying lower    1
## 32742                   flying manually    1
## 32743                    flying mission    1
## 32744                       flying near    1
## 32745                   flying normally    1
## 32746                         flying of    1
## 32747                        flying out    1
## 32748                    flying pattern    1
## 32749                   flying raindeer    1
## 32750                     flying school    1
## 32751                     flying showed    1
## 32752                     flying taking    1
## 32753                  flying technique    1
## 32754                 flying techniques    1
## 32755                   flying tourists    1
## 32756                       flying turn    1
## 32757                      flying while    1
## 32758                  flying windshear    1
## 32759                           fms had    1
## 32760                       fms without    1
## 32761                    foce transport    1
## 32762                    focused lights    1
## 32763                            fog 10    1
## 32764                            fog 12    1
## 32765                       fog against    1
## 32766                            fog as    1
## 32767                         fog below    1
## 32768                         fog blues    1
## 32769                           fog but    1
## 32770                        fog caused    1
## 32771                      fog clearing    1
## 32772                    fog concealing    1
## 32773                      fog covering    1
## 32774                       fog despite    1
## 32775                fog disorientation    1
## 32776                        fog engine    1
## 32777                         fog error    1
## 32778                      fog exploded    1
## 32779                          fog flew    1
## 32780                  fog flightcrew's    1
## 32781                           fog fog    1
## 32782                        fog former    1
## 32783                          fog haze    1
## 32784                           fog hit    1
## 32785                       fog hitting    1
## 32786                         fog icing    1
## 32787                        fog killed    1
## 32788                       fog landing    1
## 32789                      fog limiting    1
## 32790                          fog lost    1
## 32791                           fog low    1
## 32792                            fog lt    1
## 32793                  fog misjudgement    1
## 32794                      fog nightime    1
## 32795                            fog no    1
## 32796                      fog obscured    1
## 32797                       fog outside    1
## 32798                          fog over    1
## 32799                          fog poor    1
## 32800                      fog possible    1
## 32801                         fog prior    1
## 32802                       fog reduced    1
## 32803                     fog resulting    1
## 32804                      fog searched    1
## 32805                    fog separation    1
## 32806                         fog seven    1
## 32807                         fog short    1
## 32808                          fog slid    1
## 32809                        fog struck    1
## 32810                        fog thirty    1
## 32811                            fog to    1
## 32812                   fog turbulences    1
## 32813                           fog two    1
## 32814                     fog undershot    1
## 32815                 fog unfamiliarity    1
## 32816                    fog visibility    1
## 32817                       fog weather    1
## 32818                         fog which    1
## 32819                          fog wind    1
## 32820                     fog windshear    1
## 32821                        fog within    1
## 32822                      fog wreckage    1
## 32823                     fog.the first    1
## 32824                   fogbound 15,721    1
## 32825                        fogging of    1
## 32826                   foggy condition    1
## 32827                   foggy conditons    1
## 32828                          fohe did    1
## 32829                      fohe however    1
## 32830                         fokker 50    1
## 32831                        fokker and    1
## 32832                   fokker collided    1
## 32833                          fokker t    1
## 32834                     folk festival    1
## 32835                       folk singer    1
## 32836                    folkestone the    1
## 32837                   follow approach    1
## 32838                    follow arrival    1
## 32839                   follow assigned    1
## 32840                  follow checklist    1
## 32841             follow communications    1
## 32842                  follow departure    1
## 32843                follow established    1
## 32844                 follow procedural    1
## 32845                  follow published    1
## 32846                     follow safety    1
## 32847                         follow to    1
## 32848                        follow vfr    1
## 32849                    followed after    1
## 32850                      followed all    1
## 32851                       followed an    1
## 32852                       followed as    1
## 32853              followed immediately    1
## 32854               followed proceeding    1
## 32855                   followed safety    1
## 32856                    followed wrong    1
## 32857                      following 25    1
## 32858                     following day    1
## 32859                      following de    1
## 32860               following departure    1
## 32861                  following double    1
## 32862                  following ground    1
## 32863                     following his    1
## 32864                  following impact    1
## 32865                      following in    1
## 32866            following instructions    1
## 32867                 following jamming    1
## 32868                 following landing    1
## 32869           following overstressing    1
## 32870                  following pilots    1
## 32871              following procedures    1
## 32872                following recovery    1
## 32873                 following several    1
## 32874                  following severe    1
## 32875                  following system    1
## 32876                  following taking    1
## 32877                   following their    1
## 32878                     following two    1
## 32879                   following wrong    1
## 32880                      fonseca well    1
## 32881                          food and    1
## 32882                         food lack    1
## 32883                           food to    1
## 32884                          food was    1
## 32885                    foodstuffs for    1
## 32886                     foot altitude    1
## 32887                        foot grand    1
## 32888                         foot high    1
## 32889                        foot mount    1
## 32890                           foot mt    1
## 32891                           foot of    1
## 32892                        foot ridge    1
## 32893                       foot runway    1
## 32894                         foot snow    1
## 32895                         foot tall    1
## 32896              football association    1
## 32897                     football fans    1
## 32898                   football soccer    1
## 32899                 foothills crashed    1
## 32900                  foothills during    1
## 32901                      foothills in    1
## 32902                      foothills of    1
## 32903                         for 1,500    1
## 32904                            for 12    1
## 32905                        for 13,000    1
## 32906                        for 15,000    1
## 32907                             for 2    1
## 32908                           for 250    1
## 32909                            for 27    1
## 32910                        for 300,00    1
## 32911                          for 3hrs    1
## 32912                             for 7    1
## 32913                           for 700    1
## 32914                  for acceleration    1
## 32915                      for adelaide    1
## 32916                    for aggressive    1
## 32917                      for aircraft    1
## 32918                      for airspeed    1
## 32919                       for alcohol    1
## 32920                        for allied    1
## 32921                      for approach    1
## 32922                         for armed    1
## 32923                       for assured    1
## 32924                  for asymmetrical    1
## 32925                            for at    1
## 32926                      for avoiding    1
## 32927                       for bahrain    1
## 32928                          for both    1
## 32929                   for brazzaville    1
## 32930                       for cafunfo    1
## 32931                         for cairo    1
## 32932                         for cargo    1
## 32933                            for ce    1
## 32934                       for charles    1
## 32935                      for cheyenne    1
## 32936                         for civil    1
## 32937                      for clearing    1
## 32938                      for climbing    1
## 32939                    for commercial    1
## 32940                    for connection    1
## 32941                   for controlling    1
## 32942                    for copenhagen    1
## 32943                         for crews    1
## 32944                            for dc    1
## 32945                      for decision    1
## 32946                         for deice    1
## 32947                     for departure    1
## 32948                     for detection    1
## 32949                 for disconnecting    1
## 32950                      for dropping    1
## 32951                          for drug    1
## 32952                      for edmonton    1
## 32953                     for elmendorf    1
## 32954                   for emergencies    1
## 32955                     for emergency    1
## 32956                        for engine    1
## 32957                       for england    1
## 32958                     for executing    1
## 32959                      for existing    1
## 32960                       for failing    1
## 32961                          for flap    1
## 32962                        for flying    1
## 32963                           for fog    1
## 32964                          for fuel    1
## 32965                        for garden    1
## 32966                      for handling    1
## 32967                      for hardness    1
## 32968                         for heavy    1
## 32969                          for help    1
## 32970                           for her    1
## 32971                           for him    1
## 32972                         for horta    1
## 32973                           for ice    1
## 32974                         for icing    1
## 32975                           for imc    1
## 32976                     for immediate    1
## 32977                    for inadequate    1
## 32978                   for inspections    1
## 32979                   for involuntary    1
## 32980                       for keeping    1
## 32981                      for kinshasa    1
## 32982                          for knbc    1
## 32983                    for lapierre's    1
## 32984                       for lateral    1
## 32985                        for london    1
## 32986                           for los    1
## 32987                        for manila    1
## 32988                  for manslaughter    1
## 32989                        for manual    1
## 32990                          for many    1
## 32991                      for material    1
## 32992                       for maximum    1
## 32993                       for melilla    1
## 32994                    for monitoring    1
## 32995                         for mosby    1
## 32996                          for nadi    1
## 32997                         for never    1
## 32998                           for new    1
## 32999                     for nigeria's    1
## 33000                      for nitrogen    1
## 33001                            for no    1
## 33002                           for non    1
## 33003                      for offshore    1
## 33004                       for okinawa    1
## 33005                           for one    1
## 33006                          for only    1
## 33007                          for open    1
## 33008                     for operation    1
## 33009                   for operational    1
## 33010                    for operations    1
## 33011                          for part    1
## 33012                    for passengers    1
## 33013                   for performance    1
## 33014                      for piloting    1
## 33015                          for port    1
## 33016                      for possible    1
## 33017                           for pre    1
## 33018                     for president    1
## 33019                       for primary    1
## 33020                    for procedures    1
## 33021                        for proper    1
## 33022                        for reason    1
## 33023                    for reelection    1
## 33024                     for rejecting    1
## 33025                       for repairs    1
## 33026                      for repeated    1
## 33027                          for safe    1
## 33028                         for santa    1
## 33029                      for santiago    1
## 33030                       for seattle    1
## 33031                      for securing    1
## 33032                         for seven    1
## 33033                        for single    1
## 33034                         for sochi    1
## 33035                  for somatogravic    1
## 33036                         for stall    1
## 33037                         for stork    1
## 33038                         for sudan    1
## 33039                    for sufficient    1
## 33040                          for sure    1
## 33041                     for syktyvkar    1
## 33042                       for taxiing    1
## 33043                        for thirty    1
## 33044                         for those    1
## 33045                         for three    1
## 33046                       for traders    1
## 33047                      for training    1
## 33048               for transplantation    1
## 33049                        for trying    1
## 33050                  for uncontrolled    1
## 33051                      for upcoming    1
## 33052                         for using    1
## 33053                       for valence    1
## 33054                     for valuables    1
## 33055                     for vancouver    1
## 33056                  for verification    1
## 33057                        for visual    1
## 33058                   for vladivostok    1
## 33059                       for weather    1
## 33060                        for weekly    1
## 33061                       for writing    1
## 33062               forbidden maneuvers    1
## 33063                    forbidden they    1
## 33064                       forcast and    1
## 33065                        forcast en    1
## 33066                      forcast lack    1
## 33067                  forcast provided    1
## 33068                       forcast the    1
## 33069                    force aircraft    1
## 33070                        force avro    1
## 33071                      force boeing    1
## 33072                       force chief    1
## 33073                    force dassault    1
## 33074                    force fighters    1
## 33075                      force fokker    1
## 33076                        force fuel    1
## 33077                  force helicopter    1
## 33078                         force hit    1
## 33079                          force in    1
## 33080               force investigation    1
## 33081                        force land    1
## 33082                   force observers    1
## 33083                          force on    1
## 33084                        force over    1
## 33085                    force possible    1
## 33086                    force spitfire    1
## 33087                     force stopped    1
## 33088                        force that    1
## 33089                          force tu    1
## 33090                       force which    1
## 33091                       force while    1
## 33092                    force yakovlev    1
## 33093                         forced an    1
## 33094                      forced crash    1
## 33095                        forced him    1
## 33096                        forced his    1
## 33097                        forced out    1
## 33098                forced unscheduled    1
## 33099                         forces 25    1
## 33100                         forces 50    1
## 33101                         forces an    1
## 33102                 forces associated    1
## 33103                       forces back    1
## 33104                       forces from    1
## 33105                    forces leading    1
## 33106                         forces of    1
## 33107                         forces on    1
## 33108                         forces or    1
## 33109                     forces rebels    1
## 33110                    forces shortly    1
## 33111                      forces south    1
## 33112                       forces with    1
## 33113                         forcing a    1
## 33114                        forcing an    1
## 33115                          fore aft    1
## 33116                       forecast an    1
## 33117                    forecast icing    1
## 33118                      forecast low    1
## 33119                       forecast of    1
## 33120                    forecast prior    1
## 33121                   forecast severe    1
## 33122                  forecast showing    1
## 33123                     forecast with    1
## 33124                  forecast without    1
## 33125                forecasted adverse    1
## 33126              forecasters reported    1
## 33127                   foreign affairs    1
## 33128                  foreign material    1
## 33129                    foreign object    1
## 33130                   foreign objects    1
## 33131                     forensic team    1
## 33132                         forest 10    1
## 33133                       forest 10km    1
## 33134                          forest 2    1
## 33135                         forest 20    1
## 33136                          forest 3    1
## 33137                          forest 6    1
## 33138                          forest 9    1
## 33139                      forest after    1
## 33140                        forest and    1
## 33141                    forest crashed    1
## 33142                 forest detonation    1
## 33143                      forest fires    1
## 33144                       forest home    1
## 33145                   forest illinois    1
## 33146                         forest in    1
## 33147                  forest mountains    1
## 33148                       forest near    1
## 33149                      forest pilot    1
## 33150                     forest rescue    1
## 33151                      forest three    1
## 33152                       forest when    1
## 33153                   forest wreckage    1
## 33154                forested foothills    1
## 33155                     foreward door    1
## 33156                    forged license    1
## 33157                     fork mountain    1
## 33158                          form the    1
## 33159                 formal functional    1
## 33160                   formation after    1
## 33161                 formation because    1
## 33162                 formation crashed    1
## 33163                  formation eleven    1
## 33164                  formation engine    1
## 33165                  formation flight    1
## 33166                      formation of    1
## 33167                      formation on    1
## 33168                  formation twelve    1
## 33169                    formation with    1
## 33170                     formations of    1
## 33171                       formed from    1
## 33172                    formed needing    1
## 33173                      formed which    1
## 33174                        former air    1
## 33175                     former alaska    1
## 33176                   former american    1
## 33177                   former canadian    1
## 33178                     former member    1
## 33179                  former procedure    1
## 33180                      former south    1
## 33181                        forming on    1
## 33182                    formosa strait    1
## 33183                   fornebu airport    1
## 33184                 forshee guitarist    1
## 33185                      fort bridger    1
## 33186                     fort franklin    1
## 33187                         fort lamy    1
## 33188                     forth estuary    1
## 33189                       forth worth    1
## 33190                       fortress of    1
## 33191                    fortune harold    1
## 33192                       forty miles    1
## 33193                       forty three    1
## 33194                        forward as    1
## 33195                   forward bearing    1
## 33196                    forward canopy    1
## 33197                    forward centre    1
## 33198                      forward dual    1
## 33199                  forward elevator    1
## 33200                 forward emergency    1
## 33201                    forward engine    1
## 33202                   forward fitting    1
## 33203                   forward gasbags    1
## 33204                  forward lavatory    1
## 33205                      forward left    1
## 33206                     forward lower    1
## 33207                  forward movement    1
## 33208                       forward out    1
## 33209                   forward portion    1
## 33210                   forward service    1
## 33211                       forward the    1
## 33212              forward transmission    1
## 33213                   forward without    1
## 33214                           foud no    1
## 33215                        fought the    1
## 33216                          found 06    1
## 33217                          found 10    1
## 33218                          found 11    1
## 33219                          found 12    1
## 33220                          found 16    1
## 33221                          found 28    1
## 33222                           found 3    1
## 33223                          found 39    1
## 33224                          found 54    1
## 33225                           found 7    1
## 33226                           found 8    1
## 33227                         found 940    1
## 33228                          found an    1
## 33229                        found atop    1
## 33230                     found aviator    1
## 33231                          found be    1
## 33232                      found broken    1
## 33233                         found but    1
## 33234                          found by    1
## 33235                       found cause    1
## 33236                  found completely    1
## 33237                    found covering    1
## 33238                  found criminally    1
## 33239                      found debris    1
## 33240                   found destroyed    1
## 33241                 found disappeared    1
## 33242                     found ditched    1
## 33243                         found due    1
## 33244                      found during    1
## 33245                         found feb    1
## 33246                      found guilty    1
## 33247                         found her    1
## 33248                     found himself    1
## 33249                          found it    1
## 33250                    found lockheed    1
## 33251                        found lost    1
## 33252                      found midair    1
## 33253                     found nothing    1
## 33254                          found of    1
## 33255                         found one    1
## 33256                        found over    1
## 33257                      found pieces    1
## 33258                       found pilot    1
## 33259                      found rumors    1
## 33260                        found shot    1
## 33261                     found stalled    1
## 33262                      found struck    1
## 33263                  found themselves    1
## 33264                        found this    1
## 33265                         found two    1
## 33266                        found with    1
## 33267                        founder of    1
## 33268                       foundry six    1
## 33269                     four attempts    1
## 33270                        four blade    1
## 33271                       four blades    1
## 33272                         four days    1
## 33273                         four died    1
## 33274                    four employees    1
## 33275                      four gallons    1
## 33276                  four helicopters    1
## 33277                      four landing    1
## 33278                       four levers    1
## 33279                      four moments    1
## 33280                       four motors    1
## 33281                       four parked    1
## 33282                    four passenger    1
## 33283                     four soldiers    1
## 33284                     four survived    1
## 33285                    four survivors    1
## 33286                           four to    1
## 33287                         four year    1
## 33288                        four years    1
## 33289                   fourteen bodies    1
## 33290                   fourteen killed    1
## 33291                  fourteen players    1
## 33292                   fourth approach    1
## 33293                      fourth fault    1
## 33294                         fourth of    1
## 33295                       fourth time    1
## 33296                       fouta djall    1
## 33297                    foveaux strait    1
## 33298                           fpm and    1
## 33299                       fpm descent    1
## 33300                  fracture crashed    1
## 33301               fracture inadequate    1
## 33302                    fracture which    1
## 33303                    fracture while    1
## 33304                     fractured and    1
## 33305              fractured connecting    1
## 33306                  fractured rubber    1
## 33307                   fractured skull    1
## 33308                     fractured the    1
## 33309                fractures improper    1
## 33310                      fractures in    1
## 33311                      fractures of    1
## 33312                     fracturing of    1
## 33313                     fragmented in    1
## 33314                      fragments of    1
## 33315                     frame causing    1
## 33316                 france's brittany    1
## 33317                  france's nuclear    1
## 33318                       france band    1
## 33319                         france by    1
## 33320                      france cargo    1
## 33321                   france climbing    1
## 33322                        france has    1
## 33323                 france martinique    1
## 33324                     france robert    1
## 33325                       france this    1
## 33326                      france where    1
## 33327                   francisco after    1
## 33328                     francisco and    1
## 33329                      francisco at    1
## 33330                   francisco blake    1
## 33331                  francisco forces    1
## 33332                  francisco giants    1
## 33333                francisco gonzales    1
## 33334          francisco internatiional    1
## 33335                   francisco radio    1
## 33336                    francqui while    1
## 33337                         frank may    1
## 33338                     frank sinatra    1
## 33339                         frank who    1
## 33340                       frank yegar    1
## 33341                 frankfurt airport    1
## 33342              franklin roosevelt's    1
## 33343                    franklin smith    1
## 33344                      franklin the    1
## 33345                   frantic message    1
## 33346                       franz josef    1
## 33347                       fred noonan    1
## 33348                           free at    1
## 33349                      free balloon    1
## 33350                     free carrying    1
## 33351                      free falling    1
## 33352                           free in    1
## 33353                     freeport blvd    1
## 33354                      freetown and    1
## 33355                       freeway and    1
## 33356                  freezing drizzle    1
## 33357                      freezing fog    1
## 33358                       freight and    1
## 33359                       freight car    1
## 33360                      freight flew    1
## 33361                      freight lost    1
## 33362                      freight that    1
## 33363                    freighter when    1
## 33364                        french air    1
## 33365                   french aircraft    1
## 33366                        french and    1
## 33367                       french army    1
## 33368                french authorities    1
## 33369                      french coast    1
## 33370                french directorate    1
## 33371                 french government    1
## 33372                    french italian    1
## 33373                    french medical    1
## 33374               french middleweight    1
## 33375                   french military    1
## 33376                   french ministry    1
## 33377                         french or    1
## 33378                  french passenger    1
## 33379                    french patient    1
## 33380                     french postal    1
## 33381                   french soldiers    1
## 33382                     french sports    1
## 33383                   french tourists    1
## 33384                 frequencies which    1
## 33385                       frequency a    1
## 33386               frequency addressed    1
## 33387                     frequency and    1
## 33388                      frequency as    1
## 33389                      frequency in    1
## 33390                   frequency radio    1
## 33391               frequency receivers    1
## 33392                     frequency the    1
## 33393               frequency whistling    1
## 33394                         fresh air    1
## 33395                     fresh landing    1
## 33396                        fresno the    1
## 33397                       fretting on    1
## 33398                      friar's peak    1
## 33399                     friend aboard    1
## 33400                     friend dottie    1
## 33401                         friend of    1
## 33402                      friends shot    1
## 33403                    friendship the    1
## 33404             frightened passengers    1
## 33405                      frigid water    1
## 33406                         fringe of    1
## 33407                            from 0    1
## 33408                        from 1,500    1
## 33409                     from 10,000ft    1
## 33410                         from 10km    1
## 33411                       from 16,000    1
## 33412                       from 17,000    1
## 33413                          from 1st    1
## 33414                       from 23,000    1
## 33415                          from 351    1
## 33416                       from 38,000    1
## 33417                       from 41,000    1
## 33418                        from 6,000    1
## 33419                        from 6,500    1
## 33420                           from 60    1
## 33421                           from 6g    1
## 33422                            from 8    1
## 33423                        from 8,000    1
## 33424                     from abingdon    1
## 33425                        from above    1
## 33426                          from abu    1
## 33427                        from abuja    1
## 33428                   from acceptable    1
## 33429                      from adverse    1
## 33430                       from agadir    1
## 33431                           from al    1
## 33432                       from aleppo    1
## 33433                      from algeria    1
## 33434                       from almaza    1
## 33435                        from amman    1
## 33436                     from amritsar    1
## 33437                    from amsterdam    1
## 33438                       from ankara    1
## 33439                 from anuradhapura    1
## 33440                          from any    1
## 33441                          from aom    1
## 33442                     from approved    1
## 33443                        from aqaba    1
## 33444                  from archerfield    1
## 33445                    from asheville    1
## 33446                       from ashiya    1
## 33447                          from atc    1
## 33448                      from atlanta    1
## 33449                   from attempting    1
## 33450                    from australia    1
## 33451                     from aviation    1
## 33452                     from bagdarin    1
## 33453                      from baghdad    1
## 33454                       from bagram    1
## 33455                   from bahawalpur    1
## 33456                        from bahia    1
## 33457                         from baku    1
## 33458                    from baltimore    1
## 33459                     from barbados    1
## 33460                    from barcelona    1
## 33461                         from bari    1
## 33462                  from barrackpore    1
## 33463                         from basa    1
## 33464                   from batesville    1
## 33465                      from bedford    1
## 33466                     from belgrade    1
## 33467                    from berlevãƒâ    1
## 33468                       from berlin    1
## 33469                     from billings    1
## 33470                         from bima    1
## 33471                       from bishop    1
## 33472                     from bogota's    1
## 33473                  from bremerhaven    1
## 33474                        from brest    1
## 33475                  from bucaramanga    1
## 33476                         from cabo    1
## 33477                       from cairns    1
## 33478                      from calabar    1
## 33479                   from california    1
## 33480                     from campbell    1
## 33481                          from cap    1
## 33482                      from cardiff    1
## 33483                   from cardington    1
## 33484                      from cauayan    1
## 33485                      from central    1
## 33486                      from charles    1
## 33487                    from charlotte    1
## 33488                  from chelyabinsk    1
## 33489                      from chengdu    1
## 33490                       from chiang    1
## 33491                   from chkalovsky    1
## 33492                  from chochabanba    1
## 33493                     from climbing    1
## 33494                      from cologne    1
## 33495                      from colombo    1
## 33496                        from colon    1
## 33497                     from columbia    1
## 33498                     from comodoro    1
## 33499                        from congo    1
## 33500                    from congonhas    1
## 33501                  from continental    1
## 33502                       from contra    1
## 33503                  from controlling    1
## 33504                  from coolangatta    1
## 33505                      from cordova    1
## 33506                    from corrosion    1
## 33507                      from cotonou    1
## 33508                     from covering    1
## 33509                        from cox's    1
## 33510                 from criclklewood    1
## 33511                      from croydon    1
## 33512                       from cruise    1
## 33513                     from cruising    1
## 33514                     from curitiba    1
## 33515                           from da    1
## 33516                         from daet    1
## 33517                        from daily    1
## 33518                       from dallas    1
## 33519                      from daytona    1
## 33520                    from decisions    1
## 33521                       from dekalb    1
## 33522                        from delhi    1
## 33523                     from denpasar    1
## 33524                    from departure    1
## 33525                          from des    1
## 33526                   from descending    1
## 33527                    from different    1
## 33528                   from dillingham    1
## 33529                from discrepancies    1
## 33530                        from doing    1
## 33531                   from domodedovo    1
## 33532                       from dorval    1
## 33533                       from douala    1
## 33534                        from dover    1
## 33535                       from dryden    1
## 33536                       from dulles    1
## 33537                    from dyersburg    1
## 33538                        from dyess    1
## 33539                    from eastleigh    1
## 33540                          from elk    1
## 33541                       from engine    1
## 33542                      from england    1
## 33543                      from erdenet    1
## 33544                    from erroneous    1
## 33545                     from esenboga    1
## 33546                     from ethiopia    1
## 33547                     from european    1
## 33548                from exceptionally    1
## 33549                    from excessive    1
## 33550                         from faaa    1
## 33551                    from fairfield    1
## 33552                     from fallujah    1
## 33553                       from faulty    1
## 33554                        from felix    1
## 33555                        from final    1
## 33556                        from fl170    1
## 33557                        from fl320    1
## 33558                    from flagstaff    1
## 33559                       from flames    1
## 33560                       from flight    1
## 33561                   from flightpath    1
## 33562                 from florianpolis    1
## 33563                      from florida    1
## 33564                       from flying    1
## 33565                          from for    1
## 33566                       from forest    1
## 33567                          from fox    1
## 33568                       from france    1
## 33569                         from from    1
## 33570                      from gaining    1
## 33571                       from gander    1
## 33572                      from geogian    1
## 33573                      from georgia    1
## 33574                      from getting    1
## 33575                       from gilgit    1
## 33576                         from godo    1
## 33577                         from gohu    1
## 33578                        from going    1
## 33579                         from goma    1
## 33580                        from goose    1
## 33581                         from gran    1
## 33582                        from grant    1
## 33583                       from groton    1
## 33584                         from guam    1
## 33585                    from guatemala    1
## 33586                  from guatemala's    1
## 33587                      from hachijo    1
## 33588                       from haneda    1
## 33589                      from hanover    1
## 33590                  from hattiesburg    1
## 33591                    from hazardous    1
## 33592                         from head    1
## 33593                         from heho    1
## 33594                         from hiva    1
## 33595                           from ho    1
## 33596                       from hobart    1
## 33597                      from hoskins    1
## 33598                      from hsinchu    1
## 33599                      from iceland    1
## 33600                     from idlewild    1
## 33601                          from ifr    1
## 33602                     from ignition    1
## 33603                     from illinois    1
## 33604                          from ils    1
## 33605                         from imam    1
## 33606                       from impact    1
## 33607                           from in    1
## 33608                   from inadequate    1
## 33609                from inadvertently    1
## 33610                   from indicating    1
## 33611                      from iranian    1
## 33612                      from isfahan    1
## 33613                      from isfanan    1
## 33614                         from isle    1
## 33615                      from isparta    1
## 33616                     from istanbul    1
## 33617                        from italy    1
## 33618                        from ivato    1
## 33619                            from j    1
## 33620                       from jaffna    1
## 33621                      from jakarta    1
## 33622                  from jakobkondre    1
## 33623                    from jalalabad    1
## 33624                        from jamba    1
## 33625                          from jan    1
## 33626                         from java    1
## 33627                    from jefferson    1
## 33628                        from jerry    1
## 33629                     from johannes    1
## 33630                         from jomo    1
## 33631                       from jomsom    1
## 33632                       from jomson    1
## 33633                        from jorge    1
## 33634                       from juarez    1
## 33635                         from juba    1
## 33636                       from juwata    1
## 33637                      from kaduqli    1
## 33638                          from kai    1
## 33639                     from kandahar    1
## 33640                    from kathmandu    1
## 33641                   from khabarovsk    1
## 33642                     from khartoum    1
## 33643                       from khewra    1
## 33644                  from kilimanjaro    1
## 33645                         from kilo    1
## 33646                        from kindu    1
## 33647                   from kirovograd    1
## 33648                       from kisumu    1
## 33649                      from klamath    1
## 33650                    from kobenhavn    1
## 33651                  from krasnoyarsk    1
## 33652                         from kura    1
## 33653                       from kuwait    1
## 33654                    from kwajalein    1
## 33655                          from lae    1
## 33656                    from lakehurst    1
## 33657                      from lambert    1
## 33658                  from landing.the    1
## 33659                        from laoag    1
## 33660                      from larache    1
## 33661                 from larkenhealth    1
## 33662                          from leh    1
## 33663                      from lenakel    1
## 33664                         from leon    1
## 33665                   from lethbridge    1
## 33666                   from libreville    1
## 33667                         from lima    1
## 33668                       from linate    1
## 33669                       from lisboa    1
## 33670                       from little    1
## 33671                         from loma    1
## 33672                         from long    1
## 33673                    from longreach    1
## 33674                       from luanda    1
## 33675                        from luqua    1
## 33676                       from lusaka    1
## 33677                        from luxor    1
## 33678                        from lyall    1
## 33679                         from lyon    1
## 33680                      from macaãƒâ    1
## 33681                       from madang    1
## 33682                     from malabala    1
## 33683                       from malabo    1
## 33684                        from manas    1
## 33685                       from manaus    1
## 33686                   from manchester    1
## 33687                        from manco    1
## 33688                    from manizales    1
## 33689                     from manshahr    1
## 33690                        from manus    1
## 33691                          from mar    1
## 33692                    from maracaibo    1
## 33693                       from marina    1
## 33694                from massachusetts    1
## 33695                         from mati    1
## 33696                      from mcgrath    1
## 33697                      from mcguire    1
## 33698                  from medellãƒâ­n    1
## 33699                     from medellin    1
## 33700                     from mehrabad    1
## 33701                    from melbourne    1
## 33702                       from memory    1
## 33703                      from mendoza    1
## 33704                       from mental    1
## 33705                      from merauke    1
## 33706                       from meshed    1
## 33707                       from midway    1
## 33708                        from milan    1
## 33709                  from minneapolis    1
## 33710                    from minnesota    1
## 33711                 from minsk.double    1
## 33712            from misinterpretation    1
## 33713                   from misloading    1
## 33714                  from mississippi    1
## 33715                    from mogadishu    1
## 33716                        from mongu    1
## 33717                     from monterey    1
## 33718                   from montreal's    1
## 33719                         from more    1
## 33720                        from motel    1
## 33721                       from moving    1
## 33722                     from multiple    1
## 33723                       from munich    1
## 33724                       from mwanza    1
## 33725                       from n'dolo    1
## 33726                       from nagoya    1
## 33727                       from namoya    1
## 33728                       from naples    1
## 33729                 from natchitoches    1
## 33730                      from nausori    1
## 33731                        from ninoy    1
## 33732                           from no    1
## 33733                     from nogougou    1
## 33734                       from normal    1
## 33735                    from northeast    1
## 33736                         from nose    1
## 33737                          from not    1
## 33738                            from o    1
## 33739                      from oakland    1
## 33740                          from oil    1
## 33741                          from old    1
## 33742                    from olekminsk    1
## 33743                        from omaha    1
## 33744                    from omsukchan    1
## 33745                         from only    1
## 33746                      from orlando    1
## 33747                  from ouagadougou    1
## 33748                     from overcast    1
## 33749                  from overfilling    1
## 33750                       from palana    1
## 33751                         from palm    1
## 33752                     from palmdale    1
## 33753                        from pampa    1
## 33754                 from paramilitary    1
## 33755                        from paris    1
## 33756                        from parks    1
## 33757                       from paskse    1
## 33758                       from peking    1
## 33759                        from perth    1
## 33760                 from philadelphia    1
## 33761                from physiological    1
## 33762                        from point    1
## 33763                      from pokhara    1
## 33764                     from popayãƒâ    1
## 33765                         from post    1
## 33766                    from prescribe    1
## 33767                     from previous    1
## 33768                      from prinses    1
## 33769                       from puerto    1
## 33770                        from punta    1
## 33771                      from putting    1
## 33772                        from quito    1
## 33773                            from r    1
## 33774                          from r31    1
## 33775                        from rafik    1
## 33776                    from rancheria    1
## 33777                        from rapid    1
## 33778                    from ratmalana    1
## 33779                       from regina    1
## 33780                 from reykjavãƒâ­k    1
## 33781                     from richland    1
## 33782                      from rilyadh    1
## 33783                      from rolling    1
## 33784                     from rotating    1
## 33785                        from royal    1
## 33786                       from rutbah    1
## 33787                          from rwy    1
## 33788                       from sabine    1
## 33789                    from salisbury    1
## 33790                        from sanaa    1
## 33791                        from sandy    1
## 33792                       from santos    1
## 33793                          from sas    1
## 33794                      from saurimo    1
## 33795                     from savannah    1
## 33796                       from sawyer    1
## 33797                     from schiphol    1
## 33798                      from seattle    1
## 33799                 from semipalatins    1
## 33800                   from separation    1
## 33801                        from serov    1
## 33802                        from servo    1
## 33803                      from several    1
## 33804                       from severe    1
## 33805                     from shamurat    1
## 33806                     from shanghai    1
## 33807                      from shannon    1
## 33808                       from sharem    1
## 33809                 from sheremetyevo    1
## 33810                       from sheyma    1
## 33811                   from shreveport    1
## 33812                      from sichang    1
## 33813                       from simara    1
## 33814                    from singapore    1
## 33815                      from singida    1
## 33816                       from skagen    1
## 33817                        from smoke    1
## 33818                          from soc    1
## 33819                     from soekarno    1
## 33820                     from soewondo    1
## 33821                         from some    1
## 33822                       from sophia    1
## 33823                       from sorido    1
## 33824                      from spatial    1
## 33825                      from spilled    1
## 33826                           from st    1
## 33827                     from standard    1
## 33828                    from stavropol    1
## 33829                   from structural    1
## 33830                      from suabaya    1
## 33831                         from subi    1
## 33832                    from sunbright    1
## 33833                      from surinam    1
## 33834                  from surrounding    1
## 33835                     from swiftair    1
## 33836                     from swimming    1
## 33837                       from sydney    1
## 33838                    from tachikawa    1
## 33839                        from talas    1
## 33840                         from tame    1
## 33841                        from tampa    1
## 33842                         from tefe    1
## 33843                       from tehran    1
## 33844                        from texel    1
## 33845                        from there    1
## 33846                       from thrust    1
## 33847                      from thunder    1
## 33848                        from tikal    1
## 33849                        from tingo    1
## 33850                     from titograd    1
## 33851                       from toledo    1
## 33852                        from touch    1
## 33853                    from touchdown    1
## 33854                       from toulon    1
## 33855                     from toulouse    1
## 33856                     from training    1
## 33857                       from travis    1
## 33858                   from trinbhuvan    1
## 33859                     from tropical    1
## 33860                     from trujillo    1
## 33861                      from tujuana    1
## 33862                        from tunis    1
## 33863                        from turin    1
## 33864                          from two    1
## 33865                    from universal    1
## 33866                   from unreliable    1
## 33867                  from unsuspected    1
## 33868                        from upper    1
## 33869                     from valencia    1
## 33870                     from vanavera    1
## 33871                    from vancouver    1
## 33872                         from vapp    1
## 33873                          from vfr    1
## 33874                    from vientiane    1
## 33875                         from view    1
## 33876                from villavicencio    1
## 33877                       from visual    1
## 33878                       from ward's    1
## 33879                       from warsaw    1
## 33880                        from water    1
## 33881                      from waurika    1
## 33882                        from where    1
## 33883                    from whitehall    1
## 33884                         from wing    1
## 33885                        from wuhan    1
## 33886                      from yakutsk    1
## 33887                      from yalãƒâ­    1
## 33888                     from yelizovo    1
## 33889                       from yokota    1
## 33890                  froman seriously    1
## 33891             fromtambacoumba after    1
## 33892                     front bearing    1
## 33893                     front claimed    1
## 33894                 front disappeared    1
## 33895                     front fighter    1
## 33896                         front for    1
## 33897                       front lower    1
## 33898                      front pallet    1
## 33899                        front part    1
## 33900                     front portion    1
## 33901                          front so    1
## 33902                   front starboard    1
## 33903                       front strut    1
## 33904                          front to    1
## 33905                       front wheel    1
## 33906                       front while    1
## 33907                     frontal winds    1
## 33908                       frontino at    1
## 33909                     frost covered    1
## 33910                       frost prior    1
## 33911                     frostbite and    1
## 33912                   frosted windows    1
## 33913                       froze after    1
## 33914                     froze causing    1
## 33915                          froze in    1
## 33916                          froze on    1
## 33917                     frozen arctic    1
## 33918                       frozen fish    1
## 33919                     frozen ground    1
## 33920                 frozen.the reason    1
## 33921                        fruit also    1
## 33922                        fruit flew    1
## 33923                        fruka gora    1
## 33924                              ft 2    1
## 33925                           ft 21nm    1
## 33926                              ft 3    1
## 33927                             ft 32    1
## 33928                             ft 50    1
## 33929                              ft 6    1
## 33930                             ft 63    1
## 33931                              ft 7    1
## 33932                            ft agl    1
## 33933                  ft approximately    1
## 33934                             ft as    1
## 33935                           ft away    1
## 33936                         ft banked    1
## 33937                         ft became    1
## 33938                        ft between    1
## 33939                           ft both    1
## 33940                        ft bullets    1
## 33941                             ft by    1
## 33942                        ft carpish    1
## 33943                         ft caught    1
## 33944                   ft chachacomani    1
## 33945                        ft chaperi    1
## 33946                        ft coloque    1
## 33947                    ft combination    1
## 33948                     ft controlled    1
## 33949                       ft crashing    1
## 33950                         ft debris    1
## 33951                        ft despite    1
## 33952                           ft down    1
## 33953                     ft electrical    1
## 33954                      ft elevation    1
## 33955                            ft elk    1
## 33956                       ft entering    1
## 33957                       ft exploded    1
## 33958                         ft failed    1
## 33959                        ft failure    1
## 33960                        ft fatigue    1
## 33961                           ft feet    1
## 33962                           ft five    1
## 33963                         ft flying    1
## 33964                           ft four    1
## 33965                        ft further    1
## 33966                        ft galeaoa    1
## 33967                         ft giving    1
## 33968                        ft killing    1
## 33969                           ft left    1
## 33970                          ft light    1
## 33971                           ft long    1
## 33972                           ft made    1
## 33973                           ft mean    1
## 33974                          ft mount    1
## 33975                            ft msl    1
## 33976                     ft navigation    1
## 33977                         ft nevado    1
## 33978                            ft off    1
## 33979                             ft or    1
## 33980                          ft parts    1
## 33981                           ft peak    1
## 33982                           ft pico    1
## 33983                     ft prescribed    1
## 33984                          ft prior    1
## 33985                     ft procedural    1
## 33986                         ft rescue    1
## 33987                           ft roll    1
## 33988                     ft separation    1
## 33989                         ft sharhi    1
## 33990                           ft shot    1
## 33991                           ft snow    1
## 33992                       ft spiraled    1
## 33993                         ft struck    1
## 33994                          ft tabor    1
## 33995                            ft ten    1
## 33996                           ft then    1
## 33997                           ft tree    1
## 33998                            ft two    1
## 33999                          ft under    1
## 34000                            ft via    1
## 34001                        ft weather    1
## 34002                      ft windshear    1
## 34003                           ft with    1
## 34004                       fuel aboard    1
## 34005                     fuel actuator    1
## 34006                          fuel air    1
## 34007                    fuel asymmetry    1
## 34008                           fuel at    1
## 34009                         fuel blew    1
## 34010                         fuel both    1
## 34011                          fuel can    1
## 34012                        fuel cells    1
## 34013                    fuel condition    1
## 34014                 fuel contaminated    1
## 34015                    fuel continued    1
## 34016                     fuel controls    1
## 34017                        fuel costs    1
## 34018                     fuel crashing    1
## 34019                        fuel datum    1
## 34020                         fuel drum    1
## 34021                       fuel during    1
## 34022                       fuel filter    1
## 34023                         fuel fuel    1
## 34024                        fuel gauge    1
## 34025                       fuel gauges    1
## 34026                       fuel gushed    1
## 34027                       fuel having    1
## 34028                      fuel however    1
## 34029                    fuel injection    1
## 34030                       fuel intake    1
## 34031                      fuel leaking    1
## 34032                         fuel loss    1
## 34033                         fuel lost    1
## 34034                   fuel management    1
## 34035                      fuel minutes    1
## 34036                 fuel necessitated    1
## 34037                     fuel numerous    1
## 34038                      fuel offical    1
## 34039                          fuel oil    1
## 34040                           fuel on    1
## 34041                           fuel or    1
## 34042                   fuel overloaded    1
## 34043                      fuel pouring    1
## 34044                          fuel pro    1
## 34045                     fuel pump.the    1
## 34046                        fuel pumps    1
## 34047                      fuel quality    1
## 34048                     fuel remained    1
## 34049                     fuel required    1
## 34050                    fuel resulting    1
## 34051                       fuel return    1
## 34052                    fuel selection    1
## 34053                    fuel servicing    1
## 34054                     fuel shortage    1
## 34055                        fuel spill    1
## 34056                     fuel spilling    1
## 34057                      fuel stalled    1
## 34058                      fuel started    1
## 34059                     fuel starting    1
## 34060                         fuel stop    1
## 34061                      fuel storage    1
## 34062                      fuel strayed    1
## 34063                        fuel three    1
## 34064                       fuel twelve    1
## 34065                         fueled by    1
## 34066                       fueled with    1
## 34067                   fueling crashed    1
## 34068                        fuji after    1
## 34069                           full 35    1
## 34070                           full 54    1
## 34071                      full account    1
## 34072                  full application    1
## 34073                       full combat    1
## 34074                    full emergency    1
## 34075                        full flaps    1
## 34076                       full flight    1
## 34077                  full information    1
## 34078                         full left    1
## 34079                          full low    1
## 34080                   full restraints    1
## 34081                   full retraction    1
## 34082                        full seven    1
## 34083                        full turns    1
## 34084                       full twenty    1
## 34085                     full unwanted    1
## 34086                       full upward    1
## 34087                    fullblown left    1
## 34088                    fullest extent    1
## 34089                       fully apply    1
## 34090                  fully comprehend    1
## 34091                   fully deflected    1
## 34092                    fully informed    1
## 34093                          fully or    1
## 34094                  fully understand    1
## 34095                       fumes after    1
## 34096                         fumes and    1
## 34097                  fumes difficulty    1
## 34098                        fumes from    1
## 34099                    fumes rendered    1
## 34100                      funchal over    1
## 34101                    function again    1
## 34102               function electrical    1
## 34103                      function one    1
## 34104                      function was    1
## 34105                  functional check    1
## 34106             functional evaluation    1
## 34107                    functional the    1
## 34108              functioning although    1
## 34109              functioning attitude    1
## 34110                functioning before    1
## 34111                functioning engine    1
## 34112                 functioning garbi    1
## 34113                  functioning lock    1
## 34114              functioning properly    1
## 34115                   functioning the    1
## 34116                       funeral for    1
## 34117                     funeral party    1
## 34118                    further action    1
## 34119                   further causing    1
## 34120                   further contact    1
## 34121                      further down    1
## 34122                      further left    1
## 34123                      further loss    1
## 34124                     further north    1
## 34125                        further on    1
## 34126                     further right    1
## 34127             further transmissions    1
## 34128                       further two    1
## 34129                       further was    1
## 34130                          fuse pin    1
## 34131                         fuse pins    1
## 34132                          fuse the    1
## 34133                      fuselage all    1
## 34134               fuselage attachment    1
## 34135                 fuselage binstock    1
## 34136                 fuselage breaking    1
## 34137                     fuselage came    1
## 34138                    fuselage carry    1
## 34139                   fuselage caused    1
## 34140                     fuselage fell    1
## 34141                      fuselage hit    1
## 34142               fuselage insulation    1
## 34143                     fuselage into    1
## 34144                 fuselage inverted    1
## 34145                       fuselage it    1
## 34146                    fuselage makng    1
## 34147              fuselage malfunction    1
## 34148                       fuselage on    1
## 34149                      fuselage one    1
## 34150                    fuselage prior    1
## 34151                fuselage resulting    1
## 34152                     fuselage sank    1
## 34153                fuselage seriously    1
## 34154                 fuselage severing    1
## 34155                    fuselage split    1
## 34156                  fuselage stalled    1
## 34157               fuselage structural    1
## 34158                fuselage structure    1
## 34159                     fuselage then    1
## 34160                       fuselage to    1
## 34161                 fuselage trailing    1
## 34162                      fuselage two    1
## 34163                    fuselage upper    1
## 34164                  future accidents    1
## 34165                 g's investigators    1
## 34166                               g a    1
## 34167                           g limit    1
## 34168                               g s    1
## 34169                        g strijdom    1
## 34170                             g the    1
## 34171                              g to    1
## 34172                            g turn    1
## 34173                             g was    1
## 34174                    gabinete about    1
## 34175                    gablenz killed    1
## 34176                         gabon had    1
## 34177                       gabriel and    1
## 34178                 gabriel mountains    1
## 34179                        gabrielã â    1
## 34180                        gagarin 34    1
## 34181                           gah the    1
## 34182                          gain any    1
## 34183                           gain of    1
## 34184                           gain or    1
## 34185                         gain some    1
## 34186                        gain speed    1
## 34187                      gaina during    1
## 34188                   gained altitude    1
## 34189                    gained crashed    1
## 34190                       gained more    1
## 34191                        gaines and    1
## 34192                       gaines back    1
## 34193                      galawa beach    1
## 34194              galeao international    1
## 34195                  galeaoa approach    1
## 34196                   galeras volcano    1
## 34197                      galley loads    1
## 34198                   galley switches    1
## 34199                        gallons of    1
## 34200                   gambell airport    1
## 34201                    gambia airways    1
## 34202                   gambier airport    1
## 34203                 gambler's special    1
## 34204                          games he    1
## 34205                gamsberg mountains    1
## 34206                   gander improper    1
## 34207               gander newfoundland    1
## 34208             gandesberry columnist    1
## 34209                       gannett the    1
## 34210                         gap about    1
## 34211                         gap north    1
## 34212                       garage near    1
## 34213                         garage of    1
## 34214                         garage on    1
## 34215                      garbi failed    1
## 34216              garbled transmission    1
## 34217              gardanibagh district    1
## 34218                         gardel 44    1
## 34219                       garden city    1
## 34220                       garden near    1
## 34221                      garden short    1
## 34222                    gardner knight    1
## 34223                   gardner sitting    1
## 34224                    garrison cargo    1
## 34225                   garuda aircraft    1
## 34226                         gas being    1
## 34227                           gas hit    1
## 34228                          gas main    1
## 34229                           gas rig    1
## 34230                         gas taken    1
## 34231                         gas tanks    1
## 34232                           gas the    1
## 34233                            gas to    1
## 34234                           gas u.s    1
## 34235                         gas which    1
## 34236                   gasbags crashed    1
## 34237                  gasbags ruptured    1
## 34238                           gash in    1
## 34239                        gashed one    1
## 34240                    gasoline cross    1
## 34241                       gasoline in    1
## 34242                       gasoline on    1
## 34243                      gasoline out    1
## 34244                      gasoline the    1
## 34245                   gasoline vapors    1
## 34246                        gaspãƒâ in    1
## 34247                           gate it    1
## 34248                      gate shortly    1
## 34249                          gate the    1
## 34250                       gate thirty    1
## 34251                          gatow in    1
## 34252                   gatwick because    1
## 34253                     gauge compass    1
## 34254                     gauge crashed    1
## 34255                         gauge for    1
## 34256                        gauges and    1
## 34257                    gauhati struck    1
## 34258                  gaurishankar the    1
## 34259                            gave a    1
## 34260                    gave ambiguous    1
## 34261                          gave bad    1
## 34262                         gave both    1
## 34263                          gave his    1
## 34264                 gave insufficient    1
## 34265                           gave no    1
## 34266                   gave precedence    1
## 34267                         gave rise    1
## 34268                        gaviria he    1
## 34269                        gazette in    1
## 34270                          gca gave    1
## 34271                      gca guidance    1
## 34272                        gca runway    1
## 34273                          gca that    1
## 34274                           gca was    1
## 34275                         gct cause    1
## 34276                            gear a    1
## 34277                    gear alternate    1
## 34278                      gear awkward    1
## 34279                       gear became    1
## 34280                       gear brakes    1
## 34281                        gear broke    1
## 34282                       gear caused    1
## 34283                        gear chain    1
## 34284                   gear compressor    1
## 34285                        gear could    1
## 34286                       gear damage    1
## 34287                       gear during    1
## 34288                       gear engine    1
## 34289                     gear extended    1
## 34290                        gear first    1
## 34291                        gear found    1
## 34292                       gear handle    1
## 34293                      gear hitting    1
## 34294                      gear housing    1
## 34295                  gear immediately    1
## 34296                           gear in    1
## 34297                    gear indicator    1
## 34298                           gear it    1
## 34299                         gear just    1
## 34300                        gear latch    1
## 34301                         gear left    1
## 34302                          gear leg    1
## 34303                         gear legs    1
## 34304                      gear locking    1
## 34305                      gear lowered    1
## 34306                         gear onto    1
## 34307                    gear resulting    1
## 34308                   gear retraction    1
## 34309                      gear sheared    1
## 34310                         gear slid    1
## 34311                        gear still    1
## 34312                         gear tube    1
## 34313                       gear unsafe    1
## 34314                           gear up    1
## 34315                       gear veered    1
## 34316                      gear warning    1
## 34317                         gear were    1
## 34318                         gear when    1
## 34319                        gear which    1
## 34320                        gear while    1
## 34321                         gear with    1
## 34322                        gear would    1
## 34323                    gear.the right    1
## 34324                    gearbox filter    1
## 34325                       gearbox oil    1
## 34326                       gearbox was    1
## 34327                     gearbox while    1
## 34328                   gears collapsed    1
## 34329                        gears down    1
## 34330                     gears snagged    1
## 34331                         geart was    1
## 34332                        geese into    1
## 34333                     gene hershe's    1
## 34334                  gene roddenberry    1
## 34335                     general after    1
## 34336               general bartholomew    1
## 34337                    general casual    1
## 34338                       general dag    1
## 34339                       general for    1
## 34340                      general jose    1
## 34341                   general manager    1
## 34342                   general mariano    1
## 34343                  general mitchell    1
## 34344                    general office    1
## 34345                    general robert    1
## 34346                  general santiago    1
## 34347                   general weather    1
## 34348                    generally good    1
## 34349                     generals were    1
## 34350                     generate heat    1
## 34351                      generated an    1
## 34352                     generator and    1
## 34353                      generator at    1
## 34354                   generator buses    1
## 34355                 generator control    1
## 34356                  generator failed    1
## 34357             generator inoperative    1
## 34358                    generator lead    1
## 34359                 generator passing    1
## 34360                   generator power    1
## 34361               generator resulting    1
## 34362                    generator soon    1
## 34363                generator suffered    1
## 34364                  generator system    1
## 34365                     generator the    1
## 34366                    generators and    1
## 34367                generators failure    1
## 34368                     generators in    1
## 34369                   generators were    1
## 34370                        geneva but    1
## 34371                 geneva controller    1
## 34372                geneva switzerland    1
## 34373                        genoa peak    1
## 34374                        gentle but    1
## 34375                     genuine bolts    1
## 34376                   geogian airways    1
## 34377                    geographic and    1
## 34378                   geographic area    1
## 34379               geographic location    1
## 34380       geographical disorientation    1
## 34381             geographical features    1
## 34382                       georg bluen    1
## 34383                  george's channel    1
## 34384                    george airport    1
## 34385                      george bates    1
## 34386                       george bush    1
## 34387                    george collins    1
## 34388                       george duke    1
## 34389                      george evans    1
## 34390                  george mickelson    1
## 34391                   george sherlock    1
## 34392                    george stevens    1
## 34393                     george thomas    1
## 34394                     georgel cogar    1
## 34395                georgetown airport    1
## 34396                  georgia lawrence    1
## 34397                  georgia regional    1
## 34398                    georgian rebel    1
## 34399                     geraldton the    1
## 34400                        german air    1
## 34401                        german and    1
## 34402                     german border    1
## 34403                     german cessna    1
## 34404                    german fighter    1
## 34405                   german fighters    1
## 34406                    german inquiry    1
## 34407                german limitations    1
## 34408                       german mail    1
## 34409                  german passenger    1
## 34410                     german patrol    1
## 34411                        german sky    1
## 34412                     german sopena    1
## 34413                  german submarine    1
## 34414                   german tourists    1
## 34415                  germans believed    1
## 34416                        germany at    1
## 34417                    germany border    1
## 34418                     germany since    1
## 34419                       get airborn    1
## 34420                            get an    1
## 34421                           get any    1
## 34422                          get down    1
## 34423                           get her    1
## 34424                           get his    1
## 34425                           get low    1
## 34426                            get on    1
## 34427                      get slightly    1
## 34428                       get steeper    1
## 34429                       get through    1
## 34430                           get too    1
## 34431                         get under    1
## 34432                    getting caught    1
## 34433                 getting clearance    1
## 34434                      getting into    1
## 34435                       getting off    1
## 34436                     getting ready    1
## 34437                   getting takeoff    1
## 34438                    ghatkopar hill    1
## 34439                    giants pitcher    1
## 34440                     gibraltar the    1
## 34441                        gilbert at    1
## 34442                    gilbert graham    1
## 34443                         gilgit to    1
## 34444                        gilmer the    1
## 34445                         giluwe at    1
## 34446                           gimli a    1
## 34447                      gimli glider    1
## 34448                     ginette neveu    1
## 34449                            girl 6    1
## 34450                      girl cecilia    1
## 34451                         girl died    1
## 34452                          girl ran    1
## 34453                          girls on    1
## 34454                           give by    1
## 34455                        give clear    1
## 34456                   give passengers    1
## 34457                   give precedence    1
## 34458                           given a    1
## 34459                    given airspeed    1
## 34460                         given but    1
## 34461                   given clearance    1
## 34462                given instructions    1
## 34463                       given radar    1
## 34464                     given reports    1
## 34465                          giving a    1
## 34466                 giving directions    1
## 34467                      giving false    1
## 34468                         giving up    1
## 34469                       gjz crashed    1
## 34470                          gjz were    1
## 34471                           gkl and    1
## 34472                           gkl was    1
## 34473                  glacial crevasse    1
## 34474                   glacial terrain    1
## 34475                  glacier airstrip    1
## 34476                        glacier by    1
## 34477                       glacier the    1
## 34478               glacier.the pilot's    1
## 34479                    glade mountain    1
## 34480                       glanced off    1
## 34481                      glare during    1
## 34482                         glare the    1
## 34483                   glasgow killing    1
## 34484                     glass cockpit    1
## 34485                      glassy water    1
## 34486                        glen below    1
## 34487                         glendo in    1
## 34488                      glenn miller    1
## 34489                         glide the    1
## 34490                          glide to    1
## 34491                       glide under    1
## 34492                       glide until    1
## 34493                       glided down    1
## 34494                        glided for    1
## 34495               glidepath alignment    1
## 34496                     glidepath and    1
## 34497                     glidepath the    1
## 34498                      glider being    1
## 34499                        glider the    1
## 34500                     glideslope an    1
## 34501           glideslope contributing    1
## 34502               glideslope improper    1
## 34503             glideslope increasing    1
## 34504                    glideslope was    1
## 34505                  glideslope while    1
## 34506                      gliding down    1
## 34507                        glimpse of    1
## 34508                      glinka after    1
## 34509                        glinka the    1
## 34510                       glitch with    1
## 34511                global positioning    1
## 34512                     globe gazette    1
## 34513                  gloria located10    1
## 34514                         glue that    1
## 34515                          glued on    1
## 34516                     glungezer and    1
## 34517                      glycerin and    1
## 34518                     glycerine and    1
## 34519                     gnss approach    1
## 34520                          go below    1
## 34521                         go direct    1
## 34522                      go exercises    1
## 34523                          go first    1
## 34524                             go in    1
## 34525                            go off    1
## 34526                             go on    1
## 34527                            go the    1
## 34528                           go they    1
## 34529                     go undetected    1
## 34530                      goaround the    1
## 34531                          godo olo    1
## 34532                       gogol river    1
## 34533                     gohu airstrip    1
## 34534                   goigira indians    1
## 34535                         going and    1
## 34536                      going around    1
## 34537                  going diagonally    1
## 34538                        going home    1
## 34539                          going in    1
## 34540                        going into    1
## 34541                         going off    1
## 34542                          going on    1
## 34543                   golath mountain    1
## 34544                          gold and    1
## 34545                         gold mine    1
## 34546                       gold miners    1
## 34547                     gold platinum    1
## 34548                       golden gate    1
## 34549                   golfer clarence    1
## 34550                      golfer payne    1
## 34551                       golfer tony    1
## 34552                      goma airport    1
## 34553                          goma the    1
## 34554                 goma.the accident    1
## 34555               gomes international    1
## 34556                   gondola causing    1
## 34557                       gonzales 27    1
## 34558                        gonzales a    1
## 34559                         good hope    1
## 34560                           good in    1
## 34561                         good with    1
## 34562                   goodbye message    1
## 34563                         goods and    1
## 34564                         goods for    1
## 34565                         goods was    1
## 34566                       goodyear fg    1
## 34567                         goose bay    1
## 34568                     gora improper    1
## 34569                    gora mountains    1
## 34570                    gorgan shortly    1
## 34571                          gorge 10    1
## 34572                    gorge decision    1
## 34573                        gorge near    1
## 34574                       gorge there    1
## 34575                       gorky pilot    1
## 34576                        goroka and    1
## 34577                       goroka when    1
## 34578                      got airborne    1
## 34579                            got as    1
## 34580                        got caught    1
## 34581                         got close    1
## 34582                   got dangerously    1
## 34583                            got it    1
## 34584                            got no    1
## 34585                       gotera hill    1
## 34586                    gothenburg due    1
## 34587                        gouging of    1
## 34588               government agencies    1
## 34589                government charter    1
## 34590                government claimed    1
## 34591              government convicted    1
## 34592                 government forces    1
## 34593                     government in    1
## 34594                government mission    1
## 34595              government officials    1
## 34596                  government plane    1
## 34597              government regretted    1
## 34598                  government riots    1
## 34599                   government test    1
## 34600                  governor control    1
## 34601               governor detachment    1
## 34602                      governor due    1
## 34603                   governor george    1
## 34604                     governor igor    1
## 34605                  governor spindle    1
## 34606                     gps installed    1
## 34607                          gps used    1
## 34608                          gpsw for    1
## 34609                      gpsw ignored    1
## 34610                        gpws alarm    1
## 34611                           gpws as    1
## 34612                           gpws on    1
## 34613                          gpws the    1
## 34614                       gpws warned    1
## 34615                          gpws was    1
## 34616                         grab hold    1
## 34617                     grabbed their    1
## 34618                      grabbing the    1
## 34619                        grabed the    1
## 34620                       grace moore    1
## 34621                        grada zuma    1
## 34622                       gradual and    1
## 34623                      gradual loss    1
## 34624              gradually increasing    1
## 34625                         graham 60    1
## 34626                       graham hill    1
## 34627                         graham in    1
## 34628                      graham never    1
## 34629                       gran canana    1
## 34630                        granada at    1
## 34631                  granada deviated    1
## 34632                     grand comoros    1
## 34633                        grand duke    1
## 34634                      grand island    1
## 34635                        grand wash    1
## 34636                         grande de    1
## 34637                  grande guatemala    1
## 34638                   grande mountain    1
## 34639                      grande range    1
## 34640                      grande where    1
## 34641               grandstands killing    1
## 34642                   granite between    1
## 34643                      granite rock    1
## 34644                       granite the    1
## 34645                        grant park    1
## 34646                        grants new    1
## 34647                      grass caught    1
## 34648             grass nonavailability    1
## 34649                  grassland beside    1
## 34650                       grassy farm    1
## 34651                      grassy field    1
## 34652                       grassy spot    1
## 34653                gravational forces    1
## 34654                   gravel airstrip    1
## 34655                       gravity and    1
## 34656                     gravity being    1
## 34657                    gravity beyond    1
## 34658                 gravity condition    1
## 34659                   gravity crashed    1
## 34660                    gravity factor    1
## 34661                gravity improperly    1
## 34662                     gravity limit    1
## 34663                      gravity load    1
## 34664                      gravity near    1
## 34665                        gravity on    1
## 34666                 gravity resulting    1
## 34667                   gravity shifted    1
## 34668                   gravity takeoff    1
## 34669                        gravity to    1
## 34670                       gravity too    1
## 34671                       gravity was    1
## 34672                     gravity while    1
## 34673                     gray mountain    1
## 34674                        grazed the    1
## 34675                       grease used    1
## 34676                           great a    1
## 34677                          great as    1
## 34678                        great deal    1
## 34679                    great republic    1
## 34680                        great salt    1
## 34681                       great slave    1
## 34682               great talkativeness    1
## 34683                          great to    1
## 34684                      greater when    1
## 34685                   gredos mountain    1
## 34686                        greece and    1
## 34687                    greek airspace    1
## 34688                           greek f    1
## 34689                   greek hungarian    1
## 34690                  greek insurgents    1
## 34691                       green cross    1
## 34692                        green hell    1
## 34693                   greenfield near    1
## 34694                     greenland the    1
## 34695                   grenade brought    1
## 34696                   grenade crashed    1
## 34697                    grenade during    1
## 34698                grenade explosions    1
## 34699                        grenade in    1
## 34700                      grenade when    1
## 34701                    grenades among    1
## 34702                       grenades he    1
## 34703                     grenades were    1
## 34704                       grenoble in    1
## 34705                         grey nuns    1
## 34706                greyout conditions    1
## 34707                         grips the    1
## 34708                          groan of    1
## 34709                 grooves installed    1
## 34710                   gross deviation    1
## 34711                       gross error    1
## 34712                grossly overweight    1
## 34713                       grosso with    1
## 34714                         groton to    1
## 34715                      ground 1,000    1
## 34716                      ground 1,360    1
## 34717                        ground 1.5    1
## 34718                        ground 100    1
## 34719                       ground 12nm    1
## 34720                      ground 2,300    1
## 34721                      ground 2,380    1
## 34722                        ground 2.5    1
## 34723                         ground 22    1
## 34724                        ground 300    1
## 34725                        ground 400    1
## 34726                          ground 5    1
## 34727                      ground 5,000    1
## 34728                      ground 5,500    1
## 34729                          ground 6    1
## 34730                        ground 600    1
## 34731                         ground 65    1
## 34732                        ground 700    1
## 34733                        ground 75m    1
## 34734                         ground 94    1
## 34735                         ground an    1
## 34736                     ground banked    1
## 34737                      ground based    1
## 34738                      ground belly    1
## 34739                      ground broke    1
## 34740                        ground but    1
## 34741                      ground cargo    1
## 34742                     ground caught    1
## 34743                      ground cause    1
## 34744                    ground causing    1
## 34745             ground communications    1
## 34746                      ground could    1
## 34747                      ground crash    1
## 34748                   ground crashing    1
## 34749                    ground cutting    1
## 34750                     ground effect    1
## 34751                     ground ending    1
## 34752                 ground eventually    1
## 34753                  ground exploding    1
## 34754               ground facililities    1
## 34755                      ground first    1
## 34756                  ground first.the    1
## 34757                       ground four    1
## 34758                   ground guidance    1
## 34759                    ground handler    1
## 34760                         ground he    1
## 34761                        ground hit    1
## 34762                ground immediately    1
## 34763             ground incapacitation    1
## 34764                  ground including    1
## 34765                    ground instead    1
## 34766                   ground inverted    1
## 34767                    ground killing    1
## 34768                       ground lack    1
## 34769                     ground lights    1
## 34770                      ground locks    1
## 34771                       ground loop    1
## 34772                     ground looped    1
## 34773                    ground looping    1
## 34774                       ground loss    1
## 34775                ground malfunction    1
## 34776             ground malfunctioning    1
## 34777                 ground mechanical    1
## 34778               ground misconstrued    1
## 34779                       ground near    1
## 34780                        ground not    1
## 34781                ground observation    1
## 34782                   ground occurred    1
## 34783                 ground officially    1
## 34784                        ground one    1
## 34785                       ground poor    1
## 34786                ground prematurely    1
## 34787                 ground references    1
## 34788                   ground reported    1
## 34789                     ground rolled    1
## 34790                    ground rolling    1
## 34791                        ground run    1
## 34792                      ground seven    1
## 34793                    ground several    1
## 34794                   ground shearing    1
## 34795                       ground shot    1
## 34796                   ground sideways    1
## 34797                     ground singer    1
## 34798                       ground slid    1
## 34799                      ground slide    1
## 34800                      ground speed    1
## 34801                      ground split    1
## 34802                    ground spoiler    1
## 34803                     ground strong    1
## 34804                    ground taesa's    1
## 34805                       ground tail    1
## 34806                        ground ten    1
## 34807                       ground that    1
## 34808                       ground then    1
## 34809                     ground thirty    1
## 34810                       ground this    1
## 34811                    ground touched    1
## 34812                  ground traveling    1
## 34813                 ground turbulence    1
## 34814                        ground u.s    1
## 34815                ground uncommanded    1
## 34816                      ground under    1
## 34817              ground unintentional    1
## 34818                      ground until    1
## 34819                   ground unwanted    1
## 34820                     ground varies    1
## 34821                   ground vehicles    1
## 34822                    ground warning    1
## 34823                    ground whereas    1
## 34824                        ground who    1
## 34825                       ground wire    1
## 34826                  ground witnesses    1
## 34827                       grounded on    1
## 34828                      grounding of    1
## 34829                     group's plane    1
## 34830                         group and    1
## 34831                  group attempting    1
## 34832                      group called    1
## 34833                          group on    1
## 34834                   group searching    1
## 34835                        group were    1
## 34836                groups hairdresser    1
## 34837                          grove 35    1
## 34838                       grove while    1
## 34839                  grozny reporting    1
## 34840                        gua musang    1
## 34841                   guadalajara and    1
## 34842                   guadalajara the    1
## 34843           guadalupe international    1
## 34844                       guajara bay    1
## 34845                    guam descended    1
## 34846                guam international    1
## 34847                           guam to    1
## 34848                 guangzhou hitting    1
## 34849                   guape mountains    1
## 34850                           guard a    1
## 34851                         guard and    1
## 34852                       guard block    1
## 34853                     guard crashed    1
## 34854               guard demonstration    1
## 34855                      guard lights    1
## 34856                          guard of    1
## 34857                        guard over    1
## 34858                       guard plane    1
## 34859                        guard ship    1
## 34860                          guard to    1
## 34861                       guardian in    1
## 34862                  guards including    1
## 34863                 guarulhos airport    1
## 34864                guatemala's aurora    1
## 34865                     guatemala the    1
## 34866                   guatiquia river    1
## 34867                            guay a    1
## 34868                          guay who    1
## 34869                   guayana crashed    1
## 34870              guayaquil procedural    1
## 34871                       gudgeon pin    1
## 34872                        guelmim in    1
## 34873                   guerillas while    1
## 34874                  guerrilla forces    1
## 34875                  guerrilla mortar    1
## 34876                        guests and    1
## 34877                      guiaba smoke    1
## 34878                       guidance as    1
## 34879                     guidance from    1
## 34880                     guidance full    1
## 34881                  guidance segment    1
## 34882                         guide and    1
## 34883                       guide found    1
## 34884                          guide in    1
## 34885                        guide them    1
## 34886                        guided the    1
## 34887                    guidelines and    1
## 34888           guidelines requirements    1
## 34889                    guidelines the    1
## 34890                  guidelines while    1
## 34891                       guiding the    1
## 34892                    guido cantelli    1
## 34893                 guildford airport    1
## 34894                     guildford but    1
## 34895                 guildford shortly    1
## 34896                         guilty of    1
## 34897                      guinea birds    1
## 34898                  guipavas airport    1
## 34899           guitangola neighborhood    1
## 34900                     guitarist for    1
## 34901                    guitarist jean    1
## 34902                  guizhou province    1
## 34903                            gulf 8    1
## 34904                          gulf and    1
## 34905                gulf approximately    1
## 34906                          gulf the    1
## 34907                        gulistan e    1
## 34908                        gullflex b    1
## 34909                      gun barrells    1
## 34910                        gun battle    1
## 34911                         gun boats    1
## 34912                      gunboats the    1
## 34913                    gunfire aboard    1
## 34914                      gunfire when    1
## 34915                       gunmen near    1
## 34916                       gunned then    1
## 34917                      gunned while    1
## 34918                       gunpoint to    1
## 34919                   gunpowder which    1
## 34920                          guns and    1
## 34921                     guns hijacked    1
## 34922                       gunung pike    1
## 34923                       gushed into    1
## 34924                        gust locks    1
## 34925                        gust while    1
## 34926                      gustav adolf    1
## 34927                         gusts and    1
## 34928                 gusts encountered    1
## 34929                    gusts possible    1
## 34930                      guthrie song    1
## 34931                   guyana's jungle    1
## 34932                       guyaquil in    1
## 34933            gwammaja approximately    1
## 34934                          gwps the    1
## 34935                       gwynant the    1
## 34936               gymnastics champion    1
## 34937                       gyro caused    1
## 34938                    gyro compasses    1
## 34939                      gyro crashed    1
## 34940                          gyro for    1
## 34941                  gyro instruments    1
## 34942                           gyro or    1
## 34943                       gyro system    1
## 34944                          gyro the    1
## 34945                         gyros and    1
## 34946                        gyrosyn by    1
## 34947                        gyumri the    1
## 34948                            h john    1
## 34949                           h lower    1
## 34950                               h m    1
## 34951                       ha airfield    1
## 34952                         habits of    1
## 34953                  habyarimana were    1
## 34954                hachijo navigation    1
## 34955                            had 19    1
## 34956                             had 2    1
## 34957                             had ã    1
## 34958                      had actually    1
## 34959                      had adequate    1
## 34960                        had agreed    1
## 34961                   had allegations    1
## 34962                       had allowed    1
## 34963                       had already    1
## 34964                           had any    1
## 34965                    had apparently    1
## 34966                     had attempted    1
## 34967                        had bought    1
## 34968                       had bounced    1
## 34969                         had built    1
## 34970                        had buried    1
## 34971                        had buzzed    1
## 34972                       had carried    1
## 34973                        had caught    1
## 34974                       had circled    1
## 34975                     had clearance    1
## 34976                       had cleared    1
## 34977                     had commenced    1
## 34978                  had considerably    1
## 34979                      had consumed    1
## 34980                     had contacted    1
## 34981                       had decided    1
## 34982                     had decreased    1
## 34983                      had deployed    1
## 34984                     had descended    1
## 34985                     had destroyed    1
## 34986                    had determined    1
## 34987                      had deviated    1
## 34988                          had died    1
## 34989                      had directly    1
## 34990                       had drifted    1
## 34991                       had dropped    1
## 34992                       had earlier    1
## 34993                   had erroneously    1
## 34994                    had experience    1
## 34995                   had experienced    1
## 34996                        had fallen    1
## 34997                          had five    1
## 34998                         had flown    1
## 34999                    had formations    1
## 35000                          had gone    1
## 35001                       had grooves    1
## 35002                         had heart    1
## 35003                           had his    1
## 35004                      had improved    1
## 35005                            had in    1
## 35006                 had inadvertently    1
## 35007                     had increased    1
## 35008                      had inflated    1
## 35009                  had insufficient    1
## 35010                          had left    1
## 35011                          had less    1
## 35012                        had little    1
## 35013                   had microscopic    1
## 35014                 had miscalculated    1
## 35015                         had moved    1
## 35016                      had official    1
## 35017                       had ordered    1
## 35018                    had originally    1
## 35019                    had originated    1
## 35020                      had overshot    1
## 35021                    had penetrated    1
## 35022                     had performed    1
## 35023                       had planned    1
## 35024                          had poor    1
## 35025                     had president    1
## 35026                    had previously    1
## 35027                     had proceeded    1
## 35028                        had pulled    1
## 35029                          had quit    1
## 35030                       had rapidly    1
## 35031                      had received    1
## 35032                      had recently    1
## 35033                       had reduced    1
## 35034                      had reported    1
## 35035                    had reportedly    1
## 35036                      had resulted    1
## 35037                       had retaken    1
## 35038                        had rolled    1
## 35039                       had runaway    1
## 35040                      had ruptured    1
## 35041                         had saved    1
## 35042                          had seat    1
## 35043                          had sent    1
## 35044                       had serious    1
## 35045                       had slipped    1
## 35046                        had slowed    1
## 35047                       had sounded    1
## 35048                       had stalled    1
## 35049                       had started    1
## 35050                        had stayed    1
## 35051                       had strayed    1
## 35052                        had struck    1
## 35053                         had their    1
## 35054                          had told    1
## 35055                       had trained    1
## 35056                          had used    1
## 35057                      had vertical    1
## 35058                        had worked    1
## 35059                       hadn't been    1
## 35060                          hãƒâ ãƒâ    1
## 35061                    hahaya airport    1
## 35062                            hail a    1
## 35063                          hail all    1
## 35064                          hail and    1
## 35065                      hail clogged    1
## 35066                   hail penetrated    1
## 35067                          hail was    1
## 35068                        hail which    1
## 35069                 hailstorm seconds    1
## 35070                     hainan island    1
## 35071                   hairdresser and    1
## 35072                 hairline fracture    1
## 35073                   haitien airport    1
## 35074                       haj pilgrim    1
## 35075                        halawa bay    1
## 35076                        hale boggs    1
## 35077                          half and    1
## 35078                      half circuit    1
## 35079                      half crashed    1
## 35080                        half crazy    1
## 35081                         half hour    1
## 35082                        half hours    1
## 35083                        half miles    1
## 35084                       half minute    1
## 35085                         half moon    1
## 35086                         half time    1
## 35087                        half years    1
## 35088                      halfway down    1
## 35089                       halfway the    1
## 35090                         halifax a    1
## 35091                       halifax the    1
## 35092               halkidiki peninsula    1
## 35093                       halla while    1
## 35094                         halves of    1
## 35095                      hambi bhabha    1
## 35096                   hammarskjãƒâ ld    1
## 35097                       hampered by    1
## 35098                     hampering the    1
## 35099                         han river    1
## 35100                           hand ac    1
## 35101                         hand ball    1
## 35102                      hand circles    1
## 35103                         hand flap    1
## 35104                         hand held    1
## 35105                   hand horizontal    1
## 35106                      hand inboard    1
## 35107                      hand luggage    1
## 35108                     hand outboard    1
## 35109                      hand pattern    1
## 35110                    hand propeller    1
## 35111                         hand seat    1
## 35112                       hand spiral    1
## 35113                          hand was    1
## 35114                    handbook after    1
## 35115                        handle and    1
## 35116                     handle before    1
## 35117                         handle in    1
## 35118                     handle rather    1
## 35119                       handle that    1
## 35120                      handle which    1
## 35121                    handler forgot    1
## 35122                      handlers the    1
## 35123                      handles from    1
## 35124                     handles while    1
## 35125                       handling an    1
## 35126                 handling building    1
## 35127          handling characteristics    1
## 35128                       handling or    1
## 35129                    hangar spacial    1
## 35130                        hangars at    1
## 35131                        hanged for    1
## 35132                    hanger crashed    1
## 35133                     hanger during    1
## 35134                        hanger the    1
## 35135                      hangers loss    1
## 35136                        hanging on    1
## 35137                    hanjiang river    1
## 35138                      hannibal the    1
## 35139                          hanoi 15    1
## 35140                     hanoi airport    1
## 35141                       hanoi north    1
## 35142                hanover visibility    1
## 35143                     hansie cronje    1
## 35144                        happened 1    1
## 35145                    happened about    1
## 35146                      happened and    1
## 35147                       happened as    1
## 35148                       happened at    1
## 35149                   happened during    1
## 35150                 happened durining    1
## 35151                      happened the    1
## 35152                            haq 64    1
## 35153                harbor immediately    1
## 35154                 harbor improperly    1
## 35155                         harbour a    1
## 35156                  harcourt airport    1
## 35157                      harcourt and    1
## 35158                          hard and    1
## 35159                      hard bounced    1
## 35160                      hard causing    1
## 35161                     hard clipping    1
## 35162                   hard collapsing    1
## 35163                         hard left    1
## 35164                        hard pilot    1
## 35165                       hard pulled    1
## 35166                        hard shell    1
## 35167                      hard skidded    1
## 35168                       harder lost    1
## 35169                  hardover crashed    1
## 35170                       hardover is    1
## 35171                      hardware was    1
## 35172                     haren airport    1
## 35173               haringvreter island    1
## 35174              hariri international    1
## 35175                       harness and    1
## 35176                     harold whitey    1
## 35177                       harrier jet    1
## 35178                  harrington after    1
## 35179                  harvard aircraft    1
## 35180                   harvard failure    1
## 35181                      harvard mark    1
## 35182                    harvard planes    1
## 35183                         harvre it    1
## 35184                          has also    1
## 35185                         has found    1
## 35186                          has made    1
## 35187                         has never    1
## 35188                           has not    1
## 35189                            has on    1
## 35190                      has replaced    1
## 35191                     has something    1
## 35192                hasaba marketplace    1
## 35193                          hasna in    1
## 35194                   hassani airport    1
## 35195                  hastily mustered    1
## 35196                          hatch in    1
## 35197                         hatch one    1
## 35198                         hatch the    1
## 35199                        hato nuevo    1
## 35200               hatta international    1
## 35201                    hattiesburg to    1
## 35202                     havana josãƒâ    1
## 35203                            have a    1
## 35204                           have an    1
## 35205                      have applied    1
## 35206                     have attached    1
## 35207                    have attempted    1
## 35208                    have awareness    1
## 35209                       have become    1
## 35210                        have blown    1
## 35211                       have broken    1
## 35212                      have brought    1
## 35213                     have collided    1
## 35214                         have come    1
## 35215                    have committed    1
## 35216                 have concentrated    1
## 35217                  have contributed    1
## 35218                    have corrected    1
## 35219                      have created    1
## 35220                      have decided    1
## 35221                    have depressed    1
## 35222                   have difficulty    1
## 35223                 have discontinued    1
## 35224                   have distracted    1
## 35225                         have done    1
## 35226                       have enough    1
## 35227                     have exceeded    1
## 35228                     have exploded    1
## 35229                   have floatation    1
## 35230                        have flown    1
## 35231                       have formed    1
## 35232                  have functioning    1
## 35233                         have gone    1
## 35234                          have her    1
## 35235                   have interfered    1
## 35236                       have killed    1
## 35237                        have known    1
## 35238                  have lifejackets    1
## 35239                     have mattered    1
## 35240                       have mental    1
## 35241                          have not    1
## 35242                        have occur    1
## 35243                have overestimated    1
## 35244                    have precluded    1
## 35245                     have provided    1
## 35246                        have radar    1
## 35247                      have reached    1
## 35248                         have read    1
## 35249                      have reduced    1
## 35250                     have required    1
## 35251                        have saved    1
## 35252                      have secured    1
## 35253                         have shot    1
## 35254                      have stopped    1
## 35255                       have struck    1
## 35256                     have switched    1
## 35257                        have taken    1
## 35258                       have thrown    1
## 35259                       have visual    1
## 35260                      havelian the    1
## 35261                havilland aircraft    1
## 35262                    havilland dhc3    1
## 35263                    havilland five    1
## 35264                         having an    1
## 35265                    having assumed    1
## 35266                    having clearly    1
## 35267                    having crossed    1
## 35268                        having cut    1
## 35269                  having descended    1
## 35270               having difficulties    1
## 35271                       having done    1
## 35272                having established    1
## 35273                   having extended    1
## 35274                    having located    1
## 35275                       having made    1
## 35276                   having mistaken    1
## 35277                         having no    1
## 35278                    having nothing    1
## 35279                     having passed    1
## 35280                 having positively    1
## 35281                  having technical    1
## 35282                         having to    1
## 35283                          hawaii a    1
## 35284                      hawaii after    1
## 35285              hawaii approximately    1
## 35286                    hawaii clipper    1
## 35287                        hawaii the    1
## 35288                      hawaii while    1
## 35289                      hawaiian the    1
## 35290                  hawk helicopters    1
## 35291                          hawk the    1
## 35292                        hawk which    1
## 35293                        hawkins 39    1
## 35294                  hawkshaw hawkins    1
## 35295                      hayfield and    1
## 35296                    hayti mountain    1
## 35297                    hazard crashed    1
## 35298                    hazard existed    1
## 35299                hazard information    1
## 35300                         hazard or    1
## 35301                hazardous behavior    1
## 35302              hazardous conditions    1
## 35303                  hazardous rudder    1
## 35304                   hazardous worse    1
## 35305                       hazards the    1
## 35306                           haze at    1
## 35307                       haze rising    1
## 35308                        haze smoke    1
## 35309                            he 111    1
## 35310                       he actually    1
## 35311                       he airplane    1
## 35312                        he allowed    1
## 35313                     he apparently    1
## 35314                       he appeared    1
## 35315                        he applied    1
## 35316                          he armed    1
## 35317                         he banked    1
## 35318                         he became    1
## 35319                          he began    1
## 35320                          he chose    1
## 35321                      he commented    1
## 35322                      he continued    1
## 35323                            he cut    1
## 35324                        he delayed    1
## 35325                       he departed    1
## 35326                           he died    1
## 35327                       he diverted    1
## 35328                    he established    1
## 35329                        he falsely    1
## 35330                          he found    1
## 35331                         he ground    1
## 35332                     he helicopter    1
## 35333                            he hit    1
## 35334                     he horizontal    1
## 35335                        he ignored    1
## 35336                  he inappropriate    1
## 35337                           he just    1
## 35338                         he killed    1
## 35339                        he knocked    1
## 35340                         he landed    1
## 35341                        he lowered    1
## 35342                           he made    1
## 35343                            he max    1
## 35344                            he may    1
## 35345                            he met    1
## 35346                  he miscalculated    1
## 35347                      he misjudged    1
## 35348                        he misread    1
## 35349                          he never    1
## 35350                       he observed    1
## 35351                        he omitted    1
## 35352                        he ordered    1
## 35353                       he overshot    1
## 35354                      he performed    1
## 35355                        he pitched    1
## 35356                         he pulled    1
## 35357                         he raised    1
## 35358                            he ran    1
## 35359                             he re    1
## 35360                       he realized    1
## 35361                        he refused    1
## 35362                       he remained    1
## 35363                       he repeated    1
## 35364                      he responded    1
## 35365                       he reversed    1
## 35366                           he said    1
## 35367                        he stabbed    1
## 35368                         he stated    1
## 35369                      he succumbed    1
## 35370                           he took    1
## 35371                         he turned    1
## 35372                         he united    1
## 35373                         he wanted    1
## 35374                          head and    1
## 35375                         head back    1
## 35376                       head caused    1
## 35377                         head heat    1
## 35378                      head heaters    1
## 35379                       head number    1
## 35380                           head of    1
## 35381                    head standpipe    1
## 35382                           head to    1
## 35383                         headed by    1
## 35384                      headed north    1
## 35385                     headed toward    1
## 35386                    headed towards    1
## 35387                       headed west    1
## 35388                     heading after    1
## 35389                  heading airspeed    1
## 35390                      heading away    1
## 35391                      heading back    1
## 35392                      heading flew    1
## 35393                    heading flying    1
## 35394                      heading from    1
## 35395                      heading home    1
## 35396                heading indication    1
## 35397                      heading into    1
## 35398                        heading of    1
## 35399                  heading opposite    1
## 35400                  heading sikorsky    1
## 35401                      heading that    1
## 35402                    heading toward    1
## 35403                     heading until    1
## 35404                      heading west    1
## 35405                      heading when    1
## 35406                   heading without    1
## 35407                      headings and    1
## 35408                     headlights of    1
## 35409                  headquarter near    1
## 35410                          heads by    1
## 35411                          heads no    1
## 35412                headwind component    1
## 35413                       headwind in    1
## 35414                    headwinds over    1
## 35415                     headwinds the    1
## 35416                     health center    1
## 35417                  health condition    1
## 35418                       healy while    1
## 35419                          hear one    1
## 35420                          hear the    1
## 35421                           heard a    1
## 35422                          heard as    1
## 35423                     heard because    1
## 35424                          heard in    1
## 35425                    heard shouting    1
## 35426                         heard two    1
## 35427                     heard unusual    1
## 35428                         hearing a    1
## 35429                        hearing an    1
## 35430                       hearing the    1
## 35431                        hearst who    1
## 35432                   heart condition    1
## 35433                     heart trouble    1
## 35434                     heat controls    1
## 35435                          heat due    1
## 35436                    heat exchanger    1
## 35437                          heat its    1
## 35438                          heat not    1
## 35439                      heat seeking    1
## 35440                       heat system    1
## 35441                        heated and    1
## 35442                        heater air    1
## 35443                        heater but    1
## 35444                heater compartment    1
## 35445                     heater shroud    1
## 35446                     heater system    1
## 35447                     heater though    1
## 35448                       heaters the    1
## 35449               heathfield airfield    1
## 35450                    heating system    1
## 35451                 heavier touchdown    1
## 35452                heavily customized    1
## 35453                      heavily iced    1
## 35454                   heavily insured    1
## 35455                 heavily populated    1
## 35456                     heavily short    1
## 35457                  heavily timbered    1
## 35458                        heavily to    1
## 35459                      heavily wood    1
## 35460                    heavily wooded    1
## 35461                      heaviness of    1
## 35462                heavy accumulation    1
## 35463                    heavy aircraft    1
## 35464                         heavy and    1
## 35465                       heavy cargo    1
## 35466                      heavy clouds    1
## 35467               heavy concentration    1
## 35468                     heavy control    1
## 35469                       heavy cross    1
## 35470                   heavy crosswind    1
## 35471                     heavy deposit    1
## 35472                        heavy down    1
## 35473                       heavy earth    1
## 35474                    heavy fighting    1
## 35475                    heavy freezing    1
## 35476                           heavy g    1
## 35477                      heavy ground    1
## 35478                         heavy jet    1
## 35479                       heavy layer    1
## 35480                     heavy machine    1
## 35481                       heavy metal    1
## 35482                     heavy monsoon    1
## 35483               heavy precipitation    1
## 35484                       heavy rains    1
## 35485                       heavy smoke    1
## 35486                    heavy snowfall    1
## 35487                       heavy storm    1
## 35488                      heavy timber    1
## 35489                        heavy user    1
## 35490                   heavy vibration    1
## 35491                       heavy water    1
## 35492                     heavy weather    1
## 35493                       heavy winds    1
## 35494                    heavy workload    1
## 35495                         hedge and    1
## 35496                        hedland in    1
## 35497                       hedland the    1
## 35498                          heed air    1
## 35499                         heed gpws    1
## 35500                     heed warnings    1
## 35501                       heeding the    1
## 35502                           heel of    1
## 35503                          heels on    1
## 35504                      heho airport    1
## 35505                          heho due    1
## 35506                          heho the    1
## 35507                   height although    1
## 35508                 height assessment    1
## 35509                         height at    1
## 35510                      height broke    1
## 35511                         height by    1
## 35512                    height clipped    1
## 35513                    height crashed    1
## 35514                height disregarded    1
## 35515                        height for    1
## 35516                         height he    1
## 35517                     height higher    1
## 35518                        height hit    1
## 35519                height immediately    1
## 35520                   height improper    1
## 35521                  height indicated    1
## 35522                         height it    1
## 35523                        height not    1
## 35524                         height on    1
## 35525                 height prescribed    1
## 35526                    height quickly    1
## 35527                    height shortly    1
## 35528                       height that    1
## 35529                       height then    1
## 35530                       height this    1
## 35531                    height touched    1
## 35532                       height were    1
## 35533                     height whilst    1
## 35534                       heights the    1
## 35535                         heinz iii    1
## 35536                           held by    1
## 35537                          held for    1
## 35538                           held in    1
## 35539                           held it    1
## 35540                      held surface    1
## 35541                          held the    1
## 35542                       helen blair    1
## 35543                    helen hokinson    1
## 35544                         helena at    1
## 35545                        helena the    1
## 35546                  helgoland island    1
## 35547              helicocopter seventy    1
## 35548               helicopoter crashed    1
## 35549               helicopter's blades    1
## 35550              helicopter's descent    1
## 35551          helicopter's performance    1
## 35552            helicopter's proximity    1
## 35553                helicopter's right    1
## 35554                helicopter's rotor    1
## 35555                helicopter's skids    1
## 35556                      helicopter a    1
## 35557             helicopter apparently    1
## 35558                     helicopter as    1
## 35559                     helicopter at    1
## 35560            helicopter autorotated    1
## 35561                 helicopter before    1
## 35562               helicopter belonged    1
## 35563                  helicopter bound    1
## 35564                helicopter carried    1
## 35565                 helicopter cashed    1
## 35566                 helicopter caught    1
## 35567                   helicopter cccp    1
## 35568              helicopter certified    1
## 35569                helicopter clipped    1
## 35570               helicopter collided    1
## 35571           helicopter contributing    1
## 35572                helicopter control    1
## 35573              helicopter developed    1
## 35574            helicopter disappeared    1
## 35575               helicopter disaster    1
## 35576                   helicopter down    1
## 35577                    helicopter due    1
## 35578                 helicopter during    1
## 35579            helicopter encountered    1
## 35580               helicopter exceeded    1
## 35581           helicopter experiencing    1
## 35582               helicopter exploded    1
## 35583                   helicopter fell    1
## 35584                 helicopter flying    1
## 35585                 helicopter headed    1
## 35586                    helicopter hit    1
## 35587              helicopter including    1
## 35588                   helicopter lost    1
## 35589                    helicopter may    1
## 35590                   helicopter more    1
## 35591                 helicopter n124nh    1
## 35592                 helicopter nascar    1
## 35593                     helicopter no    1
## 35594        helicopter photojournalist    1
## 35595                  helicopter pilot    1
## 35596                helicopter piloted    1
## 35597                 helicopter pilots    1
## 35598                helicopter pioneer    1
## 35599                helicopter pitched    1
## 35600                 helicopter rolled    1
## 35601                helicopter sending    1
## 35602              helicopter separated    1
## 35603                   helicopter took    1
## 35604                  helicopter tried    1
## 35605         helicopter uncontrollable    1
## 35606                   helicopter when    1
## 35607            helicopter windshields    1
## 35608               helicopter wreckage    1
## 35609                     helicopterã â    1
## 35610                  helicopters cart    1
## 35611               helicopters filming    1
## 35612                helicopters flying    1
## 35613                   helicopters nor    1
## 35614                   helicopters one    1
## 35615                  helicopters shot    1
## 35616                helicopters struck    1
## 35617          helicopters transporting    1
## 35618                   helicopters was    1
## 35619                  helicopters were    1
## 35620                  helideck located    1
## 35621                       helideck of    1
## 35622              helilcopter collided    1
## 35623              helipad contributing    1
## 35624                       helipad six    1
## 35625                  heliport fatigue    1
## 35626                      helitech the    1
## 35627                         hell five    1
## 35628                      heller field    1
## 35629                    hellisheioi in    1
## 35630                    helmos located    1
## 35631                    help francisco    1
## 35632                           help he    1
## 35633                           help of    1
## 35634                       help people    1
## 35635                       help pilots    1
## 35636                        help prior    1
## 35637                       helped make    1
## 35638                        helped one    1
## 35639                     helped rescue    1
## 35640                         helped to    1
## 35641                     helping other    1
## 35642                          helps to    1
## 35643                    hemorrhage the    1
## 35644            henderson.say critical    1
## 35645                  hendrick failure    1
## 35646              hendrick motorsports    1
## 35647                       henry while    1
## 35648                           her and    1
## 35649                          her back    1
## 35650                          her body    1
## 35651                      her children    1
## 35652                         her court    1
## 35653                          her crew    1
## 35654                      her daughter    1
## 35655                      her director    1
## 35656                          her fear    1
## 35657                          her five    1
## 35658                        her flight    1
## 35659                          her from    1
## 35660                         her house    1
## 35661                          her hull    1
## 35662                            her in    1
## 35663                        her infant    1
## 35664                      her injuries    1
## 35665        her injuries.investigators    1
## 35666                          her life    1
## 35667                            her on    1
## 35668                           her out    1
## 35669                      her pressure    1
## 35670                     her publicist    1
## 35671                          her seat    1
## 35672                      her seatbelt    1
## 35673                          her shoe    1
## 35674                        her sister    1
## 35675                          her skin    1
## 35676                            her so    1
## 35677                           her the    1
## 35678                          her they    1
## 35679                          her time    1
## 35680                      her training    1
## 35681                     her traveling    1
## 35682                         herat but    1
## 35683                          herat in    1
## 35684                   herman mountain    1
## 35685                       hermosa the    1
## 35686                          hero and    1
## 35687                    heroic rescues    1
## 35688                  herrera airfield    1
## 35689                   herself koepcke    1
## 35690                     hershe's last    1
## 35691                         hesse who    1
## 35692                 hestfjall located    1
## 35693                          het ende    1
## 35694                            hi lok    1
## 35695                   hickam airfield    1
## 35696                       hidden area    1
## 35697                          hide the    1
## 35698                        high above    1
## 35699                          high air    1
## 35700                     high airspeed    1
## 35701                      high ambient    1
## 35702                        high andes    1
## 35703                           high at    1
## 35704                         high bank    1
## 35705                       high bounce    1
## 35706                      high closure    1
## 35707                       high cruise    1
## 35708                         high drag    1
## 35709                       high engine    1
## 35710                    high explosive    1
## 35711                       high failed    1
## 35712                            high g    1
## 35713                    high ghatkopar    1
## 35714                    high indicated    1
## 35715                         high into    1
## 35716                       high levels    1
## 35717                     high mountain    1
## 35718                  high mountainous    1
## 35719                           high of    1
## 35720                           high on    1
## 35721                         high peak    1
## 35722                        high pitch    1
## 35723                         high pole    1
## 35724                          high rpm    1
## 35725                     high school's    1
## 35726                         high seas    1
## 35727                  high sensitivity    1
## 35728                       high sierra    1
## 35729                       high single    1
## 35730                         high slip    1
## 35731                      high stalled    1
## 35732                     high stresses    1
## 35733                  high temperature    1
## 35734                 high transmission    1
## 35735                       high veered    1
## 35736                     high vertical    1
## 35737                          high vfr    1
## 35738                        high water    1
## 35739                        high which    1
## 35740                   higher airspeed    1
## 35741                  higher altitudes    1
## 35742                     higher engine    1
## 35743                  higher intensity    1
## 35744                    higher leading    1
## 35745                  higher mountains    1
## 35746                       higher when    1
## 35747                     highest death    1
## 35748                      highest peak    1
## 35749                    highest single    1
## 35750                      highlands in    1
## 35751                 highlands shortly    1
## 35752                  highly unbalance    1
## 35753                     highway after    1
## 35754                    highway before    1
## 35755                       highway for    1
## 35756                  highway parallel    1
## 35757                   highway shortly    1
## 35758                       highway six    1
## 35759                   highway traffic    1
## 35760                     highway where    1
## 35761                     hijack flight    1
## 35762               hijacked detonation    1
## 35763                       hijacked in    1
## 35764                      hijacked two    1
## 35765                        hijacker a    1
## 35766                  hijacker crashed    1
## 35767                      hijacker did    1
## 35768                  hijacker entered    1
## 35769                   hijacker killed    1
## 35770                   hijacker robbed    1
## 35771                     hijacker shot    1
## 35772                     hijacker this    1
## 35773                      hijacker was    1
## 35774                   hijackers after    1
## 35775                     hijackers and    1
## 35776               hijackers continued    1
## 35777                hijackers exploded    1
## 35778                  hijackers fought    1
## 35779                      hijackers in    1
## 35780                  hijackers opened    1
## 35781                hijackers survived    1
## 35782                    hijackers told    1
## 35783                     hijacking and    1
## 35784                 hijacking crashed    1
## 35785                  hijacking lasted    1
## 35786                     hijacking two    1
## 35787                     hijacking was    1
## 35788                    hilal mountain    1
## 35789                        hill 1,500    1
## 35790                           hill 15    1
## 35791                           hill 20    1
## 35792                           hill 22    1
## 35793                         hill 25km    1
## 35794                          hill 3.8    1
## 35795                            hill 4    1
## 35796                          hill 450    1
## 35797                           hill 46    1
## 35798                            hill 5    1
## 35799                          hill 600    1
## 35800                           hill 70    1
## 35801                            hill a    1
## 35802                        hill about    1
## 35803                     hill believed    1
## 35804                     hill decision    1
## 35805                    hill descended    1
## 35806                     hill exploded    1
## 35807                         hill flew    1
## 35808                    hill following    1
## 35809                        hill icing    1
## 35810                     hill improper    1
## 35811                      hill loosing    1
## 35812                     hill mountain    1
## 35813                          hill non    1
## 35814                    hill northwest    1
## 35815                     hill obscured    1
## 35816                           hill on    1
## 35817                          hill one    1
## 35818                   hill overloaded    1
## 35819                     hill possible    1
## 35820                      hill pulling    1
## 35821                   hill separation    1
## 35822                     hill suffered    1
## 35823                         hill thus    1
## 35824                      hill towards    1
## 35825                        hill which    1
## 35826                     hill wreckage    1
## 35827                         hills and    1
## 35828                      hills during    1
## 35829                        hills near    1
## 35830                       hills pilot    1
## 35831                        hills that    1
## 35832                       hillside 24    1
## 35833                        hillside 3    1
## 35834                       hillside 32    1
## 35835                        hillside 4    1
## 35836                      hillside 500    1
## 35837                        hillside 7    1
## 35838                      hillside and    1
## 35839             hillside insufficient    1
## 35840                       hillside on    1
## 35841                     hillside road    1
## 35842                  hillside several    1
## 35843                  hillside shortly    1
## 35844                     hillside soon    1
## 35845                 hillside suffered    1
## 35846                    hillside woods    1
## 35847                     hilltop about    1
## 35848                       hilltop and    1
## 35849                      hilly wooded    1
## 35850              hilton international    1
## 35851                        him across    1
## 35852                           him and    1
## 35853                       him because    1
## 35854                       him falsely    1
## 35855                           him for    1
## 35856                  him insufficient    1
## 35857                          him many    1
## 35858                  him subsequently    1
## 35859                         him twice    1
## 35860                himalaya mountains    1
## 35861                      himalayas at    1
## 35862                     himalayas the    1
## 35863                   himalayas under    1
## 35864                   himalayas while    1
## 35865                    himalaysas and    1
## 35866                       himself but    1
## 35867                      himself into    1
## 35868                      himself shot    1
## 35869                       himself was    1
## 35870                hindenburg's outer    1
## 35871                 hindenburg caught    1
## 35872                      hindered any    1
## 35873                        hinge bolt    1
## 35874                       hinge bolts    1
## 35875                      hinge moment    1
## 35876                    hinge movement    1
## 35877                       hinno while    1
## 35878                      hire another    1
## 35879                 hirsthals denmark    1
## 35880                    his accomplice    1
## 35881                        his action    1
## 35882                       his actions    1
## 35883                           his adf    1
## 35884                          his aide    1
## 35885                      his aircraft    1
## 35886                     his alternate    1
## 35887                     his altimeter    1
## 35888                    his altimeters    1
## 35889                       his attempt    1
## 35890                      his attempts    1
## 35891                     his attention    1
## 35892                     his authority    1
## 35893                          his back    1
## 35894                        his backup    1
## 35895                       his balance    1
## 35896                          his band    1
## 35897                           his bar    1
## 35898                          his base    1
## 35899                       his bearing    1
## 35900                      his bearings    1
## 35901                     his bearingsã    1
## 35902                      his becoming    1
## 35903                      his birthday    1
## 35904                         his blood    1
## 35905                          his body    1
## 35906                    his capability    1
## 35907                       his captain    1
## 35908                         his child    1
## 35909                        his choice    1
## 35910                     his clearance    1
## 35911                      his climbing    1
## 35912                       his cockpit    1
## 35913                       his concern    1
## 35914                      his controls    1
## 35915                     his copilot's    1
## 35916                        his course    1
## 35917                          his crew    1
## 35918                      his daughter    1
## 35919                       his descent    1
## 35920                        his desire    1
## 35921                   his destination    1
## 35922                     his deviation    1
## 35923                     his direction    1
## 35924                    his directions    1
## 35925                      his distance    1
## 35926                        his diving    1
## 35927                          his duty    1
## 35928                     his entourage    1
## 35929                         his exact    1
## 35930                     his exceeding    1
## 35931                         his false    1
## 35932                        his family    1
## 35933                          his feet    1
## 35934                         his first    1
## 35935                        his friend    1
## 35936                          his fuel    1
## 35937                            his go    1
## 35938                         his great    1
## 35939                       his harness    1
## 35940                        his having    1
## 35941                         his heels    1
## 35942                        his height    1
## 35943                         his honor    1
## 35944                    his horizontal    1
## 35945                           his ifr    1
## 35946                      his improper    1
## 35947                  his instructions    1
## 35948                    his instructor    1
## 35949                    his instrument    1
## 35950                   his instruments    1
## 35951                   his intentional    1
## 35952                    his intentions    1
## 35953                  his intervention    1
## 35954                      his japanese    1
## 35955                     his knowledge    1
## 35956                           his lap    1
## 35957                          his last    1
## 35958                          his left    1
## 35959                          his loss    1
## 35960                      his lyricist    1
## 35961                       his manager    1
## 35962                       his medical    1
## 35963                          his mind    1
## 35964                       his mistake    1
## 35965                          his more    1
## 35966                      his mother's    1
## 35967                          his name    1
## 35968                    his operations    1
## 35969                   his orientation    1
## 35970                      his original    1
## 35971                     his parachute    1
## 35972                          his part    1
## 35973                       his partner    1
## 35974                       his pilot's    1
## 35975                        his pilots    1
## 35976                         his plans    1
## 35977                       his precise    1
## 35978                     his preflight    1
## 35979                      his pressure    1
## 35980               his requalification    1
## 35981                     his resultant    1
## 35982                         his right    1
## 35983                        his rudder    1
## 35984                        his runway    1
## 35985                       his russian    1
## 35986                      his seatbelt    1
## 35987                         his sense    1
## 35988                          his side    1
## 35989                         his speed    1
## 35990                       his student    1
## 35991                    his supervisor    1
## 35992                         his undue    1
## 35993                        his vallet    1
## 35994                       his weather    1
## 35995                       his wingman    1
## 35996                          his work    1
## 35997                      hisinchu and    1
## 35998              history asymmetrical    1
## 35999                       history kyu    1
## 36000                       history one    1
## 36001                       history two    1
## 36002                        hit 15,500    1
## 36003                      hit apporach    1
## 36004                      hit approach    1
## 36005                         hit avala    1
## 36006                       hit caparao    1
## 36007                         hit cloud    1
## 36008                    hit concepcion    1
## 36009                  hit construction    1
## 36010                       hit crystal    1
## 36011                        hit debris    1
## 36012                            hit el    1
## 36013                          hit hong    1
## 36014                    hit navigation    1
## 36015                        hit nearby    1
## 36016                          hit pico    1
## 36017                        hit rising    1
## 36018                        hit severe    1
## 36019                          hit some    1
## 36020                            hit st    1
## 36021                      hit surveyor    1
## 36022                          hit tail    1
## 36023                    hit turbulence    1
## 36024                           hit two    1
## 36025                  hitting electric    1
## 36026                       hitting pas    1
## 36027                      hitting some    1
## 36028                       hitting two    1
## 36029                           hiva ou    1
## 36030                            hk 107    1
## 36031                            hk 134    1
## 36032                            ho chi    1
## 36033                hobart inadvertent    1
## 36034                       hockey club    1
## 36035                     hoikow hainan    1
## 36036                       hokinson 56    1
## 36037                           hold at    1
## 36038                   hold consisting    1
## 36039                      hold crashed    1
## 36040                           hold in    1
## 36041                           hold is    1
## 36042                          hold led    1
## 36043                           hold of    1
## 36044                         hold onto    1
## 36045                       hold placed    1
## 36046                        hold short    1
## 36047                    hold terrorist    1
## 36048                        hold until    1
## 36049                          hold was    1
## 36050                        hold while    1
## 36051                         holding a    1
## 36052                 holding clearance    1
## 36053                      holding onto    1
## 36054                      holding over    1
## 36055                  holding patterns    1
## 36056                holding procedures    1
## 36057                      hole airport    1
## 36058                     hole illusion    1
## 36059                         hole lost    1
## 36060                          hole was    1
## 36061                          holed in    1
## 36062                    holes directly    1
## 36063                       holes there    1
## 36064                      holiday were    1
## 36065                 holidays possibly    1
## 36066                          holly 22    1
## 36067                   holly chartered    1
## 36068                 hollywood jeweler    1
## 36069                   holston located    1
## 36070                        holy cross    1
## 36071                       holy island    1
## 36072                        home after    1
## 36073                         home base    1
## 36074                     home cemetery    1
## 36075                      home defence    1
## 36076                      home factors    1
## 36077                          home ill    1
## 36078                       homebase to    1
## 36079                   homebuilt plane    1
## 36080                          homed in    1
## 36081                  homeless shortly    1
## 36082                homemade explosive    1
## 36083                homemade parachute    1
## 36084                     homer airport    1
## 36085                          homer at    1
## 36086                         homer the    1
## 36087                           homes a    1
## 36088                      homes before    1
## 36089                     homes killing    1
## 36090                        homes lost    1
## 36091                       homes while    1
## 36092                      homicide for    1
## 36093                      homicide the    1
## 36094                     homing beacon    1
## 36095              hommelfjell mountain    1
## 36096                    hommelvika bay    1
## 36097                   homogeneous fog    1
## 36098                        honolulu 5    1
## 36099                    honolulu after    1
## 36100                      honolulu for    1
## 36101                   honolulu hawaii    1
## 36102             honolulu navigational    1
## 36103                       honolulu on    1
## 36104                      honolulu the    1
## 36105                 honolulu wreckage    1
## 36106                          honor en    1
## 36107                          honor of    1
## 36108                  honorãƒâ airport    1
## 36109                     hooghly river    1
## 36110                hooters restaurant    1
## 36111                        hoover dam    1
## 36112                         hope lost    1
## 36113                     hora mountain    1
## 36114                     horizon after    1
## 36115                  horizon airspeed    1
## 36116                   horizon failure    1
## 36117                       horizon for    1
## 36118                       horizon not    1
## 36119                  horizon possible    1
## 36120                     horizon radar    1
## 36121                     horizon which    1
## 36122                      horizons and    1
## 36123                      horizons but    1
## 36124            horizons malfunctioned    1
## 36125               horizontal distance    1
## 36126                   horizontal spar    1
## 36127            horizontal stabilizers    1
## 36128                horizontal surface    1
## 36129                     horizonte the    1
## 36130                     horn assembly    1
## 36131                      horn sounded    1
## 36132                 horqueta mountain    1
## 36133                        horse farm    1
## 36134                     horta control    1
## 36135                       horta faial    1
## 36136                        horus shot    1
## 36137                      hose crashed    1
## 36138                           hose on    1
## 36139                        hoskins en    1
## 36140                    hospital after    1
## 36141                      hospital all    1
## 36142                  hospital contact    1
## 36143                      hospital due    1
## 36144                    hospital while    1
## 36145                         host dean    1
## 36146                    hostage rescue    1
## 36147                   hostages caught    1
## 36148                   hostages killed    1
## 36149                    hostile action    1
## 36150                   hostilities and    1
## 36151                         hot brake    1
## 36152                         hot metal    1
## 36153                      hot tailpipe    1
## 36154                     hotel's lobby    1
## 36155                     hotel complex    1
## 36156                    hotel impacted    1
## 36157                      hotel lights    1
## 36158                     hotel parking    1
## 36159                     hotel shortly    1
## 36160                      hotel worker    1
## 36161                            hour a    1
## 36162                   hour destroying    1
## 36163                      hour earlier    1
## 36164                         hour gale    1
## 36165                      hour journey    1
## 36166                        hour later    1
## 36167                    hour scheduled    1
## 36168                        hour twice    1
## 36169                       hour unable    1
## 36170                         hour wait    1
## 36171                        hour while    1
## 36172                         hours all    1
## 36173                          hours an    1
## 36174                         hours and    1
## 36175                          hours at    1
## 36176                     hours crashed    1
## 36177                      hours during    1
## 36178                      hours flying    1
## 36179                         hours had    1
## 36180                 hours intentional    1
## 36181                   hours meanwhile    1
## 36182                         hours sas    1
## 36183                       hours sleep    1
## 36184                     hours through    1
## 36185                     hours waiting    1
## 36186                        hours when    1
## 36187                       hours while    1
## 36188                        hours with    1
## 36189                           house a    1
## 36190                       house after    1
## 36191                         house all    1
## 36192                          house an    1
## 36193                          house as    1
## 36194                      house before    1
## 36195                    house bursting    1
## 36196                      house during    1
## 36197                      house failed    1
## 36198                       house first    1
## 36199                    house improper    1
## 36200                      house kenyan    1
## 36201                       house lodge    1
## 36202                    house majority    1
## 36203                       house under    1
## 36204                     house weather    1
## 36205                      houses 4,980    1
## 36206                          houses 8    1
## 36207                      houses after    1
## 36208                         houses at    1
## 36209                     houses before    1
## 36210                      houses burnt    1
## 36211                   houses bursting    1
## 36212                     houses coming    1
## 36213                houses disappeared    1
## 36214                    houses failure    1
## 36215                   houses fracture    1
## 36216                    houses located    1
## 36217                         houses on    1
## 36218                      houses pilot    1
## 36219                    houses remains    1
## 36220                       houses shot    1
## 36221                    houses skidded    1
## 36222                        houses two    1
## 36223                        houses use    1
## 36224                      housing area    1
## 36225                      housing camp    1
## 36226                    housing colony    1
## 36227                   housing complex    1
## 36228                       housing due    1
## 36229               housing electronics    1
## 36230                        housing of    1
## 36231                    housing offset    1
## 36232                   housing project    1
## 36233                   houston because    1
## 36234                  houston hospital    1
## 36235                  houston national    1
## 36236                    houston tracon    1
## 36237                      hovering low    1
## 36238                          how many    1
## 36239                       how serious    1
## 36240                         howard 42    1
## 36241                       howard hunt    1
## 36242                     howard keefer    1
## 36243                       howard were    1
## 36244                         however 7    1
## 36245                    however agreed    1
## 36246                        however as    1
## 36247                  however brussels    1
## 36248                     however claim    1
## 36249                   however control    1
## 36250                   however crashed    1
## 36251                    however design    1
## 36252                    however flight    1
## 36253                        however he    1
## 36254                       however his    1
## 36255                   however instead    1
## 36256                        however is    1
## 36257                        however no    1
## 36258                       however not    1
## 36259                    however orders    1
## 36260                      however they    1
## 36261                   hoyos mountains    1
## 36262                        hp turbine    1
## 36263                hsinchu instrument    1
## 36264                   hsinchu shortly    1
## 36265                    huambo airport    1
## 36266                     huambo during    1
## 36267                      huambo heavy    1
## 36268                   huanacota about    1
## 36269                   huanuco because    1
## 36270                    huanuco midair    1
## 36271                huaricanga crashed    1
## 36272                  huaricanga while    1
## 36273                       huayna hill    1
## 36274                       huayna pass    1
## 36275                           hub for    1
## 36276                            hub on    1
## 36277                      hub resulted    1
## 36278                           hub the    1
## 36279              hubermann celibrated    1
## 36280                        hudbay oil    1
## 36281                       hudson were    1
## 36282                   hudsonriver and    1
## 36283                         hughes 35    1
## 36284                        hughes was    1
## 36285                          huila at    1
## 36286                    huirotico hill    1
## 36287                      hull rupture    1
## 36288                     hull ruptured    1
## 36289                    hull structure    1
## 36290                       human error    1
## 36291                 human fallibility    1
## 36292                        human life    1
## 36293                    human response    1
## 36294                      human vision    1
## 36295                  humanitarian aid    1
## 36296                humanitarian goods    1
## 36297              humanitarian mission    1
## 36298               humanitarian relief    1
## 36299                        humid salt    1
## 36300                    humilikon died    1
## 36301                     humorist will    1
## 36302                       humpy ridge    1
## 36303                     hundred forty    1
## 36304                      hundred four    1
## 36305                    hundred meters    1
## 36306                     hundred miles    1
## 36307                     hundred sixty    1
## 36308                  hundred thirteen    1
## 36309                    hundred twelve    1
## 36310                    hundred twenty    1
## 36311                     hundred yards    1
## 36312                       hundreds of    1
## 36313                           hung on    1
## 36314                  hungarian border    1
## 36315             hungarian journalists    1
## 36316                         hunt also    1
## 36317                      hunt dorothy    1
## 36318                        hunters to    1
## 36319                   hunting charter    1
## 36320                   huntington west    1
## 36321                    huntsville was    1
## 36322                         huon gulf    1
## 36323                 hurricane crashed    1
## 36324                    hurricane emmy    1
## 36325                      hurricane is    1
## 36326                   hurricane matmo    1
## 36327                    hurricane nari    1
## 36328                 hurried departure    1
## 36329                  hurry electrical    1
## 36330                       hurt eleven    1
## 36331                          hurt the    1
## 36332                       husband and    1
## 36333                       husband but    1
## 36334                  husband remained    1
## 36335                      hussain abad    1
## 36336                       hutska hora    1
## 36337                          hyatt 46    1
## 36338                hydraulic actuator    1
## 36339                    hydraulic back    1
## 36340                 hydraulic circuit    1
## 36341                 hydraulic control    1
## 36342            hydraulic difficulties    1
## 36343                    hydraulic gust    1
## 36344                    hydraulic line    1
## 36345                   hydraulic pitch    1
## 36346                   hydraulic power    1
## 36347                hydraulic pressure    1
## 36348                hydraulic problems    1
## 36349                   hydraulic pumps    1
## 36350                    hydraulic unit    1
## 36351                    hydraulics and    1
## 36352                hydraulics systems    1
## 36353                  hydraulics where    1
## 36354             hydroelectric project    1
## 36355                  hydrogen airbags    1
## 36356                       hydrogen or    1
## 36357                       hydrogen to    1
## 36358                  hydroplaning due    1
## 36359                   hydroplaning of    1
## 36360                    hymettus while    1
## 36361                      hymittus the    1
## 36362                 hypobaric hypoxia    1
## 36363                       hypoxia due    1
## 36364                     hypoxia prior    1
## 36365                             i ace    1
## 36366                          i airway    1
## 36367                         i counted    1
## 36368                           i never    1
## 36369                             i was    1
## 36370                          i.e high    1
## 36371                      i.e inverted    1
## 36372                      ibicarãƒâ 25    1
## 36373                             ice 4    1
## 36374                      ice accreted    1
## 36375                   ice accumulated    1
## 36376                  ice accumulation    1
## 36377                      ice additive    1
## 36378                        ice before    1
## 36379                      ice breaking    1
## 36380                         ice build    1
## 36381                           ice cap    1
## 36382                    ice capability    1
## 36383                         ice cream    1
## 36384                      ice crystals    1
## 36385                       ice failure    1
## 36386                          ice fall    1
## 36387                          ice floe    1
## 36388                     ice following    1
## 36389                          ice haze    1
## 36390                        ice inside    1
## 36391                          ice into    1
## 36392                            ice is    1
## 36393                           ice jam    1
## 36394                   ice observation    1
## 36395                     ice pollution    1
## 36396                     ice propeller    1
## 36397                    ice protection    1
## 36398                      ice remained    1
## 36399                       ice stalled    1
## 36400                         ice storm    1
## 36401                         ice strip    1
## 36402                        ice struck    1
## 36403                          ice that    1
## 36404                         ice valve    1
## 36405                         ice which    1
## 36406                         ice while    1
## 36407                        ice within    1
## 36408                     iced airframe    1
## 36409                         iced over    1
## 36410                          iced two    1
## 36411                    iceland during    1
## 36412                        iceland in    1
## 36413                        iceland to    1
## 36414                        icer boots    1
## 36415                    icing agostino    1
## 36416                       icing along    1
## 36417                        icing boot    1
## 36418                      icing cashed    1
## 36419             icing certificication    1
## 36420                    icing contrary    1
## 36421                     icing descent    1
## 36422                         icing due    1
## 36423                      icing during    1
## 36424                   icing equipment    1
## 36425                        icing flew    1
## 36426                       icing fluid    1
## 36427                       icing frost    1
## 36428                    icing fuselage    1
## 36429                    icing improper    1
## 36430                          icing in    1
## 36431                   icing incorrect    1
## 36432                        icing lost    1
## 36433                      icing midair    1
## 36434                    icing multiple    1
## 36435                     icing occured    1
## 36436                         icing one    1
## 36437                          icing or    1
## 36438                       icing pilot    1
## 36439                     icing pitched    1
## 36440                    icing possible    1
## 36441                   icing resulting    1
## 36442                        icing shot    1
## 36443                      icing struck    1
## 36444                   icing suspected    1
## 36445                        icing take    1
## 36446                      icing unable    1
## 36447                       icy regions    1
## 36448                         icy river    1
## 36449                          icy road    1
## 36450                        icy waters    1
## 36451                     identified an    1
## 36452                     identified in    1
## 36453                     identified it    1
## 36454                  identified point    1
## 36455               identified samantha    1
## 36456                       identify an    1
## 36457                 identify document    1
## 36458                 identify position    1
## 36459                    identify santa    1
## 36460                   identifying the    1
## 36461                           idle at    1
## 36462                        idle blade    1
## 36463                      idle causing    1
## 36464                       idle detent    1
## 36465                      idle leaving    1
## 36466                         idle mode    1
## 36467                        idle power    1
## 36468                          idled it    1
## 36469                         idled one    1
## 36470                         idled the    1
## 36471                          idling a    1
## 36472                              if a    1
## 36473                             if he    1
## 36474                             if it    1
## 36475                      if performed    1
## 36476                     if undetected    1
## 36477                          ifr also    1
## 36478                    ifr approaches    1
## 36479                       ifr landing    1
## 36480                            ifr or    1
## 36481                     ifr qualified    1
## 36482                            ifr to    1
## 36483                       ifr traffic    1
## 36484                         ifr until    1
## 36485                         ifr which    1
## 36486                    igarka airport    1
## 36487                          ignite a    1
## 36488                    ignite causing    1
## 36489                  ignite hydraulic    1
## 36490                    ignite stalled    1
## 36491               ignited accumulated    1
## 36492                       ignited and    1
## 36493                   ignited causing    1
## 36494                 ignited flammable    1
## 36495                      ignited from    1
## 36496                        ignited in    1
## 36497                   ignited killing    1
## 36498                     ignited years    1
## 36499                   ignition energy    1
## 36500                       ignition in    1
## 36501                    ignition light    1
## 36502                   ignition system    1
## 36503                  ignition systems    1
## 36504                      ignorance of    1
## 36505                         ignored a    1
## 36506                       ignored and    1
## 36507                     ignored calls    1
## 36508                    ignored ground    1
## 36509                      ignored high    1
## 36510                    ignored rumors    1
## 36511                     ignored their    1
## 36512                     ignored there    1
## 36513                   ignored weather    1
## 36514                ignoring mountains    1
## 36515                      ignoring the    1
## 36516                 igor farkhutdinov    1
## 36517                             ii at    1
## 36518                       ii business    1
## 36519                           ii hero    1
## 36520                        ii kennedy    1
## 36521                           ii took    1
## 36522                        ii vintage    1
## 36523                        iiaga pass    1
## 36524                         iii radar    1
## 36525                           iii the    1
## 36526                           iii was    1
## 36527                     iinto terrain    1
## 36528                        iju ishaga    1
## 36529                 ikeja disappeared    1
## 36530                         ikustsk 2    1
## 36531                             il 62    1
## 36532                     il76 believed    1
## 36533                         il76 crew    1
## 36534                        il76 which    1
## 36535                     ilaga airport    1
## 36536                ildefonso cordeiro    1
## 36537                           iles de    1
## 36538                           ilha de    1
## 36539                   iliamna glacier    1
## 36540                   iliniza volcano    1
## 36541                       ill captain    1
## 36542                         ill fated    1
## 36543                          ill with    1
## 36544                    illegal flight    1
## 36545                   illegally steal    1
## 36546                 illegally without    1
## 36547               illicit trafficking    1
## 36548                   illigally being    1
## 36549                       illimani at    1
## 36550                   illinois during    1
## 36551                   illinois george    1
## 36552                    illinois trust    1
## 36553                      illuminate a    1
## 36554                    illuminate the    1
## 36555                  illuminated when    1
## 36556                        illusion a    1
## 36557                      illusion due    1
## 36558              illusion experienced    1
## 36559                       illusion in    1
## 36560                       illusion or    1
## 36561                 illusion produced    1
## 36562                     illusion that    1
## 36563                 illusionary sense    1
## 36564                 illusions created    1
## 36565                illusions produced    1
## 36566                      illusive fog    1
## 36567               illusory inadequate    1
## 36568                       ilopango el    1
## 36569                         ils after    1
## 36570                    ils approaches    1
## 36571                       ils attempt    1
## 36572                    ils glideslope    1
## 36573                       ils landing    1
## 36574                            ils on    1
## 36575                         ils pilot    1
## 36576                     ils procedure    1
## 36577                      ils sidebeam    1
## 36578                        ils signal    1
## 36579                            ils to    1
## 36580                     ils touchdown    1
## 36581                         ils track    1
## 36582                       image after    1
## 36583                     imam khomeini    1
## 36584                     imbalance air    1
## 36585                     imbalance but    1
## 36586               imbalance checklist    1
## 36587                     imbalance for    1
## 36588                      imbalance in    1
## 36589               imbalance prompting    1
## 36590                imbalance ruptured    1
## 36591                     imbalance was    1
## 36592              imbalanced condition    1
## 36593                     imbalances in    1
## 36594                             imc a    1
## 36595                       imc causing    1
## 36596                     imc conditons    1
## 36597                      imc improper    1
## 36598                imc overconfidence    1
## 36599                     imc resulting    1
## 36600                         imc until    1
## 36601                       imc weather    1
## 36602                         imc which    1
## 36603                     immedately in    1
## 36604                   immediate cause    1
## 36605               immediate explosion    1
## 36606                immediate locality    1
## 36607            immediate neighborhood    1
## 36608                   immediate right    1
## 36609                immediate vicinity    1
## 36610                 immediately ahead    1
## 36611                immediately before    1
## 36612                   immediately but    1
## 36613                    immediately by    1
## 36614             immediately commenced    1
## 36615             immediately following    1
## 36616              immediately initiate    1
## 36617                immediately notify    1
## 36618                 immediately prior    1
## 36619               immediately respond    1
## 36620                  immediately sank    1
## 36621            immediately subsequent    1
## 36622              immediately switched    1
## 36623                   immediately the    1
## 36624            immediately thereafter    1
## 36625                  immediately they    1
## 36626               immediately towards    1
## 36627                  immediately with    1
## 36628                     immigrant the    1
## 36629                    imminent stall    1
## 36630                    immobilized by    1
## 36631                impact approximate    1
## 36632                        impact but    1
## 36633                   impact controls    1
## 36634                     impact damage    1
## 36635                        impact due    1
## 36636                    impact failure    1
## 36637                         impact in    1
## 36638                  impact inability    1
## 36639              impact investigators    1
## 36640                         impact it    1
## 36641                       impact near    1
## 36642                 impact passengers    1
## 36643                      impact point    1
## 36644                    impact pointed    1
## 36645                       impact poor    1
## 36646                 impact separation    1
## 36647                    impact several    1
## 36648                      impact short    1
## 36649                      impact split    1
## 36650                      impact there    1
## 36651                      impact trees    1
## 36652                    impact weather    1
## 36653                      impact while    1
## 36654             impact.two passengers    1
## 36655                       impacted an    1
## 36656                  impacted another    1
## 36657                       impacted by    1
## 36658                    impacted franz    1
## 36659                   impacted hutska    1
## 36660              impacted mountainous    1
## 36661                   impacted rising    1
## 36662                     impacted snow    1
## 36663                impacted upsloping    1
## 36664                 impacting terrain    1
## 36665                    impacting with    1
## 36666                       impacts and    1
## 36667                      impaired and    1
## 36668                     impaired both    1
## 36669                       impaired by    1
## 36670                 impaired judgment    1
## 36671              impaired performance    1
## 36672                      impaired the    1
## 36673                    impaired until    1
## 36674               impaired visibility    1
## 36675                    impairment due    1
## 36676        impairment inattentiveness    1
## 36677                    impairment the    1
## 36678                impared visibility    1
## 36679                  imparement while    1
## 36680                      impatient to    1
## 36681                   impeller during    1
## 36682                   impending stall    1
## 36683                  imperial airways    1
## 36684                       impetus for    1
## 36685                        imphal the    1
## 36686                     implement new    1
## 36687              implement procedures    1
## 36688                 implementation of    1
## 36689                implementing stall    1
## 36690                  implementing the    1
## 36691                     importance of    1
## 36692            important contributing    1
## 36693                      important tv    1
## 36694                 important weather    1
## 36695                         imposed a    1
## 36696               imposed aerodynamic    1
## 36697                        imposed on    1
## 36698                      imposed upon    1
## 36699                     imposition of    1
## 36700                  impossible after    1
## 36701            impossible maintenance    1
## 36702                 impossible midair    1
## 36703               imprecise adherence    1
## 36704           imprecise communication    1
## 36705                imprecise language    1
## 36706                 impresario killed    1
## 36707                   improper action    1
## 36708               improper alteration    1
## 36709              improper application    1
## 36710               improper assumption    1
## 36711             improper asymmetrical    1
## 36712                    improper bolts    1
## 36713              improper calculation    1
## 36714                   improper center    1
## 36715                    improper climb    1
## 36716                  improper control    1
## 36717              improper correlation    1
## 36718                 improper decision    1
## 36719                  improper deicing    1
## 36720              improper dispatching    1
## 36721               improper evaluation    1
## 36722               improper feathering    1
## 36723                     improper flap    1
## 36724                    improper flare    1
## 36725              improper installtion    1
## 36726                 improper judgment    1
## 36727                  improper landing    1
## 36728                     improper look    1
## 36729               improper management    1
## 36730                  improper minimum    1
## 36731                   improper missed    1
## 36732               improper monitoring    1
## 36733             improper navigational    1
## 36734              improper observation    1
## 36735                improper operation    1
## 36736                       improper or    1
## 36737                 improper piloting    1
## 36738                  improper planned    1
## 36739                 improper reaction    1
## 36740                  improper removal    1
## 36741                   improper repair    1
## 36742                    improper reuse    1
## 36743                  improper reverse    1
## 36744                  improper rigging    1
## 36745                 improper securing    1
## 36746                     improper snow    1
## 36747               improper techniques    1
## 36748              improper terminology    1
## 36749                     improper tool    1
## 36750                 improper tracking    1
## 36751                  improper turbine    1
## 36752                  improper vectors    1
## 36753                  improper weather    1
## 36754               improperly balanced    1
## 36755            improperly distributed    1
## 36756                improperly indexed    1
## 36757              improperly installed    1
## 36758                improperly labeled    1
## 36759                improperly trimmed    1
## 36760                  improve improper    1
## 36761                       improve the    1
## 36762                       improved at    1
## 36763                improved clearance    1
## 36764                  improved contact    1
## 36765                       improved or    1
## 36766                 improvement after    1
## 36767                 improving weather    1
## 36768                 improvised device    1
## 36769                impurities subject    1
## 36770                             in 06    1
## 36771                          in 1,000    1
## 36772                             in 12    1
## 36773                             in 15    1
## 36774                            in 150    1
## 36775                             in 18    1
## 36776                           in 1951    1
## 36777                           in 1960    1
## 36778                           in 1978    1
## 36779                           in 1987    1
## 36780                           in 1994    1
## 36781                           in 1995    1
## 36782                              in 2    1
## 36783                           in 2011    1
## 36784                             in 26    1
## 36785                             in 30    1
## 36786                              in 5    1
## 36787                          in 5,000    1
## 36788                            in 650    1
## 36789                              in 8    1
## 36790                            in 950    1
## 36791                     in abandoning    1
## 36792                       in aborting    1
## 36793                         in action    1
## 36794                       in adjacent    1
## 36795                         in advese    1
## 36796                       in advising    1
## 36797                    in afghanistan    1
## 36798                      in airplanes    1
## 36799                       in airspace    1
## 36800                         in alaska    1
## 36801                   in alberquerque    1
## 36802                       in alerting    1
## 36803                         in alkali    1
## 36804                            in all    1
## 36805                         in almost    1
## 36806                      in amsterdam    1
## 36807                       in applying    1
## 36808                          in april    1
## 36809                         in arctic    1
## 36810                         in argyll    1
## 36811                      in assessing    1
## 36812                   in asymmetrical    1
## 36813                            in atc    1
## 36814                         in athens    1
## 36815                     in australila    1
## 36816                       in avoiding    1
## 36817                         in awards    1
## 36818                           in back    1
## 36819                         in balboa    1
## 36820                        in battery    1
## 36821                     in bazzaville    1
## 36822                         in beagle    1
## 36823                          in belly    1
## 36824                       in beyrough    1
## 36825                        in blowing    1
## 36826                           in bolt    1
## 36827                         in bosnia    1
## 36828                         in bowery    1
## 36829                         in bright    1
## 36830                       in brisbane    1
## 36831                         in broken    1
## 36832                          in brush    1
## 36833                         in buenos    1
## 36834                      in buffeting    1
## 36835                        in burbank    1
## 36836                        in buzzing    1
## 36837                    in calculating    1
## 36838                         in canada    1
## 36839                        in cardiac    1
## 36840                   in carelessness    1
## 36841                           in case    1
## 36842                        in central    1
## 36843                         in charge    1
## 36844                        in chatham    1
## 36845                        in chicago    1
## 36846                          in chile    1
## 36847                          in china    1
## 36848                       in choosing    1
## 36849                         in chorro    1
## 36850                         in chunks    1
## 36851                        in circles    1
## 36852                  in circumstances    1
## 36853                      in cleveland    1
## 36854                          in close    1
## 36855                          in cloud    1
## 36856                     in committing    1
## 36857                  in communication    1
## 36858                 in communications    1
## 36859                        in company    1
## 36860                     in compliance    1
## 36861                     in compressor    1
## 36862                  in configuration    1
## 36863                      in congested    1
## 36864                    in consequence    1
## 36865                        in contact    1
## 36866                        in control    1
## 36867                    in controlling    1
## 36868                   in coordinating    1
## 36869                          in crash    1
## 36870                        in crashed    1
## 36871                       in critical    1
## 36872                     in crosswinds    1
## 36873                           in dark    1
## 36874                       in december    1
## 36875                       in deciding    1
## 36876                  in decompression    1
## 36877                           in deep    1
## 36878                        in delayed    1
## 36879                   in deliberately    1
## 36880                      in departure    1
## 36881                      in deploying    1
## 36882                         in desnse    1
## 36883                    in determining    1
## 36884                       in diameter    1
## 36885                   in difficulties    1
## 36886                         in direct    1
## 36887                      in directing    1
## 36888                        in dirzzle    1
## 36889                    in dispatching    1
## 36890                 in dissymmetrical    1
## 36891                     in distortion    1
## 36892                         in dondon    1
## 36893                        in drizzle    1
## 36894                          in dusty    1
## 36895                          in eight    1
## 36896                       in electing    1
## 36897                        in engines    1
## 36898                        in england    1
## 36899                        in english    1
## 36900                      in equipment    1
## 36901                        in erosion    1
## 36902                      in erroneous    1
## 36903                    in erroneously    1
## 36904                     in evacuating    1
## 36905                      in exercises    1
## 36906                          in exile    1
## 36907                           in face    1
## 36908                        in failing    1
## 36909                        in failure    1
## 36910                          in false    1
## 36911                        in fatigue    1
## 36912                       in ferguson    1
## 36913                          in field    1
## 36914                          in fight    1
## 36915                          in final    1
## 36916                      in financial    1
## 36917                           in fire    1
## 36918                          in firth    1
## 36919                          in flame    1
## 36920                           in flat    1
## 36921                         in fligth    1
## 36922                        in flilght    1
## 36923                       in flushing    1
## 36924                         in forced    1
## 36925                     in forecasted    1
## 36926                       in france's    1
## 36927                       in freezing    1
## 36928                           in from    1
## 36929                           in full    1
## 36930                           in gale    1
## 36931                        in general    1
## 36932                      in generally    1
## 36933                          in glare    1
## 36934                         in gredos    1
## 36935                      in greenland    1
## 36936                       in gulistan    1
## 36937                           in half    1
## 36938                           in hand    1
## 36939                           in haze    1
## 36940                             in he    1
## 36941                    in helicopters    1
## 36942                       in hillside    1
## 36943                          in hilly    1
## 36944                            in him    1
## 36945                        in history    1
## 36946                        in holding    1
## 36947                     in hommelvika    1
## 36948                          in honor    1
## 36949                        in hussain    1
## 36950                          in iiaga    1
## 36951                            in ils    1
## 36952                       in improper    1
## 36953                             in in    1
## 36954                      in indicated    1
## 36955                        in initial    1
## 36956                      in intensity    1
## 36957                  in international    1
## 36958                       in istanbul    1
## 36959                             in it    1
## 36960                           in it's    1
## 36961                            in iwo    1
## 36962                   in ixtaccihuatl    1
## 36963                        in january    1
## 36964                         in jeddah    1
## 36965                           in juba    1
## 36966                           in july    1
## 36967                         in jungle    1
## 36968                        in jungled    1
## 36969                        in keeping    1
## 36970                         in khojak    1
## 36971                          in known    1
## 36972                        in kwazulu    1
## 36973                         in laguna    1
## 36974                        in lashkar    1
## 36975                          in later    1
## 36976                        in leaving    1
## 36977                           in line    1
## 36978                       in location    1
## 36979                           in long    1
## 36980                   in longitudinal    1
## 36981                            in los    1
## 36982                           in lost    1
## 36983                       in lowering    1
## 36984                          in macao    1
## 36985                           in mãƒâ    1
## 36986                       in mainland    1
## 36987                    in maintaining    1
## 36988                          in malta    1
## 36989                         in manila    1
## 36990                        in manukau    1
## 36991                          in march    1
## 36992                       in maryland    1
## 36993                        in matters    1
## 36994                       in michigan    1
## 36995                      in milwaukee    1
## 36996                         in minima    1
## 36997                           in mint    1
## 36998                      in modifying    1
## 36999                     in monitoring    1
## 37000                        in monsoon    1
## 37001                        in montana    1
## 37002                       in monterey    1
## 37003                       in montreal    1
## 37004                           in mora    1
## 37005                         in moroni    1
## 37006                         in moscow    1
## 37007                       in mountain    1
## 37008                          in muddy    1
## 37009                       in multiple    1
## 37010                             in my    1
## 37011                         in nanhai    1
## 37012                   in navigational    1
## 37013                         in nearly    1
## 37014                        in neutral    1
## 37015                      in nicaragua    1
## 37016                          in north    1
## 37017                   in northeastern    1
## 37018                       in northern    1
## 37019                          in ocean    1
## 37020                            in oil    1
## 37021                        in olympic    1
## 37022                             in on    1
## 37023                           in only    1
## 37024                           in open    1
## 37025                     in operations    1
## 37026                           in oslo    1
## 37027                         in ostend    1
## 37028                       in overcast    1
## 37029                   in overshooting    1
## 37030                      in passenger    1
## 37031                     in performing    1
## 37032                     in peripheral    1
## 37033                       in personal    1
## 37034                       in phaleron    1
## 37035                          in pilot    1
## 37036                           in pine    1
## 37037                           in pins    1
## 37038                        in placing    1
## 37039                          in plain    1
## 37040                       in planning    1
## 37041                         in poorly    1
## 37042                           in port    1
## 37043                     in possession    1
## 37044                       in practice    1
## 37045                     in preventing    1
## 37046                         in prison    1
## 37047                      in proximity    1
## 37048                          in puget    1
## 37049                         in queens    1
## 37050                       in question    1
## 37051                          in radio    1
## 37052                        in rainand    1
## 37053                          in rapid    1
## 37054                  in reapplication    1
## 37055                       in rearward    1
## 37056                     in recovering    1
## 37057                          in relay    1
## 37058                         in remote    1
## 37059                    in reproducing    1
## 37060                     in restarting    1
## 37061                       in resuming    1
## 37062                    in retaliation    1
## 37063                     in retracting    1
## 37064                          in river    1
## 37065                          in rotor    1
## 37066                        in routine    1
## 37067                       in rununder    1
## 37068                          in rural    1
## 37069                         in salang    1
## 37070                        in samburu    1
## 37071                            in san    1
## 37072                          in santa    1
## 37073                          in santo    1
## 37074                   in satisfactory    1
## 37075                            in sea    1
## 37076                      in selection    1
## 37077                      in september    1
## 37078                        in setting    1
## 37079                       in settling    1
## 37080                          in shape    1
## 37081                       in shooting    1
## 37082                          in short    1
## 37083                       in siberian    1
## 37084                          in sleet    1
## 37085                          in small    1
## 37086                          in snowy    1
## 37087                          in south    1
## 37088                       in southern    1
## 37089                   in southwestern    1
## 37090                          in space    1
## 37091                        in spencer    1
## 37092                          in stall    1
## 37093                       in starting    1
## 37094                         in stowed    1
## 37095                       in straight    1
## 37096                       in striking    1
## 37097                     in structural    1
## 37098                      in structure    1
## 37099                        in succoth    1
## 37100                          in sudan    1
## 37101                         in summer    1
## 37102                        in support    1
## 37103                     in susanville    1
## 37104                     in sverdlovsk    1
## 37105                         in swampy    1
## 37106                     in sweden.the    1
## 37107                       in tailwind    1
## 37108                         in tenths    1
## 37109                          in texas    1
## 37110                          in these    1
## 37111                          in tibet    1
## 37112                     in torrential    1
## 37113                          in total    1
## 37114                            in tow    1
## 37115                          in trees    1
## 37116                          in triel    1
## 37117                        in tripoli    1
## 37118                         in trying    1
## 37119                           in turn    1
## 37120                        in turning    1
## 37121                           in type    1
## 37122                    in ulrichstein    1
## 37123                   in uncontrolled    1
## 37124                    in undertaking    1
## 37125                       in unstable    1
## 37126                           in vain    1
## 37127                      in vancouver    1
## 37128                           in very    1
## 37129                    in victorville    1
## 37130                       in virginia    1
## 37131                     in visibility    1
## 37132                           in weak    1
## 37133                          in weeks    1
## 37134                        in western    1
## 37135                          in winam    1
## 37136                          in windy    1
## 37137                          in wires    1
## 37138                      in wrenching    1
## 37139                        in written    1
## 37140              inaccurate altimeter    1
## 37141                 inaccurate course    1
## 37142                inaccurate weather    1
## 37143            inaccurately indicated    1
## 37144                 inactivity during    1
## 37145             inadequacy associated    1
## 37146                    inadequate air    1
## 37147           inadequate arrangements    1
## 37148                    inadequate atc    1
## 37149                 inadequate charts    1
## 37150                inadequate cockpit    1
## 37151                inadequate conduct    1
## 37152           inadequate coordination    1
## 37153              inadequate depiction    1
## 37154                     inadequate dr    1
## 37155              inadequate emergency    1
## 37156            inadequate enforcement    1
## 37157              inadequate equipment    1
## 37158               inadequate external    1
## 37159               inadequate failsafe    1
## 37160               inadequate fidelity    1
## 37161             inadequate functional    1
## 37162               inadequate handling    1
## 37163           inadequate illumination    1
## 37164                     inadequate in    1
## 37165            inadequate information    1
## 37166             inadequate inspection    1
## 37167            inadequate inspections    1
## 37168            inadequate lubrication    1
## 37169                   inadequate maps    1
## 37170               inadequate measures    1
## 37171                inadequate quality    1
## 37172               inadequate remedial    1
## 37173                 inadequate repair    1
## 37174                   inadequate risk    1
## 37175               inadequate security    1
## 37176                   inadequate shot    1
## 37177                  inadequate signs    1
## 37178                inadequate spacing    1
## 37179                  inadequate stall    1
## 37180                    inadequate use    1
## 37181                    inadequate vfr    1
## 37182                 inadequate visual    1
## 37183                inadequate warning    1
## 37184                inadequate weather    1
## 37185           inadequately evaluating    1
## 37186           inadequately lubricated    1
## 37187               inadequately marked    1
## 37188             inadequately prepared    1
## 37189                  inadequately the    1
## 37190             inadvertent actuation    1
## 37191            inadvertent aerobatics    1
## 37192                   inadvertent and    1
## 37193           inadvertent application    1
## 37194            inadvertent assumption    1
## 37195               inadvertent contact    1
## 37196            inadvertent engagement    1
## 37197                 inadvertent entry    1
## 37198            inadvertent feathering    1
## 37199               inadvertent landing    1
## 37200             inadvertent placement    1
## 37201            inadvertent retraction    1
## 37202             inadvertent selection    1
## 37203             inadvertentlly opened    1
## 37204            inadvertently allowing    1
## 37205              inadvertently caused    1
## 37206              inadvertently closed    1
## 37207          inadvertently disengaged    1
## 37208           inadvertently dislodged    1
## 37209          inadvertently dislodging    1
## 37210             inadvertently dropped    1
## 37211             inadvertently entered    1
## 37212              inadvertently filled    1
## 37213                inadvertently lost    1
## 37214           inadvertently permitted    1
## 37215             inadvertently pressed    1
## 37216              inadvertently pushed    1
## 37217             inadvertently reduced    1
## 37218                inadvertently shot    1
## 37219                inadvertently shut    1
## 37220           inadvertently triggered    1
## 37221            inadvertently wandered    1
## 37222              inappropriate action    1
## 37223            inappropriate altitude    1
## 37224         inappropriate application    1
## 37225          inappropriate clearances    1
## 37226            inappropriate decision    1
## 37227           inappropriate emergency    1
## 37228                 inappropriate for    1
## 37229          inappropriate instrument    1
## 37230         inappropriate medications    1
## 37231            inappropriate messages    1
## 37232            inappropriate presence    1
## 37233                  inappropriate to    1
## 37234           inappropriately raising    1
## 37235                inappropriately to    1
## 37236                inattentiveness or    1
## 37237               inaugural westbound    1
## 37238                   inauguration of    1
## 37239                   inboard engines    1
## 37240                      inboard flap    1
## 37241                   inboard midspar    1
## 37242                   inboard spoiler    1
## 37243                  inboard spoilers    1
## 37244                    inbound course    1
## 37245                      inbound from    1
## 37246                   inbound traffic    1
## 37247                         inc movie    1
## 37248                  incapacitated by    1
## 37249                incapacitated just    1
## 37250                 incapacitated the    1
## 37251                incapacitating and    1
## 37252               incapacitating both    1
## 37253                incapacitating gas    1
## 37254                incapacitation and    1
## 37255                 incapacitation or    1
## 37256                 incendiary device    1
## 37257                        inch crack    1
## 37258                        inch steel    1
## 37259                        inch thick    1
## 37260                      inches thick    1
## 37261                      incident had    1
## 37262                       incident in    1
## 37263                     incident that    1
## 37264                    incident which    1
## 37265                     incidents and    1
## 37266                     incidents had    1
## 37267                   incidents where    1
## 37268                      incirlik air    1
## 37269                   inclination but    1
## 37270                        incline in    1
## 37271                         include a    1
## 37272                        include an    1
## 37273                    include engine    1
## 37274                   include falling    1
## 37275                    include flight    1
## 37276               include ineffective    1
## 37277                    include narrow    1
## 37278                 include passenger    1
## 37279                      included 153    1
## 37280                       included 22    1
## 37281                 included adequate    1
## 37282                   included edelca    1
## 37283                    included eight    1
## 37284                   included iran's    1
## 37285                 included military    1
## 37286               included overloaded    1
## 37287                     included poor    1
## 37288                      included six    1
## 37289                     included weak    1
## 37290                  included weather    1
## 37291                        includes a    1
## 37292                      including 12    1
## 37293                       including 2    1
## 37294                      including 31    1
## 37295                  including almost    1
## 37296                  including chafed    1
## 37297                 including charges    1
## 37298               including civilians    1
## 37299           including communicating    1
## 37300                including conflict    1
## 37301                 including failure    1
## 37302                    including high    1
## 37303                  including howard    1
## 37304                    including lack    1
## 37305                 including lithium    1
## 37306                    including loss    1
## 37307                     including one    1
## 37308                    including rain    1
## 37309                 including several    1
## 37310                   including their    1
## 37311                 including weather    1
## 37312               including windshear    1
## 37313                      incoming fog    1
## 37314                    incomplete and    1
## 37315             incomplete instrument    1
## 37316            incomplete performance    1
## 37317               inconsistent flight    1
## 37318                 inconsistent with    1
## 37319               inconviently placed    1
## 37320                incorrect airspeed    1
## 37321               incorrect altimeter    1
## 37322                incorrect analysis    1
## 37323                   incorrect cause    1
## 37324                incorrect computer    1
## 37325               incorrect departure    1
## 37326                incorrect distance    1
## 37327                 incorrect forcast    1
## 37328                    incorrect fuel    1
## 37329                   incorrect glide    1
## 37330                incorrect handling    1
## 37331                  incorrect height    1
## 37332                      incorrect in    1
## 37333             incorrect indications    1
## 37334            incorrect installation    1
## 37335               incorrect procedure    1
## 37336              incorrect procedures    1
## 37337                   incorrect radio    1
## 37338                    incorrect read    1
## 37339              incorrect reassembly    1
## 37340                 incorrect service    1
## 37341                   incorrect spark    1
## 37342                    incorrect take    1
## 37343                       incorrect v    1
## 37344            incorrectly calculated    1
## 37345             incorrectly connected    1
## 37346          incorrectly contributing    1
## 37347            incorrectly identified    1
## 37348             incorrectly installed    1
## 37349            incorrectly positioned    1
## 37350            incorrectly processing    1
## 37351              incorrectly reported    1
## 37352              incorrectly selected    1
## 37353               incorrectly steered    1
## 37354                  incorrectly used    1
## 37355                 increase altitude    1
## 37356                      increase and    1
## 37357                    increase could    1
## 37358                       increase on    1
## 37359                     increased and    1
## 37360                      increased as    1
## 37361                 increased causing    1
## 37362                    increased drag    1
## 37363                    increased from    1
## 37364                      increased in    1
## 37365                increased maneuver    1
## 37366                   increased power    1
## 37367                    increased rate    1
## 37368                   increased speed    1
## 37369                   increased until    1
## 37370                     increases the    1
## 37371              increasing amplitude    1
## 37372                   increasing bank    1
## 37373              increasing deviation    1
## 37374                   increasing drag    1
## 37375                   increasing left    1
## 37376                   increasing rate    1
## 37377                 increasing thrust    1
## 37378                     increasing to    1
## 37379                      incredibly a    1
## 37380                     incurrence of    1
## 37381                    indefinite 200    1
## 37382                 indexed propeller    1
## 37383                   india's nuclear    1
## 37384                          india at    1
## 37385                      india flight    1
## 37386                      india lahore    1
## 37387                   indian accident    1
## 37388                     indian border    1
## 37389                     indian mounds    1
## 37390                  indian officials    1
## 37391                   indian soldiers    1
## 37392        indianapolis international    1
## 37393                  indianapolis the    1
## 37394                      indicate the    1
## 37395                    indicated 0270    1
## 37396                indicated airspeed    1
## 37397               indicated altimeter    1
## 37398                     indicated and    1
## 37399                  indicated during    1
## 37400                 indicated failure    1
## 37401                     indicated low    1
## 37402                      indicated no    1
## 37403                   indicated there    1
## 37404                  indicating alarm    1
## 37405                 indicating engine    1
## 37406                    indicating the    1
## 37407                 indicating thrust    1
## 37408                     indication by    1
## 37409              indication captain's    1
## 37410                 indication caused    1
## 37411                    indication due    1
## 37412                   indication from    1
## 37413                  indication given    1
## 37414                     indication in    1
## 37415                    indication low    1
## 37416                     indication on    1
## 37417                 indication system    1
## 37418                indication systems    1
## 37419                   indication that    1
## 37420                 indication though    1
## 37421                   indications and    1
## 37422                   indications for    1
## 37423                  indications from    1
## 37424              indications properly    1
## 37425             indications resulting    1
## 37426                  indications that    1
## 37427                 indications which    1
## 37428                   indicator light    1
## 37429                  indicator lights    1
## 37430           indicator malfunctioned    1
## 37431                      indicator on    1
## 37432                   indicator pilot    1
## 37433                     indicator the    1
## 37434                   indicator while    1
## 37435                    indicators and    1
## 37436                   indicators crew    1
## 37437                   indicators from    1
## 37438                    indicators the    1
## 37439                      indicted for    1
## 37440                    indio national    1
## 37441            indirectly contributed    1
## 37442               individual although    1
## 37443                   individually or    1
## 37444                     indonesia the    1
## 37445               indonesian national    1
## 37446                 indonesian police    1
## 37447               indonesian province    1
## 37448                 induced corrosion    1
## 37449                  induced ignition    1
## 37450              induced oscillations    1
## 37451                  induced pressure    1
## 37452                   induced scratch    1
## 37453                   industrial area    1
## 37454             industrialist georgel    1
## 37455                 industries during    1
## 37456                      industry and    1
## 37457                   ineffective and    1
## 37458               ineffective control    1
## 37459             ineffective corporate    1
## 37460                 ineffective crash    1
## 37461            ineffective management    1
## 37462               ineffectiveness the    1
## 37463                     inertia force    1
## 37464                inertial reference    1
## 37465              inevitable following    1
## 37466                inevitable instead    1
## 37467                   inevitable when    1
## 37468                 inexperienced and    1
## 37469                inexperienced crew    1
## 37470                  inexperienced in    1
## 37471               inexperienced pilot    1
## 37472                 inexperienced the    1
## 37473                      infant child    1
## 37474                       infant fell    1
## 37475                        infant was    1
## 37476                   infantry troops    1
## 37477                  inferior quality    1
## 37478                       inferior to    1
## 37479                        infield of    1
## 37480                       inflate the    1
## 37481                   inflated inside    1
## 37482                    inflated their    1
## 37483                     inflated tire    1
## 37484                      inflation of    1
## 37485                inflight collision    1
## 37486                 inflight decision    1
## 37487                inflight departure    1
## 37488                inflight encounter    1
## 37489                inflight explosive    1
## 37490                     inflight loss    1
## 37491                 inflight planning    1
## 37492               inflight structural    1
## 37493                      influence on    1
## 37494                     influenced by    1
## 37495                    influenced his    1
## 37496                    influenced the    1
## 37497                    information as    1
## 37498             information available    1
## 37499                information center    1
## 37500               information crashed    1
## 37501             information developed    1
## 37502         information dissemination    1
## 37503                information faulty    1
## 37504                 information given    1
## 37505                    information he    1
## 37506                    information in    1
## 37507                 information might    1
## 37508                    information on    1
## 37509             information presented    1
## 37510              information provided    1
## 37511             information regarding    1
## 37512                information system    1
## 37513                   information the    1
## 37514                 information there    1
## 37515           information transmitted    1
## 37516                 information which    1
## 37517                    informed dubai    1
## 37518                       informed of    1
## 37519                     informed that    1
## 37520                 informed valencia    1
## 37521                     informing his    1
## 37522              infrequent operation    1
## 37523                      ingeli about    1
## 37524                       ingested in    1
## 37525            ingested inappropriate    1
## 37526                     ingested into    1
## 37527                 ingested numerous    1
## 37528                     ingestion and    1
## 37529           ingestion certification    1
## 37530                 ingestion crashed    1
## 37531                     ingestion due    1
## 37532                    inhalation and    1
## 37533              inherent assumptions    1
## 37534              inherent limitations    1
## 37535                     inhibited for    1
## 37536                     inhibition of    1
## 37537                 initally survived    1
## 37538                     initial cause    1
## 37539                   initial contact    1
## 37540                      initial door    1
## 37541                   initial failure    1
## 37542                      initial fire    1
## 37543                    initial ground    1
## 37544                    initial impact    1
## 37545                      initial lift    1
## 37546                initial mechanical    1
## 37547                   initial problem    1
## 37548                  initial stoppage    1
## 37549                initial structural    1
## 37550           initialize consequently    1
## 37551                 initially blaming    1
## 37552              initially distracted    1
## 37553                 initially entered    1
## 37554                initially striking    1
## 37555                initially survived    1
## 37556                 initiate remedial    1
## 37557                     initiate take    1
## 37558                      initiate the    1
## 37559                     initiated and    1
## 37560                   initiated crack    1
## 37561                     initiated for    1
## 37562                      initiated in    1
## 37563                    initiated lack    1
## 37564                    initiated when    1
## 37565                    initiating and    1
## 37566                initiating element    1
## 37567                 initiating flight    1
## 37568                     initiating go    1
## 37569                   initiating late    1
## 37570                    initiation and    1
## 37571                     initiation of    1
## 37572                injection assisted    1
## 37573                  injection nozzle    1
## 37574                     injested into    1
## 37575                       injured and    1
## 37576                   injured burning    1
## 37577                        injured by    1
## 37578                    injured during    1
## 37579                    injured engine    1
## 37580                      injured fuel    1
## 37581                injured inadequacy    1
## 37582                     injured later    1
## 37583                        injured on    1
## 37584                 injured passenger    1
## 37585                injured passengers    1
## 37586                     injured rough    1
## 37587                       injured she    1
## 37588                     injured while    1
## 37589                        injuries a    1
## 37590                      injuries air    1
## 37591                   injuries almost    1
## 37592                      injuries but    1
## 37593                  injuries crashed    1
## 37594                   injuries debris    1
## 37595                injuries execution    1
## 37596              injuries experienced    1
## 37597                 injuries possible    1
## 37598           injuries pressurization    1
## 37599                  injuries several    1
## 37600                      injuries six    1
## 37601                     injuries soon    1
## 37602                   injuries struck    1
## 37603                 injuries suffered    1
## 37604                       injuries to    1
## 37605                     injuries when    1
## 37606   injuries.investigators believed    1
## 37607                       injuring 60    1
## 37608                        injuring a    1
## 37609                  injuring another    1
## 37610                     injuring many    1
## 37611                    injuring three    1
## 37612                  injury according    1
## 37613                        injury but    1
## 37614                       inlet about    1
## 37615                        inlet anti    1
## 37616                        inlet face    1
## 37617                       inlet icing    1
## 37618                         inlet the    1
## 37619                      inmates from    1
## 37620                           inn the    1
## 37621                     inner engines    1
## 37622                      inner marker    1
## 37623                   inoperable gpws    1
## 37624            inoperable transponder    1
## 37625                     inoperative a    1
## 37626                 inoperative after    1
## 37627                   inoperative and    1
## 37628               inoperative because    1
## 37629               inoperative causing    1
## 37630               inoperative compass    1
## 37631             inoperative generator    1
## 37632                inoperative ground    1
## 37633                  inoperative high    1
## 37634                   inoperative ils    1
## 37635              inoperative improper    1
## 37636               inoperative newhall    1
## 37637                 inoperative stick    1
## 37638                  inoperative turn    1
## 37639                 inoperative while    1
## 37640             inordinate management    1
## 37641                          inpec to    1
## 37642                       input after    1
## 37643                         input and    1
## 37644                    input contrary    1
## 37645                   input resulting    1
## 37646                         input rod    1
## 37647                     input rolling    1
## 37648                          input to    1
## 37649                        inputs and    1
## 37650                    inputs applied    1
## 37651                         inputs at    1
## 37652                        inputs due    1
## 37653                     inputs during    1
## 37654                       inputs from    1
## 37655                        inputs led    1
## 37656                         inputs on    1
## 37657                  inputs resulting    1
## 37658                       inputs they    1
## 37659                         inputs to    1
## 37660                      inputs which    1
## 37661                       inputs with    1
## 37662               inquiries regarding    1
## 37663                       inquiry and    1
## 37664                  inquiry computer    1
## 37665                 inquiry concluded    1
## 37666                     insane asylum    1
## 37667                     insect smears    1
## 37668                       insects and    1
## 37669                       insects had    1
## 37670                 insecure latching    1
## 37671                     insfjãƒâ rãƒâ    1
## 37672                          inside a    1
## 37673                     inside crater    1
## 37674                     inside double    1
## 37675                       inside each    1
## 37676                    inside iranian    1
## 37677                        inside one    1
## 37678                        inside out    1
## 37679                  inside reference    1
## 37680                       inside this    1
## 37681                       inside wing    1
## 37682                       insisted on    1
## 37683                      insisting on    1
## 37684                       inspect the    1
## 37685                   inspected using    1
## 37686                      inspection a    1
## 37687                  inspection after    1
## 37688                     inspection by    1
## 37689                 inspection failed    1
## 37690                 inspection period    1
## 37691                  inspection pilot    1
## 37692             inspection procedures    1
## 37693                inspection program    1
## 37694            inspection requirement    1
## 37695               inspection revealed    1
## 37696               inspections crashed    1
## 37697                    inspections on    1
## 37698                  inspections were    1
## 37699                 inspections which    1
## 37700                  inspections with    1
## 37701               inspector's failure    1
## 37702                    inspectors the    1
## 37703                   installation in    1
## 37704                  installation was    1
## 37705                       installed a    1
## 37706                      installed an    1
## 37707                     installed and    1
## 37708                      installed at    1
## 37709               installed backwards    1
## 37710                    installed both    1
## 37711                 installed crashed    1
## 37712             installed disappeared    1
## 37713                    installed earl    1
## 37714                  installed flight    1
## 37715                     installed the    1
## 37716                installed viewport    1
## 37717                     installed yet    1
## 37718               installing stronger    1
## 37719                    installtion of    1
## 37720                        instant of    1
## 37721         instantaneous oscillation    1
## 37722                      instantly it    1
## 37723                        instead it    1
## 37724                    instead landed    1
## 37725                 instead proceeded    1
## 37726                      instead shot    1
## 37727                      instead they    1
## 37728                        instead to    1
## 37729                       instead was    1
## 37730                   institute inpec    1
## 37731                     instructed by    1
## 37732                   instructed crew    1
## 37733                     instructed in    1
## 37734                    instructed the    1
## 37735                   instructed them    1
## 37736                  instruction from    1
## 37737                    instruction of    1
## 37738                    instruction to    1
## 37739                   instruction was    1
## 37740                instructions after    1
## 37741          instructions approaching    1
## 37742           instructions concerning    1
## 37743              instructions crashed    1
## 37744               instructions during    1
## 37745           instructions exercising    1
## 37746              instructions natalie    1
## 37747                   instructions on    1
## 37748                 instructions open    1
## 37749                 instructions that    1
## 37750                  instructions the    1
## 37751          instructions transmitted    1
## 37752                 instructions were    1
## 37753                 instructor aboard    1
## 37754                     instructor as    1
## 37755                    instructor one    1
## 37756                     instructor so    1
## 37757                    instructor was    1
## 37758                   instructor when    1
## 37759                  instructors were    1
## 37760             instrument approaches    1
## 37761              instrument available    1
## 37762                 instrument caused    1
## 37763               instrument displays    1
## 37764                  instrument final    1
## 37765            instrument indications    1
## 37766                instrument letdown    1
## 37767               instrument lighting    1
## 37768                  instrument panel    1
## 37769                instrument problem    1
## 37770             instrument procedures    1
## 37771            instrument proficiency    1
## 37772             instrument references    1
## 37773                   instrument scan    1
## 37774                     instrument to    1
## 37775               instrument training    1
## 37776                  instrument which    1
## 37777               instrumentation and    1
## 37778         instrumentation anomalies    1
## 37779      instrumentation contributing    1
## 37780              instrumentation data    1
## 37781                    instruments as    1
## 37782                    instruments at    1
## 37783                instruments became    1
## 37784              instruments diverted    1
## 37785               instruments drifted    1
## 37786                   instruments due    1
## 37787                   instruments had    1
## 37788           instruments incorrectly    1
## 37789                  instruments look    1
## 37790              instruments magnetic    1
## 37791          instruments sufficiently    1
## 37792                  instruments thus    1
## 37793                  instruments went    1
## 37794                  instruments when    1
## 37795                 instruments which    1
## 37796               instruments without    1
## 37797       instruments.contributing to    1
## 37798               insturment landings    1
## 37799                  insufficent fuel    1
## 37800             insufficient airspeed    1
## 37801                  insufficient and    1
## 37802              insufficient battery    1
## 37803              insufficient braking    1
## 37804         insufficient deceleration    1
## 37805             insufficient emphasis    1
## 37806               insufficient engine    1
## 37807           insufficient evaluation    1
## 37808             insufficient evidence    1
## 37809                  insufficient for    1
## 37810                 insufficient fuel    1
## 37811             insufficient guidance    1
## 37812               insufficient height    1
## 37813            insufficient knowledge    1
## 37814          insufficient lubrication    1
## 37815       insufficient meteorological    1
## 37816           insufficient monitoring    1
## 37817                insufficient pitch    1
## 37818          insufficient preparation    1
## 37819                 insufficient room    1
## 37820                insufficient speed    1
## 37821                 insufficient time    1
## 37822             insufficient training    1
## 37823        insufficient understanding    1
## 37824            insufficiently fatigue    1
## 37825            insufficiently trained    1
## 37826                  insuffuciency of    1
## 37827                    insulation and    1
## 37828               insulation blankets    1
## 37829                insulation ignited    1
## 37830                    insulation off    1
## 37831                       insurance a    1
## 37832                  insurance policy    1
## 37833                  insurance scheme    1
## 37834                     insurance was    1
## 37835                       insured for    1
## 37836                   insured himself    1
## 37837                  insurgents after    1
## 37838                insurgents crashed    1
## 37839               insurmountable drag    1
## 37840                        int flames    1
## 37841                      intact until    1
## 37842                        intake for    1
## 37843                     intake system    1
## 37844                        intake the    1
## 37845              intakes attributable    1
## 37846                     intakes while    1
## 37847                      integrity by    1
## 37848                      integrity of    1
## 37849              intended destination    1
## 37850                  intended landing    1
## 37851                 intended position    1
## 37852                    intended route    1
## 37853                   intended runway    1
## 37854                       intended to    1
## 37855                    intended track    1
## 37856                      intending to    1
## 37857                   intense frontal    1
## 37858                      intense heat    1
## 37859                      intense rain    1
## 37860                 intense rainstorm    1
## 37861                 intense vibration    1
## 37862                 intensity crashed    1
## 37863               intensity developed    1
## 37864                      intensity in    1
## 37865                      intensity of    1
## 37866           intensity thunderstorms    1
## 37867                   intensity until    1
## 37868                   intensive climb    1
## 37869                         intent on    1
## 37870                      intention to    1
## 37871                intentional flight    1
## 37872            intentional inhibition    1
## 37873             intentional operation    1
## 37874              intentional shutdown    1
## 37875                   intentional use    1
## 37876                   intentional vfr    1
## 37877          intentionally attempting    1
## 37878        intentionally disconnected    1
## 37879              intentionally flying    1
## 37880              intentionally ground    1
## 37881                     intentions of    1
## 37882                     intentions or    1
## 37883                interactions among    1
## 37884                 intercept heading    1
## 37885                   intercepted and    1
## 37886                  intercepting the    1
## 37887                   interception of    1
## 37888                   intercom switch    1
## 37889              interference causing    1
## 37890                 interference from    1
## 37891                  interference one    1
## 37892           intergranular fractures    1
## 37893                   interior josãƒâ    1
## 37894                       interior of    1
## 37895                interior weakening    1
## 37896                 intermediate flap    1
## 37897             intermediate position    1
## 37898                intermediate stops    1
## 37899          intermittent compartment    1
## 37900              intermittent failure    1
## 37901         intermittent overspeeding    1
## 37902             intermittent stoppage    1
## 37903        intermittently encountered    1
## 37904                 internal decision    1
## 37905                   internal engine    1
## 37906                  internal failure    1
## 37907                  internal gouging    1
## 37908                 internal injuries    1
## 37909             internal interference    1
## 37910            internatiional airport    1
## 37911            international airlines    1
## 37912         international airport.the    1
## 37913                 international and    1
## 37914              international haneda    1
## 37915       international organizations    1
## 37916         international regulations    1
## 37917            international security    1
## 37918         internationally scheduled    1
## 37919               interpret clearance    1
## 37920                     interpret the    1
## 37921               interpreted crashed    1
## 37922                   interpreted the    1
## 37923                    interrupted by    1
## 37924                   interruption of    1
## 37925                    intersect both    1
## 37926                    intersecting a    1
## 37927               intersecting valley    1
## 37928              intersection killing    1
## 37929             intersection properly    1
## 37930              intersection takeoff    1
## 37931                 interstate bridge    1
## 37932                intervening clouds    1
## 37933                  intervention and    1
## 37934             intervention worsened    1
## 37935                        into 1,100    1
## 37936                        into 1,800    1
## 37937                       into 10,500    1
## 37938                       into 11,000    1
## 37939                       into 11,500    1
## 37940                       into 12,600    1
## 37941                       into 13,000    1
## 37942                       into 22,000    1
## 37943                            into 4    1
## 37944                        into 4,000    1
## 37945                       into 4,000m    1
## 37946                          into 674    1
## 37947                        into 7,600    1
## 37948                        into 8,000    1
## 37949                       into andies    1
## 37950                         into bald    1
## 37951                         into bari    1
## 37952                      into beard's    1
## 37953                          into ben    1
## 37954                          into big    1
## 37955                        into black    1
## 37956                   into blackwater    1
## 37957                        into blind    1
## 37958                        into bluff    1
## 37959                       into boston    1
## 37960                    into bountiful    1
## 37961                        into bucks    1
## 37962                     into building    1
## 37963                        into bukit    1
## 37964                     into bwabwata    1
## 37965                        into cedar    1
## 37966                     into chestnut    1
## 37967                    into chingshan    1
## 37968                         into cinq    1
## 37969                       into cintra    1
## 37970                    into cleveland    1
## 37971                       into cliffs    1
## 37972                        into close    1
## 37973                     into colcanin    1
## 37974                    into colombian    1
## 37975                     into concrete    1
## 37976                      into contact    1
## 37977                   into controlled    1
## 37978                       into costal    1
## 37979                        into crowd    1
## 37980                        into cubuk    1
## 37981                          into del    1
## 37982                       into digboi    1
## 37983                   into downdrafts    1
## 37984                        into early    1
## 37985                          into elk    1
## 37986                   into everglades    1
## 37987                      into extreme    1
## 37988                    into extremely    1
## 37989                   into flames.the    1
## 37990                    into flamesand    1
## 37991                    into foothills    1
## 37992                     into forecast    1
## 37993                        into fouta    1
## 37994                      into foveaux    1
## 37995                        into genoa    1
## 37996                       into giving    1
## 37997                       into ground    1
## 37998                      into guajara    1
## 37999                       into gunung    1
## 38000                      into hangers    1
## 38001                        into hayti    1
## 38002                     into himalaya    1
## 38003                        into homes    1
## 38004                  into hommelfjell    1
## 38005                    into huirotico    1
## 38006                        into icing    1
## 38007                into international    1
## 38008                         into it's    1
## 38009                          into its    1
## 38010                       into jungle    1
## 38011                   into kahlenberg    1
## 38012                      into kowloon    1
## 38013                       into lambir    1
## 38014                      into lamjura    1
## 38015                      into landing    1
## 38016                          into las    1
## 38017                         into last    1
## 38018                       into lights    1
## 38019                       into little    1
## 38020                         into lone    1
## 38021                        into lotru    1
## 38022                       into manila    1
## 38023                          into mar    1
## 38024                     into menzalah    1
## 38025                       into mobile    1
## 38026                       into mollet    1
## 38027                         into mont    1
## 38028                        into monte    1
## 38029                        into moose    1
## 38030                    into nantucket    1
## 38031                 into navigational    1
## 38032                       into nevado    1
## 38033                        into night    1
## 38034                       into nimitz    1
## 38035                  into obstructing    1
## 38036                        into ocean    1
## 38037                          into one    1
## 38038                 into operafjellet    1
## 38039                           into or    1
## 38040                         into oslo    1
## 38041                         into otay    1
## 38042                         into pali    1
## 38043                      into palunge    1
## 38044                          into pan    1
## 38045                      into pandols    1
## 38046                      into panther    1
## 38047                       into paramo    1
## 38048                       into parked    1
## 38049                       into pastra    1
## 38050                     into patascoy    1
## 38051                        into phnom    1
## 38052                          into pic    1
## 38053                      into pinetos    1
## 38054                    into placentia    1
## 38055                        into playa    1
## 38056                       into poleta    1
## 38057                   into powerlines    1
## 38058                      into prairie    1
## 38059                     into probable    1
## 38060                      into quetame    1
## 38061                        into radio    1
## 38062                      into redondo    1
## 38063                         into rice    1
## 38064                          into rio    1
## 38065                        into river    1
## 38066                       into salmon    1
## 38067                         into sand    1
## 38068                       into santos    1
## 38069                      into saposoa    1
## 38070                      into service    1
## 38071                     into sevuokuk    1
## 38072                      into shamsam    1
## 38073                        into small    1
## 38074                         into snow    1
## 38075                       into soviet    1
## 38076                     into spitzkop    1
## 38077                        into steep    1
## 38078                    into stromboli    1
## 38079                        into subic    1
## 38080                        into sunol    1
## 38081                       into taking    1
## 38082                       into tamgas    1
## 38083                       into tangok    1
## 38084                       into tierra    1
## 38085                          into tir    1
## 38086                           into to    1
## 38087                       into tolman    1
## 38088                         into tops    1
## 38089                      into tornado    1
## 38090                   into toruuguero    1
## 38091                         into tree    1
## 38092                      into trinity    1
## 38093                     into trujillo    1
## 38094                        into tunis    1
## 38095                   into turbulence    1
## 38096                 into uncontrolled    1
## 38097                   into unexpected    1
## 38098                 into unfavourable    1
## 38099                         into vega    1
## 38100                     into vehicles    1
## 38101                         into wake    1
## 38102                          into was    1
## 38103                      into weather    1
## 38104                        into which    1
## 38105                        into white    1
## 38106                     into whiteout    1
## 38107                     into wimberry    1
## 38108                    into windshear    1
## 38109                        into woods    1
## 38110                    into worsening    1
## 38111                      into yokotsu    1
## 38112                      into zlatãƒâ    1
## 38113                    intoxicated at    1
## 38114                 intoxicated while    1
## 38115                   intoxication by    1
## 38116                   introduction of    1
## 38117                    intrusion into    1
## 38118                        intveld 22    1
## 38119                       invalid all    1
## 38120                      invasion the    1
## 38121                       inverted 10    1
## 38122                    inverted after    1
## 38123                       inverted at    1
## 38124                   inverted before    1
## 38125                     inverted crew    1
## 38126                  inverted failure    1
## 38127                 inverted improper    1
## 38128                   inverted landed    1
## 38129                  inverted neither    1
## 38130                     inverted spin    1
## 38131                   inverted struck    1
## 38132                       inverted to    1
## 38133                      inverted was    1
## 38134                     inverted with    1
## 38135                    investigate an    1
## 38136                   investigate but    1
## 38137               investigation could    1
## 38138              investigation failed    1
## 38139                  investigation of    1
## 38140              investigation showed    1
## 38141             investigation showned    1
## 38142                 investigation the    1
## 38143               investigation tools    1
## 38144                 investigation was    1
## 38145               investigator stated    1
## 38146             investigators believe    1
## 38147              investigators blamed    1
## 38148             investigators claimed    1
## 38149          investigators determined    1
## 38150            investigators reported    1
## 38151             investigators sifting    1
## 38152          investigators speculated    1
## 38153                   invicta piloted    1
## 38154              involuntary homicide    1
## 38155                  involuntary loss    1
## 38156          involuntary manslaughter    1
## 38157                       involve the    1
## 38158               involved abnormally    1
## 38159                     involved with    1
## 38160                    involvement of    1
## 38161                   involving 6,660    1
## 38162                 involving capital    1
## 38163                     involving the    1
## 38164                     inward during    1
## 38165                        ionian sea    1
## 38166                          iowa due    1
## 38167                        iowa globe    1
## 38168                           iowa in    1
## 38169                          iowa j.p    1
## 38170                           ipao on    1
## 38171                      iran's civil    1
## 38172                    iran's defense    1
## 38173              iran's revolutionary    1
## 38174                       iran aseman    1
## 38175                       iran rahman    1
## 38176                  iranian airliner    1
## 38177                   iranian fighter    1
## 38178                       iranian gun    1
## 38179                  iranian gunboats    1
## 38180               iranian territorial    1
## 38181                    iraqi aircraft    1
## 38182                      iraqi desert    1
## 38183                     ireland early    1
## 38184                   ireland failure    1
## 38185                       ireland the    1
## 38186                       irish coast    1
## 38187                        irkutsk an    1
## 38188             irkutsk international    1
## 38189                     irkutsk magan    1
## 38190                       irkutsk the    1
## 38191                irrational control    1
## 38192                   irrawaddy river    1
## 38193                irregular approach    1
## 38194              irregular ocillation    1
## 38195               irregular operation    1
## 38196                   irregular speed    1
## 38197                 irregular terrain    1
## 38198             irresponsible conduct    1
## 38199              irrigation equipment    1
## 38200                    irs navigation    1
## 38201                         is 11,152    1
## 38202                          is about    1
## 38203                        is assumed    1
## 38204                             is at    1
## 38205                     is attributed    1
## 38206                          is based    1
## 38207                         is carved    1
## 38208                          is close    1
## 38209                         is closed    1
## 38210                      is confirmed    1
## 38211                     is considered    1
## 38212                    is controversy    1
## 38213                        is derived    1
## 38214                           is easy    1
## 38215                             is in    1
## 38216                         is itself    1
## 38217                        is located    1
## 38218                           is more    1
## 38219                             is no    1
## 38220                       is normally    1
## 38221                           is part    1
## 38222                     is speculated    1
## 38223                          is still    1
## 38224                    is susceptible    1
## 38225                           is that    1
## 38226                      is theorized    1
## 38227                         is though    1
## 38228                             is to    1
## 38229                      is traveling    1
## 38230                        is unknown    1
## 38231                        is unusual    1
## 38232                           is used    1
## 38233                       is violated    1
## 38234                           is what    1
## 38235                        isabela to    1
## 38236                     ischia island    1
## 38237                       isfahan the    1
## 38238                     isfanan after    1
## 38239                       isfanan the    1
## 38240                       ishaga area    1
## 38241                      isiro matari    1
## 38242                        isiro when    1
## 38243                islamabad's runway    1
## 38244                       islamabad a    1
## 38245                   islamabad among    1
## 38246                  island's airport    1
## 38247                      island 1,000    1
## 38248                         island 19    1
## 38249                      island after    1
## 38250                        island air    1
## 38251                     island amelia    1
## 38252                        island and    1
## 38253               island appoximately    1
## 38254                    island because    1
## 38255                      island bound    1
## 38256                       island crew    1
## 38257                     island during    1
## 38258                    island failure    1
## 38259                        island for    1
## 38260                         island he    1
## 38261                       island into    1
## 38262                       island last    1
## 38263                    island located    1
## 38264                        island n.y    1
## 38265                       island near    1
## 38266                        island new    1
## 38267                        island one    1
## 38268                     island prison    1
## 38269                   island situated    1
## 38270                       island some    1
## 38271                      island sound    1
## 38272                     island strong    1
## 38273                    island unknown    1
## 38274                       island when    1
## 38275                      island where    1
## 38276                       island whle    1
## 38277                   islands crashed    1
## 38278                    islands during    1
## 38279                   islands shortly    1
## 38280                       islands war    1
## 38281                     islands while    1
## 38282                       isle grande    1
## 38283                       islita into    1
## 38284                     isln advisory    1
## 38285                  isolated showers    1
## 38286                   isolation valve    1
## 38287                 isopropyl alcohol    1
## 38288                   isparta airport    1
## 38289                   isparta instead    1
## 38290                   israeli address    1
## 38291                       israeli air    1
## 38292                     israeli armed    1
## 38293                  israeli occupied    1
## 38294                   israeli phantom    1
## 38295                 israeli territory    1
## 38296                         isssued a    1
## 38297                      issuance and    1
## 38298                     issue however    1
## 38299                     issue terrain    1
## 38300                        issued and    1
## 38301                     issued flight    1
## 38302                         issued on    1
## 38303                  issued requiring    1
## 38304                        issues and    1
## 38305                     issues during    1
## 38306                   istanbul before    1
## 38307                      istanbul due    1
## 38308                       istanbul to    1
## 38309                     it's approach    1
## 38310                       it's brakes    1
## 38311                       it's engine    1
## 38312                        it's final    1
## 38313                        it's flaps    1
## 38314                       it's flight    1
## 38315                    it's inaugural    1
## 38316                      it's initial    1
## 38317                     it's intended    1
## 38318                       it's normal    1
## 38319                     it's original    1
## 38320                        it's right    1
## 38321                        it's rotor    1
## 38322                         it's take    1
## 38323                        it's three    1
## 38324                          it's two    1
## 38325                      it's unclear    1
## 38326                             it 35    1
## 38327                             it 90    1
## 38328                            it and    1
## 38329                      it announced    1
## 38330                          it apart    1
## 38331                     it apparently    1
## 38332                        it appears    1
## 38333                  it approximately    1
## 38334                         it around    1
## 38335                       it assuming    1
## 38336                          it being    1
## 38337                       it believed    1
## 38338                        it bounced    1
## 38339                          it broke    1
## 38340                            it but    1
## 38341                            it can    1
## 38342                         it cannot    1
## 38343                         it cashed    1
## 38344                      it congested    1
## 38345                      it contacted    1
## 38346                       it crashing    1
## 38347                        it crossed    1
## 38348                        it decided    1
## 38349                       it departed    1
## 38350                      it descended    1
## 38351                   it destinatiion    1
## 38352                    it destination    1
## 38353                       it detected    1
## 38354                      it difficult    1
## 38355                           it dove    1
## 38356                        it dropped    1
## 38357                         it during    1
## 38358                     it eventually    1
## 38359                    it experienced    1
## 38360                       it exploded    1
## 38361                      it extremely    1
## 38362                        it finally    1
## 38363                         it flight    1
## 38364                            it for    1
## 38365                         it forced    1
## 38366                          it found    1
## 38367                            it got    1
## 38368                       it happened    1
## 38369                         it headed    1
## 38370                            it his    1
## 38371                          it idled    1
## 38372                        it ignited    1
## 38373                         it impact    1
## 38374                     it impossible    1
## 38375                   it inadequacies    1
## 38376                      it including    1
## 38377                       it informed    1
## 38378                       it intended    1
## 38379                 it intermittently    1
## 38380                           it kept    1
## 38381                            it led    1
## 38382                            it may    1
## 38383                          it might    1
## 38384                          it moved    1
## 38385                         it neared    1
## 38386                      it necessary    1
## 38387                            it not    1
## 38388                            it off    1
## 38389                     it originally    1
## 38390                            it out    1
## 38391                        it overran    1
## 38392                       it ploughed    1
## 38393                      it plummeted    1
## 38394                       it remained    1
## 38395                      it requested    1
## 38396                       it resulted    1
## 38397                           it rose    1
## 38398                           it safe    1
## 38399                      it scheduled    1
## 38400                        it scraped    1
## 38401                        it settled    1
## 38402                           it shot    1
## 38403                        it sounded    1
## 38404                        it spilled    1
## 38405                       it spiraled    1
## 38406                       it squawked    1
## 38407                        it stopped    1
## 38408                       it suffered    1
## 38409                           it sunk    1
## 38410                      it suspended    1
## 38411                         it taxied    1
## 38412                          it there    1
## 38413                        it through    1
## 38414                          it tried    1
## 38415                      it undershot    1
## 38416                      it underwent    1
## 38417                it unintentionally    1
## 38418                         it veered    1
## 38419                      it virtually    1
## 38420                         it wasn't    1
## 38421                        it weren't    1
## 38422                          it would    1
## 38423                          it wrong    1
## 38424                       italian air    1
## 38425                  italian aircraft    1
## 38426                  italian airspace    1
## 38427                        italian as    1
## 38428                    italian border    1
## 38429                     italian court    1
## 38430                  italian designer    1
## 38431                       italian oil    1
## 38432                     italy crashed    1
## 38433                        italy shot    1
## 38434                         itami air    1
## 38435                     itavia flight    1
## 38436                          itek air    1
## 38437                     items crashed    1
## 38438                   items specified    1
## 38439                         items the    1
## 38440                             its 2    1
## 38441                       its ability    1
## 38442                        its airbus    1
## 38443                     its alternate    1
## 38444                      its altitude    1
## 38445                  its approach.the    1
## 38446                    its artificial    1
## 38447                           its atc    1
## 38448                      its attitude    1
## 38449                         its belly    1
## 38450                      its blowdown    1
## 38451                         its cargo    1
## 38452                         its cause    1
## 38453                        its center    1
## 38454                     its certified    1
## 38455                     its clearance    1
## 38456                         its climb    1
## 38457                  its consequences    1
## 38458                        its course    1
## 38459                         its crest    1
## 38460                       its current    1
## 38461                      its delivery    1
## 38462                    its descending    1
## 38463                       its descent    1
## 38464                        its design    1
## 38465                    its dissenting    1
## 38466                      its ejection    1
## 38467                       its elastic    1
## 38468                          its fuel    1
## 38469                          its full    1
## 38470                     its fullblown    1
## 38471                          its high    1
## 38472                       its holding    1
## 38473                          its home    1
## 38474                        its impact    1
## 38475                       its initial    1
## 38476                     its intensity    1
## 38477                    its intentions    1
## 38478                        its limits    1
## 38479                       its loading    1
## 38480                        its maiden    1
## 38481                its malfunctioning    1
## 38482               its maneuverability    1
## 38483                    its navigation    1
## 38484                       its neutral    1
## 38485                           its new    1
## 38486                       its onboard    1
## 38487                   its operational    1
## 38488                      its original    1
## 38489                         its owner    1
## 38490                        its pilots    1
## 38491                       its planned    1
## 38492                         its point    1
## 38493                    its precarious    1
## 38494                       its primary    1
## 38495                    its programmed    1
## 38496                        its proper    1
## 38497                         its pylon    1
## 38498                         its rapid    1
## 38499                         its route    1
## 38500                       its routine    1
## 38501                        its runway    1
## 38502                        its second    1
## 38503                          its side    1
## 38504                         its sixth    1
## 38505                        its source    1
## 38506                         its speed    1
## 38507                    its subsequent    1
## 38508                      its supports    1
## 38509                          its take    1
## 38510                          its test    1
## 38511                        its torque    1
## 38512                         its total    1
## 38513                        its vector    1
## 38514                      its vicinity    1
## 38515                       its warning    1
## 38516                      its warnings    1
## 38517                          its wing    1
## 38518                          itself a    1
## 38519                      itself which    1
## 38520                       iturbi well    1
## 38521                        iv airport    1
## 38522                           iv both    1
## 38523                     ivato airport    1
## 38524             ixtaccihuatl mountain    1
## 38525                        izu island    1
## 38526                               j g    1
## 38527                           j.p the    1
## 38528                      jack gilbert    1
## 38529                    jack mechanism    1
## 38530                          jack pad    1
## 38531                     jackpole mast    1
## 38532                jackscrew assembly    1
## 38533              jackscrew assembly's    1
## 38534                 jackscrew leaving    1
## 38535                      jackson hole    1
## 38536            jacksons international    1
## 38537                jacksonville naval    1
## 38538            jacksonville sheriff's    1
## 38539                   jacques tribaud    1
## 38540                        jaffna the    1
## 38541                  jagged shoreline    1
## 38542                          jail but    1
## 38543                           jail by    1
## 38544                      jail crashed    1
## 38545                     jail sentence    1
## 38546                   jaiskibel after    1
## 38547                     jakarta coast    1
## 38548                        jakarta it    1
## 38549                       jakarta sea    1
## 38550                     jakarta while    1
## 38551                      jake lamotta    1
## 38552                jakobkondre double    1
## 38553                 jalalabad airport    1
## 38554                       jalapa flew    1
## 38555                           jam and    1
## 38556                            jam at    1
## 38557                            jam of    1
## 38558                  jamba overloaded    1
## 38559                      jambed while    1
## 38560                         james had    1
## 38561                      james killed    1
## 38562                     james montijo    1
## 38563                     jamia weather    1
## 38564                    jammed against    1
## 38565                        jammed and    1
## 38566                   jammed elevator    1
## 38567                      jammed right    1
## 38568                     jammed rudder    1
## 38569                 jammed stabilizer    1
## 38570                  jammed tailplane    1
## 38571                        jammed the    1
## 38572                  jamnagar railway    1
## 38573                         jan smuts    1
## 38574                    jane dornacker    1
## 38575                       jane froman    1
## 38576                     janeiro after    1
## 38577                    janeiro galeao    1
## 38578                     janeiro radar    1
## 38579                        janeiro to    1
## 38580                     janerio after    1
## 38581                janerio separation    1
## 38582                      janiero shot    1
## 38583                        jantar the    1
## 38584                        january 19    1
## 38585                      january 1989    1
## 38586                        january 27    1
## 38587                         january 6    1
## 38588                japan accumulation    1
## 38589                          japan by    1
## 38590                          japan to    1
## 38591                         japan u.s    1
## 38592                       japan where    1
## 38593                 japanese aircraft    1
## 38594                      japanese and    1
## 38595                  japanese fighter    1
## 38596            japanese investigators    1
## 38597                     japanese song    1
## 38598                        jauhar the    1
## 38599                          java sea    1
## 38600                         java shot    1
## 38601                          java the    1
## 38602                    jaya southwest    1
## 38603                      jean airport    1
## 38604                  jean gandesberry    1
## 38605                     jean lapierre    1
## 38606                       jean lesage    1
## 38607                       jean mermoz    1
## 38608                       jebel hilal    1
## 38609                        jeddah the    1
## 38610                  jefferson county    1
## 38611                   jeffreys killed    1
## 38612                        jeju after    1
## 38613                     jennings into    1
## 38614                 jeppesen approach    1
## 38615                    jeppesen chart    1
## 38616                     jeppesen were    1
## 38617                     jerache river    1
## 38618                         jerry lee    1
## 38619                      jersey cause    1
## 38620                     jersey midair    1
## 38621                   jersey possible    1
## 38622                        jersey sar    1
## 38623                     jersey strong    1
## 38624                jersey subdivision    1
## 38625                        jersey the    1
## 38626                         jersey to    1
## 38627                   jessica dubroff    1
## 38628                     jet's cockpit    1
## 38629                        jet's left    1
## 38630                      jet aircraft    1
## 38631                     jet airliners    1
## 38632                            jet as    1
## 38633                          jet blew    1
## 38634                        jet caught    1
## 38635                      jet commuter    1
## 38636                      jet declared    1
## 38637                       jet engines    1
## 38638                        jet failed    1
## 38639                          jet flew    1
## 38640                          jet fuel    1
## 38641                            jet he    1
## 38642                           jet lag    1
## 38643                        jet landed    1
## 38644                          jet lost    1
## 38645                         jet nosed    1
## 38646                      jet overshot    1
## 38647                 jet photographing    1
## 38648                        jet pilots    1
## 38649                           jet pod    1
## 38650                        jet rested    1
## 38651                        jet showed    1
## 38652                         jet three    1
## 38653                         jet tried    1
## 38654                          jet when    1
## 38655                         jet which    1
## 38656                 jetliner collided    1
## 38657                  jetliner scraped    1
## 38658                    jetliner shook    1
## 38659                     jetliner slid    1
## 38660                          jets had    1
## 38661                          jets was    1
## 38662                     jetstream the    1
## 38663                      jettison the    1
## 38664                    jettisoned and    1
## 38665                   jettisoned over    1
## 38666               jettisoning luggage    1
## 38667                          jetty as    1
## 38668                          jeuk and    1
## 38669             jeune.tower personnel    1
## 38670                        jeweler in    1
## 38671                    jeweler intent    1
## 38672                       jfk airport    1
## 38673                            jfk at    1
## 38674                       jfk despite    1
## 38675                           jfk new    1
## 38676                         jfk while    1
## 38677                           jiles p    1
## 38678                         jim croce    1
## 38679                        jim reeves    1
## 38680                  jima malfunction    1
## 38681                       jima struck    1
## 38682                         jipe lake    1
## 38683                     joaquin blume    1
## 38684                          jobs the    1
## 38685                       johannes iv    1
## 38686                      john's river    1
## 38687                       john denver    1
## 38688                        john derry    1
## 38689                      john douglas    1
## 38690                        john heinz    1
## 38691                         john hill    1
## 38692                         john jack    1
## 38693                            john m    1
## 38694                       john morgan    1
## 38695                      john salmond    1
## 38696                            john t    1
## 38697                        john tower    1
## 38698                          johns he    1
## 38699                         johns two    1
## 38700                        johnson 52    1
## 38701                  johnson suffered    1
## 38702                          joined a    1
## 38703                          joint at    1
## 38704                     joint failure    1
## 38705                          joint of    1
## 38706                         joint the    1
## 38707                          jolt the    1
## 38708                     jomo kenyatta    1
## 38709                        jomsom due    1
## 38710                        jomsom the    1
## 38711                         jomsom to    1
## 38712                        jomson the    1
## 38713                     jonathan mann    1
## 38714               jordanian terrorist    1
## 38715                    jorge newberry    1
## 38716                       jorge while    1
## 38717                  josãƒâ francisco    1
## 38718                   josãƒâ martãƒâ­    1
## 38719                    jose alejandro    1
## 38720                         jose five    1
## 38721                    jose following    1
## 38722                       jose iturbi    1
## 38723                     jose possible    1
## 38724                     josef glacier    1
## 38725                         joseph in    1
## 38726                    joseph karrafa    1
## 38727                    joseph lamotta    1
## 38728                          joseph p    1
## 38729                    joshua nkomo's    1
## 38730                journalists aboard    1
## 38731              journalists covering    1
## 38732                 journalists crash    1
## 38733               journalists crashed    1
## 38734                   journalists the    1
## 38735                      journey back    1
## 38736                        journey of    1
## 38737                       journey via    1
## 38738                          joy ride    1
## 38739                             jr 29    1
## 38740                             jr 38    1
## 38741                            jr the    1
## 38742                       ju88 german    1
## 38743                           juan de    1
## 38744                           juan in    1
## 38745                    juan mountains    1
## 38746                        juan porto    1
## 38747                         juan with    1
## 38748                        juanda for    1
## 38749                      juarez where    1
## 38750                      juba airport    1
## 38751                          juba two    1
## 38752                  juchitepec about    1
## 38753                    judge advocate    1
## 38754                   judge concluded    1
## 38755                         judge the    1
## 38756                       judging his    1
## 38757                 judgment evidence    1
## 38758                     judgment poor    1
## 38759                      judgment the    1
## 38760              judgment unwarranted    1
## 38761                       juliaca the    1
## 38762                      julian frank    1
## 38763                   juliana airport    1
## 38764                   juliana crashed    1
## 38765                   juliane koepcke    1
## 38766                           july 15    1
## 38767                         july 2004    1
## 38768                            july 3    1
## 38769                           jump en    1
## 38770                          jump out    1
## 38771                           jump to    1
## 38772                       jumped from    1
## 38773                        jumped out    1
## 38774                       jumped over    1
## 38775                       jumpers the    1
## 38776                      jumping from    1
## 38777                        jumping in    1
## 38778                    jumpseat which    1
## 38779                         june 1958    1
## 38780                         june 1980    1
## 38781                     june thorburn    1
## 38782                  juneau municipal    1
## 38783                   juneau possible    1
## 38784               juneau undetermined    1
## 38785                       juneau when    1
## 38786                         jungle 10    1
## 38787                         jungle 15    1
## 38788                        jungle 170    1
## 38789                         jungle 25    1
## 38790                          jungle 4    1
## 38791                          jungle 5    1
## 38792                         jungle 70    1
## 38793                    jungle airport    1
## 38794              jungle approximately    1
## 38795                     jungle before    1
## 38796                     jungle canopy    1
## 38797                    jungle covered    1
## 38798                    jungle crashed    1
## 38799                         jungle en    1
## 38800                        jungle for    1
## 38801                     jungle making    1
## 38802                   jungle mountain    1
## 38803               jungle mountainside    1
## 38804                       jungle near    1
## 38805                        jungle one    1
## 38806                     jungle region    1
## 38807                      jungle there    1
## 38808                      jungle which    1
## 38809                     jungled hills    1
## 38810                       junior high    1
## 38811                         junkers 1    1
## 38812                     junquito hill    1
## 38813                        jury found    1
## 38814                            just 2    1
## 38815                          just 300    1
## 38816                            just 9    1
## 38817                            just a    1
## 38818                        just above    1
## 38819                       just beyond    1
## 38820                      just cleared    1
## 38821                    just completed    1
## 38822                       just exited    1
## 38823                 just manufactured    1
## 38824                      just minutes    1
## 38825                    just northwest    1
## 38826                      just outside    1
## 38827                    just performed    1
## 38828                        just short    1
## 38829                          just shy    1
## 38830                          just six    1
## 38831                        just south    1
## 38832                 just successfully    1
## 38833                        just under    1
## 38834                       just wanted    1
## 38835                justifiable reason    1
## 38836                   juurusvesi lost    1
## 38837               juvenal habyarimana    1
## 38838                    juwata airport    1
## 38839                              k 16    1
## 38840                       kabul after    1
## 38841                     kabul airport    1
## 38842                     kabul because    1
## 38843                          kabul in    1
## 38844                          kabul on    1
## 38845                     kabul weather    1
## 38846                       kabuleti in    1
## 38847                  kabupaten lingga    1
## 38848                     kaczynski and    1
## 38849                       kaduqli the    1
## 38850                   kahalui airport    1
## 38851                   kahlenberg hill    1
## 38852                   kahuiui airport    1
## 38853                          kai shek    1
## 38854                           kai tak    1
## 38855                       kaiapit the    1
## 38856                    kailahun while    1
## 38857                      kaimai range    1
## 38858                   kaimana airport    1
## 38859                      kalãƒâ vryta    1
## 38860                      kalangan the    1
## 38861              kaleva inadvertently    1
## 38862                        kalibo and    1
## 38863                        kalibo but    1
## 38864                  kalikot district    1
## 38865                         kalora at    1
## 38866                      kalu village    1
## 38867                        kampot the    1
## 38868                        kamunay at    1
## 38869                         kan river    1
## 38870              kanchenjunga remains    1
## 38871              kandahar afghanistan    1
## 38872                    kandahar after    1
## 38873                  kandahar because    1
## 38874                       kandahar to    1
## 38875                      kandrian the    1
## 38876                      kanishka the    1
## 38877                      kano claimed    1
## 38878                kano international    1
## 38879                           kano to    1
## 38880                         kansas to    1
## 38881                     kantakan shot    1
## 38882                   kaolokung while    1
## 38883                         kapell 31    1
## 38884                        kapur 67nm    1
## 38885                   karachi airport    1
## 38886                       karachi and    1
## 38887                  karachi pakistan    1
## 38888                    karachi sydney    1
## 38889                       karachi the    1
## 38890                        karachi to    1
## 38891                     karaoke house    1
## 38892                   karatepa during    1
## 38893                    kardla airport    1
## 38894                    kariba airport    1
## 38895                      karmwal pass    1
## 38896                        karrafa on    1
## 38897                  kashmir princess    1
## 38898                   kastrup airport    1
## 38899                         kataib al    1
## 38900                   katherine river    1
## 38901                  kathleen kennedy    1
## 38902                 kathmandu contact    1
## 38903                kathmandu straight    1
## 38904               kathmandu tribhuvan    1
## 38905                   katmai national    1
## 38906                          kato and    1
## 38907                      kauai hawaii    1
## 38908                     kauai shortly    1
## 38909                kaunakakai airport    1
## 38910                         kays band    1
## 38911                kazakstan airlines    1
## 38912                         kazan hit    1
## 38913                            kc 135    1
## 38914                          kea peak    1
## 38915                      keefer while    1
## 38916                     keelung river    1
## 38917                         keene due    1
## 38918                          keep his    1
## 38919                        keep track    1
## 38920                       keeping out    1
## 38921                       keeping the    1
## 38922                      keeping them    1
## 38923                      keeping with    1
## 38924                          kelãƒâ a    1
## 38925                        kellogg in    1
## 38926               kelowna flightcraft    1
## 38927                 kennedy's failure    1
## 38928                 kennedy cavendish    1
## 38929                    kennedy killed    1
## 38930                       kennedy u.s    1
## 38931               kennedy volunteered    1
## 38932                       kennedy was    1
## 38933                      kennedy were    1
## 38934                     kenny cortese    1
## 38935                          kent was    1
## 38936                     kentucky were    1
## 38937                    kentucky while    1
## 38938                          kenya at    1
## 38939                    kenya tanzania    1
## 38940                       kenya while    1
## 38941                      kenyan labor    1
## 38942            kenyatta international    1
## 38943                     kept applying    1
## 38944                           kept on    1
## 38945                       kept trying    1
## 38946                   keri lighthouse    1
## 38947                        kerkira in    1
## 38948                         kerkis in    1
## 38949                    kerman besides    1
## 38950                  kerosene instead    1
## 38951                    kerosene stove    1
## 38952                    kerrville folk    1
## 38953                      kesugi ridge    1
## 38954                   ketchican while    1
## 38955                     ketchikan the    1
## 38956                          key west    1
## 38957            khabarovsk airport.the    1
## 38958                        khalif and    1
## 38959                          kham duc    1
## 38960                   kharkov airport    1
## 38961                        kharkov to    1
## 38962                      khartoum and    1
## 38963                       khasi hills    1
## 38964                           khat to    1
## 38965                      khe airfield    1
## 38966                   khewra possible    1
## 38967                          khli air    1
## 38968                      khmeimim air    1
## 38969                       khojak pass    1
## 38970                  khomeini airport    1
## 38971                   khorramabad the    1
## 38972                     khoul claimed    1
## 38973                  kiangwan airport    1
## 38974                            kias a    1
## 38975                           kias in    1
## 38976                          kias the    1
## 38977                    kiev generator    1
## 38978                      kiled aboard    1
## 38979               kilimanjaro failure    1
## 38980                    kilimanjaro to    1
## 38981                      kill himself    1
## 38982                          kill his    1
## 38983                    kill president    1
## 38984                  kill presidental    1
## 38985                          kill the    1
## 38986                         killed 10    1
## 38987                    killed actress    1
## 38988                      killed among    1
## 38989                         killed at    1
## 38990                    killed because    1
## 38991                      killed blame    1
## 38992                       killed both    1
## 38993                      killed cause    1
## 38994                   killed clemente    1
## 38995                   killed collided    1
## 38996                       killed crew    1
## 38997                     killed denver    1
## 38998                  killed deviation    1
## 38999                killed disappeared    1
## 39000                    killed douglas    1
## 39001                     killed during    1
## 39002                     killed eleven    1
## 39003                  killed elizabeth    1
## 39004                       killed eric    1
## 39005                       killed five    1
## 39006                   killed fuselage    1
## 39007                      killed helen    1
## 39008                    killed himself    1
## 39009                        killed hit    1
## 39010                 killed inadequate    1
## 39011             killed incapacitation    1
## 39012                  killed instantly    1
## 39013                    killed johnson    1
## 39014                       killed king    1
## 39015                      killed later    1
## 39016                       killed lost    1
## 39017                      killed maria    1
## 39018                    killed mexican    1
## 39019                killed misjudgment    1
## 39020                       killed most    1
## 39021                     killed munson    1
## 39022               killed navigational    1
## 39023                         killed no    1
## 39024                   killed operator    1
## 39025                       killed poor    1
## 39026                      killed power    1
## 39027                  killed premature    1
## 39028                 killed procedural    1
## 39029                         killed pt    1
## 39030                    killed ranging    1
## 39031                     killed reeves    1
## 39032                    killed several    1
## 39033                        killed she    1
## 39034                         killed st    1
## 39035                    killed stalled    1
## 39036                        killed two    1
## 39037                killed unfavorable    1
## 39038                       killed wife    1
## 39039                   killed wreckage    1
## 39040                   killed.icing in    1
## 39041                   killed.the ntsb    1
## 39042                        killing 10    1
## 39043                        killing 17    1
## 39044                        killing 18    1
## 39045                        killing 19    1
## 39046                         killing 2    1
## 39047                        killing 20    1
## 39048                        killing 22    1
## 39049                        killing 23    1
## 39050                        killing 24    1
## 39051                         killing 5    1
## 39052                        killing 50    1
## 39053                         killing 6    1
## 39054                         killing 8    1
## 39055                     killing actor    1
## 39056                        killing an    1
## 39057                       killing him    1
## 39058                        killing lt    1
## 39059                      killing nine    1
## 39060                killing passengers    1
## 39061                      killing some    1
## 39062                   killing sudan's    1
## 39063                     killing three    1
## 39064                         kilo lima    1
## 39065                   kilograms liter    1
## 39066                     kilograms the    1
## 39067                    kilometer from    1
## 39068                   kilometer short    1
## 39069                   kilometers away    1
## 39070                  kilometers short    1
## 39071                   kilometre 1,100    1
## 39072                       kilos above    1
## 39073                         kilp yavr    1
## 39074                     kilpatrick of    1
## 39075                    kimhae airport    1
## 39076                         kimpo air    1
## 39077                       kin jamaica    1
## 39078                      kincolith on    1
## 39079                     kind occurred    1
## 39080                          kind the    1
## 39081                          kind was    1
## 39082              kindergarten killing    1
## 39083                     kindu airport    1
## 39084                  kinesthetic cues    1
## 39085                   king's mountain    1
## 39086                        king tuner    1
## 39087                       kingston at    1
## 39088                  kingston jamaica    1
## 39089                      kingston kin    1
## 39090                  kinnekulle after    1
## 39091                            kino a    1
## 39092                  kinshasa airport    1
## 39093                      kinshasa and    1
## 39094                       kinshasa he    1
## 39095                    kinshasa while    1
## 39096              kirksville municipal    1
## 39097                  kirksville where    1
## 39098                  kirksville while    1
## 39099                      kiroli hills    1
## 39100                   kirovograd shot    1
## 39101                      kirtland afb    1
## 39102                 kisangani airport    1
## 39103                     kisangani its    1
## 39104                       kismu after    1
## 39105                        kisumu the    1
## 39106                        kiunga and    1
## 39107                        kivu after    1
## 39108                         kivu area    1
## 39109                         klabat in    1
## 39110                     klamath falls    1
## 39111                           klm 234    1
## 39112                      klm aircraft    1
## 39113                       klm captain    1
## 39114                       klyuchi air    1
## 39115                    km authorities    1
## 39116                              km e    1
## 39117                            km ese    1
## 39118                              km h    1
## 39119                             km ne    1
## 39120                       km northwes    1
## 39121                             km se    1
## 39122                              km w    1
## 39123                             kms e    1
## 39124                       kms further    1
## 39125                         kms short    1
## 39126                     kms southeast    1
## 39127                           knbc in    1
## 39128                         knee high    1
## 39129                           knew of    1
## 39130                         knew this    1
## 39131                      knife forced    1
## 39132                         knight 56    1
## 39133                     knob mountain    1
## 39134                          knoll 10    1
## 39135                         knoll and    1
## 39136                    knoll mountain    1
## 39137                     knoll tearing    1
## 39138                     knot tailwind    1
## 39139                       knots 2,150    1
## 39140                         knots and    1
## 39141                          knots at    1
## 39142                       knots befoe    1
## 39143                      knots before    1
## 39144                knots contributing    1
## 39145                      knots during    1
## 39146                          knots en    1
## 39147                   knots indicated    1
## 39148                  knots stipulated    1
## 39149                          knots to    1
## 39150                         knots too    1
## 39151                        knots with    1
## 39152                  know coordinates    1
## 39153                          know his    1
## 39154                          know how    1
## 39155                          know the    1
## 39156                        know there    1
## 39157                     knowing their    1
## 39158                     knowing where    1
## 39159                   knowledge crash    1
## 39160                      knowledge in    1
## 39161                      knowledge on    1
## 39162                    knowledge that    1
## 39163                    known airliner    1
## 39164                         known and    1
## 39165                        known both    1
## 39166                       known cargo    1
## 39167                   known collision    1
## 39168                   known conductor    1
## 39169                known deficiencies    1
## 39170                      known effect    1
## 39171                  known electrical    1
## 39172                       known facts    1
## 39173                    known marginal    1
## 39174                     known message    1
## 39175                 known occurrences    1
## 39176                       known radio    1
## 39177                       known there    1
## 39178                          knts and    1
## 39179                   knuku mountains    1
## 39180                      knute rockne    1
## 39181                 kobenhavn kastrup    1
## 39182                     koepcke found    1
## 39183                       koepcke had    1
## 39184                       koepcke her    1
## 39185                     koepcke would    1
## 39186                       kohat about    1
## 39187                    kokoda airport    1
## 39188                        kokoda gap    1
## 39189                     kokstad while    1
## 39190                  koltsovo airport    1
## 39191                      kolyma river    1
## 39192                         komawa at    1
## 39193                      kong airport    1
## 39194                      kong clipper    1
## 39195                     kong mountain    1
## 39196                       kong runway    1
## 39197                          kong the    1
## 39198                  koningin juliana    1
## 39199                  kopernik crashed    1
## 39200                      korea strait    1
## 39201                         korea the    1
## 39202                      korean agent    1
## 39203                        korean air    1
## 39204                      korean air's    1
## 39205                        korean mig    1
## 39206                        korean war    1
## 39207                      korean woman    1
## 39208                    kosciuszko the    1
## 39209                      kosice pilot    1
## 39210                       kosovo with    1
## 39211                   kosti aerodrome    1
## 39212              kotika international    1
## 39213                     kouh mountain    1
## 39214                   koupãƒâ located    1
## 39215                       kowloon bay    1
## 39216                        kozani due    1
## 39217                     krasnoyarsk 4    1
## 39218             krasnoyarsk territory    1
## 39219                          kt cross    1
## 39220                           kt loss    1
## 39221                           kt then    1
## 39222                      kuala lumpur    1
## 39223                        kubeck was    1
## 39224                   kulbach crashed    1
## 39225                           kulu in    1
## 39226                       kulwicki 38    1
## 39227                    kumaraden hill    1
## 39228                   kunming airdome    1
## 39229                         kuopio he    1
## 39230                      kura airport    1
## 39231                      kutaisa crew    1
## 39232                       kuwait city    1
## 39233                kwajalein possible    1
## 39234                     kwazulu natal    1
## 39235                     kweilin after    1
## 39236                       kweilin for    1
## 39237                       kweilin the    1
## 39238                    kxndb waypoint    1
## 39239                 kyrenia mountains    1
## 39240                    kyrenia turkey    1
## 39241                      kyu sakamoto    1
## 39242                    l'eglise where    1
## 39243                        l'obiou at    1
## 39244                            l 049s    1
## 39245                            l 1011    1
## 39246                        l suffered    1
## 39247                            l wing    1
## 39248                              la 7    1
## 39249                       la aguadita    1
## 39250                          la artcc    1
## 39251                          la caida    1
## 39252                         la cierva    1
## 39253                          la cinta    1
## 39254                           la cruz    1
## 39255                         la culata    1
## 39256                      la esperanza    1
## 39257                         la gloria    1
## 39258                         la gotera    1
## 39259                         la harvre    1
## 39260                        la latilla    1
## 39261                       la libertad    1
## 39262                       la magdelen    1
## 39263                         la marina    1
## 39264                        la melosas    1
## 39265                          la motte    1
## 39266                          la mujer    1
## 39267                         la nacion    1
## 39268                        la orchila    1
## 39269                        la pedrera    1
## 39270                        la rodilla    1
## 39271                       la roquette    1
## 39272                       la trinidad    1
## 39273                          la union    1
## 39274                     la vanguardia    1
## 39275                    labeled lacked    1
## 39276                    labor minister    1
## 39277               laboratory analysis    1
## 39278                     labuan island    1
## 39279                      lachovlin la    1
## 39280                          lacked a    1
## 39281                      lacked guard    1
## 39282                     lacked safety    1
## 39283              lacking navigational    1
## 39284                        laden pb4y    1
## 39285                      ladysmith in    1
## 39286                            lae to    1
## 39287                           lag and    1
## 39288                        laga while    1
## 39289                       lage viking    1
## 39290                        lagens due    1
## 39291                        lagoon 400    1
## 39292                        lagoon 500    1
## 39293                    lagoon crashed    1
## 39294                     lagoon during    1
## 39295                    lagoon killing    1
## 39296                        lagoon the    1
## 39297                  lagoons mountain    1
## 39298                           lagos 1    1
## 39299                           lagos a    1
## 39300                     lagos airport    1
## 39301                     lagos landing    1
## 39302                         lagos vor    1
## 39303                  laguna huanacota    1
## 39304                   laguna mountain    1
## 39305                   lahore pakistan    1
## 39306                         laid down    1
## 39307                         lajes afb    1
## 39308                         lajes air    1
## 39309                     lajes airport    1
## 39310                         lajes the    1
## 39311                            lake 3    1
## 39312                        lake 7.7nm    1
## 39313                        lake about    1
## 39314                lake approximately    1
## 39315                       lake batuco    1
## 39316                      lake bolomon    1
## 39317                       lake chelan    1
## 39318                    lake constance    1
## 39319                      lake control    1
## 39320                      lake crashed    1
## 39321                       lake during    1
## 39322                       lake forest    1
## 39323                         lake fuel    1
## 39324                    lake inability    1
## 39325                         lake iowa    1
## 39326                   lake juurusvesi    1
## 39327                         lake kilp    1
## 39328                      lake located    1
## 39329                         lake mead    1
## 39330                       lake monona    1
## 39331                           lake on    1
## 39332                          lake one    1
## 39333                lake pontchartrain    1
## 39334                        lake radio    1
## 39335                       lake ramadi    1
## 39336                         lake seul    1
## 39337                      lake shortly    1
## 39338                    lake winnebago    1
## 39339                   lakehurst naval    1
## 39340                     lakehurst new    1
## 39341                    lakhurst field    1
## 39342                     lambert field    1
## 39343                       lambir hill    1
## 39344                    lamentation in    1
## 39345                      lamjura hill    1
## 39346                    lamotta killed    1
## 39347                       lamotta son    1
## 39348                         lamy chad    1
## 39349                lancaster's sortie    1
## 39350                 lancaster crashed    1
## 39351                           land 10    1
## 39352                          land 120    1
## 39353                            land 9    1
## 39354                    land according    1
## 39355                          land all    1
## 39356                     land although    1
## 39357                         land atop    1
## 39358                         land both    1
## 39359                        land cause    1
## 39360                      land causing    1
## 39361                      land changes    1
## 39362                  land conflicting    1
## 39363                       land crew's    1
## 39364                   land detonation    1
## 39365                     land directly    1
## 39366                  land disappeared    1
## 39367                           land do    1
## 39368                     land downwind    1
## 39369                         land each    1
## 39370                       land eighty    1
## 39371                       land engine    1
## 39372                        land error    1
## 39373                     land executed    1
## 39374                       land flying    1
## 39375                    land following    1
## 39376                       land forced    1
## 39377                         land from    1
## 39378                        land given    1
## 39379                         land high    1
## 39380                        land icing    1
## 39381                  land immediately    1
## 39382                  land inadvertent    1
## 39383                         land into    1
## 39384                       land killed    1
## 39385                      land killing    1
## 39386                         land long    1
## 39387                         land loss    1
## 39388                       land misuse    1
## 39389                   land navigation    1
## 39390                         land poor    1
## 39391                        land power    1
## 39392                  land preliminary    1
## 39393                    land premature    1
## 39394                   land procedural    1
## 39395                       land rather    1
## 39396                      land reports    1
## 39397                       land series    1
## 39398                     land shifting    1
## 39399                       land struck    1
## 39400                         land this    1
## 39401                     land vanished    1
## 39402                          land vfr    1
## 39403                       land visual    1
## 39404                          land was    1
## 39405                    land windshear    1
## 39406             land.the continuation    1
## 39407                      landed 1,000    1
## 39408                      landed 1,725    1
## 39409                         landed 17    1
## 39410                        landed 200    1
## 39411                        landed 500    1
## 39412                      landed about    1
## 39413                      landed after    1
## 39414                     landed almost    1
## 39415                      landed cause    1
## 39416                        landed due    1
## 39417                   landed exploded    1
## 39418                  landed extremely    1
## 39419                       landed hard    1
## 39420                         landed he    1
## 39421                       landed long    1
## 39422                        landed mid    1
## 39423                        landed off    1
## 39424                       landed onto    1
## 39425                       landed past    1
## 39426                      landed right    1
## 39427                    landed skidded    1
## 39428                   landed striking    1
## 39429                        landed too    1
## 39430                    landed upright    1
## 39431                     landed upside    1
## 39432                      landed while    1
## 39433                         landing 1    1
## 39434                    landing 1,450m    1
## 39435                        landing 21    1
## 39436                     landing 5,800    1
## 39437                     landing above    1
## 39438                   landing against    1
## 39439                       landing all    1
## 39440                  landing allowing    1
## 39441                   landing appoach    1
## 39442             landing approximately    1
## 39443                landing attempting    1
## 39444                     landing below    1
## 39445                    landing beside    1
## 39446                      landing both    1
## 39447                     landing broke    1
## 39448                  landing building    1
## 39449                        landing by    1
## 39450                  landing canadian    1
## 39451                   landing carried    1
## 39452                    landing charts    1
## 39453                 landing clearance    1
## 39454             landing configuration    1
## 39455              landing coordination    1
## 39456                  landing crrashed    1
## 39457                    landing curfew    1
## 39458                  landing delaying    1
## 39459                   landing despite    1
## 39460                landing detonation    1
## 39461                     landing eight    1
## 39462                 landing equipment    1
## 39463                landing eventually    1
## 39464                landing facilities    1
## 39465                   landing fatigue    1
## 39466                     landing field    1
## 39467                      landing fire    1
## 39468                      landing five    1
## 39469                     landing flaps    1
## 39470                    landing flying    1
## 39471                       landing for    1
## 39472                      landing fuel    1
## 39473                  landing gear.the    1
## 39474                     landing geart    1
## 39475                landing inadequate    1
## 39476                        landing is    1
## 39477                        landing it    1
## 39478                      landing lack    1
## 39479                       landing led    1
## 39480                     landing light    1
## 39481                   landing limited    1
## 39482                      landing long    1
## 39483                      landing made    1
## 39484                  landing maneuver    1
## 39485                  landing material    1
## 39486                    landing midair    1
## 39487                landing operations    1
## 39488                       landing pad    1
## 39489                      landing path    1
## 39490                   landing pattern    1
## 39491                     landing phase    1
## 39492                     landing plane    1
## 39493                      landing poor    1
## 39494                  landing possible    1
## 39495                       landing ran    1
## 39496                   landing reached    1
## 39497                  landing resulted    1
## 39498                       landing run    1
## 39499                    landing runway    1
## 39500                    landing safely    1
## 39501                landing sideswiped    1
## 39502                     landing sites    1
## 39503                       landing six    1
## 39504                      landing soon    1
## 39505                     landing south    1
## 39506                      landing spot    1
## 39507                    landing struck    1
## 39508                 landing survivors    1
## 39509                 landing technique    1
## 39510                      landing that    1
## 39511                      landing this    1
## 39512                      landing took    1
## 39513                   landing touched    1
## 39514                landing trajectory    1
## 39515                    landing trying    1
## 39516                       landing two    1
## 39517                 landing undershot    1
## 39518                   landing weather    1
## 39519                      landing zone    1
## 39520                  landings allowed    1
## 39521                       landings at    1
## 39522                    landings error    1
## 39523                landings following    1
## 39524                     landmarks the    1
## 39525                       lands while    1
## 39526                     landscape and    1
## 39527                      laned safely    1
## 39528                    lanes improper    1
## 39529                   langeoog island    1
## 39530                      language and    1
## 39531                 language problems    1
## 39532                     language used    1
## 39533                      lanka muslim    1
## 39534                       lansing was    1
## 39535                        lanywa the    1
## 39536                     lanzhou while    1
## 39537                      lanzhou with    1
## 39538                          laoag an    1
## 39539                       laoaq after    1
## 39540                         lap joint    1
## 39541                            lap or    1
## 39542                     laphroaig for    1
## 39543                 lapierre's father    1
## 39544                      lapierre his    1
## 39545                       lapseki the    1
## 39546                      lapwings and    1
## 39547                   larache morocco    1
## 39548                   laramie weather    1
## 39549                       large chuck    1
## 39550                    large clearing    1
## 39551                       large flock    1
## 39552                        large hole    1
## 39553                       large holes    1
## 39554                       large plume    1
## 39555                     large portion    1
## 39556                        large roll    1
## 39557                     large section    1
## 39558                    large sideslip    1
## 39559                      large system    1
## 39560                       large trees    1
## 39561                        large wave    1
## 39562                       large white    1
## 39563                         largely a    1
## 39564                        largely by    1
## 39565                       larger than    1
## 39566                larissa controlled    1
## 39567                  larkenhealth afb    1
## 39568                      larkin smith    1
## 39569                         las cayee    1
## 39570                       las lomitas    1
## 39571                        las torres    1
## 39572                         las tunas    1
## 39573                       lash golath    1
## 39574                       lashkar gah    1
## 39575                           last 11    1
## 39576                          last 300    1
## 39577                      last attempt    1
## 39578                       last chance    1
## 39579                      last contact    1
## 39580                           last dc    1
## 39581                           last de    1
## 39582                         last four    1
## 39583                         last know    1
## 39584                       last minute    1
## 39585                       last moment    1
## 39586                           last of    1
## 39587                        last phase    1
## 39588                      last portion    1
## 39589                      last quarter    1
## 39590                        last stage    1
## 39591                       last stages    1
## 39592                 last transmission    1
## 39593                         last turn    1
## 39594                          last two    1
## 39595                          lasted 7    1
## 39596                        lasted for    1
## 39597                            lat in    1
## 39598                        lataboy at    1
## 39599                  latakia khmeimim    1
## 39600                     latch engaged    1
## 39601                          latch to    1
## 39602                       latch which    1
## 39603                     latched cargo    1
## 39604                   latched forward    1
## 39605                  latched properly    1
## 39606                    latches should    1
## 39607                   latches towards    1
## 39608                latching mechanism    1
## 39609                       latching of    1
## 39610                      late crashed    1
## 39611                     late decision    1
## 39612                   late initiation    1
## 39613                        late night    1
## 39614                           late on    1
## 39615                     late rotation    1
## 39616                          later 10    1
## 39617                          later 18    1
## 39618                          later 31    1
## 39619                         later all    1
## 39620                      later almost    1
## 39621                     later amended    1
## 39622                         later and    1
## 39623                      later archie    1
## 39624                          later as    1
## 39625                          later at    1
## 39626                        later both    1
## 39627                  later controlled    1
## 39628                     later crashed    1
## 39629                  later detonation    1
## 39630                   later deviation    1
## 39631                 later disappeared    1
## 39632                    later divorced    1
## 39633                      later eugene    1
## 39634                     later failure    1
## 39635                     later figures    1
## 39636                        later flew    1
## 39637                          later he    1
## 39638                  later identified    1
## 39639                    later informed    1
## 39640                        later just    1
## 39641                      later killed    1
## 39642                       later local    1
## 39643                  later mechanical    1
## 39644                          later of    1
## 39645                  later officially    1
## 39646                    later pardoned    1
## 39647                        later poor    1
## 39648                    later possibly    1
## 39649                   later recovered    1
## 39650                     later renamed    1
## 39651                        later said    1
## 39652                       later shift    1
## 39653                        later shot    1
## 39654                        later soon    1
## 39655                      later stated    1
## 39656                      later thirty    1
## 39657                         later too    1
## 39658                       later tried    1
## 39659                     later visited    1
## 39660                       later years    1
## 39661                  lateral aircraft    1
## 39662                    lateral course    1
## 39663                      lateral fuel    1
## 39664                  lateral movement    1
## 39665                     lateral winds    1
## 39666                     laterally but    1
## 39667                    latest welding    1
## 39668                  latilla mountain    1
## 39669                    latimojong the    1
## 39670                    latter limited    1
## 39671                       latter part    1
## 39672                     lauderdale fl    1
## 39673                     lauderdale on    1
## 39674                        launced by    1
## 39675                       launched by    1
## 39676                     launched heat    1
## 39677                   lauren bessette    1
## 39678                        lava field    1
## 39679                         lava flow    1
## 39680                        lavatory a    1
## 39681                      lavatory and    1
## 39682                   lavatory caused    1
## 39683                  lavatory causing    1
## 39684                       lavatory in    1
## 39685                  lavatory shortly    1
## 39686                    lavatory waste    1
## 39687                    lavatory which    1
## 39688                lavoratory blowing    1
## 39689                    lavoratory the    1
## 39690                           lawes 7    1
## 39691                 lawrence mcdonald    1
## 39692                    lawrence river    1
## 39693                             lax a    1
## 39694                           lax and    1
## 39695                      lax terminal    1
## 39696                           lax the    1
## 39697                         laxity in    1
## 39698                            lay in    1
## 39699                         layers of    1
## 39700                             lbs a    1
## 39701                           lbs and    1
## 39702                          lbs flew    1
## 39703                    lbs inadequate    1
## 39704                           lbs the    1
## 39705                             ld 56    1
## 39706                              le 7    1
## 39707                         le france    1
## 39708                         le galawa    1
## 39709                    le jeune.tower    1
## 39710                           le pera    1
## 39711                    lead guitarist    1
## 39712                     lead hijacker    1
## 39713                     lead mechanic    1
## 39714                       lead singer    1
## 39715                         lead them    1
## 39716                      lead through    1
## 39717                           lead to    1
## 39718                        leader and    1
## 39719                       leader hale    1
## 39720                          leader m    1
## 39721                         leader of    1
## 39722                        leader the    1
## 39723                       leader yuri    1
## 39724                         leaders a    1
## 39725                     leadership by    1
## 39726                     leading edges    1
## 39727                  leading peruvian    1
## 39728                       leading the    1
## 39729                          leak and    1
## 39730                           leak as    1
## 39731                           leak at    1
## 39732                       leak eleven    1
## 39733                           leak in    1
## 39734                      leak leading    1
## 39735                         leak lost    1
## 39736                           leak or    1
## 39737                          leak out    1
## 39738                        leak under    1
## 39739                      leakage from    1
## 39740                  leakage probably    1
## 39741                        leaked and    1
## 39742                       leaked onto    1
## 39743                   leaking exhaust    1
## 39744                      leaking from    1
## 39745                  leaking hydrogen    1
## 39746                      leaking into    1
## 39747                  leaking kerosene    1
## 39748                        leaking on    1
## 39749                     leaks crashed    1
## 39750                          leaks in    1
## 39751                       leaped from    1
## 39752                       learned the    1
## 39753                   leased aircraft    1
## 39754                         leased by    1
## 39755                           least 2    1
## 39756                          least 20    1
## 39757                           least 5    1
## 39758                          least 70    1
## 39759                        least once    1
## 39760                         leave and    1
## 39761                        leave late    1
## 39762                          leave no    1
## 39763               leave noninstrument    1
## 39764                        leave with    1
## 39765                         leaving a    1
## 39766                        leaving an    1
## 39767                   leaving another    1
## 39768                    leaving bandar    1
## 39769                    leaving bogota    1
## 39770                   leaving bolling    1
## 39771                  leaving chiclayo    1
## 39772                    leaving dorval    1
## 39773                      leaving fort    1
## 39774                 leaving guayaquil    1
## 39775                      leaving heho    1
## 39776                  leaving honolulu    1
## 39777                   leaving lanzhou    1
## 39778                     leaving libya    1
## 39779                   leaving londina    1
## 39780                    leaving magdan    1
## 39781                    leaving manaus    1
## 39782                   leaving mendoza    1
## 39783                  leaving missoula    1
## 39784                 leaving mogadishu    1
## 39785                        leaving of    1
## 39786                       leaving one    1
## 39787                    leaving panama    1
## 39788                    leaving pickle    1
## 39789                     leaving playa    1
## 39790                     leaving ponta    1
## 39791                       leaving san    1
## 39792                  leaving santiago    1
## 39793                    lebanese court    1
## 39794                 lebanese passport    1
## 39795                       lebanon the    1
## 39796                          lebed 52    1
## 39797                         lebel the    1
## 39798                    lech kaczynski    1
## 39799                            led by    1
## 39800                  led peacekeeping    1
## 39801                       led through    1
## 39802                            led up    1
## 39803                 ledge cartwheeled    1
## 39804                       lee airport    1
## 39805                         lee lewis    1
## 39806                        leeches on    1
## 39807                     leeuwerik the    1
## 39808                      lefebvre was    1
## 39809                            left 4    1
## 39810                        left after    1
## 39811                        left agana    1
## 39812                      left aileron    1
## 39813                        left alone    1
## 39814                           left at    1
## 39815                       left behind    1
## 39816                       left beyond    1
## 39817                       left brakes    1
## 39818                    left bucharest    1
## 39819                          left but    1
## 39820                           left by    1
## 39821                        left cabin    1
## 39822                      left captain    1
## 39823                      left causing    1
## 39824                     left cindacta    1
## 39825                      left cowling    1
## 39826                      left crashed    1
## 39827                     left downwind    1
## 39828                         left edge    1
## 39829                     left engine's    1
## 39830                 left engine.after    1
## 39831                   left engine.the    1
## 39832                      left engines    1
## 39833                      left entered    1
## 39834                   left feathering    1
## 39835                     left followed    1
## 39836                     left foreward    1
## 39837                    left generator    1
## 39838                       left helena    1
## 39839                          left hit    1
## 39840                      left initial    1
## 39841                      left instead    1
## 39842                         left into    1
## 39843                     left kingston    1
## 39844                      left leading    1
## 39845                        left milne    1
## 39846                   left montevideo    1
## 39847                        left myeik    1
## 39848                      left nacelle    1
## 39849                       left normal    1
## 39850                          left off    1
## 39851                           left or    1
## 39852                     left outboard    1
## 39853                      left pitched    1
## 39854                     left position    1
## 39855                left progressively    1
## 39856                         left rear    1
## 39857                       left rolled    1
## 39858                      left shortly    1
## 39859                     left shoulder    1
## 39860                   left stabilizer    1
## 39861                        left stall    1
## 39862                      left stalled    1
## 39863                    left tailplane    1
## 39864                         left then    1
## 39865                      left turbine    1
## 39866                       left turned    1
## 39867                        left under    1
## 39868                         left went    1
## 39869                        left which    1
## 39870                        left while    1
## 39871                        left wings    1
## 39872                         left with    1
## 39873                    leftward swing    1
## 39874                           leg for    1
## 39875                          leg onto    1
## 39876                     leg selfridge    1
## 39877                            leg to    1
## 39878                          leg turn    1
## 39879                           leg was    1
## 39880                         leg which    1
## 39881                       legaacy 600    1
## 39882                       legal court    1
## 39883                  legally released    1
## 39884                    legend crashed    1
## 39885                          legs and    1
## 39886                      legs another    1
## 39887                        legs broke    1
## 39888                          legs she    1
## 39889                          legs the    1
## 39890                         legs this    1
## 39891                           leh the    1
## 39892                     leigh cottage    1
## 39893                         leland 45    1
## 39894                          lema and    1
## 39895                lembombo mountains    1
## 39896                   lenakel airport    1
## 39897                       lenana peak    1
## 39898                        length and    1
## 39899                        length was    1
## 39900                      lengthen the    1
## 39901                 leningrad because    1
## 39902                 leningrad crashed    1
## 39903                lenzen supertanker    1
## 39904                          leon mba    1
## 39905                       leon public    1
## 39906                   leone's coastal    1
## 39907                     leone capital    1
## 39908                leopoldville while    1
## 39909              lesage international    1
## 39910                     leslie howard    1
## 39911                         less came    1
## 39912                     lesser degree    1
## 39913                           let 410    1
## 39914                           let and    1
## 39915                        letdown at    1
## 39916                   letdown without    1
## 39917                    lethal amounts    1
## 39918                lethbridge alberta    1
## 39919                        levee with    1
## 39920                           level 4    1
## 39921                    level altitude    1
## 39922                   level continued    1
## 39923                     level crashed    1
## 39924                  level descending    1
## 39925                     level drifted    1
## 39926                      level during    1
## 39927                   level explosive    1
## 39928                   level generated    1
## 39929                          level in    1
## 39930                   level laterally    1
## 39931                   level refueling    1
## 39932                      level switch    1
## 39933                          level to    1
## 39934                    level training    1
## 39935                        level turn    1
## 39936                         level was    1
## 39937                       level while    1
## 39938                   level windshear    1
## 39939                   leveled briefly    1
## 39940                      leveling the    1
## 39941                         lever aft    1
## 39942                       lever after    1
## 39943                          lever at    1
## 39944                          lever in    1
## 39945                         lever the    1
## 39946                       lever which    1
## 39947                        levers and    1
## 39948                       levers from    1
## 39949                         levers in    1
## 39950                 levers preventing    1
## 39951                         levers to    1
## 39952                       levers were    1
## 39953                         lewis and    1
## 39954                         leyte the    1
## 39955                              li 2    1
## 39956                             li 2t    1
## 39957                   liberation shot    1
## 39958                  libertad section    1
## 39959                      liberty ship    1
## 39960                libreville airport    1
## 39961                      libya border    1
## 39962                    libya ferrying    1
## 39963                         libya the    1
## 39964                        libyan air    1
## 39965                        libyan mig    1
## 39966                       license and    1
## 39967                        license by    1
## 39968                   license invalid    1
## 39969                lieutenant accused    1
## 39970                 lieutenant howard    1
## 39971                 lieutenant joseph    1
## 39972                        life after    1
## 39973                        life boats    1
## 39974                      life despite    1
## 39975                       life failed    1
## 39976                    life insurance    1
## 39977                   life preservers    1
## 39978                         life raft    1
## 39979                   life recordings    1
## 39980                     life sentence    1
## 39981                        life vests    1
## 39982                   lifejackets and    1
## 39983              lifesaving equipment    1
## 39984                        lift after    1
## 39985                           lift as    1
## 39986                        lift cause    1
## 39987                      lift crashed    1
## 39988                          lift due    1
## 39989                         lift dump    1
## 39990                         lift from    1
## 39991                           lift in    1
## 39992                      lift mission    1
## 39993                          lift the    1
## 39994                           lift to    1
## 39995                        lift which    1
## 39996                       lifted from    1
## 39997                         lifted in    1
## 39998                        lifted the    1
## 39999                         lifting a    1
## 40000                  lifting capacity    1
## 40001                   lifting surface    1
## 40002                  lifting surfaces    1
## 40003                       lifting the    1
## 40004                     liftoff after    1
## 40005                   liftoff crashed    1
## 40006                      liftoff from    1
## 40007                 liftoff resulting    1
## 40008                      liftoff shot    1
## 40009                         light and    1
## 40010                        light bulb    1
## 40011                         light did    1
## 40012                  light indicating    1
## 40013                        light left    1
## 40014                        light load    1
## 40015                     light marking    1
## 40016                         light may    1
## 40017                       light poles    1
## 40018                       light posts    1
## 40019                     light problem    1
## 40020                  light stanchions    1
## 40021                    light thinking    1
## 40022                          light to    1
## 40023                       light touch    1
## 40024                       light tower    1
## 40025                  light towers.the    1
## 40026                          light up    1
## 40027                        light went    1
## 40028                       light while    1
## 40029                        light with    1
## 40030                 lighted irregular    1
## 40031                      lighter more    1
## 40032                    lighthouse the    1
## 40033                        lighting a    1
## 40034                  lighting circuit    1
## 40035               lighting conditions    1
## 40036                  lighting leading    1
## 40037                      lighting one    1
## 40038                     lighting pier    1
## 40039                     lighting when    1
## 40040                    lighting while    1
## 40041                       lightning a    1
## 40042                   lightning after    1
## 40043                      lightning at    1
## 40044                lightning attacked    1
## 40045                  lightning caused    1
## 40046                 lightning causing    1
## 40047               lightning confusion    1
## 40048                lightning dazzling    1
## 40049                   lightning flash    1
## 40050                    lightning flew    1
## 40051                 lightning ignited    1
## 40052                 lightning induced    1
## 40053                    lightning lack    1
## 40054                    lightning poor    1
## 40055                     lightning rod    1
## 40056                    lightning took    1
## 40057                  lightning twelve    1
## 40058               lightning undershot    1
## 40059                      lights 1,170    1
## 40060                        lights 335    1
## 40061                 lights aggravated    1
## 40062                         lights as    1
## 40063                     lights before    1
## 40064                        lights but    1
## 40065                    lights clearly    1
## 40066               lights concentrated    1
## 40067                        lights due    1
## 40068                     lights during    1
## 40069                    lights failure    1
## 40070                        lights for    1
## 40071                       lights gave    1
## 40072                         lights in    1
## 40073              lights malfunctioned    1
## 40074                        lights may    1
## 40075                       lights near    1
## 40076                         lights no    1
## 40077              lights perpendicular    1
## 40078                      lights pilot    1
## 40079                       lights they    1
## 40080                       lights this    1
## 40081                         lights to    1
## 40082               lights unrecognized    1
## 40083                       lights went    1
## 40084                       lights when    1
## 40085                      lights which    1
## 40086                      ligurian sea    1
## 40087                           like to    1
## 40088                    like virtually    1
## 40089                        like winds    1
## 40090                     likelihood of    1
## 40091                   likelihood that    1
## 40092                          likely a    1
## 40093                   likely accident    1
## 40094                         likely by    1
## 40095               likely contributing    1
## 40096                        likely did    1
## 40097                        likely due    1
## 40098                likely explanation    1
## 40099               likely explanations    1
## 40100                        likely led    1
## 40101                   likely location    1
## 40102                       likely lost    1
## 40103                    likely mislead    1
## 40104                         likely of    1
## 40105                     likely reason    1
## 40106                   likely sequence    1
## 40107                       likely shot    1
## 40108                    likely started    1
## 40109                         likely to    1
## 40110                        likely was    1
## 40111                    likely weather    1
## 40112                      likely would    1
## 40113                    likouala while    1
## 40114                lili'uokalani made    1
## 40115                   lilies possible    1
## 40116                      lima crashed    1
## 40117                           lima in    1
## 40118                         lima peru    1
## 40119                       lima soccer    1
## 40120                         limar and    1
## 40121                  limerick ireland    1
## 40122                limit contributing    1
## 40123                         limit for    1
## 40124                          limit or    1
## 40125                     limit pilot's    1
## 40126                        limit this    1
## 40127                          limit to    1
## 40128                        limit were    1
## 40129                       limit which    1
## 40130                       limit while    1
## 40131                 limitations after    1
## 40132                   limitations and    1
## 40133                   limitations due    1
## 40134                   limitations his    1
## 40135              limitations resulted    1
## 40136                   limitations the    1
## 40137                    limitations to    1
## 40138                  limited accident    1
## 40139                limited capability    1
## 40140                       limited due    1
## 40141                 limited knowledge    1
## 40142                   limited outside    1
## 40143                  limited remedial    1
## 40144                    limited runway    1
## 40145                   limiter faulted    1
## 40146                     limiting down    1
## 40147               limiting visibility    1
## 40148                         limits as    1
## 40149                        limits but    1
## 40150                        limits for    1
## 40151                        limits his    1
## 40152                         limits in    1
## 40153                    limits leading    1
## 40154                  limits resulting    1
## 40155                        limits the    1
## 40156                       limits were    1
## 40157                      limits which    1
## 40158                      limoges when    1
## 40159                    linate airport    1
## 40160                     linda medical    1
## 40161                   lindbergh field    1
## 40162                      linderman 45    1
## 40163                        line after    1
## 40164                        line broke    1
## 40165                      line chile's    1
## 40166                   line connection    1
## 40167                    line continued    1
## 40168                     line crossing    1
## 40169                       line during    1
## 40170                          line for    1
## 40171                         line into    1
## 40172                         line lack    1
## 40173                          line led    1
## 40174                           line or    1
## 40175                        line power    1
## 40176                     line probably    1
## 40177                        line right    1
## 40178                         line road    1
## 40179                     line shrouded    1
## 40180                       line struck    1
## 40181                        line tower    1
## 40182                           line up    1
## 40183                         line were    1
## 40184                         line when    1
## 40185                        line which    1
## 40186                        line while    1
## 40187                        line wrong    1
## 40188                          liner le    1
## 40189                      liner norway    1
## 40190                         lines 150    1
## 40191                      lines 2,000m    1
## 40192               lines approximately    1
## 40193                      lines before    1
## 40194                          lines by    1
## 40195                     lines changed    1
## 40196                     lines crashed    1
## 40197                    lines facility    1
## 40198                         lines one    1
## 40199                      lines showed    1
## 40200                    lines survived    1
## 40201                        lines that    1
## 40202                       lines which    1
## 40203                       lines while    1
## 40204                       lingga riau    1
## 40205                       linhas aãƒâ    1
## 40206                        linings to    1
## 40207                     link assembly    1
## 40208                       link failed    1
## 40209                        link fence    1
## 40210                        linkage of    1
## 40211                        linkage to    1
## 40212                         linked to    1
## 40213                          lion the    1
## 40214                        liquid the    1
## 40215                         lisboa to    1
## 40216                   lisbon portugal    1
## 40217                         lisbon to    1
## 40218                   lisbon training    1
## 40219                    listed against    1
## 40220                      listed among    1
## 40221                         listed in    1
## 40222                         listed on    1
## 40223                        listing to    1
## 40224                        lists they    1
## 40225                        lists were    1
## 40226                         liter for    1
## 40227                        liter this    1
## 40228              literally pulverized    1
## 40229                     little better    1
## 40230                    little english    1
## 40231                   little evidence    1
## 40232                     little herman    1
## 40233                       little less    1
## 40234                      little miami    1
## 40235                         little or    1
## 40236                       little over    1
## 40237                       little time    1
## 40238                      little under    1
## 40239                 liverpool because    1
## 40240                 liverpool crashed    1
## 40241                        lives lost    1
## 40242                     livestock the    1
## 40243                   livingstone and    1
## 40244                    livingstone to    1
## 40245                         liz icing    1
## 40246                 ljubljana airport    1
## 40247                      llancãƒâ the    1
## 40248                   llandow airport    1
## 40249                llaveria mountains    1
## 40250                      llyn gwynant    1
## 40251                            ln rna    1
## 40252                      load control    1
## 40253                 load distribution    1
## 40254                       load limits    1
## 40255                         load that    1
## 40256                    loaded alcohol    1
## 40257                    loaded baggage    1
## 40258                     loaded beyond    1
## 40259                      loaded cargo    1
## 40260                    loaded causing    1
## 40261              loaded inexperienced    1
## 40262                    loaded luggage    1
## 40263                         loaded on    1
## 40264                     loaded within    1
## 40265                    loading aboard    1
## 40266                    loading limits    1
## 40267                loading operations    1
## 40268               loading preparation    1
## 40269                loading procedures    1
## 40270                   loading process    1
## 40271                      loading ramp    1
## 40272                       loading the    1
## 40273                   loadmaster used    1
## 40274                    loadmaster was    1
## 40275                          loads as    1
## 40276                     loads created    1
## 40277                   loads exceeding    1
## 40278                        loads four    1
## 40279                        loads from    1
## 40280                     loads greater    1
## 40281                          loads in    1
## 40282                     loads thereon    1
## 40283                        loads were    1
## 40284                       loads which    1
## 40285                         loan from    1
## 40286                           lobby a    1
## 40287                         lobby the    1
## 40288                        lobe cargo    1
## 40289                 lobe contributing    1
## 40290                          local 30    1
## 40291                     local airport    1
## 40292                         local fog    1
## 40293                   local lumbermen    1
## 40294                      local mobile    1
## 40295                        local post    1
## 40296                      local soccer    1
## 40297                      local static    1
## 40298                      local suburb    1
## 40299                local thunderstorm    1
## 40300                        local time    1
## 40301                       locality of    1
## 40302                    localized fire    1
## 40303           localized thundrestorms    1
## 40304                localizer approach    1
## 40305                     localizer but    1
## 40306                  localizer during    1
## 40307                localizer receiver    1
## 40308                 localizer support    1
## 40309                   localizer track    1
## 40310                     localizer was    1
## 40311                          locate a    1
## 40312                     located 1,200    1
## 40313                       located 1.5    1
## 40314                       located 1.8    1
## 40315                        located 15    1
## 40316                        located 16    1
## 40317                         located 2    1
## 40318                        located 24    1
## 40319                        located 25    1
## 40320                        located 28    1
## 40321                        located 30    1
## 40322                        located 32    1
## 40323                        located 35    1
## 40324                        located 39    1
## 40325                         located 4    1
## 40326                        located 42    1
## 40327                        located 67    1
## 40328                         located 7    1
## 40329                         located 8    1
## 40330                         located a    1
## 40331                   located astride    1
## 40332                     located eight    1
## 40333                  located exploded    1
## 40334                       located for    1
## 40335                      located poor    1
## 40336                       located six    1
## 40337                     located three    1
## 40338                        located to    1
## 40339                     located under    1
## 40340                      located10 km    1
## 40341                       location 13    1
## 40342                   location during    1
## 40343                     location less    1
## 40344                       location on    1
## 40345                      location one    1
## 40346                       location to    1
## 40347                    locator beacon    1
## 40348                           lock be    1
## 40349                       lock became    1
## 40350                       lock before    1
## 40351                    lock condition    1
## 40352                      lock engaged    1
## 40353                       lock engine    1
## 40354                           lock in    1
## 40355                    lock inability    1
## 40356                          lock not    1
## 40357                          lock pin    1
## 40358                        lock prior    1
## 40359                      lock service    1
## 40360                       lock system    1
## 40361                           lock up    1
## 40362                       lock washer    1
## 40363                      locked after    1
## 40364                  locked condition    1
## 40365                   locked exploded    1
## 40366                    locked himself    1
## 40367                       locked soon    1
## 40368                     locked switch    1
## 40369                  locked terrorist    1
## 40370                       locked upon    1
## 40371                        locker the    1
## 40372              lockerbie detonation    1
## 40373                    lockhart river    1
## 40374                      lockheed 14s    1
## 40375                      lockheed air    1
## 40376                        lockheed b    1
## 40377                      lockheed two    1
## 40378                    lockheed which    1
## 40379                        locking of    1
## 40380                      locking pins    1
## 40381                    locking sector    1
## 40382                     locks crashed    1
## 40383                     locks failure    1
## 40384                   locks installed    1
## 40385                         locks the    1
## 40386                      lodestar was    1
## 40387                          lodge in    1
## 40388                          lodge it    1
## 40389                         lodged in    1
## 40390                         lodged on    1
## 40391                          loft and    1
## 40392                          log book    1
## 40393                        log twenty    1
## 40394                         logan the    1
## 40395                        logan utah    1
## 40396                         logged in    1
## 40397                        logged the    1
## 40398                     lok fasteners    1
## 40399               lokomotiv yaroslavl    1
## 40400                        loma linda    1
## 40401                        lombard 33    1
## 40402                   lomitas because    1
## 40403                       londina the    1
## 40404                        london and    1
## 40405                         london at    1
## 40406                      london cause    1
## 40407                    london crashed    1
## 40408                      london daily    1
## 40409                    london england    1
## 40410                        london for    1
## 40411                    london karachi    1
## 40412                      london metal    1
## 40413                   london services    1
## 40414                        london the    1
## 40415                      londrina the    1
## 40416                          lone oak    1
## 40417                     lone occupant    1
## 40418                         lone peak    1
## 40419                         lone pine    1
## 40420                           long as    1
## 40421                       long before    1
## 40422                     long distance    1
## 40423                        long final    1
## 40424                      long flaring    1
## 40425                       long flight    1
## 40426                       long killed    1
## 40427                           long on    1
## 40428                     long standing    1
## 40429                         long take    1
## 40430                         long time    1
## 40431                    long touchdown    1
## 40432                       long valley    1
## 40433                         longer be    1
## 40434                      longer glide    1
## 40435                       longer made    1
## 40436                       longer time    1
## 40437            longitudinal stability    1
## 40438               longmont detonation    1
## 40439                    longreach fire    1
## 40440                         look very    1
## 40441                      looked after    1
## 40442                         looked up    1
## 40443                   looking outside    1
## 40444                       lookout for    1
## 40445                   lookout neither    1
## 40446                        lookout on    1
## 40447                      lookout rock    1
## 40448                     lookout while    1
## 40449                      lookouts for    1
## 40450                     loon collided    1
## 40451                       loop around    1
## 40452                          loop was    1
## 40453                        looped the    1
## 40454                       looping the    1
## 40455                    loose altitude    1
## 40456                          loose an    1
## 40457                     loose control    1
## 40458                      loose enough    1
## 40459                       loose first    1
## 40460                   loose following    1
## 40461                        loose from    1
## 40462                         loose the    1
## 40463                         loose was    1
## 40464                         loosen or    1
## 40465                    loosened bolts    1
## 40466                   loosened plasma    1
## 40467                      looseness of    1
## 40468                       loosing its    1
## 40469                     loosing power    1
## 40470                     lord burghley    1
## 40471               lorient approaching    1
## 40472                      lorient when    1
## 40473                     los farllones    1
## 40474                         los hoyos    1
## 40475                        los mochis    1
## 40476                        los negros    1
## 40477                         los track    1
## 40478                  lose directional    1
## 40479                          lose his    1
## 40480                         lose it's    1
## 40481                          lose its    1
## 40482                           lose of    1
## 40483                         losing 25    1
## 40484                          losing a    1
## 40485              losing consciousness    1
## 40486                    losing contact    1
## 40487                       losing it's    1
## 40488               losing longitudinal    1
## 40489                        losing oil    1
## 40490                        losing one    1
## 40491                       losing part    1
## 40492                      losing radio    1
## 40493                      losing sight    1
## 40494                losing situational    1
## 40495                      losing three    1
## 40496                        losing two    1
## 40497                     losing visual    1
## 40498                         loss crew    1
## 40499                      loss cynthia    1
## 40500                    loss emergency    1
## 40501                           loss on    1
## 40502                           lost 10    1
## 40503                           lost 15    1
## 40504                           lost 20    1
## 40505                           lost 29    1
## 40506                            lost 3    1
## 40507                           lost 30    1
## 40508                            lost 5    1
## 40509                        lost 5,000    1
## 40510                           lost 50    1
## 40511                            lost 9    1
## 40512                        lost about    1
## 40513                          lost air    1
## 40514                     lost airspeed    1
## 40515                          lost ane    1
## 40516                        lost below    1
## 40517                        lost cabin    1
## 40518                        lost cargo    1
## 40519                lost consciousness    1
## 40520                      lost contorl    1
## 40521                       lost during    1
## 40522                    lost following    1
## 40523                         lost main    1
## 40524                       lost midair    1
## 40525                 lost navigational    1
## 40526                           lost no    1
## 40527                           lost or    1
## 40528                        lost radar    1
## 40529                        lost radio    1
## 40530                          lost ran    1
## 40531                    lost reference    1
## 40532                     lost rotation    1
## 40533                      lost shortly    1
## 40534                    lost situation    1
## 40535                        lost speed    1
## 40536                      lost tension    1
## 40537                        lost their    1
## 40538                        lost three    1
## 40539                        lost track    1
## 40540                 lost transparency    1
## 40541                          lost two    1
## 40542                   lost visibility    1
## 40543                           lot and    1
## 40544                        lot facing    1
## 40545                          lot from    1
## 40546                          lot slid    1
## 40547                           lot the    1
## 40548                        lothar von    1
## 40549                   lotru mountains    1
## 40550                    loud explosion    1
## 40551                       loud rather    1
## 40552                          louis 25    1
## 40553                    louis cardinal    1
## 40554             louisiana congressman    1
## 40555               louisiana municipal    1
## 40556                   louisiana state    1
## 40557                     louisiana the    1
## 40558                        lounge the    1
## 40559                        loved ones    1
## 40560                 loveland colorado    1
## 40561                           low air    1
## 40562                      low airspeed    1
## 40563                         low angle    1
## 40564                      low approach    1
## 40565                   low cartwheeled    1
## 40566                       low circuit    1
## 40567                      low contrast    1
## 40568                        low didn't    1
## 40569                           low due    1
## 40570                        low enough    1
## 40571                       low failure    1
## 40572                           low fly    1
## 40573                           low fog    1
## 40574                     low frequency    1
## 40575                           low hit    1
## 40576                       low hitting    1
## 40577                          low left    1
## 40578                          low near    1
## 40579                          low nose    1
## 40580                        low passes    1
## 40581                         low prior    1
## 40582                          low rate    1
## 40583                     low resulting    1
## 40584                         low right    1
## 40585                         low rotor    1
## 40586                           low run    1
## 40587                          low soon    1
## 40588                        low struck    1
## 40589                        low thrust    1
## 40590                          low tire    1
## 40591                         low until    1
## 40592                     low visiblity    1
## 40593                        low visual    1
## 40594                         low while    1
## 40595                       lowari pass    1
## 40596                       lowe clouds    1
## 40597                   lower altitiude    1
## 40598                      lower attach    1
## 40599                  lower attachment    1
## 40600                     lower baggage    1
## 40601                   lower cylinders    1
## 40602                      lower engine    1
## 40603                     lower forward    1
## 40604                        lower lobe    1
## 40605                      lower margin    1
## 40606                        lower part    1
## 40607                       lower right    1
## 40608                   lower starboard    1
## 40609                          lower to    1
## 40610                        lower wing    1
## 40611                       lowered the    1
## 40612                     lowered their    1
## 40613                   lowered without    1
## 40614                 lowering ceilings    1
## 40615                      lowering his    1
## 40616                       lowering of    1
## 40617                      lowering the    1
## 40618                       lowest safe    1
## 40619                      lowland area    1
## 40620                          lozan at    1
## 40621                     lp compressor    1
## 40622                          lt bound    1
## 40623                            lt col    1
## 40624                        lt colonel    1
## 40625                          lt smith    1
## 40626                         lt thomas    1
## 40627                        ltta rebel    1
## 40628                   ltte liberation    1
## 40629                        luanda atc    1
## 40630                      luanda bound    1
## 40631                 luanda destroying    1
## 40632                        luanda due    1
## 40633                    lubricated had    1
## 40634                lubricating system    1
## 40635                  lubricating unit    1
## 40636              lubrication interval    1
## 40637                    lubrication of    1
## 40638                lubrication system    1
## 40639                 lubrication would    1
## 40640                        lucapa the    1
## 40641                       lucapa when    1
## 40642                         lucky liz    1
## 40643                     luena airport    1
## 40644                lufthansa chairman    1
## 40645                     lufthansa one    1
## 40646                           lug the    1
## 40647                   lugansk airport    1
## 40648                    luggage caused    1
## 40649               luggage compartment    1
## 40650                      luggage from    1
## 40651                       luggage out    1
## 40652                     luggage which    1
## 40653                     lukla airport    1
## 40654                     lukla tenzing    1
## 40655                         lukla the    1
## 40656                     luluaburg the    1
## 40657                    lumber station    1
## 40658                lumbermen returned    1
## 40659                        lumpur atc    1
## 40660                      lundeen from    1
## 40661                      lunga during    1
## 40662                     lunghwa field    1
## 40663                     lungi airport    1
## 40664                     luqua airport    1
## 40665                luquillo mountains    1
## 40666                        lured away    1
## 40667                        lusaka and    1
## 40668                       lusaka when    1
## 40669                        luxair two    1
## 40670                         luxor but    1
## 40671                         luxor the    1
## 40672                     lyall harbour    1
## 40673                       lyhesten in    1
## 40674                         lying fog    1
## 40675                       lympne poor    1
## 40676                    lynyrd skynyrd    1
## 40677                     lyon approach    1
## 40678                      lyon satolas    1
## 40679                           lyon to    1
## 40680                     lyons crashed    1
## 40681                  lyricist alfredo    1
## 40682                              m 20    1
## 40683                               m 4    1
## 40684                           m after    1
## 40685                         m airport    1
## 40686                        m altitude    1
## 40687                         m ashraff    1
## 40688                          m bryant    1
## 40689                           m cloud    1
## 40690                         m crashed    1
## 40691                         m cutting    1
## 40692                               m h    1
## 40693                              m to    1
## 40694                          m twenty    1
## 40695                      m visibility    1
## 40696                             m was    1
## 40697                         m.t cheam    1
## 40698                       m2 detached    1
## 40699                   maarten because    1
## 40700                       maarten for    1
## 40701                       maarten the    1
## 40702                     maarten until    1
## 40703                    mabe returning    1
## 40704                       macaãƒâ the    1
## 40705                      macao prison    1
## 40706                    macedon hidden    1
## 40707              macedonian president    1
## 40708                  macedonian while    1
## 40709                  mach indications    1
## 40710                  machel president    1
## 40711                    machine gunned    1
## 40712                     machine parts    1
## 40713                    mackay crashed    1
## 40714                     mactan island    1
## 40715                        macunaa at    1
## 40716                         madang to    1
## 40717                   maddux aircraft    1
## 40718                            made 2    1
## 40719                        made about    1
## 40720                          made and    1
## 40721                      made another    1
## 40722                           made as    1
## 40723                    made available    1
## 40724                  made corrections    1
## 40725                       made errors    1
## 40726                          made for    1
## 40727                         made four    1
## 40728                         made from    1
## 40729                          made him    1
## 40730                     made homeless    1
## 40731                   made inadequate    1
## 40732                      made instead    1
## 40733                          made its    1
## 40734                       made manual    1
## 40735                made modifications    1
## 40736                    made necessary    1
## 40737                         made nose    1
## 40738                           made on    1
## 40739                     made practice    1
## 40740                  made recognition    1
## 40741                         made shot    1
## 40742                     made sikorsky    1
## 40743                           made so    1
## 40744                         made some    1
## 40745                    made sustained    1
## 40746                         made this    1
## 40747                        made three    1
## 40748                        made under    1
## 40749                        made until    1
## 40750                         made when    1
## 40751                        made which    1
## 40752                         madiac at    1
## 40753                     madison cause    1
## 40754                      madrid chief    1
## 40755                       madrid loss    1
## 40756                        madrid the    1
## 40757                      madrid while    1
## 40758                        madura the    1
## 40759                  maersk resilient    1
## 40760                         mãƒâ laga    1
## 40761                     magan airport    1
## 40762                     magazine also    1
## 40763                       magazins to    1
## 40764                   magdalena river    1
## 40765                     magdalena ten    1
## 40766                  magdelen airport    1
## 40767                  magnesium flares    1
## 40768                      magnitude to    1
## 40769                     magnum pistol    1
## 40770                     magnus viking    1
## 40771                      magsaysay 50    1
## 40772                     magsaysay was    1
## 40773                           maid of    1
## 40774                     maiden flight    1
## 40775                           mail an    1
## 40776                          mail and    1
## 40777                          mail bag    1
## 40778                         mail bags    1
## 40779                        mail fligh    1
## 40780                            mail i    1
## 40781                           mail in    1
## 40782                    mail passenger    1
## 40783                      mail plane's    1
## 40784                          mail the    1
## 40785                         mailed to    1
## 40786                          main air    1
## 40787                          main and    1
## 40788                         main body    1
## 40789                        main cabin    1
## 40790                     main fuselage    1
## 40791                      main gearbox    1
## 40792                         main gyro    1
## 40793                    main hydraulic    1
## 40794                        main parts    1
## 40795                         main port    1
## 40796                       main reason    1
## 40797                         main road    1
## 40798                     main sections    1
## 40799                main undercarriage    1
## 40800                        main wheel    1
## 40801                    mainland china    1
## 40802                    mainliner lake    1
## 40803                    mainliner utah    1
## 40804                     mainly engine    1
## 40805                     mainly german    1
## 40806                    mainly russian    1
## 40807                    mainly whaling    1
## 40808                    maintain 9,000    1
## 40809                 maintain assigned    1
## 40810                maintain awareness    1
## 40811                     maintain both    1
## 40812                  maintain contact    1
## 40813                   maintain cruise    1
## 40814                    maintain exact    1
## 40815                      maintain his    1
## 40816                      maintain ifr    1
## 40817                      maintain its    1
## 40818                 maintain obstacle    1
## 40819                 maintain position    1
## 40820                 maintain positive    1
## 40821                maintain reference    1
## 40822                   maintain runway    1
## 40823              maintain situational    1
## 40824            maintained disappeared    1
## 40825               maintained improper    1
## 40826                     maintained to    1
## 40827                    maintained u.s    1
## 40828                  maintained which    1
## 40829                maintaining flight    1
## 40830                 maintaining level    1
## 40831                 maintaining their    1
## 40832                maintaining visual    1
## 40833            maintenance adjustment    1
## 40834                    maintenance an    1
## 40835                    maintenance at    1
## 40836                   maintenance but    1
## 40837                    maintenance by    1
## 40838               maintenance causing    1
## 40839                maintenance checks    1
## 40840          maintenance contributing    1
## 40841               maintenance crashed    1
## 40842                 maintenance crews    1
## 40843          maintenance deficiencies    1
## 40844                maintenance during    1
## 40845              maintenance facility    1
## 40846             maintenance incorrect    1
## 40847           maintenance inspections    1
## 40848                   maintenance led    1
## 40849                maintenance manual    1
## 40850             maintenance personell    1
## 40851             maintenance preflight    1
## 40852             maintenance procedure    1
## 40853               maintenance records    1
## 40854                 maintenance staff    1
## 40855             maintenance standards    1
## 40856               maintenance station    1
## 40857                  maintenance that    1
## 40858            maintenance violations    1
## 40859                 maintenance where    1
## 40860                 maintenance which    1
## 40861                maintenance worker    1
## 40862                 maiquetia airport    1
## 40863              maiquetia navigation    1
## 40864                       major blame    1
## 40865                  major electrical    1
## 40866                        major gash    1
## 40867                     major general    1
## 40868                   major political    1
## 40869                     major roadway    1
## 40870                    major sections    1
## 40871                       major storm    1
## 40872                  major structural    1
## 40873                         major u.s    1
## 40874                   majority leader    1
## 40875                  majority opinion    1
## 40876                      make believe    1
## 40877                        make daily    1
## 40878                    make emergency    1
## 40879                      make popping    1
## 40880                         make room    1
## 40881                           make st    1
## 40882                     make standard    1
## 40883                         make sure    1
## 40884                         make that    1
## 40885                          make two    1
## 40886                           make up    1
## 40887                         make what    1
## 40888                          making 3    1
## 40889                   making adequate    1
## 40890                        making ils    1
## 40891                        making its    1
## 40892                       making more    1
## 40893                         making no    1
## 40894                         making of    1
## 40895                         making on    1
## 40896                   making practice    1
## 40897                    making strange    1
## 40898                         makng two    1
## 40899                        malabala a    1
## 40900                  malabar princess    1
## 40901                        malabo the    1
## 40902                     malacca while    1
## 40903                         malay the    1
## 40904                 malaysia airlines    1
## 40905           malfuncioning propeller    1
## 40906                malfunction alerts    1
## 40907               malfunction allowed    1
## 40908                malfunction doomed    1
## 40909                malfunction flying    1
## 40910              malfunction followed    1
## 40911                malfunction forced    1
## 40912                malfunction midair    1
## 40913              malfunction occurred    1
## 40914                  malfunction once    1
## 40915                    malfunction or    1
## 40916               malfunction shortly    1
## 40917                   malfunction was    1
## 40918                 malfunction which    1
## 40919                  malfunction with    1
## 40920                 malfunctioned and    1
## 40921             malfunctioned causing    1
## 40922             malfunctioned leading    1
## 40923                  malfunctioned on    1
## 40924                malfunctioning and    1
## 40925          malfunctioning automatic    1
## 40926                malfunctioning but    1
## 40927           malfunctioning controls    1
## 40928            malfunctioning crashed    1
## 40929                malfunctioning due    1
## 40930           malfunctioning elevator    1
## 40931               malfunctioning left    1
## 40932         malfunctioning navigation    1
## 40933                 malfunctioning no    1
## 40934                malfunctioning non    1
## 40935                 malfunctioning or    1
## 40936              malfunctioning pitch    1
## 40937              malfunctioning pitot    1
## 40938           malfunctioning reverser    1
## 40939            malfunctioning spoiler    1
## 40940             malfunctioning switch    1
## 40941            malfunctioning voltage    1
## 40942                   malfunctions of    1
## 40943           malfunctions overriding    1
## 40944                  malfunctions the    1
## 40945                malfunctions tried    1
## 40946                      mali dessert    1
## 40947                      mallorca the    1
## 40948                       malta bound    1
## 40949                      malta flight    1
## 40950                          malta to    1
## 40951                       malware may    1
## 40952                 mamberamo crashed    1
## 40953                           man bit    1
## 40954                      man carrying    1
## 40955                          man crew    1
## 40956                        man forced    1
## 40957                            man in    1
## 40958                   man malfunction    1
## 40959                        man riding    1
## 40960                      man survived    1
## 40961                        mana river    1
## 40962                       manabu mabe    1
## 40963                    manacapuru the    1
## 40964                         manado in    1
## 40965                      management a    1
## 40966               management computer    1
## 40967                management crashed    1
## 40968             management inadequate    1
## 40969              management pressures    1
## 40970                management reduced    1
## 40971                   management shot    1
## 40972                 management system    1
## 40973               management training    1
## 40974                    management was    1
## 40975                    manager dennis    1
## 40976                        manager of    1
## 40977                     manager randy    1
## 40978                   manager without    1
## 40979                    managers these    1
## 40980                   managing editor    1
## 40981               manas international    1
## 40982                         manase at    1
## 40983                    manaus airport    1
## 40984                         manaus at    1
## 40985                    manaus eduardo    1
## 40986                        manaus the    1
## 40987                manchester failure    1
## 40988                 manchester united    1
## 40989                       manco capac    1
## 40990              mandate modification    1
## 40991                   mandated safety    1
## 40992                     mandatory non    1
## 40993                     mandatory the    1
## 40994                        maneuver a    1
## 40995                   maneuver around    1
## 40996                       maneuver at    1
## 40997                   maneuver before    1
## 40998                  maneuver carried    1
## 40999                  maneuver crashed    1
## 41000             maneuver difficulties    1
## 41001                  maneuver failure    1
## 41002                maneuver following    1
## 41003                      maneuver for    1
## 41004                     maneuver from    1
## 41005                       maneuver in    1
## 41006                     maneuver just    1
## 41007                     maneuver made    1
## 41008                   maneuver midair    1
## 41009                       maneuver on    1
## 41010                   maneuver severe    1
## 41011                  maneuver shortly    1
## 41012                    maneuver since    1
## 41013                       maneuver to    1
## 41014                    maneuver under    1
## 41015                    maneuver using    1
## 41016             maneuverability while    1
## 41017                     maneuvering a    1
## 41018                    maneuvering at    1
## 41019          maneuvering contributing    1
## 41020               maneuvering crashed    1
## 41021               maneuvering descent    1
## 41022                 maneuvering error    1
## 41023                   maneuvering for    1
## 41024                    maneuvering on    1
## 41025               maneuvering program    1
## 41026             maneuvering resulting    1
## 41027                 maneuvering which    1
## 41028                  maneuvering with    1
## 41029                   maneuvers after    1
## 41030                 maneuvers crashed    1
## 41031               maneuvers descended    1
## 41032                  maneuvers during    1
## 41033               maneuvers including    1
## 41034                maneuvers involved    1
## 41035                    maneuvers made    1
## 41036                     maneuvers the    1
## 41037                      maneuvers to    1
## 41038                   maneuvers which    1
## 41039                       manfred von    1
## 41040                 mangalore airport    1
## 41041                  mangled fuselage    1
## 41042                    mangrove swamp    1
## 41043                  manhattan's west    1
## 41044                       manibagi it    1
## 41045                      manifest was    1
## 41046                         manila at    1
## 41047                        manila bay    1
## 41048                     manila caused    1
## 41049                         manila on    1
## 41050                     manila runway    1
## 41051                        manila vor    1
## 41052                       manila with    1
## 41053                       manilla the    1
## 41054                      manitoba the    1
## 41055                      manizales by    1
## 41056                      manizales to    1
## 41057                      manley sonny    1
## 41058                   mann researcher    1
## 41059                        mannar the    1
## 41060                      manner every    1
## 41061                       manner from    1
## 41062                  manner including    1
## 41063                 manner increasing    1
## 41064                    mannheim's 375    1
## 41065                    manoeuver with    1
## 41066                      manoeuvre at    1
## 41067                     manoeuvre due    1
## 41068                     manoeuvred at    1
## 41069                 manoeuvres before    1
## 41070                     manoeuvres to    1
## 41071                    manoeuvring at    1
## 41072                   manoeuvring for    1
## 41073                    manoeuvring in    1
## 41074                    manohara river    1
## 41075                       manshahr to    1
## 41076                   manslaughter in    1
## 41077          manslaughter prosecutors    1
## 41078                  mantenance error    1
## 41079                   manual aircraft    1
## 41080               manual calculations    1
## 41081                       manual fuel    1
## 41082                        manual ils    1
## 41083                  manual indicated    1
## 41084                    manual instead    1
## 41085                         manual of    1
## 41086                      manual which    1
## 41087                        manual who    1
## 41088                      manually and    1
## 41089                       manually by    1
## 41090                  manually control    1
## 41091                   manually deploy    1
## 41092                 manually extended    1
## 41093                  manually however    1
## 41094                      manually the    1
## 41095                   manually toward    1
## 41096                   manually turned    1
## 41097                       manuals and    1
## 41098                      manuals that    1
## 41099                       manuals the    1
## 41100                       manuel were    1
## 41101                   manufacture and    1
## 41102                    manufacture of    1
## 41103                   manufacture the    1
## 41104             manufactured aircraft    1
## 41105          manufacturer's erroneous    1
## 41106         manufacturer's inspection    1
## 41107         manufacturer's previously    1
## 41108            manufacturer's service    1
## 41109                  manufacturer nor    1
## 41110                   manufacturer of    1
## 41111                 manufacturer once    1
## 41112                   manufacturer to    1
## 41113             manufacturing induced    1
## 41114               manufacturing plant    1
## 41115             manufacturing process    1
## 41116                    manukau harbor    1
## 41117               manunggal magsaysay    1
## 41118                         manus the    1
## 41119                         manuve at    1
## 41120                       manuver atc    1
## 41121                    manuvering the    1
## 41122                      manuvers the    1
## 41123                           many as    1
## 41124                    many civilians    1
## 41125                      many decades    1
## 41126                       many duties    1
## 41127                       many planes    1
## 41128                         many were    1
## 41129               manzanillo mountain    1
## 41130                     manzano range    1
## 41131                     maps briefing    1
## 41132                      maps crashed    1
## 41133                          maputo a    1
## 41134                    maputo airport    1
## 41135                      mar chiquita    1
## 41136                           mar del    1
## 41137                     mara national    1
## 41138                        maraba and    1
## 41139                      maracaibo to    1
## 41140                    marãƒâ­a fanny    1
## 41141                  maranola stalled    1
## 41142                   marashall texas    1
## 41143                     marcel cerdan    1
## 41144                        march 2009    1
## 41145                          march 22    1
## 41146                         march air    1
## 41147                marchekanskoy hill    1
## 41148                       marciano 45    1
## 41149                      marciano was    1
## 41150                    margalla hills    1
## 41151                   margin provided    1
## 41152               marginal instrument    1
## 41153                   marginally poor    1
## 41154                  marguerite pitre    1
## 41155                         maria and    1
## 41156                     maria cordova    1
## 41157                    maria cristina    1
## 41158                         maria del    1
## 41159                        maria flew    1
## 41160                     maria koepcke    1
## 41161                      maria serano    1
## 41162                       maria vieja    1
## 41163                  mariano escobedo    1
## 41164                    marina control    1
## 41165                 marina controller    1
## 41166                        marina del    1
## 41167                         marina in    1
## 41168                 marinduque island    1
## 41169                      marine cargo    1
## 41170                      mariner when    1
## 41171                    mariscal sucre    1
## 41172                           mark ii    1
## 41173                         mark that    1
## 41174                    marked airport    1
## 41175                         marked by    1
## 41176                         marked in    1
## 41177                         marked on    1
## 41178                      marked speed    1
## 41179                        marker and    1
## 41180                      marker cause    1
## 41181                         marker in    1
## 41182                         marker of    1
## 41183                        marker was    1
## 41184                    marker weather    1
## 41185                        markers of    1
## 41186                    market crashed    1
## 41187                     market garden    1
## 41188                        market the    1
## 41189                 marketplace about    1
## 41190                     markham river    1
## 41191                       marking the    1
## 41192                     markings crew    1
## 41193                      markings the    1
## 41194                       marmara sea    1
## 41195                     marmara while    1
## 41196                  marra navigation    1
## 41197                       married and    1
## 41198                       married the    1
## 41199                    marsabit which    1
## 41200                 marseilles france    1
## 41201                        marsh fuel    1
## 41202                          marsh in    1
## 41203                      marshall and    1
## 41204                  marshall general    1
## 41205                       marshall to    1
## 41206               marshall university    1
## 41207                      marshall was    1
## 41208                   marshy forested    1
## 41209                  martãƒâ­ airport    1
## 41210                    martialled and    1
## 41211                         martin 35    1
## 41212                        martin 404    1
## 41213                    martin johnson    1
## 41214                        martin two    1
## 41215                        martin was    1
## 41216                     martinique to    1
## 41217                      maryland and    1
## 41218                   maryland engine    1
## 41219                     maryland when    1
## 41220                     marz mountain    1
## 41221                        masai mara    1
## 41222                   masbate airport    1
## 41223                    masbate island    1
## 41224                       masbate the    1
## 41225                        mashhad in    1
## 41226                        masks fell    1
## 41227                         masks had    1
## 41228                         masks the    1
## 41229                        mason city    1
## 41230                   mass descending    1
## 41231                          mass the    1
## 41232                          mass was    1
## 41233                 massachusetts and    1
## 41234              massachusetts killed    1
## 41235            massachusetts turnpike    1
## 41236                        massive 50    1
## 41237                   massive amounts    1
## 41238                  massive external    1
## 41239                 massive ingestion    1
## 41240                            mast 5    1
## 41241                      mast crashed    1
## 41242                           mast in    1
## 41243                 master connecting    1
## 41244                    master warning    1
## 41245                    matari airport    1
## 41246                       match after    1
## 41247                     match against    1
## 41248                          match of    1
## 41249                  material failure    1
## 41250             material flammability    1
## 41251                     material made    1
## 41252                     material snow    1
## 41253                       materials 8    1
## 41254               materials arresting    1
## 41255                     materials hit    1
## 41256                          mati the    1
## 41257                         matmo the    1
## 41258                       mato grosso    1
## 41259                         matter as    1
## 41260                      mattered one    1
## 41261                        matters of    1
## 41262                     matto located    1
## 41263                   maturin airport    1
## 41264                          maui and    1
## 41265                           maui at    1
## 41266                      maui failure    1
## 41267                          maui the    1
## 41268                           maui to    1
## 41269                  maures tribesmen    1
## 41270                maurice muehleisen    1
## 41271                    mauritania the    1
## 41272                mauritius approach    1
## 41273                     mauritius the    1
## 41274                             max 8    1
## 41275                      max aircraft    1
## 41276                       maxim gorky    1
## 41277                 maximum allowable    1
## 41278                  maximum altitude    1
## 41279                       maximum and    1
## 41280                     maximum angle    1
## 41281                      maximum duty    1
## 41282                  maximum elevator    1
## 41283                     maximum gross    1
## 41284                       maximum low    1
## 41285                      maximum nose    1
## 41286                    maximum number    1
## 41287                 maximum operating    1
## 41288               maximum permissable    1
## 41289                     maximum power    1
## 41290                       maximum rpm    1
## 41291                      maximum stop    1
## 41292                maximum structural    1
## 41293                            may 15    1
## 41294                          may 1969    1
## 41295                          may 1985    1
## 41296                          may 2006    1
## 41297                            may 30    1
## 41298                            may be    1
## 41299                         may cause    1
## 41300                    may contribute    1
## 41301                          may lose    1
## 41302                          may lost    1
## 41303                 may misunderstood    1
## 41304                           may not    1
## 41305                      may possibly    1
## 41306                   maybe following    1
## 41307                      mayday calls    1
## 41308                   mayday received    1
## 41309                        mayday the    1
## 41310                       maydays the    1
## 41311                 mba international    1
## 41312                         mc carran    1
## 41313                           mc comb    1
## 41314                    mccarran field    1
## 41315            mccarran international    1
## 41316                     mcconnell air    1
## 41317                   mcdonald killed    1
## 41318                     mcentire band    1
## 41319                   mcgrath crashed    1
## 41320                       mcgrath the    1
## 41321                       mckinley at    1
## 41322                   mcnaughton navy    1
## 41323                        mcp during    1
## 41324                             md 11    1
## 41325                             md 80    1
## 41326                             md 82    1
## 41327                             md 83    1
## 41328                          mda both    1
## 41329                          mda crew    1
## 41330                            mda in    1
## 41331                          mda into    1
## 41332                            mda it    1
## 41333                            mda of    1
## 41334                         mda pilot    1
## 41335                          mead and    1
## 41336                          meadow 5    1
## 41337                        meadow and    1
## 41338                      meadow while    1
## 41339                          mean sea    1
## 41340                      meanwhile at    1
## 41341                      measured the    1
## 41342                      measures and    1
## 41343                       measures on    1
## 41344                     measures poor    1
## 41345               measuring equipment    1
## 41346                      mechanic and    1
## 41347                     mechanic made    1
## 41348                       mechanic of    1
## 41349                       mechanic to    1
## 41350                mechanical defects    1
## 41351           mechanical difficulties    1
## 41352               mechanical failures    1
## 41353             mechanical inspection    1
## 41354                  mechanical issue    1
## 41355            mechanical malfunction    1
## 41356                mechanical repairs    1
## 41357                mechanical trouble    1
## 41358                     mechanics did    1
## 41359                    mechanics from    1
## 41360                  mechanism called    1
## 41361                    mechanism came    1
## 41362                 mechanism crashed    1
## 41363                     mechanism due    1
## 41364                  mechanism failed    1
## 41365                   mechanism forty    1
## 41366                      mechanism of    1
## 41367                     mechanism the    1
## 41368                 mechanism through    1
## 41369                      mechanism to    1
## 41370          mechanism uncontrollable    1
## 41371                   mechanism while    1
## 41372                       mechuka the    1
## 41373                           med and    1
## 41374                          medan in    1
## 41375                          medan on    1
## 41376                    medan wreckage    1
## 41377                    medellãƒâ­n to    1
## 41378                  medellin airport    1
## 41379                  medellin members    1
## 41380                         medic and    1
## 41381                    medical clinic    1
## 41382                      medical crew    1
## 41383                 medical examiners    1
## 41384               medical information    1
## 41385                   medical records    1
## 41386                   medical student    1
## 41387                 medical treatment    1
## 41388                   medications for    1
## 41389                      medicine bow    1
## 41390                      medina saudi    1
## 41391                 mediterranean due    1
## 41392                 mediterranean for    1
## 41393                  mediterranean in    1
## 41394             mediterranean shortly    1
## 41395               mediterranean while    1
## 41396                 mediterranian sea    1
## 41397                      medium sized    1
## 41398                 meduxnekeag river    1
## 41399                           meet an    1
## 41400            meeting specifications    1
## 41401                      mehamn after    1
## 41402                      meking river    1
## 41403                      mekong delta    1
## 41404                      mel carnahan    1
## 41405                  melanie thornton    1
## 41406                 melbourne florida    1
## 41407                      melbourne to    1
## 41408                melilla controlled    1
## 41409                      mellaline 20    1
## 41410                      melosas area    1
## 41411                         melted by    1
## 41412                 melted insulation    1
## 41413                       melting ice    1
## 41414                melting insulation    1
## 41415                        member and    1
## 41416                    member entered    1
## 41417                 member parachuted    1
## 41418                        member the    1
## 41419                     member thrown    1
## 41420                        member two    1
## 41421                        member u.s    1
## 41422                         members 5    1
## 41423                      members also    1
## 41424                    members became    1
## 41425              members contributing    1
## 41426                       members did    1
## 41427                    members either    1
## 41428                   members ejected    1
## 41429                   members injured    1
## 41430                    members killed    1
## 41431                     members tried    1
## 41432                       members was    1
## 41433                  memorial crashed    1
## 41434                 memorial services    1
## 41435                     memory rather    1
## 41436                        memphis in    1
## 41437                           men and    1
## 41438                          men made    1
## 41439                       men offered    1
## 41440                           men out    1
## 41441                        men poured    1
## 41442                            men to    1
## 41443                          men took    1
## 41444                          men were    1
## 41445                           men who    1
## 41446                      mendocino in    1
## 41447                       mendoza and    1
## 41448                 mendoza argentina    1
## 41449                        mental and    1
## 41450                   mental problems    1
## 41451                     mental stress    1
## 41452                      mentally ill    1
## 41453                     mentaya river    1
## 41454                        mention of    1
## 41455                     menzalah lake    1
## 41456                        merauke to    1
## 41457                     mercantour 50    1
## 41458                mercedario crashed    1
## 41459                     mercy mission    1
## 41460                     mere l'eglise    1
## 41461                mered neighborhood    1
## 41462                        mergui was    1
## 41463                    merida aileron    1
## 41464                    merida without    1
## 41465                     mermoz killed    1
## 41466                         mesehe at    1
## 41467                    meshed airport    1
## 41468                         message a    1
## 41469                       message but    1
## 41470                   message contact    1
## 41471                    message engine    1
## 41472               message positioning    1
## 41473                     message prior    1
## 41474                  message received    1
## 41475                  message reported    1
## 41476                message requesting    1
## 41477                      message soon    1
## 41478                    message stated    1
## 41479                   message stendec    1
## 41480               message transmitted    1
## 41481                     message twice    1
## 41482                     message which    1
## 41483                  messages crashed    1
## 41484                 messages reported    1
## 41485                  met contributing    1
## 41486                      meta crashed    1
## 41487                       metal blast    1
## 41488                          metal of    1
## 41489                        metal star    1
## 41490               metallurgical fault    1
## 41491              metallurgical issues    1
## 41492          meteorological condition    1
## 41493        meteorological information    1
## 41494             meteorological minima    1
## 41495          meteorological phenomena    1
## 41496                      meter height    1
## 41497         meteriological conditions    1
## 41498                      meters above    1
## 41499                     meters behind    1
## 41500                      meters below    1
## 41501                    meters crashed    1
## 41502                         meters in    1
## 41503                   meters offshore    1
## 41504                         meters or    1
## 41505                         meters to    1
## 41506                 meters visibility    1
## 41507                        meters.ã â    1
## 41508                      method under    1
## 41509                     methods after    1
## 41510                     methods which    1
## 41511                       metres away    1
## 41512                        metres but    1
## 41513                       metres from    1
## 41514                  metroliner after    1
## 41515                   metroliner made    1
## 41516                    metroliner one    1
## 41517                    metroliner was    1
## 41518              metropolitan airport    1
## 41519                   mexican actress    1
## 41520                  mexican american    1
## 41521               mexican journalists    1
## 41522              mexican presidential    1
## 41523                        mexican tv    1
## 41524                      mexico about    1
## 41525                        mexico and    1
## 41526                         mexico at    1
## 41527                        mexico fog    1
## 41528                      mexico forty    1
## 41529                        mexico off    1
## 41530                    mexico senator    1
## 41531                             mi 8t    1
## 41532                             mi sw    1
## 41533                           miami 9    1
## 41534                           miami a    1
## 41535                       miami after    1
## 41536                     miami airport    1
## 41537                         miami and    1
## 41538                       miami beach    1
## 41539                   miami departure    1
## 41540                          miami fl    1
## 41541                     miami florida    1
## 41542                       miami river    1
## 41543                         miami the    1
## 41544                          miami to    1
## 41545                   michael kennedy    1
## 41546                     michigan 19.5    1
## 41547                  michigan crashed    1
## 41548                      michigan two    1
## 41549                michigan undershot    1
## 41550                    michigan using    1
## 41551                      mickelson 52    1
## 41552                     mickey leland    1
## 41553                   micoburst while    1
## 41554             microburst conditions    1
## 41555                    microburst the    1
## 41556                 microbust induced    1
## 41557                  microphone being    1
## 41558          microphone transmissions    1
## 41559                microscopic cracks    1
## 41560                           mid aid    1
## 41561                        mid runway    1
## 41562                          midair a    1
## 41563                      midair about    1
## 41564                      midair after    1
## 41565                     midair before    1
## 41566                   midair breaking    1
## 41567                  midair explosion    1
## 41568                        midair for    1
## 41569                    midair killing    1
## 41570                     midair midair    1
## 41571                        midair the    1
## 41572               middleweight boxing    1
## 41573                          midst of    1
## 41574                    midway between    1
## 41575                       midway down    1
## 41576                     midway headed    1
## 41577                         midway to    1
## 41578                    midwest's lack    1
## 41579                  midwest's weight    1
## 41580                  midwest national    1
## 41581                        miels from    1
## 41582                            mig 15    1
## 41583                      mig aircraft    1
## 41584                       mig fighter    1
## 41585                      mig fighters    1
## 41586                           mig jet    1
## 41587                         mig pilot    1
## 41588                           mig the    1
## 41589                         mig which    1
## 41590                     might confuse    1
## 41591                     migrated from    1
## 41592                      migration of    1
## 41593                 migs accidentally    1
## 41594                           migs it    1
## 41595                     miguel aleman    1
## 41596                    mihara volcano    1
## 41597                         mike todd    1
## 41598                    mikhail glinka    1
## 41599                  mikolaj kopernik    1
## 41600                         milan and    1
## 41601                        milan with    1
## 41602                    mild stimulant    1
## 41603                     mile adjacent    1
## 41604                           mile an    1
## 41605                          mile and    1
## 41606                       mile radius    1
## 41607                    mile southeast    1
## 41608                     mile striking    1
## 41609                        mile while    1
## 41610                       miles apart    1
## 41611                        miles away    1
## 41612                      miles before    1
## 41613                      miles beyond    1
## 41614                        miles city    1
## 41615                           miles e    1
## 41616                       miles found    1
## 41617                          miles in    1
## 41618                        miles near    1
## 41619                          miles or    1
## 41620                         miles per    1
## 41621                         miles ssw    1
## 41622                         miles wnw    1
## 41623                         miles wsw    1
## 41624                    militant group    1
## 41625                 military airstrip    1
## 41626                     military army    1
## 41627                      military atc    1
## 41628                     military atcs    1
## 41629                 military aviation    1
## 41630                      military bus    1
## 41631                    military cargo    1
## 41632                  military charter    1
## 41633                  military command    1
## 41634              military controllers    1
## 41635                    military corps    1
## 41636                 military exercise    1
## 41637                military exercises    1
## 41638                    military flyby    1
## 41639                   military flying    1
## 41640              military frequencies    1
## 41641              military headquarter    1
## 41642              military helicopters    1
## 41643            military investigation    1
## 41644                     military jets    1
## 41645                  military leaders    1
## 41646                   military midair    1
## 41647                 military officals    1
## 41648                  military officer    1
## 41649                 military officers    1
## 41650                military officials    1
## 41651                    military radar    1
## 41652                 military supplies    1
## 41653                      military the    1
## 41654                  military traffic    1
## 41655                    military while    1
## 41656                         mill hill    1
## 41657                     mill regional    1
## 41658                         miller 40    1
## 41659                       miller army    1
## 41660                        milling at    1
## 41661                   million neither    1
## 41662                 millville because    1
## 41663                      millville in    1
## 41664              milwaukee requesting    1
## 41665                   mimimum descent    1
## 41666                      mimimum safe    1
## 41667                       min crashed    1
## 41668                       minam river    1
## 41669                          mind and    1
## 41670                        minds when    1
## 41671                        mine after    1
## 41672                     mine airstrip    1
## 41673                           mine on    1
## 41674                    mineral waters    1
## 41675                       miners fuel    1
## 41676                     miners headed    1
## 41677                    mineworker who    1
## 41678                         minh city    1
## 41679                        minhar air    1
## 41680                        minima 700    1
## 41681                         minima an    1
## 41682                         minima at    1
## 41683                        minima but    1
## 41684                      minima cargo    1
## 41685                    minima descent    1
## 41686                       minima even    1
## 41687                       minima flew    1
## 41688                        minima for    1
## 41689                       minima shot    1
## 41690                 minima subsequent    1
## 41691                      minima under    1
## 41692                       minima upon    1
## 41693                      minima which    1
## 41694                       minima with    1
## 41695                   minimal braking    1
## 41696                      minimize its    1
## 41697                 minimum altitiude    1
## 41698                 minimum altitutde    1
## 41699                  minimum approach    1
## 41700                minimum authorized    1
## 41701                 minimum aviodance    1
## 41702                 minimum avoidance    1
## 41703                   minimum ceiling    1
## 41704                   minimum descend    1
## 41705                        minimum en    1
## 41706                minimum instrument    1
## 41707            minimum meteorological    1
## 41708                      minimum mode    1
## 41709                        minimum of    1
## 41710            minimum qualifications    1
## 41711                     minimum radar    1
## 41712              minimum requirements    1
## 41713                     minimum speed    1
## 41714                   minimum warning    1
## 41715                minimumns improper    1
## 41716                     minimumns the    1
## 41717                    minimums after    1
## 41718                      minimums and    1
## 41719                  minimums because    1
## 41720                minimums execution    1
## 41721                      minimums for    1
## 41722                       minimums in    1
## 41723               minimums inadequate    1
## 41724                     minimums into    1
## 41725                    minimums while    1
## 41726                  minimums without    1
## 41727                    mining company    1
## 41728                    minister ahmed    1
## 41729               minister douangchay    1
## 41730                     minister jean    1
## 41731                  minister winston    1
## 41732                 ministers crashed    1
## 41733                ministry officials    1
## 41734              minneapolis billings    1
## 41735                   minneapolis the    1
## 41736                 minneapolis world    1
## 41737                  minnesota killed    1
## 41738                    minor problems    1
## 41739                       minor royal    1
## 41740                  minority opinion    1
## 41741                         minos the    1
## 41742                        mins after    1
## 41743               minsk.double engine    1
## 41744                       mint canyon    1
## 41745                       minuets due    1
## 41746                     minute amount    1
## 41747                        minute and    1
## 41748                     minute before    1
## 41749                     minute change    1
## 41750                      minute fight    1
## 41751                       minute from    1
## 41752                    minute holding    1
## 41753                       minute into    1
## 41754                      minute route    1
## 41755                    minute without    1
## 41756                        minutes 23    1
## 41757                    minutes behind    1
## 41758                      minutes both    1
## 41759                       minutes but    1
## 41760                  minutes collided    1
## 41761                minutes descending    1
## 41762                   minutes earlier    1
## 41763                   minutes elapsed    1
## 41764                      minutes flew    1
## 41765                    minutes flying    1
## 41766                      minutes loss    1
## 41767                       minutes one    1
## 41768                     minutes prior    1
## 41769                  minutes revealed    1
## 41770                      minutes when    1
## 41771                     minutes while    1
## 41772                         mir pilot    1
## 41773             mirabel international    1
## 41774             miraculously survived    1
## 41775                        mirage jet    1
## 41776                          miri the    1
## 41777              miscalculated during    1
## 41778                 miscalculated the    1
## 41779                 miscalculation by    1
## 41780                 miscalculation of    1
## 41781                miscalculations in    1
## 41782         misconstrued instructions    1
## 41783                       misfiled at    1
## 41784                     misfiring and    1
## 41785                    mishandled the    1
## 41786                    mishandling of    1
## 41787                         mishap to    1
## 41788                  misidentified as    1
## 41789                misidentifying the    1
## 41790           misinformation supplied    1
## 41791                  misinterpret the    1
## 41792                 misinterpreted as    1
## 41793            misinterpreted crucial    1
## 41794                 misinterpreted or    1
## 41795           misjudged deteriorating    1
## 41796                misjudged distance    1
## 41797                     misjudged his    1
## 41798                   misjudged speed    1
## 41799              misjudged strategies    1
## 41800                   misjudgement in    1
## 41801                   misjudgement of    1
## 41802              misjudging clearance    1
## 41803                       mislead the    1
## 41804                misleading forcast    1
## 41805             misleading navigation    1
## 41806                         misled by    1
## 41807                        misled the    1
## 41808                      misloaded to    1
## 41809                     misloading by    1
## 41810                    misloading was    1
## 41811                        misread an    1
## 41812                misread especially    1
## 41813                        misread or    1
## 41814                    misreading the    1
## 41815                 misrigging during    1
## 41816                           miss an    1
## 41817                     miss approach    1
## 41818                       miss france    1
## 41819                        miss miami    1
## 41820                          missed 3    1
## 41821                   missed apporach    1
## 41822                    missed attempt    1
## 41823                  missed checklist    1
## 41824                        missed ifr    1
## 41825                       missed just    1
## 41826                         missed or    1
## 41827                     missiion with    1
## 41828                 missile destroyed    1
## 41829                    missile during    1
## 41830                    missile either    1
## 41831                  missile exploded    1
## 41832                   missile highest    1
## 41833                   missile launced    1
## 41834                   missile overran    1
## 41835                 missile president    1
## 41836                   missile shortly    1
## 41837                      missile then    1
## 41838                    missile unable    1
## 41839                     missile while    1
## 41840                        missiles a    1
## 41841                       missiles at    1
## 41842                  missiles shortly    1
## 41843                       missing his    1
## 41844                   missing landing    1
## 41845                   missing minutes    1
## 41846                     missing never    1
## 41847                      missing over    1
## 41848                     missing plane    1
## 41849                   missing several    1
## 41850                     missing spark    1
## 41851                      missing went    1
## 41852                      missing work    1
## 41853                  missing wreckage    1
## 41854                         mission a    1
## 41855                   mission airport    1
## 41856                    mission became    1
## 41857                     mission being    1
## 41858                      mission came    1
## 41859                        mission in    1
## 41860                   mission induced    1
## 41861                   mission killing    1
## 41862                        mission of    1
## 41863                      mission over    1
## 41864                       mission two    1
## 41865                      mission when    1
## 41866                      mission with    1
## 41867                mississippi larkin    1
## 41868                       missoni was    1
## 41869                      missoula and    1
## 41870                      missoula the    1
## 41871                    missouri after    1
## 41872                      missouri was    1
## 41873                          mist due    1
## 41874                           mist on    1
## 41875                     mist reported    1
## 41876                          mist the    1
## 41877                     mistake after    1
## 41878                        mistake he    1
## 41879                        mistake of    1
## 41880                        mistake on    1
## 41881                      mistake that    1
## 41882                      mistaken and    1
## 41883                      mistaken the    1
## 41884              mistakenly continued    1
## 41885                   mistakenly gave    1
## 41886             mistakenly identified    1
## 41887              mistakenly installed    1
## 41888                  mistakenly lined    1
## 41889                 mistakenly opened    1
## 41890              mistakenly shortened    1
## 41891                mistakenly thought    1
## 41892              mistakenly throttled    1
## 41893                  mistakenly tuned    1
## 41894               mistberget mountain    1
## 41895                 mistook laphroaig    1
## 41896                    mistook lights    1
## 41897                   mistook nanaimo    1
## 41898                       mistook the    1
## 41899              mistrimmed condition    1
## 41900             mistrimmed horizontal    1
## 41901                 mistrimmed rudder    1
## 41902             mistrimmed stabilizer    1
## 41903                   misty conditons    1
## 41904                      misty fiords    1
## 41905                        misty rain    1
## 41906          misunderstanding because    1
## 41907               misunderstanding of    1
## 41908             misunderstood aileron    1
## 41909                 misunderstood and    1
## 41910                     misused flaps    1
## 41911                        misused or    1
## 41912                       mitãƒâº the    1
## 41913            mitchell international    1
## 41914                            mix of    1
## 41915                        mixed both    1
## 41916                         mixed vfr    1
## 41917                   mixture causing    1
## 41918                        mixture in    1
## 41919                  miyamori primary    1
## 41920                       mka1602 did    1
## 41921                            mlw at    1
## 41922                    mobile alabama    1
## 41923                      mobile homes    1
## 41924                       mobile shop    1
## 41925                    mobile traffic    1
## 41926                 mocambique island    1
## 41927                        mochis but    1
## 41928                           mode at    1
## 41929                            mode c    1
## 41930                       mode direct    1
## 41931                          mode due    1
## 41932                       mode during    1
## 41933                           mode in    1
## 41934                      mode instead    1
## 41935                         mode over    1
## 41936                     mode selector    1
## 41937                         mode they    1
## 41938                   mode transition    1
## 41939                        mode which    1
## 41940                   model sustained    1
## 41941                    moderate bumps    1
## 41942                 moderate injuries    1
## 41943                       moderate or    1
## 41944                    modern terrain    1
## 41945                   modification to    1
## 41946                  modifications to    1
## 41947                      modify those    1
## 41948                     modifying one    1
## 41949            mofadisu international    1
## 41950                     moffett naval    1
## 41951                 mogadishu crashed    1
## 41952                     mogadishu the    1
## 41953                      mogadorin in    1
## 41954                  moganik mountain    1
## 41955                   mohammed rashed    1
## 41956                     mohawk valley    1
## 41957                   moines marciano    1
## 41958                        moines the    1
## 41959                       moisture in    1
## 41960                  moisture leaking    1
## 41961                     mojave desert    1
## 41962                         mokmer to    1
## 41963                     moldovan crew    1
## 41964                        moline the    1
## 41965                       mollet lake    1
## 41966                       molo strait    1
## 41967                    molokai hawaii    1
## 41968                      molokai high    1
## 41969                   molokai slammed    1
## 41970                       molokai the    1
## 41971                         moment it    1
## 41972                         moment of    1
## 41973                   moment reversal    1
## 41974                        moment the    1
## 41975                         moment to    1
## 41976           momentarily disappeared    1
## 41977          momentary disorientation    1
## 41978            momentary intermittent    1
## 41979                    moments before    1
## 41980                      moments when    1
## 41981                        monarch of    1
## 41982                      monastery of    1
## 41983                          mongu it    1
## 41984                          mongu on    1
## 41985                    monica airport    1
## 41986                  monitor airspeed    1
## 41987                 monitor altimeter    1
## 41988                 monitor essential    1
## 41989                      monitor fine    1
## 41990                    monitor flight    1
## 41991                      monitor fuel    1
## 41992               monitor instruments    1
## 41993                  monitor properly    1
## 41994                     monitored the    1
## 41995            monitoring instruments    1
## 41996                    monitoring not    1
## 41997                     monitoring on    1
## 41998                     monitoring or    1
## 41999                     monitoring to    1
## 42000                       monitors on    1
## 42001                         monona in    1
## 42002                 monongahela river    1
## 42003                monoxide emanating    1
## 42004                    monoxide fumes    1
## 42005                      monoxide gas    1
## 42006                      monoxide the    1
## 42007                     monoxide were    1
## 42008                     monseny pilot    1
## 42009                monsoon conditions    1
## 42010                 monsoon rainstorm    1
## 42011                        mont apica    1
## 42012                     montãƒâ limar    1
## 42013                        montain in    1
## 42014                      montana when    1
## 42015                     monte pilot's    1
## 42016                        monte vale    1
## 42017                      monterey and    1
## 42018                   monterey mexico    1
## 42019                       monterey on    1
## 42020                monterey peninsula    1
## 42021                  monterrey mexico    1
## 42022                  montevideo bound    1
## 42023                 montezuma shortly    1
## 42024                     month crashed    1
## 42025                         month old    1
## 42026                    months crashed    1
## 42027                        months for    1
## 42028                        months had    1
## 42029                     months nelson    1
## 42030                        months old    1
## 42031                  months preceding    1
## 42032                         months so    1
## 42033                        montijo 40    1
## 42034                 montreal's dorval    1
## 42035                    montreal bound    1
## 42036                   montreal canada    1
## 42037                 montreal cruising    1
## 42038                    montreal icing    1
## 42039                      montreal the    1
## 42040                       montreal to    1
## 42041                 montseny mountain    1
## 42042                     montt because    1
## 42043                          moon bay    1
## 42044                   mooney airplane    1
## 42045                    mooney airport    1
## 42046                 mooney instructor    1
## 42047                          mooney m    1
## 42048                      mooney pilot    1
## 42049                 mooney procedures    1
## 42050                          moore 48    1
## 42051                         moored at    1
## 42052                        mooring of    1
## 42053                     mooring ropes    1
## 42054                    moose mountain    1
## 42055                          mora and    1
## 42056                         mora kalu    1
## 42057                          moran at    1
## 42058                     more accurate    1
## 42059                     more advanced    1
## 42060                          more aft    1
## 42061                 more attributable    1
## 42062                       more canada    1
## 42063                      more crashed    1
## 42064                    more effective    1
## 42065                      more engines    1
## 42066                       more errors    1
## 42067                  more experienced    1
## 42068                       more grassy    1
## 42069                     more mountain    1
## 42070                        more night    1
## 42071                       more oxygen    1
## 42072                     more positive    1
## 42073                     more powerful    1
## 42074                    more prisoners    1
## 42075                      more quickly    1
## 42076                      more sharply    1
## 42077                        more shots    1
## 42078                  more significant    1
## 42079                        more times    1
## 42080                       more upward    1
## 42081                          more was    1
## 42082                        moresby at    1
## 42083                  moresby jacksons    1
## 42084                        morgan and    1
## 42085                    morgantown the    1
## 42086                    morning flight    1
## 42087                        morning in    1
## 42088               morning malfunction    1
## 42089                       morning the    1
## 42090                      morning with    1
## 42091                  moroccan pilot's    1
## 42092                       morocco for    1
## 42093                      moron island    1
## 42094                          moroni a    1
## 42095                         morrow 53    1
## 42096                          morrow a    1
## 42097                        morrow and    1
## 42098                     morseby while    1
## 42099                       mortar fire    1
## 42100                          mosby to    1
## 42101                         moscow 11    1
## 42102                    moscow crashed    1
## 42103                     moscow hockey    1
## 42104                         moscow it    1
## 42105                    moscow shortly    1
## 42106                        moscow the    1
## 42107                     moscow visual    1
## 42108                    moscow vnukovo    1
## 42109                  moscow witnesses    1
## 42110                       mosques and    1
## 42111                 mosquito fighters    1
## 42112                       most aboard    1
## 42113                     most accepted    1
## 42114                    most dangerous    1
## 42115                       most deaths    1
## 42116                      most experts    1
## 42117                   most fatalities    1
## 42118                    most important    1
## 42119                     most probable    1
## 42120                     most provence    1
## 42121                 mostar macedonian    1
## 42122                     mostly french    1
## 42123                     motel complex    1
## 42124                          motel to    1
## 42125                  mother's luggage    1
## 42126                          mother a    1
## 42127                        mother did    1
## 42128                      mother maria    1
## 42129                         mother of    1
## 42130                      mother threw    1
## 42131                    motion sensors    1
## 42132                        motion the    1
## 42133                      motivated to    1
## 42134                         motor and    1
## 42135                       motor drive    1
## 42136                        motor from    1
## 42137                          motor he    1
## 42138                         motor may    1
## 42139                         motor one    1
## 42140                         motor the    1
## 42141                     motorcycle on    1
## 42142                         motors as    1
## 42143                         motors of    1
## 42144                      motors which    1
## 42145                motorsports racing    1
## 42146                        motte peak    1
## 42147                   moucherolles 25    1
## 42148                     mouintian 8km    1
## 42149                    mound adjacent    1
## 42150                          mound it    1
## 42151                          mound of    1
## 42152                       mounds park    1
## 42153                   mount anjimalai    1
## 42154                     mount apshara    1
## 42155                        mount arey    1
## 42156                       mount basso    1
## 42157                   mount chaiopeng    1
## 42158                  mount charleston    1
## 42159                      mount djebel    1
## 42160                   mount esperanca    1
## 42161                     mount gambier    1
## 42162                     mount gannett    1
## 42163                       mount healy    1
## 42164                    mount hymittus    1
## 42165                     mount kamunay    1
## 42166                       mount kenya    1
## 42167                  mount latimojong    1
## 42168                    mount maranola    1
## 42169                    mount marsabit    1
## 42170                     mount massive    1
## 42171                     mount ostraya    1
## 42172                       mount oyama    1
## 42173                      mount parker    1
## 42174                      mount poktoy    1
## 42175                        mount popa    1
## 42176                    mount porretta    1
## 42177                       mount salak    1
## 42178                         mount san    1
## 42179                       mount santa    1
## 42180                      mount slesse    1
## 42181                      mount vernon    1
## 42182                       mount vumba    1
## 42183                        mountain 1    1
## 42184                      mountain 100    1
## 42185                       mountain 12    1
## 42186                       mountain 14    1
## 42187                    mountain 2,310    1
## 42188                       mountain 27    1
## 42189                        mountain 3    1
## 42190                      mountain 3.4    1
## 42191                      mountain 300    1
## 42192                     mountain 300m    1
## 42193                       mountain 32    1
## 42194                       mountain 40    1
## 42195                       mountain 43    1
## 42196                      mountain 450    1
## 42197                    mountain 5,500    1
## 42198                       mountain 50    1
## 42199                       mountain 52    1
## 42200                        mountain 6    1
## 42201                    mountain 6,100    1
## 42202                      mountain 600    1
## 42203                        mountain 7    1
## 42204                       mountain 70    1
## 42205                       mountain 80    1
## 42206                    mountain about    1
## 42207                      mountain all    1
## 42208                     mountain area    1
## 42209                      mountain atc    1
## 42210                   mountain before    1
## 42211                  mountain bending    1
## 42212                  mountain blocked    1
## 42213                 mountain bursting    1
## 42214                      mountain did    1
## 42215                mountain disabling    1
## 42216                mountain downdraft    1
## 42217                      mountain due    1
## 42218                     mountain east    1
## 42219                    mountain error    1
## 42220                 mountain exploded    1
## 42221                     mountain five    1
## 42222                   mountain flight    1
## 42223                   mountain flying    1
## 42224                      mountain fog    1
## 42225                mountain following    1
## 42226                      mountain for    1
## 42227                    mountain guide    1
## 42228                    mountain humpy    1
## 42229                 mountain improper    1
## 42230               mountain inadequate    1
## 42231                 mountain judgment    1
## 42232                     mountain just    1
## 42233                  mountain killing    1
## 42234                 mountain location    1
## 42235                  mountain minutes    1
## 42236                       mountain mt    1
## 42237             mountain navigational    1
## 42238                       mountain of    1
## 42239                   mountain olcott    1
## 42240                      mountain one    1
## 42241               mountain overloaded    1
## 42242                mountain premature    1
## 42243                   mountain rising    1
## 42244                    mountain serra    1
## 42245                    mountain seven    1
## 42246                   mountain severe    1
## 42247                     mountain shot    1
## 42248                    mountain south    1
## 42249                   mountain summit    1
## 42250               mountain surrounded    1
## 42251                    mountain three    1
## 42252                mountain turbulent    1
## 42253             mountain undetermined    1
## 42254                mountain unusually    1
## 42255                     mountain wall    1
## 42256                     mountain west    1
## 42257                    mountain world    1
## 42258                     mountain18 nm    1
## 42259                  mountaineers the    1
## 42260                 mountainous areas    1
## 42261               mountainous country    1
## 42262              mountainous forested    1
## 42263                mountainous jungle    1
## 42264              mountainous northern    1
## 42265                 mountainous samal    1
## 42266          mountainous southeastern    1
## 42267             mountainous territory    1
## 42268                     mountains 100    1
## 42269                     mountains 120    1
## 42270                      mountains 22    1
## 42271                      mountains 26    1
## 42272                      mountains 32    1
## 42273                       mountains 8    1
## 42274                   mountains about    1
## 42275            mountains accidentally    1
## 42276                mountains although    1
## 42277                      mountains an    1
## 42278                      mountains as    1
## 42279               mountains continued    1
## 42280                 mountains crashed    1
## 42281                 mountains fflying    1
## 42282                   mountains found    1
## 42283                    mountains four    1
## 42284                     mountains hit    1
## 42285                      mountains it    1
## 42286                 mountains located    1
## 42287                    mountains lost    1
## 42288         mountains nizhnesvanetsky    1
## 42289                   mountains north    1
## 42290                mountains obscured    1
## 42291                     mountains one    1
## 42292              mountains permission    1
## 42293                mountains probable    1
## 42294                   mountains south    1
## 42295                      mountains to    1
## 42296                mountains wreckage    1
## 42297            mountains.the airplane    1
## 42298                   mountainside 15    1
## 42299                    mountainside 2    1
## 42300                   mountainside 20    1
## 42301                   mountainside 30    1
## 42302                   mountainside 50    1
## 42303                    mountainside a    1
## 42304                mountainside about    1
## 42305              mountainside between    1
## 42306                mountainside icing    1
## 42307            mountainside navigator    1
## 42308                mountainside north    1
## 42309              mountainside towards    1
## 42310                 mountainsides and    1
## 42311                   mountaintop and    1
## 42312                 mountaintop while    1
## 42313                 mountanous region    1
## 42314                       mountian 34    1
## 42315                     mountian peak    1
## 42316                        mountin in    1
## 42317                    mounting studs    1
## 42318                    mounts leading    1
## 42319                          move the    1
## 42320                           move to    1
## 42321                      move towards    1
## 42322                      moved across    1
## 42323                          moved an    1
## 42324               moved automatically    1
## 42325                        moved away    1
## 42326                         moved the    1
## 42327                          moved to    1
## 42328                       movement in    1
## 42329                 movement reversal    1
## 42330                  movement stalled    1
## 42331                           movie a    1
## 42332                     movie airport    1
## 42333                       movie alive    1
## 42334                       movie crash    1
## 42335                        movie crew    1
## 42336                     movie falling    1
## 42337                        movie star    1
## 42338                        movies the    1
## 42339                         moving by    1
## 42340                  moving equipment    1
## 42341                       moving over    1
## 42342                   moving sideways    1
## 42343                        moving the    1
## 42344                 mozambique killed    1
## 42345                        mozart the    1
## 42346                            mp and    1
## 42347                             mpã â    1
## 42348                        mph almost    1
## 42349                       mph because    1
## 42350                          mph both    1
## 42351                      mph bursting    1
## 42352                        mph either    1
## 42353                       mph however    1
## 42354                       mph mexican    1
## 42355                       mph neither    1
## 42356                    mph officially    1
## 42357                           mph the    1
## 42358                          mph with    1
## 42359                        mr gardner    1
## 42360                        ms pitre's    1
## 42361                            msa in    1
## 42362                         msa while    1
## 42363                           msaw at    1
## 42364                       msaw system    1
## 42365                          msaw was    1
## 42366                   mselou district    1
## 42367                         mshort of    1
## 42368                       msl crashed    1
## 42369                            msl on    1
## 42370                       mt alcazaba    1
## 42371                      mt arbetello    1
## 42372                           mt baco    1
## 42373                       mt banahaur    1
## 42374                      mt barrigada    1
## 42375                         mt belaya    1
## 42376                         mt benson    1
## 42377                          mt blanc    1
## 42378                           mt boca    1
## 42379                     mt burangrang    1
## 42380                        mt canigou    1
## 42381                        mt capanne    1
## 42382                          mt cemet    1
## 42383                         mt chambe    1
## 42384                       mt chaparra    1
## 42385                   mt chichontepec    1
## 42386                     mt chimborazo    1
## 42387                    mt choquetanga    1
## 42388                         mt cipãƒâ    1
## 42389                       mt colorado    1
## 42390                      mt constance    1
## 42391                           mt cook    1
## 42392                      mt daodenong    1
## 42393                           mt dena    1
## 42394                         mt dora's    1
## 42395                         mt epomeo    1
## 42396                        mt everest    1
## 42397                          mt fruka    1
## 42398                           mt fuji    1
## 42399                       mt gabinete    1
## 42400                          mt gaina    1
## 42401                        mt gilbert    1
## 42402                         mt giluwe    1
## 42403                      mt glungezer    1
## 42404                          mt halla    1
## 42405                         mt helmos    1
## 42406                      mt hestfjall    1
## 42407                        mt holston    1
## 42408                       mt hymettus    1
## 42409                        mt iliamna    1
## 42410                       mt illimani    1
## 42411                         mt ingeli    1
## 42412                           mt ipao    1
## 42413                      mt jaiskibel    1
## 42414                       mt kalangan    1
## 42415                         mt kalora    1
## 42416                       mt kantakan    1
## 42417                      mt kaolokung    1
## 42418                          mt kapur    1
## 42419                       mt karatepa    1
## 42420                          mt kenya    1
## 42421                         mt kerkis    1
## 42422                    mt kilimanjaro    1
## 42423                     mt kinnekulle    1
## 42424                         mt klabat    1
## 42425                          mt knuku    1
## 42426                         mt komawa    1
## 42427                        mt koupãƒâ    1
## 42428                    mt lamentation    1
## 42429                        mt lataboy    1
## 42430                          mt lawes    1
## 42431                            mt los    1
## 42432                          mt lozan    1
## 42433                          mt lunga    1
## 42434                       mt lyhesten    1
## 42435                        mt macedon    1
## 42436                         mt madiac    1
## 42437                         mt manase    1
## 42438                      mt manunggal    1
## 42439                          mt marra    1
## 42440                          mt matto    1
## 42441                       mt mckinley    1
## 42442                      mt mellaline    1
## 42443                     mt mercedario    1
## 42444                         mt mesehe    1
## 42445                           mt meta    1
## 42446                        mt monseny    1
## 42447                      mt montezuma    1
## 42448                          mt moran    1
## 42449                   mt moucherolles    1
## 42450                        mt mulbong    1
## 42451                          mt munay    1
## 42452                         mt musaka    1
## 42453                         mt nashua    1
## 42454                        mt nittany    1
## 42455                          mt north    1
## 42456                           mt nova    1
## 42457                            mt oiz    1
## 42458                       mt okanagan    1
## 42459                        mt olympus    1
## 42460                           mt otay    1
## 42461                         mt othrys    1
## 42462                           mt pãƒâ    1
## 42463                            mt pan    1
## 42464                     mt papandayan    1
## 42465                         mt paramo    1
## 42466                         mt parker    1
## 42467                         mt parnon    1
## 42468                           mt paso    1
## 42469                           mt pena    1
## 42470                      mt pichincha    1
## 42471                        mt pindaya    1
## 42472                        mt pintado    1
## 42473                      mt planchãƒâ    1
## 42474                   mt popocatepetl    1
## 42475                         mt potosi    1
## 42476                        mt ptolemy    1
## 42477                         mt puncak    1
## 42478                         mt rainer    1
## 42479                        mt rainier    1
## 42480                         mt renoso    1
## 42481                           mt rigi    1
## 42482                        mt ringani    1
## 42483                        mt ruapehu    1
## 42484                          mt santa    1
## 42485                          mt saran    1
## 42486                        mt sebayak    1
## 42487                          mt serra    1
## 42488                        mt seymour    1
## 42489                        mt sibayak    1
## 42490                        mt sivukha    1
## 42491                      mt skalafell    1
## 42492                    mt skorvefjell    1
## 42493                     mt somosierra    1
## 42494                         mt suphan    1
## 42495                        mt tabayoc    1
## 42496                        mt talsula    1
## 42497                       mt tanazawa    1
## 42498                       mt tangcong    1
## 42499                        mt tanzawa    1
## 42500                         mt taylor    1
## 42501                           mt tete    1
## 42502                          mt there    1
## 42503                         mt tirina    1
## 42504                          mt tobin    1
## 42505                            mt tom    1
## 42506                       mt trelease    1
## 42507                            mt ugu    1
## 42508                          mt ungeo    1
## 42509                         mt velino    1
## 42510                       mt vesuvius    1
## 42511                        mt whitney    1
## 42512                          mt wuzhi    1
## 42513                        mt yasirua    1
## 42514                         mt zamuro    1
## 42515                          mtow and    1
## 42516                        much after    1
## 42517                    much different    1
## 42518                       much faster    1
## 42519                         much food    1
## 42520                         much fuel    1
## 42521                       much higher    1
## 42522                        much lower    1
## 42523                   much publicized    1
## 42524                   mucuti mountain    1
## 42525                          mud flat    1
## 42526                        mudbank of    1
## 42527                      muddy ground    1
## 42528                       muddy water    1
## 42529                 mueggenaes island    1
## 42530              muehleisen publicist    1
## 42531                      muerta while    1
## 42532                           mugu in    1
## 42533                      muhammad zia    1
## 42534                      mujer muerta    1
## 42535             mulbong approximately    1
## 42536                         mulia 100    1
## 42537               multinational force    1
## 42538                    multipe engine    1
## 42539                 multiple attempts    1
## 42540                     multiple bird    1
## 42541                multiple corrosion    1
## 42542                   multiple engine    1
## 42543                   multiple errors    1
## 42544              multiple inspections    1
## 42545                multiple insurance    1
## 42546                     multiple tire    1
## 42547                          munay at    1
## 42548                       muncho lake    1
## 42549                       munich shot    1
## 42550                     munich unable    1
## 42551                   munitions being    1
## 42552                         munson 32    1
## 42553                        munson who    1
## 42554                  murchinson river    1
## 42555                   murdered aboard    1
## 42556                       murdered by    1
## 42557                      murdered the    1
## 42558                         murphy 46    1
## 42559                           mus and    1
## 42560                       musaka lost    1
## 42561                   musang district    1
## 42562                        mushaf ali    1
## 42563                        musi river    1
## 42564                         music the    1
## 42565                        music trio    1
## 42566                    musician glenn    1
## 42567                     musician paul    1
## 42568                     musick killed    1
## 42569                   muslim congress    1
## 42570                     muslim rebels    1
## 42571                     mustered crew    1
## 42572                    mutual support    1
## 42573                         mvou mvou    1
## 42574                  mvou residential    1
## 42575                      mw248 twenty    1
## 42576                      mwanza while    1
## 42577                           my arms    1
## 42578                           my life    1
## 42579                            my the    1
## 42580                          my while    1
## 42581                         myca dinh    1
## 42582                         myeik for    1
## 42583                        mystãƒâ re    1
## 42584                       n'djamena a    1
## 42585                    n'dolo airport    1
## 42586                              n 12    1
## 42587                          n 130.40    1
## 42588                              n 39    1
## 42589                           n 46'31    1
## 42590                              n 88    1
## 42591                         n airport    1
## 42592                        n navolato    1
## 42593                             n ndb    1
## 42594                         n nothing    1
## 42595                         n peteroa    1
## 42596                         n stalled    1
## 42597                              n to    1
## 42598                            n when    1
## 42599                           n.y the    1
## 42600                            n1 and    1
## 42601               n124nh subsequently    1
## 42602                      n13067 which    1
## 42603                    n407ga's pilot    1
## 42604                    n407mj's pilot    1
## 42605                     n464m decided    1
## 42606                   na'ameh lebanon    1
## 42607                              nã â    1
## 42608                            naa to    1
## 42609                    nabire crashed    1
## 42610                   nacelle causing    1
## 42611                   nacelle leading    1
## 42612                       nacelle the    1
## 42613                      nacelle wing    1
## 42614                       nacelles it    1
## 42615                       nacion were    1
## 42616                nadi international    1
## 42617                         nador and    1
## 42618                       nãƒâ rnberg    1
## 42619                          naga the    1
## 42620                    nagoya airport    1
## 42621                       nagoya both    1
## 42622                         nagpur on    1
## 42623                          naha air    1
## 42624                    naissaar after    1
## 42625                          name was    1
## 42626                    named amalthea    1
## 42627                       named amana    1
## 42628                     named antonio    1
## 42629                       named cairo    1
## 42630                    named canberra    1
## 42631                    named cavalier    1
## 42632                     named chateau    1
## 42633                    named chekiang    1
## 42634                       named china    1
## 42635                 named christopher    1
## 42636                         named cit    1
## 42637                      named cygnus    1
## 42638                        named dana    1
## 42639                    named emeraude    1
## 42640                     named emperor    1
## 42641                     named empress    1
## 42642                     named estevao    1
## 42643                    named flagship    1
## 42644                named gaurishankar    1
## 42645                      named glinka    1
## 42646                    named hannibal    1
## 42647                      named hawaii    1
## 42648                        named hong    1
## 42649                       named horus    1
## 42650                        named isle    1
## 42651                      named kaleva    1
## 42652                named kanchenjunga    1
## 42653                     named kashmir    1
## 42654                    named koningin    1
## 42655                     named kulbach    1
## 42656                     named kweilin    1
## 42657                        named lage    1
## 42658                   named leeuwerik    1
## 42659                        named lord    1
## 42660                      named magnus    1
## 42661                     named malabar    1
## 42662                   named mamberamo    1
## 42663                     named mikolaj    1
## 42664                    named nijmegen    1
## 42665                         named orm    1
## 42666                  named philippine    1
## 42667                      named prince    1
## 42668                        named puma    1
## 42669                       named queen    1
## 42670                       named rhine    1
## 42671                       named river    1
## 42672                     named rostock    1
## 42673                      named rudolf    1
## 42674                        named ruta    1
## 42675                       named saint    1
## 42676                      named samoan    1
## 42677                         named san    1
## 42678                    named shanghai    1
## 42679                      named shiraz    1
## 42680                      named sunnan    1
## 42681                      named sverre    1
## 42682                     named tadeusz    1
## 42683                   named thutmosis    1
## 42684                     named trabzon    1
## 42685                       named uiver    1
## 42686                    named vigalant    1
## 42687                       named ville    1
## 42688                    named wolfgang    1
## 42689                    namibia border    1
## 42690                 naming convention    1
## 42691                        namoya the    1
## 42692                       nanaimo for    1
## 42693                      nang airport    1
## 42694                           nang in    1
## 42695                        nang while    1
## 42696                       nanhai park    1
## 42697                        nantes vor    1
## 42698                 nantucket airport    1
## 42699                      nantucket in    1
## 42700                  nantucket island    1
## 42701                   nantucket sound    1
## 42702                     nantucket the    1
## 42703                     nanyman field    1
## 42704                      naples after    1
## 42705                       napoca from    1
## 42706                 narcotics mission    1
## 42707               narcotics officials    1
## 42708                    nari affecting    1
## 42709                narita airport.the    1
## 42710                     narrow flight    1
## 42711                     narrow runway    1
## 42712                       narrow turn    1
## 42713                      narrowed and    1
## 42714                  narrowing valley    1
## 42715                  narrowly avoided    1
## 42716                        nasa plane    1
## 42717                     nasa research    1
## 42718                     nascar driver    1
## 42719                       nascar race    1
## 42720                    nascar winston    1
## 42721                         nashua at    1
## 42722                 nashville airport    1
## 42723                    nashville west    1
## 42724                     nasty buggers    1
## 42725                    natal province    1
## 42726                     natalie dolly    1
## 42727            natchitoches louisiana    1
## 42728                       nathaly van    1
## 42729                   nation's border    1
## 42730                    nationair lead    1
## 42731                 nationair project    1
## 42732                      national air    1
## 42733                      national ice    1
## 42734                national institute    1
## 42735              national operational    1
## 42736                   national police    1
## 42737                  national reserve    1
## 42738                   national soccer    1
## 42739               national volleyball    1
## 42740                  national weather    1
## 42741                nationalist planes    1
## 42742                    nationalists t    1
## 42743                    nationals went    1
## 42744                 nations chartered    1
## 42745              nations organization    1
## 42746                 nations personnel    1
## 42747                  nations released    1
## 42748                    nations troops    1
## 42749                      nato harrier    1
## 42750                   nato supporting    1
## 42751                 natural resonance    1
## 42752                      naturally in    1
## 42753                       nature been    1
## 42754                    nature through    1
## 42755                   nausori airport    1
## 42756                             nav 1    1
## 42757                             nav 2    1
## 42758                     nav equipment    1
## 42759                            nav on    1
## 42760                  navagation error    1
## 42761               navagational errors    1
## 42762                        navaids to    1
## 42763                         navajo as    1
## 42764                    navajo crashed    1
## 42765                        navajo had    1
## 42766                     naval academy    1
## 42767                     naval housing    1
## 42768                   naviation error    1
## 42769                 naviational error    1
## 42770                     navigate from    1
## 42771                       navigate in    1
## 42772                       navigate on    1
## 42773                 navigating around    1
## 42774                    navigating the    1
## 42775                   navigation aids    1
## 42776                 navigation charts    1
## 42777                navigation crashed    1
## 42778                navigation failure    1
## 42779                     navigation in    1
## 42780            navigation information    1
## 42781                     navigation of    1
## 42782               navigation overshot    1
## 42783                  navigation poles    1
## 42784                navigation signals    1
## 42785                     navigation to    1
## 42786                    navigation was    1
## 42787                   navigation when    1
## 42788                  navigation which    1
## 42789                  navigational aid    1
## 42790               navigational charts    1
## 42791         navigational difficulties    1
## 42792            navigational equipment    1
## 42793           navigational facilities    1
## 42794          navigational instruments    1
## 42795               navigational issues    1
## 42796           navigational procedures    1
## 42797              navigational setting    1
## 42798               navigational towers    1
## 42799            navigational vigilance    1
## 42800                 navigator's table    1
## 42801                 navigator absence    1
## 42802                   navigator after    1
## 42803                   navigator error    1
## 42804                    navigator fred    1
## 42805                    navigator used    1
## 42806                     navigator was    1
## 42807                  navolato highway    1
## 42808                     navy aircraft    1
## 42809                         navy band    1
## 42810                   navy beechcraft    1
## 42811                   navy conducting    1
## 42812                    navy disagreed    1
## 42813                        navy diver    1
## 42814                            navy f    1
## 42815                     navy goodyear    1
## 42816                          navy jet    1
## 42817                   navy lieutenant    1
## 42818                            navy p    1
## 42819                            navy r    1
## 42820                    navy secretary    1
## 42821                       navy vessel    1
## 42822                         nbc radio    1
## 42823                        nbc sports    1
## 42824                            nbc to    1
## 42825                        ndb beacon    1
## 42826                       ndb causing    1
## 42827                          ndb with    1
## 42828                      ndjamena was    1
## 42829                         ne runway    1
## 42830                     nea anghialos    1
## 42831                           neal 38    1
## 42832                   near abbottabad    1
## 42833                          near air    1
## 42834                        near alice    1
## 42835                       near anchor    1
## 42836                        near bahia    1
## 42837                  near bakersfield    1
## 42838                      near banning    1
## 42839                      near bohorok    1
## 42840                       near bombay    1
## 42841                      near bourget    1
## 42842                      near braemar    1
## 42843                      near bristol    1
## 42844                     near calcutta    1
## 42845                         near cape    1
## 42846                     near chandler    1
## 42847                       near ciudad    1
## 42848                        near clear    1
## 42849                          near col    1
## 42850                           near el    1
## 42851                       near elands    1
## 42852                         near ella    1
## 42853                      near elstree    1
## 42854                   near flecheiras    1
## 42855                near floridablanca    1
## 42856                         near fuel    1
## 42857                       near halawa    1
## 42858                        near hasna    1
## 42859                         near hato    1
## 42860                  near hellisheioi    1
## 42861                        near herat    1
## 42862                    near ibicarãƒâ    1
## 42863                        near image    1
## 42864                       near indian    1
## 42865                   near instrument    1
## 42866                          near izu    1
## 42867                     near jamnagar    1
## 42868                   near juchitepec    1
## 42869                       near juneau    1
## 42870                        near kabul    1
## 42871                       near kalãƒâ    1
## 42872                         near keri    1
## 42873                      near kharkov    1
## 42874                       near labuan    1
## 42875                    near ladysmith    1
## 42876                         near lake    1
## 42877                      near lapseki    1
## 42878                           near le    1
## 42879                        near leigh    1
## 42880                    near lightning    1
## 42881                      near lugansk    1
## 42882                     near manibagi    1
## 42883                       near marina    1
## 42884                      near maximum    1
## 42885                        near milne    1
## 42886                       near moline    1
## 42887                    near n'djamena    1
## 42888                      near neuwerk    1
## 42889                        near nuevo    1
## 42890                       near oldham    1
## 42891                    near outeniqua    1
## 42892                         near palm    1
## 42893                     near paloemeu    1
## 42894                        near ponta    1
## 42895                         near puno    1
## 42896                      near reynosa    1
## 42897                          near rio    1
## 42898                      near roubion    1
## 42899                         near ruiz    1
## 42900                        near santa    1
## 42901                     near schiphol    1
## 42902                        near shore    1
## 42903                        near short    1
## 42904                     near siliguri    1
## 42905                         near snag    1
## 42906                     near srinagar    1
## 42907                           near st    1
## 42908                     near stehekin    1
## 42909                       near tarbat    1
## 42910                        near thazi    1
## 42911                         near tona    1
## 42912                        near turin    1
## 42913                        near where    1
## 42914                       near winter    1
## 42915                      near yakutat    1
## 42916                   nearby building    1
## 42917                    nearby fairfax    1
## 42918                     nearby fields    1
## 42919               nearby intersection    1
## 42920                    nearby support    1
## 42921               nearby thunderstorm    1
## 42922                      nearby trees    1
## 42923                        nearby van    1
## 42924                  nearby villagers    1
## 42925                      nearby while    1
## 42926                       nearby wing    1
## 42927                        neared the    1
## 42928                    nearest summit    1
## 42929                        nearing 10    1
## 42930                      nearing it's    1
## 42931                         nearly 16    1
## 42932                         nearly 90    1
## 42933                  nearly colliding    1
## 42934                         nearly in    1
## 42935                   nearly inverted    1
## 42936                      nearly level    1
## 42937                        nearly one    1
## 42938                        nearly out    1
## 42939                   nearly regained    1
## 42940                       nearly zero    1
## 42941            necessary acceleration    1
## 42942                 necessary because    1
## 42943              necessary corrective    1
## 42944                 necessary crashed    1
## 42945                  necessary degree    1
## 42946                     necessary for    1
## 42947             necessitated ditching    1
## 42948            necessitated operating    1
## 42949                  necessitating an    1
## 42950             necessitating landing    1
## 42951                     need priority    1
## 42952                           need to    1
## 42953                        needed and    1
## 42954                    needed because    1
## 42955                       needed fuel    1
## 42956                        needing an    1
## 42957                        needle the    1
## 42958                   negative affect    1
## 42959               negatively affected    1
## 42960                        neglect to    1
## 42961                 neglected several    1
## 42962                    negligence and    1
## 42963                     negligence by    1
## 42964                     negligence in    1
## 42965                     negligence on    1
## 42966                      negligent an    1
## 42967                negligent homicide    1
## 42968                     negros island    1
## 42969                    neighborhood 1    1
## 42970                  neighborhood 500    1
## 42971                neighborhood after    1
## 42972                neighborhood broke    1
## 42973             neighborhood bursting    1
## 42974           neighborhood destroying    1
## 42975              neighborhood killing    1
## 42976              neighborhood ripping    1
## 42977                neighborhood south    1
## 42978                  neighborhood the    1
## 42979               neighborhood twenty    1
## 42980                 neighborhood west    1
## 42981                  neither aircraft    1
## 42982                     neither climb    1
## 42983                      neither crew    1
## 42984                    neither flight    1
## 42985                        neither in    1
## 42986                   neither weather    1
## 42987                        nellis air    1
## 42988                         nelson 45    1
## 42989                        nelson and    1
## 42990                        nelson had    1
## 42991                  neon obstruction    1
## 42992                        nepal half    1
## 42993                        ness after    1
## 42994                     nestor chavez    1
## 42995               neua communications    1
## 42996                       neua flying    1
## 42997                          neua the    1
## 42998                    neuwerk island    1
## 42999                      neva shortly    1
## 43000                        nevada the    1
## 43001                     never arrived    1
## 43002                    never attained    1
## 43003                   never attempted    1
## 43004                          never be    1
## 43005                        never been    1
## 43006                     never brought    1
## 43007                     never changed    1
## 43008                  never descending    1
## 43009                         never got    1
## 43010                    never informed    1
## 43011                     never learned    1
## 43012                     never located    1
## 43013                    never realized    1
## 43014                   never realizing    1
## 43015                    never repaired    1
## 43016                   never responded    1
## 43017                         never saw    1
## 43018                      never seemed    1
## 43019                      never showed    1
## 43020                         never won    1
## 43021                      neveu killed    1
## 43022                     new autobrake    1
## 43023                        new castle    1
## 43024                      new cruising    1
## 43025                          new deli    1
## 43026                       new engines    1
## 43027                       new england    1
## 43028                      new evidence    1
## 43029                            new go    1
## 43030                       new landing    1
## 43031                         new owner    1
## 43032                         new river    1
## 43033                         new route    1
## 43034                         new there    1
## 43035                          new type    1
## 43036                        new vienna    1
## 43037                      new york.the    1
## 43038                        new yorker    1
## 43039                       new zealand    1
## 43040                   newark aircraft    1
## 43041                       newark area    1
## 43042                         newark as    1
## 43043                      newark error    1
## 43044                  newark impatient    1
## 43045              newark international    1
## 43046                       newark this    1
## 43047                  newberry airport    1
## 43048                   newfoundland as    1
## 43049             newfoundland possible    1
## 43050                        newhall it    1
## 43051                      newhall pass    1
## 43052                  newhall possible    1
## 43053                     newhall radio    1
## 43054                     newhall while    1
## 43055                    newly assigned    1
## 43056                  newly resurfaced    1
## 43057                   news helicopter    1
## 43058                        news story    1
## 43059                    newscaster for    1
## 43060                      newspaper la    1
## 43061                          newton c    1
## 43062                       newton iowa    1
## 43063                            next 8    1
## 43064                        next floor    1
## 43065                    next following    1
## 43066                      next message    1
## 43067                         next year    1
## 43068                        ngurah rai    1
## 43069                         nha trang    1
## 43070                    nha.trang from    1
## 43071                          nhon the    1
## 43072                      nhut airbase    1
## 43073             niagara international    1
## 43074                 nicaragua landing    1
## 43075                    nicaraguan air    1
## 43076                 nicaraguan rebels    1
## 43077                      nice airport    1
## 43078                         nice cote    1
## 43079                       nice engine    1
## 43080                           nice on    1
## 43081                       nick begich    1
## 43082                   nicknamed maxim    1
## 43083                    nicknamed york    1
## 43084                         nieces of    1
## 43085                       nielsen was    1
## 43086              nigeria's liberation    1
## 43087                   nigerian pilots    1
## 43088                         night all    1
## 43089                    night approach    1
## 43090                      night became    1
## 43091                          night by    1
## 43092                       night cause    1
## 43093                     night claimed    1
## 43094                        night crew    1
## 43095                    night diverted    1
## 43096                         night due    1
## 43097               night environmental    1
## 43098                     night failure    1
## 43099                     night fighter    1
## 43100                      night flying    1
## 43101                   night hampering    1
## 43102                         night hit    1
## 43103                        night into    1
## 43104                          night it    1
## 43105                        night lack    1
## 43106                    night landings    1
## 43107                    night lighting    1
## 43108                         night low    1
## 43109                        night mail    1
## 43110                      night midair    1
## 43111                     night mission    1
## 43112                   night momentary    1
## 43113                         night one    1
## 43114                       night party    1
## 43115                    night partying    1
## 43116                        night rain    1
## 43117                      night rather    1
## 43118               night repositioning    1
## 43119                         night sky    1
## 43120                      night struck    1
## 43121                        night they    1
## 43122                          night to    1
## 43123                    night training    1
## 43124                   night transport    1
## 43125                         night two    1
## 43126                night undetermined    1
## 43127                         night vfr    1
## 43128                         night vor    1
## 43129                       night while    1
## 43130                      night winter    1
## 43131                     night without    1
## 43132               nightime conditions    1
## 43133                nighttime approach    1
## 43134              nighttime conditions    1
## 43135                 nighttime landing    1
## 43136                    nijmegen after    1
## 43137                     nimbus clouds    1
## 43138                       nimitz hill    1
## 43139                     nine cylinder    1
## 43140                         nine days    1
## 43141                      nine minutes    1
## 43142                           nine on    1
## 43143                 nine paratroopers    1
## 43144                      nine persons    1
## 43145                         nine year    1
## 43146                   nineteen killed    1
## 43147                  nineteen minutes    1
## 43148               nineteen passengers    1
## 43149                    ninety degrees    1
## 43150                        ninety two    1
## 43151                      ninoy aquino    1
## 43152                         ninth day    1
## 43153                         nitrate a    1
## 43154                       nitric acid    1
## 43155                 nitriding process    1
## 43156                    nitro glycerin    1
## 43157                   nitro glycerine    1
## 43158               nitrocellulose bomb    1
## 43159                      nitrogen the    1
## 43160                       nitrogen to    1
## 43161                      nitrogen was    1
## 43162                        nittany in    1
## 43163                          nixon he    1
## 43164             nizhnesvanetsky range    1
## 43165                  nkomo's zimbabwe    1
## 43166                             nm ne    1
## 43167                            nm nnw    1
## 43168                      nm northwest    1
## 43169                       nm offshore    1
## 43170                             nm sw    1
## 43171                            nnw of    1
## 43172                             no 10    1
## 43173                             no 14    1
## 43174                              no 5    1
## 43175                              no 9    1
## 43176                   no acceleration    1
## 43177                  no airworthiness    1
## 43178                       no approach    1
## 43179                        no attempt    1
## 43180                          no avail    1
## 43181                          no blame    1
## 43182                         no bodies    1
## 43183                         no brakes    1
## 43184                     no casualties    1
## 43185                          no cause    1
## 43186                      no clearance    1
## 43187                         no clouds    1
## 43188                  no communication    1
## 43189                   no compensation    1
## 43190                    no contingency    1
## 43191                        no control    1
## 43192                       no decisive    1
## 43193                          no delay    1
## 43194                    no explanation    1
## 43195                     no fatalities    1
## 43196                          no fault    1
## 43197                           no full    1
## 43198                            no gps    1
## 43199                           no gpws    1
## 43200                         no higher    1
## 43201                          no human    1
## 43202                    no indications    1
## 43203                       no injuries    1
## 43204                     no mechanical    1
## 43205                        no mention    1
## 43206                          no noted    1
## 43207                      no occupants    1
## 43208                        no outside    1
## 43209                     no particular    1
## 43210                       no patients    1
## 43211                          no power    1
## 43212                      no preimpact    1
## 43213                        no problem    1
## 43214                         no public    1
## 43215                      no published    1
## 43216                       no reaction    1
## 43217                         no record    1
## 43218                      no reference    1
## 43219                 no responsibility    1
## 43220                      no restrains    1
## 43221                       no rotation    1
## 43222                           no safe    1
## 43223                          no signs    1
## 43224                         no single    1
## 43225                          no slats    1
## 43226                          no storm    1
## 43227                       no suitable    1
## 43228                     no supplement    1
## 43229                           no time    1
## 43230                            no way    1
## 43231                           no wind    1
## 43232                     no windshield    1
## 43233                           no wing    1
## 43234                        no2 engine    1
## 43235                          node bar    1
## 43236                  nogougou spatial    1
## 43237                     noire airport    1
## 43238                         noise and    1
## 43239                         noise but    1
## 43240                        noise then    1
## 43241                       noise which    1
## 43242                       noises bank    1
## 43243                     nominal climb    1
## 43244                      non approved    1
## 43245                    non authorized    1
## 43246                  non availability    1
## 43247                   non conformance    1
## 43248                          non crew    1
## 43249                   non destructive    1
## 43250                   non directional    1
## 43251                         non fatal    1
## 43252                        non flying    1
## 43253                   non functioning    1
## 43254                   non homogeneous    1
## 43255                  non installation    1
## 43256                    non observance    1
## 43257                  non prescription    1
## 43258                        non return    1
## 43259                      non sceduled    1
## 43260                    non stabilized    1
## 43261                   non stabilizing    1
## 43262               non synchronization    1
## 43263                nonavailability of    1
## 43264            nonconforming elevator    1
## 43265                           none at    1
## 43266                         none were    1
## 43267                  nonflying pilots    1
## 43268                nonfunctioning vor    1
## 43269               noninstrument pilot    1
## 43270         nonpertinent conversation    1
## 43271             nonprecision approach    1
## 43272                  nonrevenue ferry    1
## 43273                 nonroutine flight    1
## 43274                  nonstandard flap    1
## 43275                     nonstop prior    1
## 43276             nonstop transatlantic    1
## 43277                     noonan killed    1
## 43278                            nor at    1
## 43279                           nor did    1
## 43280                       nor execute    1
## 43281                        nor follow    1
## 43282                          nor jump    1
## 43283                   nor malfunction    1
## 43284                          nor were    1
## 43285                          nor whas    1
## 43286                     norilsk after    1
## 43287                         normal 20    1
## 43288                      normal after    1
## 43289                      normal angle    1
## 43290                    normal cockpit    1
## 43291                     normal course    1
## 43292                    normal crashed    1
## 43293                      normal final    1
## 43294                     normal flying    1
## 43295                       normal fuel    1
## 43296                      normal glide    1
## 43297                normal maintenance    1
## 43298                    normal minimum    1
## 43299                    normal pattern    1
## 43300                   normal position    1
## 43301                       normal rate    1
## 43302                      normal route    1
## 43303                   normal slightly    1
## 43304               normal temperatures    1
## 43305                        normal the    1
## 43306                      normal track    1
## 43307                      normal while    1
## 43308                 normally adequate    1
## 43309                       normally at    1
## 43310                normally corrected    1
## 43311                     normally done    1
## 43312                    normally until    1
## 43313                     normally were    1
## 43314                   norman baessell    1
## 43315                       north again    1
## 43316                          north at    1
## 43317                     north barrule    1
## 43318                       north being    1
## 43319                     north central    1
## 43320                       north coast    1
## 43321                   north hollywood    1
## 43322                    north ossetian    1
## 43323                       north sinai    1
## 43324                         north the    1
## 43325                          north to    1
## 43326                       north tower    1
## 43327                     north vietnam    1
## 43328                  north vietnamese    1
## 43329                        north west    1
## 43330                        north when    1
## 43331                       north where    1
## 43332            northeast philadelphia    1
## 43333                     northeast the    1
## 43334               northeastern angola    1
## 43335            northeastern venezuela    1
## 43336               northerly direction    1
## 43337             northern california's    1
## 43338                     northern mali    1
## 43339                  northern portion    1
## 43340                   northern region    1
## 43341                   northern slopes    1
## 43342                      northolt and    1
## 43343                       northwes of    1
## 43344                    northwest from    1
## 43345                  northwest runway    1
## 43346                   northwest state    1
## 43347               northwestern inside    1
## 43348                northwestern slope    1
## 43349                         norway it    1
## 43350                        norway the    1
## 43351                      norway while    1
## 43352                 norwegian islands    1
## 43353                             nos 1    1
## 43354                          nose and    1
## 43355                     nose attitude    1
## 43356                      nose baggage    1
## 43357                        nose broke    1
## 43358                          nose but    1
## 43359                      nose dropped    1
## 43360                       nose during    1
## 43361                    nose heaviness    1
## 43362                        nose heavy    1
## 43363                          nose hit    1
## 43364                           nose in    1
## 43365                      nose landing    1
## 43366                         nose over    1
## 43367                         nose rose    1
## 43368                       nose should    1
## 43369                      nose sliding    1
## 43370                      nose slipped    1
## 43371                      nose steeply    1
## 43372                         nose upon    1
## 43373                        nose yawed    1
## 43374                 nosedived leveled    1
## 43375                 nosedown vertical    1
## 43376                      nosegear and    1
## 43377                     nosegear full    1
## 43378                       nosegear to    1
## 43379                     nosewheel and    1
## 43380                  nosewheel struck    1
## 43381                        not aboard    1
## 43382                       not achieve    1
## 43383                           not act    1
## 43384                      not activate    1
## 43385                        not advise    1
## 43386                         not allow    1
## 43387                       not allowed    1
## 43388                            not an    1
## 43389                        not appear    1
## 43390                         not apply    1
## 43391                    not appreciate    1
## 43392                  not appreciating    1
## 43393                           not arm    1
## 43394                       not assured    1
## 43395                            not at    1
## 43396                      not attained    1
## 43397                     not authorize    1
## 43398                    not authorized    1
## 43399                    not authroized    1
## 43400                     not available    1
## 43401                       not balance    1
## 43402                         not brake    1
## 43403                      not captured    1
## 43404                       not certain    1
## 43405                      not changing    1
## 43406                         not check    1
## 43407                      not checking    1
## 43408                      not climbing    1
## 43409                          not come    1
## 43410                       not comment    1
## 43411                   not communicate    1
## 43412                    not completely    1
## 43413                        not comply    1
## 43414                     not conducted    1
## 43415                     not condusive    1
## 43416                    not considered    1
## 43417                    not continuing    1
## 43418                  not continuously    1
## 43419                  not contradicted    1
## 43420                   not coordinated    1
## 43421                       not correct    1
## 43422                     not correctly    1
## 43423                         not cross    1
## 43424                       not declare    1
## 43425                     not declaring    1
## 43426                        not deiced    1
## 43427                       not deicing    1
## 43428                        not depart    1
## 43429                        not deploy    1
## 43430                       not develop    1
## 43431                        not direct    1
## 43432                 not discontinuing    1
## 43433                  not disseminated    1
## 43434                        not divert    1
## 43435                     not diverting    1
## 43436                          not down    1
## 43437                       not drawing    1
## 43438                      not employed    1
## 43439                       not entered    1
## 43440                      not entirely    1
## 43441                   not established    1
## 43442                        not exceed    1
## 43443                      not executed    1
## 43444                     not executing    1
## 43445                     not expecting    1
## 43446                       not explain    1
## 43447                          not find    1
## 43448                      not finished    1
## 43449                     not flotation    1
## 43450                           not fly    1
## 43451                     not forbidden    1
## 43452                       not forcast    1
## 43453                    not functional    1
## 43454                       not gaining    1
## 43455                          not give    1
## 43456                            not go    1
## 43457                         not guard    1
## 43458                       not guiding    1
## 43459                           not had    1
## 43460                        not handle    1
## 43461                        not having    1
## 43462                         not heard    1
## 43463                          not heat    1
## 43464                       not heeding    1
## 43465                          not hurt    1
## 43466                   not identifying    1
## 43467                           not ifr    1
## 43468                    not illuminate    1
## 43469                       not include    1
## 43470                     not informing    1
## 43471                      not jettison    1
## 43472                          not keep    1
## 43473                        not likely    1
## 43474                         not lined    1
## 43475                        not locate    1
## 43476                       not located    1
## 43477                          not lose    1
## 43478                          not made    1
## 43479                        not making    1
## 43480                        not marked    1
## 43481                       not meeting    1
## 43482                           not met    1
## 43483                     not monitored    1
## 43484                    not monitoring    1
## 43485                     not necessary    1
## 43486                      not normally    1
## 43487                      not obtained    1
## 43488                     not obtaining    1
## 43489                         not occur    1
## 43490                            not of    1
## 43491                          not once    1
## 43492                          not open    1
## 43493                      not oriented    1
## 43494                        not passed    1
## 43495                        not paying    1
## 43496                     not performed    1
## 43497                    not performing    1
## 43498                     not permitted    1
## 43499                          not pick    1
## 43500                        not picked    1
## 43501                        not placed    1
## 43502                    not positioned    1
## 43503                       not present    1
## 43504                       not prevent    1
## 43505                       not produce    1
## 43506                      not prohibit    1
## 43507                      not provided    1
## 43508                     not providing    1
## 43509                          not pull    1
## 43510                         not rated    1
## 43511                         not reach    1
## 43512                       not readily    1
## 43513                     not realizing    1
## 43514                   not recalculate    1
## 43515                       not receive    1
## 43516                     not receiving    1
## 43517                     not recognize    1
## 43518                   not recommended    1
## 43519                   not recoverable    1
## 43520                     not recovered    1
## 43521                     not referring    1
## 43522                        not refuel    1
## 43523                        not regain    1
## 43524                        not remove    1
## 43525                       not repaced    1
## 43526                  not replenishing    1
## 43527                         not reply    1
## 43528                      not required    1
## 43529                       not resolve    1
## 43530                      not retained    1
## 43531                   not retrofitted    1
## 43532                          not rule    1
## 43533                       not satisfy    1
## 43534                          not seen    1
## 43535                     not seriously    1
## 43536                      not serviced    1
## 43537                          not shut    1
## 43538                      not sighting    1
## 43539                     not simulated    1
## 43540                          not stow    1
## 43541                        not strong    1
## 43542                      not suitable    1
## 43543                      not supposed    1
## 43544                       not survive    1
## 43545                          not take    1
## 43546                          not till    1
## 43547                          not told    1
## 43548                       not trained    1
## 43549                         not tuned    1
## 43550                      not uncommon    1
## 43551                    not understand    1
## 43552                          not used    1
## 43553                         not using    1
## 43554                          not want    1
## 43555                        not warned    1
## 43556                    notam improper    1
## 43557                      notam issued    1
## 43558                           note in    1
## 43559                         noted for    1
## 43560                  noted mechanical    1
## 43561                     nothing cause    1
## 43562                   nothing further    1
## 43563                      nothing more    1
## 43564                      nothing they    1
## 43565                        nothing to    1
## 43566                       nothing was    1
## 43567                         notice to    1
## 43568                    notice warning    1
## 43569                     noticed smoke    1
## 43570                 noticed something    1
## 43571                        notify atc    1
## 43572                     notify either    1
## 43573                      notify those    1
## 43574                     notifying the    1
## 43575                     notions about    1
## 43576                        notre dame    1
## 43577                   nouasseur while    1
## 43578                            nov 22    1
## 43579                     nova deviated    1
## 43580                      novelist ben    1
## 43581                       november 16    1
## 43582                    november until    1
## 43583                             now a    1
## 43584                       now married    1
## 43585                          now took    1
## 43586                        now within    1
## 43587                     nozzle caused    1
## 43588                            np the    1
## 43589                    ntaryamira and    1
## 43590                        ntsb after    1
## 43591                   ntsb determined    1
## 43592                        ntsb found    1
## 43593                ntsb investigators    1
## 43594                      ntsb isssued    1
## 43595                          ntsb one    1
## 43596                      ntsb stopped    1
## 43597                          ntsb the    1
## 43598                    nuba mountains    1
## 43599                   nuclear program    1
## 43600                       nuclear war    1
## 43601                   nuclear weapons    1
## 43602                       nuevo after    1
## 43603                      nuevo berlin    1
## 43604           nuisance alarms.cecelia    1
## 43605                         number 10    1
## 43606                         number 12    1
## 43607                          number 4    1
## 43608                          number 5    1
## 43609                       number four    1
## 43610                       number nine    1
## 43611                        number one    1
## 43612                        number two    1
## 43613                         numbers 1    1
## 43614                 numerous building    1
## 43615                    numerous close    1
## 43616               numerous government    1
## 43617                  numerous members    1
## 43618                  numerous pigeons    1
## 43619               numerous procedural    1
## 43620                    numerous small    1
## 43621                     numerous taws    1
## 43622                 numerous thatched    1
## 43623                           nuns of    1
## 43624                 nuremberg airport    1
## 43625                       nursa front    1
## 43626                   nurse paramedic    1
## 43627                        nurse were    1
## 43628                            nut at    1
## 43629                            nut of    1
## 43630                         nut other    1
## 43631                       nut screwed    1
## 43632                           nut the    1
## 43633                          nut with    1
## 43634                         nuts fire    1
## 43635                           nuts to    1
## 43636                      nuys airport    1
## 43637                          nuys the    1
## 43638                             nv 15    1
## 43639                          nvg case    1
## 43640                  ny industrialist    1
## 43641                          nyaung u    1
## 43642                    o'hare airport    1
## 43643                               o a    1
## 43644                           o shima    1
## 43645                             o the    1
## 43646                          o tomãƒâ    1
## 43647                   oakland airport    1
## 43648                     oakland radio    1
## 43649                   oakland station    1
## 43650                      oasis before    1
## 43651                           ob 1450    1
## 43652                        obando was    1
## 43653                    obispo airport    1
## 43654                   obispo football    1
## 43655                    object between    1
## 43656                    object causing    1
## 43657                        object had    1
## 43658                         object in    1
## 43659                  objects entering    1
## 43660              objects obstructions    1
## 43661                  obliterated with    1
## 43662                         obock the    1
## 43663                    obscured jebel    1
## 43664                 obscured montseny    1
## 43665                    obscured mount    1
## 43666              obscured mountainous    1
## 43667                       obscured mt    1
## 43668                   obscured rising    1
## 43669                      obscured the    1
## 43670                  obscuring clouds    1
## 43671                     observance of    1
## 43672                observation flight    1
## 43673               observation methods    1
## 43674                   observations in    1
## 43675                   observations of    1
## 43676                  observe altitude    1
## 43677                    observe safety    1
## 43678                       observed at    1
## 43679                   observed coming    1
## 43680                   observed during    1
## 43681                  observed falling    1
## 43682                   observed flight    1
## 43683                   observed making    1
## 43684                       observed no    1
## 43685                      observed not    1
## 43686                       observed on    1
## 43687                  observed sinking    1
## 43688                    observed smoke    1
## 43689                  observed turning    1
## 43690                     observer tony    1
## 43691                      observers an    1
## 43692                     observing the    1
## 43693               obstacle protection    1
## 43694                      obstacle the    1
## 43695                    obstacle while    1
## 43696                    obstacles crew    1
## 43697              obstacles overloaded    1
## 43698                     obstacles the    1
## 43699              obsticales northeast    1
## 43700                     obstructed by    1
## 43701                   obstruction and    1
## 43702             obstruction clearance    1
## 43703                    obstruction in    1
## 43704                obstruction lights    1
## 43705               obstruction stalled    1
## 43706                  obstructions and    1
## 43707               obstructions beside    1
## 43708                  obstructions due    1
## 43709            obstructions partially    1
## 43710                obstructions pilot    1
## 43711                 obstructions such    1
## 43712                        obtain and    1
## 43713                      obtain level    1
## 43714                   obtain maintain    1
## 43715                    obtain maximum    1
## 43716                       obtain taxi    1
## 43717                        obtain the    1
## 43718                      obtain their    1
## 43719                 obtain transplant    1
## 43720                        obtained a    1
## 43721                       obtained at    1
## 43722                      obtained the    1
## 43723                  obtained through    1
## 43724                   obtained visual    1
## 43725                obtaining bearings    1
## 43726                     obtaining the    1
## 43727                  obtaining visual    1
## 43728                       obviate the    1
## 43729                     occasions but    1
## 43730                     occasions led    1
## 43731                     occasions the    1
## 43732                      occasions to    1
## 43733              occidental petroleum    1
## 43734                       occupant of    1
## 43735                      occupant was    1
## 43736                    occupants died    1
## 43737                 occupants drowned    1
## 43738                    occupants ever    1
## 43739                occupants hydrogen    1
## 43740                      occupants in    1
## 43741                    occupants lost    1
## 43742                      occupants of    1
## 43743                     occupants was    1
## 43744                     occupation of    1
## 43745                    occupied sinai    1
## 43746                        occupy the    1
## 43747                       occur again    1
## 43748                          occur if    1
## 43749                   occur procuring    1
## 43750                     occur stalled    1
## 43751                         occur the    1
## 43752                       occured but    1
## 43753                        occurred 5    1
## 43754                   occurred aboard    1
## 43755            occurred approximately    1
## 43756                       occurred as    1
## 43757                   occurred caused    1
## 43758                  occurred causing    1
## 43759                  occurred crashed    1
## 43760               occurred descending    1
## 43761                     occurred from    1
## 43762                occurred naturally    1
## 43763                    occurred right    1
## 43764                  occurred shortly    1
## 43765                   occurrence blew    1
## 43766                    occurrence the    1
## 43767                    occurrence was    1
## 43768                   occurrence were    1
## 43769                occurrences errors    1
## 43770                    occurrences of    1
## 43771                        ocean 11.3    1
## 43772                          ocean 15    1
## 43773                           ocean 2    1
## 43774                          ocean 20    1
## 43775                          ocean 21    1
## 43776                         ocean 231    1
## 43777                          ocean 28    1
## 43778                         ocean 285    1
## 43779                          ocean 30    1
## 43780                        ocean 30.5    1
## 43781                         ocean 340    1
## 43782                           ocean 4    1
## 43783                          ocean 60    1
## 43784                          ocean 80    1
## 43785                    ocean aircraft    1
## 43786                     ocean airways    1
## 43787                  ocean attempting    1
## 43788                         ocean but    1
## 43789                        ocean city    1
## 43790                    ocean decision    1
## 43791                  ocean detonation    1
## 43792                         ocean due    1
## 43793                     ocean failure    1
## 43794                        ocean five    1
## 43795                         ocean for    1
## 43796                       ocean front    1
## 43797                   ocean incorrect    1
## 43798                      ocean island    1
## 43799                        ocean loss    1
## 43800                      ocean mayday    1
## 43801                       ocean never    1
## 43802                          ocean no    1
## 43803                          ocean on    1
## 43804                         ocean one    1
## 43805                       ocean pilot    1
## 43806                        ocean poor    1
## 43807                    ocean possible    1
## 43808                     ocean shortly    1
## 43809                       ocean south    1
## 43810                     ocean station    1
## 43811                       ocean there    1
## 43812                         ocean two    1
## 43813                        ocean upon    1
## 43814                   ocean vibration    1
## 43815                         ocean was    1
## 43816             ocean.nine passengers    1
## 43817                      oceana naval    1
## 43818                     ocillation of    1
## 43819                        october 30    1
## 43820                           of 0.17    1
## 43821                           of 0.21    1
## 43822                            of 035    1
## 43823                          of 1,120    1
## 43824                          of 1,150    1
## 43825                          of 1,620    1
## 43826                          of 1,640    1
## 43827                         of 10,700    1
## 43828                         of 10,982    1
## 43829                           of 1020    1
## 43830                          of 1080m    1
## 43831                            of 109    1
## 43832                         of 11,000    1
## 43833                       of 11,000ft    1
## 43834                             of 12    1
## 43835                         of 12,500    1
## 43836                             of 13    1
## 43837                         of 13,500    1
## 43838                         of 13,700    1
## 43839                            of 135    1
## 43840                         of 14,000    1
## 43841                         of 14,200    1
## 43842                         of 14,500    1
## 43843                         of 14,700    1
## 43844                         of 16,355    1
## 43845                             of 17    1
## 43846                         of 17,000    1
## 43847                             of 18    1
## 43848                         of 18,000    1
## 43849                            of 180    1
## 43850                             of 19    1
## 43851                         of 19,600    1
## 43852                            of 190    1
## 43853                            of 197    1
## 43854                          of 2,200    1
## 43855                        of 2,400ft    1
## 43856                          of 2,525    1
## 43857                          of 2,600    1
## 43858                          of 2,690    1
## 43859                          of 2,760    1
## 43860                          of 2,800    1
## 43861                          of 2,850    1
## 43862                            of 2.3    1
## 43863                            of 2.4    1
## 43864                          of 2.55g    1
## 43865                            of 230    1
## 43866                             of 25    1
## 43867                          of 29.97    1
## 43868                          of 3,750    1
## 43869                            of 3.3    1
## 43870                         of 30,000    1
## 43871                            of 320    1
## 43872                           of 3400    1
## 43873                             of 35    1
## 43874                          of 360ft    1
## 43875                         of 38,000    1
## 43876                              of 4    1
## 43877                          of 4,600    1
## 43878                             of 40    1
## 43879                             of 41    1
## 43880                         of 41,600    1
## 43881                             of 42    1
## 43882                             of 48    1
## 43883                          of 5,053    1
## 43884                          of 5,200    1
## 43885                            of 560    1
## 43886                             of 5g    1
## 43887                          of 6,100    1
## 43888                          of 6,167    1
## 43889                          of 6,800    1
## 43890                            of 645    1
## 43891                            of 660    1
## 43892                          of 7,000    1
## 43893                          of 7,500    1
## 43894                          of 7,550    1
## 43895                            of 7.9    1
## 43896                          of 8,500    1
## 43897                              of 9    1
## 43898                          of 9,000    1
## 43899                          of 9,200    1
## 43900                          of 9,300    1
## 43901                          of 9,700    1
## 43902                           of 900m    1
## 43903                            of 990    1
## 43904                            of a.c    1
## 43905                       of abnormal    1
## 43906                             of ac    1
## 43907                   of acceleration    1
## 43908                       of accident    1
## 43909                   of accident.the    1
## 43910                    of accumulated    1
## 43911                           of acid    1
## 43912                           of ader    1
## 43913                       of adhesive    1
## 43914                        of aeromar    1
## 43915                         of afghan    1
## 43916                          of agana    1
## 43917                        of aileron    1
## 43918                       of ailerons    1
## 43919                       of airborne    1
## 43920                       of airframe    1
## 43921                        of alabama    1
## 43922                       of algereia    1
## 43923                          of algie    1
## 43924                         of almaty    1
## 43925                      of altimeter    1
## 43926                     of altimeters    1
## 43927                      of altitudes    1
## 43928                           of alto    1
## 43929                       of american    1
## 43930                         of anchor    1
## 43931                            of and    1
## 43932                         of andoas    1
## 43933                        of antalya    1
## 43934                    of anticipated    1
## 43935                   of apprehension    1
## 43936                    of appropriate    1
## 43937                       of argentia    1
## 43938                           of arms    1
## 43939                         of around    1
## 43940                        of arrival    1
## 43941                             of at    1
## 43942                       of atlantic    1
## 43943                        of attacks    1
## 43944                           of auto    1
## 43945                      of available    1
## 43946                       of aviation    1
## 43947                      of avoidable    1
## 43948                      of awareness    1
## 43949                        of ayudhya    1
## 43950                         of bagram    1
## 43951                        of balance    1
## 43952                      of balancing    1
## 43953                       of balkhash    1
## 43954                         of bamboo    1
## 43955                           of bank    1
## 43956                     of barnstable    1
## 43957                         of barrow    1
## 43958                        of batagay    1
## 43959                         of batumi    1
## 43960                       of bayanday    1
## 43961                          of beach    1
## 43962                        of beacons    1
## 43963                       of beauvais    1
## 43964                       of becoming    1
## 43965                          of beinn    1
## 43966                         of belãƒâ    1
## 43967                        of belfast    1
## 43968                         of bengal    1
## 43969                         of bergen    1
## 43970                         of berlin    1
## 43971                        of between    1
## 43972                          of bioko    1
## 43973                    of birobidzhan    1
## 43974                         of biscay    1
## 43975                       of blenheim    1
## 43976                           of blyn    1
## 43977                            of boa    1
## 43978                         of bodies    1
## 43979                         of bogoro    1
## 43980                         of bogota    1
## 43981                        of bolivia    1
## 43982                         of bosnia    1
## 43983                       of boufarik    1
## 43984                         of boxing    1
## 43985                        of braking    1
## 43986                       of brasilia    1
## 43987                          of bread    1
## 43988                     of bridgetown    1
## 43989                       of brooklyn    1
## 43990                      of brunswick    1
## 43991                    of bucaramanga    1
## 43992                     of burdakovka    1
## 43993                      of burketown    1
## 43994                        of burundi    1
## 43995                            of caa    1
## 43996                          of cagay    1
## 43997                       of cagliari    1
## 43998                         of cairns    1
## 43999                           of cali    1
## 44000                           of camp    1
## 44001                         of canada    1
## 44002                       of canadian    1
## 44003                           of cape    1
## 44004                        of captain    1
## 44005                        of caracas    1
## 44006                         of carbon    1
## 44007                     of carburetor    1
## 44008                       of carnsore    1
## 44009                        of causing    1
## 44010                        of caution    1
## 44011                      of celebrity    1
## 44012                         of center    1
## 44013                    of centerville    1
## 44014                  of certification    1
## 44015                         of cessna    1
## 44016                           of cfit    1
## 44017                         of chafed    1
## 44018                        of chalk's    1
## 44019                       of changing    1
## 44020                        of charles    1
## 44021                      of charlston    1
## 44022                          of cheat    1
## 44023                       of chetumal    1
## 44024                       of cheyenne    1
## 44025                        of chicago    1
## 44026                         of chikat    1
## 44027                      of chinkiang    1
## 44028                        of cholera    1
## 44029                       of chunking    1
## 44030                         of citrus    1
## 44031                       of civilian    1
## 44032                        of clarity    1
## 44033                          of clear    1
## 44034                      of clearance    1
## 44035                       of clermont    1
## 44036                      of cleveland    1
## 44037                       of clothing    1
## 44038                           of club    1
## 44039                             of co    1
## 44040                            of co2    1
## 44041                        of cocaine    1
## 44042                     of cochabamba    1
## 44043                          of coiba    1
## 44044                        of colombo    1
## 44045                    of combination    1
## 44046                     of combustion    1
## 44047                        of command    1
## 44048                       of commerce    1
## 44049                     of commercial    1
## 44050                     of committing    1
## 44051                 of communications    1
## 44052                      of companies    1
## 44053                        of company    1
## 44054                        of compass    1
## 44055                  of compensations    1
## 44056                     of components    1
## 44057                    of compression    1
## 44058                       of computer    1
## 44059                     of conditions    1
## 44060                          of congo    1
## 44061                   of considerable    1
## 44062                     of constatine    1
## 44063                   of construction    1
## 44064                        of contact    1
## 44065                      of contadora    1
## 44066                  of contamination    1
## 44067                    of controlling    1
## 44068                    of cooperation    1
## 44069                     of copenhagen    1
## 44070                       of corroded    1
## 44071                      of corrosion    1
## 44072                        of corsica    1
## 44073                     of cottonwood    1
## 44074                        of cozumel    1
## 44075                       of criminal    1
## 44076                        of crimond    1
## 44077                      of cristobal    1
## 44078                       of critical    1
## 44079                         of cromer    1
## 44080                          of cross    1
## 44081                           of cubi    1
## 44082                         of cuenca    1
## 44083                          of cuneo    1
## 44084                       of curitiba    1
## 44085                      of cuyapaipe    1
## 44086                         of cycles    1
## 44087                             of da    1
## 44088                        of daggett    1
## 44089                         of dalian    1
## 44090                       of damascus    1
## 44091                          of dawei    1
## 44092                         of deaths    1
## 44093                           of deep    1
## 44094                      of deficient    1
## 44095                        of delayed    1
## 44096                         of denver    1
## 44097                      of departure    1
## 44098                      of derendorf    1
## 44099                         of design    1
## 44100                      of detergent    1
## 44101                   of differential    1
## 44102                     of dillingham    1
## 44103                         of direct    1
## 44104                      of directing    1
## 44105                     of disbonding    1
## 44106                            of dme    1
## 44107                           of dong    1
## 44108                        of doppler    1
## 44109                         of douala    1
## 44110                           of down    1
## 44111                            of dry    1
## 44112                      of dubrovnik    1
## 44113                            of dum    1
## 44114                         of duties    1
## 44115                           of duty    1
## 44116                            of eal    1
## 44117                          of earth    1
## 44118                      of edinburgh    1
## 44119                     of efficiency    1
## 44120                         of either    1
## 44121                             of el    1
## 44122                     of electronic    1
## 44123                      of elizabeth    1
## 44124                      of emergency    1
## 44125                       of emptying    1
## 44126                   of encountering    1
## 44127                          of enemy    1
## 44128                        of english    1
## 44129                        of enquiry    1
## 44130                      of equipment    1
## 44131                        of erratic    1
## 44132                          of error    1
## 44133                         of europa    1
## 44134                      of evidences    1
## 44135                     of explosives    1
## 44136                         of failed    1
## 44137                        of failing    1
## 44138                         of falcon    1
## 44139                     of familarity    1
## 44140                    of familiarity    1
## 44141                of familiarization    1
## 44142                           of fare    1
## 44143                     of fatalities    1
## 44144                           of feet    1
## 44145                           of fine    1
## 44146                           of fish    1
## 44147                           of five    1
## 44148                          of fl380    1
## 44149                         of flames    1
## 44150                      of flammable    1
## 44151                      of florencia    1
## 44152                        of florida    1
## 44153                        of flowers    1
## 44154                          of fluid    1
## 44155                            of fly    1
## 44156                        of fogging    1
## 44157                        of fonseca    1
## 44158                      of formation    1
## 44159                        of fortune    1
## 44160                        of forward    1
## 44161                       of france's    1
## 44162                      of frankfurt    1
## 44163                       of freetown    1
## 44164                          of frost    1
## 44165                       of fuselage    1
## 44166                              of g    1
## 44167                       of gabrielã    1
## 44168                        of galeras    1
## 44169                            of gap    1
## 44170                       of gasoline    1
## 44171                        of gearbox    1
## 44172                          of geese    1
## 44173                         of george    1
## 44174                        of germany    1
## 44175                         of gilmer    1
## 44176                          of glade    1
## 44177                         of glendo    1
## 44178                         of goroka    1
## 44179                           of gpws    1
## 44180                        of granada    1
## 44181                        of granite    1
## 44182                         of grants    1
## 44183                         of grease    1
## 44184                         of greece    1
## 44185                       of grenoble    1
## 44186                         of grozny    1
## 44187                    of guadalajara    1
## 44188                      of guatemala    1
## 44189                        of guelmim    1
## 44190                       of guidance    1
## 44191                      of guildford    1
## 44192                          of gusty    1
## 44193                       of guyaquil    1
## 44194                       of gwammaja    1
## 44195                           of hãƒâ    1
## 44196                           of half    1
## 44197                        of halifax    1
## 44198                          of hanoi    1
## 44199                           of hard    1
## 44200                         of hawaii    1
## 44201                             of he    1
## 44202                       of headwind    1
## 44203                      of helgoland    1
## 44204                     of helicopter    1
## 44205                          of hesse    1
## 44206                         of higher    1
## 44207                          of hinge    1
## 44208                          of hinno    1
## 44209                      of hirsthals    1
## 44210                         of hoikow    1
## 44211                          of homer    1
## 44212                            of how    1
## 44213                        of howland    1
## 44214                         of huambo    1
## 44215                      of humilikon    1
## 44216                      of hydraulic    1
## 44217                     of hydraulics    1
## 44218                      of hypobaric    1
## 44219                        of iceland    1
## 44220                          of icing    1
## 44221                       of ignition    1
## 44222                          of ilaga    1
## 44223                        of iliniza    1
## 44224                        of illicit    1
## 44225                   of implementing    1
## 44226                      of improving    1
## 44227                    of inadvertent    1
## 44228                        of india's    1
## 44229                   of indianapolis    1
## 44230                    of inoperative    1
## 44231                         of insect    1
## 44232                        of insects    1
## 44233                   of installation    1
## 44234                   of instructions    1
## 44235                of instrumentation    1
## 44236                    of instruments    1
## 44237                   of insufficient    1
## 44238                  of intentionally    1
## 44239                    of involuntary    1
## 44240                           of iran    1
## 44241                        of ireland    1
## 44242                          of isiro    1
## 44243                      of islamabad    1
## 44244                    of islamabad's    1
## 44245                            of itã    1
## 44246                        of italian    1
## 44247                          of italy    1
## 44248                          of itami    1
## 44249                           of jail    1
## 44250                        of jakarta    1
## 44251                         of jalapa    1
## 44252                        of january    1
## 44253                           of java    1
## 44254                           of jean    1
## 44255                           of jeju    1
## 44256                           of jeuk    1
## 44257                       of kailahun    1
## 44258                       of kandahar    1
## 44259                        of karachi    1
## 44260                      of kathmandu    1
## 44261                        of kellogg    1
## 44262                           of kent    1
## 44263                         of kerman    1
## 44264                      of ketchican    1
## 44265                      of ketchikan    1
## 44266                      of kilograms    1
## 44267                         of king's    1
## 44268                       of kinshasa    1
## 44269                     of kirksville    1
## 44270                        of knowing    1
## 44271                          of kohat    1
## 44272                         of kokoda    1
## 44273                        of kokstad    1
## 44274                         of kosice    1
## 44275                    of krasnoyarsk    1
## 44276                        of kutaisa    1
## 44277                        of kyrenia    1
## 44278                        of lacking    1
## 44279                         of lanywa    1
## 44280                        of lanzhou    1
## 44281                          of laoaq    1
## 44282                       of lapwings    1
## 44283                             of le    1
## 44284                           of lead    1
## 44285                     of leadership    1
## 44286                          of legal    1
## 44287                      of leningrad    1
## 44288                           of less    1
## 44289                          of leyte    1
## 44290                     of lifesaving    1
## 44291                         of lights    1
## 44292                       of limerick    1
## 44293                           of line    1
## 44294                           of lion    1
## 44295                         of lisbon    1
## 44296                        of lithium    1
## 44297                         of little    1
## 44298                      of liverpool    1
## 44299                       of llancãƒâ    1
## 44300                           of llyn    1
## 44301                           of load    1
## 44302                          of local    1
## 44303                      of lockerbie    1
## 44304                       of lockhart    1
## 44305                       of lockheed    1
## 44306                           of lone    1
## 44307                           of long    1
## 44308                   of longitudinal    1
## 44309                       of longmont    1
## 44310                            of los    1
## 44311                       of loveland    1
## 44312                           of lowe    1
## 44313                       of lowering    1
## 44314                             of lp    1
## 44315                         of luanda    1
## 44316                          of luang    1
## 44317                      of lufthansa    1
## 44318                        of luggage    1
## 44319                         of luxair    1
## 44320                           of lyon    1
## 44321                            of m.t    1
## 44322                         of madang    1
## 44323                         of madrid    1
## 44324                         of madura    1
## 44325                           of main    1
## 44326                        of malacca    1
## 44327                     of manacapuru    1
## 44328                        of manfred    1
## 44329                         of manila    1
## 44330                         of mannar    1
## 44331                     of mannheim's    1
## 44332                    of manufacture    1
## 44333                     of manuvering    1
## 44334                         of maraba    1
## 44335                      of marashall    1
## 44336                  of marchekanskoy    1
## 44337                     of marinduque    1
## 44338                        of marmara    1
## 44339                       of martha's    1
## 44340                       of maryland    1
## 44341                           of marz    1
## 44342                        of masbate    1
## 44343                        of mashhad    1
## 44344                          of mason    1
## 44345                         of master    1
## 44346                      of mauritius    1
## 44347                             of mc    1
## 44348                        of mcchord    1
## 44349                      of mcdonnell    1
## 44350                        of mcgrath    1
## 44351                       of measures    1
## 44352                     of mechanical    1
## 44353                        of mechuka    1
## 44354                       of medellin    1
## 44355                         of medium    1
## 44356                      of melbourne    1
## 44357                        of melting    1
## 44358                        of memphis    1
## 44359                        of mentaya    1
## 44360                     of mercantour    1
## 44361                         of merida    1
## 44362                          of metal    1
## 44363                  of metallurgical    1
## 44364                         of midway    1
## 44365                        of midwest    1
## 44366                         of mihara    1
## 44367                          of minos    1
## 44368                of miscalculations    1
## 44369                      of misjudged    1
## 44370                     of misleading    1
## 44371                       of missouri    1
## 44372                        of mka1602    1
## 44373                      of mogadishu    1
## 44374                      of mogadorin    1
## 44375                        of molokai    1
## 44376                           of mont    1
## 44377                           of more    1
## 44378                     of morgantown    1
## 44379                         of moscow    1
## 44380                           of most    1
## 44381                         of moving    1
## 44382                     of mozambique    1
## 44383                          of mulia    1
## 44384                      of munitions    1
## 44385                         of mutual    1
## 44386                             of my    1
## 44387                       of n407ga's    1
## 44388                       of n407mj's    1
## 44389                          of n464m    1
## 44390                        of na'ameh    1
## 44391                         of nabire    1
## 44392                          of nador    1
## 44393                           of nãƒâ    1
## 44394                       of naissaar    1
## 44395                            of nbc    1
## 44396                         of needed    1
## 44397                      of negligent    1
## 44398                         of nellis    1
## 44399                          of nepal    1
## 44400                         of newark    1
## 44401                       of nigerian    1
## 44402                          of night    1
## 44403                           of nine    1
## 44404                         of nitric    1
## 44405                  of nonconforming    1
## 44406                        of norilsk    1
## 44407                   of northeastern    1
## 44408                         of norway    1
## 44409                            of not    1
## 44410                          of notam    1
## 44411                       of november    1
## 44412                        of nuclear    1
## 44413                    of observation    1
## 44414                      of obstacles    1
## 44415                    of occurrences    1
## 44416                          of ocean    1
## 44417                             of of    1
## 44418                        of oksibil    1
## 44419                            of old    1
## 44420                       of omdurman    1
## 44421                      of omissions    1
## 44422                             of on    1
## 44423                         of oneida    1
## 44424                      of operating    1
## 44425                      of operation    1
## 44426                     of operations    1
## 44427                    of opportunity    1
## 44428                         of oradea    1
## 44429                     of orographic    1
## 44430                       of orthodox    1
## 44431                   of oscillations    1
## 44432                          of other    1
## 44433                         of ottawa    1
## 44434                          of outer    1
## 44435                       of overcast    1
## 44436                    of overloading    1
## 44437                     of overweight    1
## 44438                          of owner    1
## 44439                     of pagalungan    1
## 44440                           of palm    1
## 44441                          of papua    1
## 44442                        of papua's    1
## 44443                      of parachute    1
## 44444                       of parepare    1
## 44445                          of paris    1
## 44446                       of parley's    1
## 44447                  of parrottsville    1
## 44448                          of parts    1
## 44449                           of pass    1
## 44450                       of patching    1
## 44451                      of patchyfog    1
## 44452                         of patras    1
## 44453                        of payette    1
## 44454                           of peak    1
## 44455                          of peaks    1
## 44456                         of pedals    1
## 44457                    of performance    1
## 44458                          of perth    1
## 44459                           of peru    1
## 44460                          of petra    1
## 44461                    of phraseology    1
## 44462                       of physical    1
## 44463                  of physioiogical    1
## 44464                         of pilots    1
## 44465                           of pine    1
## 44466                           of pisa    1
## 44467                        of pitting    1
## 44468                     of pittsburgh    1
## 44469                          of plane    1
## 44470                       of planning    1
## 44471                       of planting    1
## 44472                          of playa    1
## 44473                         of pleiku    1
## 44474                        of pokhara    1
## 44475                      of political    1
## 44476                       of porlamar    1
## 44477                       of portions    1
## 44478                       of position    1
## 44479                       of positive    1
## 44480                       of possible    1
## 44481                    of prahuaniyeu    1
## 44482                        of prangli    1
## 44483                     of precaution    1
## 44484                      of predicted    1
## 44485                     of predictive    1
## 44486                 of pressurization    1
## 44487                of pressurizations    1
## 44488                       of previous    1
## 44489                        of primary    1
## 44490                       of pristina    1
## 44491                        of probems    1
## 44492                       of problems    1
## 44493                     of procedures    1
## 44494                     of proceeding    1
## 44495                     of propellers    1
## 44496                    of protections    1
## 44497                        of putting    1
## 44498                  of qualification    1
## 44499                        of quality    1
## 44500                         of quebec    1
## 44501                         of quetta    1
## 44502                          of quick    1
## 44503                            of r34    1
## 44504                          of rabat    1
## 44505                          of ramos    1
## 44506                           of ramp    1
## 44507                         of ramsey    1
## 44508                     of rawalpindi    1
## 44509                           of real    1
## 44510                     of reasonable    1
## 44511                         of recent    1
## 44512                       of recovery    1
## 44513                      of recurrent    1
## 44514                      of reference    1
## 44515                       of reliable    1
## 44516                        of relying    1
## 44517                           of reno    1
## 44518                       of required    1
## 44519                       of rescuing    1
## 44520                 of responsibility    1
## 44521                           of rest    1
## 44522                     of restricted    1
## 44523                      of retention    1
## 44524                      of returning    1
## 44525                       of reversed    1
## 44526                       of rimouski    1
## 44527                         of rising    1
## 44528                          of ropes    1
## 44529                          of round    1
## 44530                            of row    1
## 44531                   of runway.while    1
## 44532                        of runways    1
## 44533                         of rwanda    1
## 44534                           of safe    1
## 44535                         of saigon    1
## 44536                          of saint    1
## 44537                       of saltillo    1
## 44538                            of sam    1
## 44539                      of samarkand    1
## 44540                       of sandoway    1
## 44541                           of sant    1
## 44542                       of santiago    1
## 44543                 of santiago.plane    1
## 44544                          of santo    1
## 44545                           of sari    1
## 44546                          of sarra    1
## 44547                       of satotage    1
## 44548                       of savannah    1
## 44549                      of searching    1
## 44550                        of seattle    1
## 44551                      of secondary    1
## 44552                         of seeing    1
## 44553                      of selecting    1
## 44554                     of separation    1
## 44555                      of serengeti    1
## 44556                        of service    1
## 44557                    of serviceable    1
## 44558                          of seven    1
## 44559                       of shakhtar    1
## 44560                    of shakhtyorsk    1
## 44561                       of shanghai    1
## 44562                        of shannon    1
## 44563                   of sheremetyevo    1
## 44564                         of shitai    1
## 44565                          of short    1
## 44566                       of shutting    1
## 44567                         of siagon    1
## 44568                          of sibiu    1
## 44569                         of sierra    1
## 44570                    of sightseeing    1
## 44571                  of sihanoukville    1
## 44572                           of silt    1
## 44573                         of singer    1
## 44574                         of sittwe    1
## 44575                      of situation    1
## 44576                          of skill    1
## 44577                         of skopje    1
## 44578                        of slavkov    1
## 44579                       of slipping    1
## 44580                        of slowing    1
## 44581                          of small    1
## 44582                        of snowdon    1
## 44583                       of soldiers    1
## 44584                           of soto    1
## 44585                          of sound    1
## 44586                          of spain    1
## 44587                          of spark    1
## 44588                         of sparta    1
## 44589                     of spectators    1
## 44590                      of speed.the    1
## 44591                        of spilled    1
## 44592                        of spoiler    1
## 44593                       of spoilers    1
## 44594                    of springfield    1
## 44595                             of st    1
## 44596                     of stabilizer    1
## 44597                          of stall    1
## 44598                           of star    1
## 44599                      of starlings    1
## 44600                     of stravanger    1
## 44601                         of stukel    1
## 44602                    of substandard    1
## 44603                       of suburban    1
## 44604                     of successful    1
## 44605                           of such    1
## 44606                    of suffocation    1
## 44607                         of summer    1
## 44608                       of sundance    1
## 44609                     of sundance's    1
## 44610                        of sunland    1
## 44611                        of superga    1
## 44612                    of supervision    1
## 44613                         of supply    1
## 44614                          of surat    1
## 44615                        of surface    1
## 44616                        of surkhet    1
## 44617                    of surrounding    1
## 44618                      of suspected    1
## 44619                      of switching    1
## 44620                      of tailplane    1
## 44621                      of tajumbina    1
## 44622                        of takeoff    1
## 44623                         of taking    1
## 44624                      of talkeetna    1
## 44625                       of tamatave    1
## 44626                          of tamil    1
## 44627                        of tangier    1
## 44628                       of tapacari    1
## 44629                        of taxiway    1
## 44630                            of tea    1
## 44631                          of teddy    1
## 44632                          of teeth    1
## 44633                         of tehran    1
## 44634                            of ten    1
## 44635                      of terracina    1
## 44636                      of texarkana    1
## 44637                         of the747    1
## 44638                        of thermal    1
## 44639                          of thick    1
## 44640                       of titanium    1
## 44641                            of tnt    1
## 44642                         of toledo    1
## 44643                      of tomakomai    1
## 44644                          of tommy    1
## 44645                          of total    1
## 44646                       of traction    1
## 44647                      of trees.the    1
## 44648                        of trouble    1
## 44649                       of trusting    1
## 44650                       of tshikapa    1
## 44651                         of tsinan    1
## 44652                      of tucumcari    1
## 44653                        of tulcãƒâ    1
## 44654                        of tuluãƒâ    1
## 44655                           of tuoy    1
## 44656                      of tupungato    1
## 44657                          of twa's    1
## 44658                       of twilight    1
## 44659                            of u.s    1
## 44660                   of unauthorized    1
## 44661                  of understanding    1
## 44662                     of unfamiliar    1
## 44663                     of unionville    1
## 44664                         of unsafe    1
## 44665                    of unspecified    1
## 44666                             of up    1
## 44667                       of updrafts    1
## 44668                        of urgency    1
## 44669                          of using    1
## 44670                         of ustica    1
## 44671                       of valencia    1
## 44672                        of vallejo    1
## 44673                          of valve    1
## 44674                         of vapors    1
## 44675                        of various    1
## 44676                        of ventura    1
## 44677                           of very    1
## 44678                            of vhf    1
## 44679                      of vibration    1
## 44680                            of vic    1
## 44681                        of videira    1
## 44682                   of villahermosa    1
## 44683                     of visibility    1
## 44684                         of vision    1
## 44685                          of vital    1
## 44686                       of vultures    1
## 44687                           of wadi    1
## 44688                         of wading    1
## 44689                       of warnings    1
## 44690                     of watergates    1
## 44691                     of waterkloof    1
## 44692                    of watermelons    1
## 44693                        of western    1
## 44694                          of where    1
## 44695                      of whistling    1
## 44696                          of white    1
## 44697                           of whom    1
## 44698                        of whyalla    1
## 44699                          of wight    1
## 44700                       of williams    1
## 44701                   of williamsport    1
## 44702                     of windshield    1
## 44703                        of winston    1
## 44704                           of work    1
## 44705                           of yale    1
## 44706                         of zambia    1
## 44707                         of zurich    1
## 44708                            off 10    1
## 44709                            off 15    1
## 44710                            off 25    1
## 44711                             off 3    1
## 44712                             off 8    1
## 44713                     off alcoholic    1
## 44714                    off alexandria    1
## 44715                      off altitude    1
## 44716                 off approximately    1
## 44717                      off assuming    1
## 44718                     off attempted    1
## 44719                    off attempting    1
## 44720                          off auto    1
## 44721                     off barreling    1
## 44722                        off beirut    1
## 44723                        off broken    1
## 44724                           off but    1
## 44725                       off cabling    1
## 44726                        off cashed    1
## 44727                        off caused    1
## 44728                     off charlakhi    1
## 44729                    off chichijima    1
## 44730                       off cleared    1
## 44731                       off control    1
## 44732                      off crashing    1
## 44733                          off crew    1
## 44734                        off debris    1
## 44735                       off despite    1
## 44736                      off diverted    1
## 44737                         off duabi    1
## 44738                         off dutch    1
## 44739                          off elba    1
## 44740                      off elevator    1
## 44741                           off end    1
## 44742                       off entered    1
## 44743                          off even    1
## 44744                   off experienced    1
## 44745                     off exploding    1
## 44746                    off folkestone    1
## 44747                      off followed    1
## 44748                          off form    1
## 44749                        off former    1
## 44750               off fromtambacoumba    1
## 44751                          off fuel    1
## 44752                       off further    1
## 44753                            off go    1
## 44754                         off grada    1
## 44755                      off grenades    1
## 44756                     off halkidiki    1
## 44757                            off he    1
## 44758                       off hsinchu    1
## 44759                           off ice    1
## 44760                      off ignoring    1
## 44761                          off ilha    1
## 44762                    off improperly    1
## 44763                     off incorrect    1
## 44764                            off is    1
## 44765                           off iwo    1
## 44766                       off jamming    1
## 44767                     off kabupaten    1
## 44768                        off katmai    1
## 44769                       off kerkira    1
## 44770                         off kismu    1
## 44771                          off lack    1
## 44772                         off lever    1
## 44773                        off locked    1
## 44774                          off long    1
## 44775                        off mackay    1
## 44776                          off made    1
## 44777                       off malware    1
## 44778                    off mechanical    1
## 44779                 off metallurgical    1
## 44780                         off miami    1
## 44781                        off mobile    1
## 44782                          off most    1
## 44783                        off nascar    1
## 44784                           off new    1
## 44785                           off off    1
## 44786                          off once    1
## 44787                          off only    1
## 44788                   off operational    1
## 44789                            off or    1
## 44790                       off outside    1
## 44791                          off part    1
## 44792                       off partial    1
## 44793                   off performance    1
## 44794                          off port    1
## 44795                      off position    1
## 44796                         off prior    1
## 44797                      off properly    1
## 44798                       off reached    1
## 44799                      off reaching    1
## 44800                        off report    1
## 44801                     off reporters    1
## 44802                      off residual    1
## 44803                       off rivalry    1
## 44804                          off roll    1
## 44805                        off rolled    1
## 44806                        off rudder    1
## 44807                        off safely    1
## 44808                       off saturna    1
## 44809                       off several    1
## 44810                      off shearing    1
## 44811                       off shortly    1
## 44812                         off speed    1
## 44813                            off st    1
## 44814                       off strayed    1
## 44815                      off striking    1
## 44816                      off suddenly    1
## 44817                        off swarms    1
## 44818                            off te    1
## 44819                   off technicians    1
## 44820                          off that    1
## 44821                         off their    1
## 44822                         off these    1
## 44823                          off they    1
## 44824                            off to    1
## 44825                       off touched    1
## 44826                       off towards    1
## 44827                   off transponder    1
## 44828                         off until    1
## 44829                          off very    1
## 44830                    off violations    1
## 44831                        off weight    1
## 44832                       off wichita    1
## 44833                     off witnesses    1
## 44834                      off wreckage    1
## 44835                         offered a    1
## 44836                      offered what    1
## 44837                     offical cause    1
## 44838                        officals a    1
## 44839                   office building    1
## 44840                         office of    1
## 44841                        office the    1
## 44842                 officer's actions    1
## 44843                     officer's and    1
## 44844                 officer's attempt    1
## 44845                  officer's belief    1
## 44846                 officer's failure    1
## 44847                  officer's flight    1
## 44848                 officer's housing    1
## 44849              officer's impairment    1
## 44850           officer's inappropriate    1
## 44851                officer's marginal    1
## 44852                     officer about    1
## 44853                        officer at    1
## 44854                       officer atc    1
## 44855                     officer could    1
## 44856               officer disappeared    1
## 44857                    officer either    1
## 44858                 officer expressed    1
## 44859                       officer his    1
## 44860                   officer holding    1
## 44861                        officer in    1
## 44862             officer inadvertently    1
## 44863                  officer initiate    1
## 44864                      officer john    1
## 44865                      officer made    1
## 44866                officer mistakenly    1
## 44867                      officer once    1
## 44868               officer overrotated    1
## 44869                   officer quickly    1
## 44870                  officer received    1
## 44871                      officer told    1
## 44872                      officer took    1
## 44873                      officer were    1
## 44874                     officers were    1
## 44875                 official business    1
## 44876                       official pc    1
## 44877                   official report    1
## 44878                      officially a    1
## 44879            officials acknowledged    1
## 44880               officials announced    1
## 44881                 officials claimed    1
## 44882                 officials crashed    1
## 44883                     officials for    1
## 44884                      officials on    1
## 44885                    officials said    1
## 44886                officials shifting    1
## 44887                     officials the    1
## 44888                      officials to    1
## 44889                          offs and    1
## 44890                       offset from    1
## 44891                       offshore at    1
## 44892                 offshore drilling    1
## 44893                  offshore failure    1
## 44894                     offshore fuel    1
## 44895                      offshore oil    1
## 44896                   offshore singer    1
## 44897                   offshore struck    1
## 44898                     offshore when    1
## 44899                      often caused    1
## 44900                        ohio river    1
## 44901                         ohio when    1
## 44902                     ohrid airport    1
## 44903                     ohrid because    1
## 44904                           oil and    1
## 44905                        oil caused    1
## 44906                            oil co    1
## 44907                       oil company    1
## 44908                 oil contamination    1
## 44909                     oil drillilng    1
## 44910                         oil field    1
## 44911                        oil fields    1
## 44912                          oil fire    1
## 44913                         oil fires    1
## 44914                          oil heat    1
## 44915                          oil hose    1
## 44916                            oil in    1
## 44917                          oil leak    1
## 44918                         oil leaks    1
## 44919                          oil line    1
## 44920                         oil lines    1
## 44921                   oil lubricating    1
## 44922                    oil mantenance    1
## 44923                      oil overshot    1
## 44924                          oil palm    1
## 44925                          oil poor    1
## 44926                       oil problem    1
## 44927                    oil projection    1
## 44928                          oil pump    1
## 44929                       oil pumping    1
## 44930                    oil radiatiors    1
## 44931                        oil system    1
## 44932                           oil the    1
## 44933                            oil to    1
## 44934                         oil which    1
## 44935                     oiz incorrect    1
## 44936                    okanagan while    1
## 44937                     okinawa after    1
## 44938                        okinawa in    1
## 44939                       okinawa the    1
## 44940                    oklahoma radio    1
## 44941                    oklahoma state    1
## 44942                       oklahoma to    1
## 44943                       oksibil the    1
## 44944                     olaya herrera    1
## 44945                   olcott mountain    1
## 44946                    old christians    1
## 44947                      old daughter    1
## 44948                          old drum    1
## 44949                        old harbor    1
## 44950                           old man    1
## 44951                     old procedure    1
## 44952                    old providence    1
## 44953                           old the    1
## 44954                       old trainee    1
## 44955                         old vesna    1
## 44956                      old windmill    1
## 44957                         old woman    1
## 44958                         oldham at    1
## 44959                     oldham becaon    1
## 44960                     olekminsk the    1
## 44961                           olo air    1
## 44962                  olympic national    1
## 44963                      olympics had    1
## 44964                     olympus while    1
## 44965                   omaha hydraulic    1
## 44966                    omdurman after    1
## 44967                  omission crashed    1
## 44968                omission resulting    1
## 44969                    omission which    1
## 44970                    omissions made    1
## 44971                        omitted to    1
## 44972                     omniflightã â    1
## 44973                     omsukchan 190    1
## 44974                             on 10    1
## 44975                             on 11    1
## 44976                             on 12    1
## 44977                          on 2,000    1
## 44978                              on 3    1
## 44979                              on 4    1
## 44980                              on 6    1
## 44981                             on 65    1
## 44982                             on 66    1
## 44983                          on 7,250    1
## 44984                       on airframe    1
## 44985                          on amber    1
## 44986                           on anti    1
## 44987                      on approoach    1
## 44988                             on as    1
## 44989                             on at    1
## 44990                            on aug    1
## 44991                     on authorized    1
## 44992                      on automated    1
## 44993                      on autopilot    1
## 44994                        on balsalt    1
## 44995                    on bandeirante    1
## 44996                           on base    1
## 44997                      on batteries    1
## 44998                         on behalf    1
## 44999                         on bonito    1
## 45000                            on but    1
## 45001                          on cabin    1
## 45002                           on cape    1
## 45003                          on cerro    1
## 45004                      on certainty    1
## 45005                           on crew    1
## 45006                       on crossing    1
## 45007                       on delivery    1
## 45008                        on descent    1
## 45009                            on don    1
## 45010                           on duty    1
## 45011                        on eastern    1
## 45012                      on emergency    1
## 45013                            on end    1
## 45014                        on failure    1
## 45015                       on farmland    1
## 45016                           on file    1
## 45017                         on flight    1
## 45018                            on fox    1
## 45019                       on freeport    1
## 45020                        on friar's    1
## 45021                          on grand    1
## 45022                           on guam    1
## 45023                   on haringvreter    1
## 45024                             on he    1
## 45025                        on hearing    1
## 45026                            on her    1
## 45027                           on high    1
## 45028                            on him    1
## 45029                            on ice    1
## 45030                             on in    1
## 45031                     on inadequate    1
## 45032                   on insufficient    1
## 45033                         on ischia    1
## 45034                           on it's    1
## 45035                            on itã    1
## 45036                          on japan    1
## 45037                          on kauai    1
## 45038                        on keeping    1
## 45039                    on kinesthetic    1
## 45040                           on lake    1
## 45041                           on land    1
## 45042                       on langeoog    1
## 45043                          on leave    1
## 45044                           on loan    1
## 45045                        on loosing    1
## 45046                           on main    1
## 45047                    on maintaining    1
## 45048                      on maneuvers    1
## 45049                       on manuvers    1
## 45050                           on maui    1
## 45051                            on may    1
## 45052                         on midair    1
## 45053                       on military    1
## 45054                           on mill    1
## 45055                     on mistberget    1
## 45056                        on moments    1
## 45057                          on moron    1
## 45058                          on mount    1
## 45059                          on muddy    1
## 45060                     on mueggenaes    1
## 45061                     on navigation    1
## 45062                        on neither    1
## 45063                          on night    1
## 45064                        on october    1
## 45065                           on open    1
## 45066                          on other    1
## 45067                    on overrunning    1
## 45068                            on pan    1
## 45069                          on panay    1
## 45070                    on parachuting    1
## 45071                      on passenger    1
## 45072                        on payakha    1
## 45073                          on penay    1
## 45074                       on portions    1
## 45075                         on proper    1
## 45076                            on qnh    1
## 45077                          on radar    1
## 45078                          on radio    1
## 45079                        on ranches    1
## 45080                       on reaching    1
## 45081                     on retraction    1
## 45082                         on rikers    1
## 45083                          on route    1
## 45084                        on routine    1
## 45085                            on san    1
## 45086                       on saturday    1
## 45087                        on sawdust    1
## 45088                       on sighting    1
## 45089                    on sightseeing    1
## 45090                           on site    1
## 45091                          on slope    1
## 45092                          on south    1
## 45093                         on staten    1
## 45094                        on suicide    1
## 45095                   on surveillance    1
## 45096                          on sveti    1
## 45097                         on sydney    1
## 45098                          on table    1
## 45099                         on takoff    1
## 45100                       on talkeoff    1
## 45101                           on time    1
## 45102                        on towards    1
## 45103                           on unit    1
## 45104                        on upslope    1
## 45105                            on vfr    1
## 45106                            on vor    1
## 45107                            on was    1
## 45108                           on what    1
## 45109                          on while    1
## 45110                          on wigan    1
## 45111                          on wings    1
## 45112                       on woodcote    1
## 45113                           on yuan    1
## 45114                             on za    1
## 45115                        onboard by    1
## 45116                onboard electronic    1
## 45117                  onboard exploded    1
## 45118               onboard performance    1
## 45119                      onboard were    1
## 45120                     onboard while    1
## 45121                       once before    1
## 45122                          once for    1
## 45123                         once from    1
## 45124                        once given    1
## 45125                         once that    1
## 45126                       once timely    1
## 45127                            one 17    1
## 45128                    one additional    1
## 45129                      one aircraft    1
## 45130                      one airplane    1
## 45131                      one airstrip    1
## 45132                            one at    1
## 45133                           one bad    1
## 45134                           one bag    1
## 45135                         one blade    1
## 45136                      one building    1
## 45137                         one child    1
## 45138                         one could    1
## 45139                       one crewman    1
## 45140                    one crewmember    1
## 45141                   one deactivated    1
## 45142                       one elderly    1
## 45143                           one end    1
## 45144                     one estimated    1
## 45145                         one fifth    1
## 45146                          one fire    1
## 45147                        one flight    1
## 45148                        one fourth    1
## 45149                          one fuel    1
## 45150                        one german    1
## 45151                        one ground    1
## 45152                           one had    1
## 45153                    one helicopter    1
## 45154                      one inertial    1
## 45155                        one infant    1
## 45156                          one male    1
## 45157                       one minutes    1
## 45158                         one month    1
## 45159                          one more    1
## 45160                          one nine    1
## 45161                           one non    1
## 45162                    one parachuted    1
## 45163                   one passenger's    1
## 45164                        one people    1
## 45165                         one point    1
## 45166                       one quarter    1
## 45167                      one realized    1
## 45168                        one report    1
## 45169                        one second    1
## 45170                         one sharp    1
## 45171                          one ship    1
## 45172                       one soldier    1
## 45173                    one stewardess    1
## 45174                       one swedish    1
## 45175                          one tank    1
## 45176                           one the    1
## 45177                          one they    1
## 45178                          one tire    1
## 45179                      one unproven    1
## 45180                        one victim    1
## 45181                       one witness    1
## 45182                         one woman    1
## 45183                          one year    1
## 45184                         one young    1
## 45185                     oneida county    1
## 45186                          ones the    1
## 45187                            only 1    1
## 45188                          only 123    1
## 45189                          only 175    1
## 45190                            only 2    1
## 45191                            only 3    1
## 45192                          only 300    1
## 45193                           only 35    1
## 45194                          only 500    1
## 45195                            only 7    1
## 45196                        only about    1
## 45197                      only because    1
## 45198                           only by    1
## 45199                      only causing    1
## 45200                      only english    1
## 45201                          only fly    1
## 45202                    only fragments    1
## 45203                    only frostbite    1
## 45204                          only had    1
## 45205                          only hit    1
## 45206                   only inadequate    1
## 45207                         only just    1
## 45208                      only limited    1
## 45209                        only minor    1
## 45210                           only on    1
## 45211                    only passenger    1
## 45212                       only people    1
## 45213                     only possible    1
## 45214                      only standby    1
## 45215                      only started    1
## 45216                    only surviving    1
## 45217                        only three    1
## 45218                         only went    1
## 45219                         only when    1
## 45220                          onset of    1
## 45221                   ontario airport    1
## 45222                   ontario crashed    1
## 45223                       ontario the    1
## 45224                        ontario to    1
## 45225                      onto another    1
## 45226                      onto avenida    1
## 45227                       onto cruces    1
## 45228                       onto flight    1
## 45229                       onto kesugi    1
## 45230                       onto nearby    1
## 45231                          onto piz    1
## 45232                       onto runway    1
## 45233                       onto slopes    1
## 45234                       onto staten    1
## 45235                      onto taxiway    1
## 45236                        onto tidal    1
## 45237                          onto two    1
## 45238                           onus of    1
## 45239                      oozed around    1
## 45240                          open air    1
## 45241                           open at    1
## 45242                         open body    1
## 45243                      open causing    1
## 45244                      open cockpit    1
## 45245                      open country    1
## 45246                     open creating    1
## 45247                      open descent    1
## 45248                        open drain    1
## 45249                       open during    1
## 45250                     open ejecting    1
## 45251                          open for    1
## 45252                       open ground    1
## 45253                           open in    1
## 45254                   open microphone    1
## 45255                        open ocean    1
## 45256                          open sea    1
## 45257                         open this    1
## 45258                      open warning    1
## 45259                       open window    1
## 45260                      opened about    1
## 45261                        opened air    1
## 45262                         opened an    1
## 45263                         opened as    1
## 45264                     opened during    1
## 45265                       opened fire    1
## 45266                      opened there    1
## 45267                        opened too    1
## 45268            opened underestimation    1
## 45269                         opening a    1
## 45270                        opening in    1
## 45271                opening undetected    1
## 45272                       opening was    1
## 45273                  openings crashed    1
## 45274                   opera conductor    1
## 45275             operafjellet mountain    1
## 45276                        operate an    1
## 45277             operate automatically    1
## 45278                        operate in    1
## 45279                     operate under    1
## 45280                       operate vfr    1
## 45281                 operated aircraft    1
## 45282                   operated beyond    1
## 45283                   operated london    1
## 45284                       operated on    1
## 45285                  operated outside    1
## 45286                      operated the    1
## 45287                       operating a    1
## 45288                operating airspeed    1
## 45289              operating conditions    1
## 45290           operating configuration    1
## 45291                 operating crashed    1
## 45292                     operating cvr    1
## 45293                operating language    1
## 45294                  operating limits    1
## 45295                  operating manual    1
## 45296                      operating on    1
## 45297               operating procedure    1
## 45298                operating reverser    1
## 45299                     operating rod    1
## 45300                   operating speed    1
## 45301                    operating with    1
## 45302                   operation after    1
## 45303               operation aphrodite    1
## 45304                  operation beyond    1
## 45305                      operation by    1
## 45306                 operation crashed    1
## 45307                  operation desert    1
## 45308                 operation license    1
## 45309                  operation manual    1
## 45310               operation misjudged    1
## 45311                 operation misread    1
## 45312        operation misunderstanding    1
## 45313                 operation misused    1
## 45314                      operation on    1
## 45315               operation premature    1
## 45316                      operation to    1
## 45317                     operation was    1
## 45318                   operation while    1
## 45319                    operation with    1
## 45320               operational ceiling    1
## 45321              operational decision    1
## 45322              operational dispatch    1
## 45323         operational documentation    1
## 45324              operational envelope    1
## 45325                operational errors    1
## 45326             operational oversight    1
## 45327              operational position    1
## 45328             operational standards    1
## 45329         operational uncertainties    1
## 45330                operations against    1
## 45331                    operations and    1
## 45332                     operations at    1
## 45333                     operations by    1
## 45334                      operations c    1
## 45335                operations captain    1
## 45336               operations improper    1
## 45337               operations required    1
## 45338                    operations the    1
## 45339                  operations which    1
## 45340                   operator's lack    1
## 45341            operator's maintenance    1
## 45342             operator's procedures    1
## 45343                    operator 1,000    1
## 45344              operator certificate    1
## 45345                    operator error    1
## 45346                   operator failed    1
## 45347               operator management    1
## 45348                      operator not    1
## 45349                       operator on    1
## 45350                  operator refused    1
## 45351                 operator survived    1
## 45352              operator transmitted    1
## 45353                     operator were    1
## 45354                    operators also    1
## 45355                      operators at    1
## 45356                  operators failed    1
## 45357                    operators from    1
## 45358                     operators the    1
## 45359                        opinion of    1
## 45360                      opinion that    1
## 45361                       opinion was    1
## 45362                       opioids and    1
## 45363                   opportunity and    1
## 45364                   opportunity for    1
## 45365                    opportunity to    1
## 45366                        opposed to    1
## 45367                      opposite the    1
## 45368                      opposite way    1
## 45369                          opted to    1
## 45370                optical phenomenon    1
## 45371                optimize avoidance    1
## 45372                    optimum single    1
## 45373                 options available    1
## 45374                       options for    1
## 45375                             or 17    1
## 45376                              or 4    1
## 45377                            or 582    1
## 45378                             or 5a    1
## 45379                              or 6    1
## 45380                          or about    1
## 45381                     or accidental    1
## 45382                         or adjust    1
## 45383                        or aileron    1
## 45384                     or aircraft's    1
## 45385                       or altitude    1
## 45386                    or appreciably    1
## 45387                       or approach    1
## 45388                      or attempted    1
## 45389                       or attended    1
## 45390                         or aurora    1
## 45391                   or catastrophic    1
## 45392                       or changing    1
## 45393                             or co    1
## 45394                   or collectively    1
## 45395                       or collided    1
## 45396                  or communication    1
## 45397                      or component    1
## 45398                     or confidence    1
## 45399                         or conrol    1
## 45400                       or continue    1
## 45401                        or copilot    1
## 45402                      or corrected    1
## 45403                        or crashed    1
## 45404                     or deliberate    1
## 45405                     or difficulty    1
## 45406                      or discarded    1
## 45407                    or distraction    1
## 45408                         or divert    1
## 45409                       or drowning    1
## 45410                       or elevator    1
## 45411                        or erratic    1
## 45412                           or even    1
## 45413                       or exceeded    1
## 45414                     or experience    1
## 45415                          or flaps    1
## 45416                       or friendly    1
## 45417                        or greater    1
## 45418                            or had    1
## 45419                         or having    1
## 45420                         or higher    1
## 45421                            or his    1
## 45422                      or hydraulic    1
## 45423                          or icing    1
## 45424                       or ignition    1
## 45425                        or ignored    1
## 45426                    or immediately    1
## 45427                             or in    1
## 45428                     or inadequate    1
## 45429                 or incapacitating    1
## 45430                 or incapacitation    1
## 45431                         or inside    1
## 45432                       or internal    1
## 45433                      or interpret    1
## 45434                      or irregular    1
## 45435                            or its    1
## 45436                         or jammed    1
## 45437                           or lack    1
## 45438                         or landed    1
## 45439                       or lavatory    1
## 45440                           or less    1
## 45441                           or line    1
## 45442                         or making    1
## 45443                   or malfunctions    1
## 45444                       or manually    1
## 45445                            or may    1
## 45446                       or minimize    1
## 45447                     or misreading    1
## 45448                       or mountain    1
## 45449                           or near    1
## 45450                             or no    1
## 45451                     or operations    1
## 45452                    or overcontrol    1
## 45453                    or overloading    1
## 45454                          or paris    1
## 45455                      or partially    1
## 45456                         or period    1
## 45457                          or plane    1
## 45458                          or power    1
## 45459                            or pre    1
## 45460                      or prevented    1
## 45461                      or propeller    1
## 45462                          or radar    1
## 45463                          or radio    1
## 45464                        or reached    1
## 45465                          or react    1
## 45466                        or remains    1
## 45467                         or return    1
## 45468                       or sabotage    1
## 45469                          or seven    1
## 45470                         or simple    1
## 45471                            or six    1
## 45472                           or snow    1
## 45473                             or so    1
## 45474                      or something    1
## 45475                         or spiral    1
## 45476                           or stop    1
## 45477                           or that    1
## 45478                          or those    1
## 45479                          or three    1
## 45480                             or to    1
## 45481                           or trim    1
## 45482                          or under    1
## 45483                       or unwanted    1
## 45484                             or us    1
## 45485                     or vegetation    1
## 45486                            or vfr    1
## 45487                         or visual    1
## 45488                            or why    1
## 45489                           or wing    1
## 45490                         or wiring    1
## 45491                       or wreckage    1
## 45492                    oradea airport    1
## 45493                      oran algeria    1
## 45494                 orange descending    1
## 45495                      orange grove    1
## 45496                         orb river    1
## 45497                     orchard after    1
## 45498                    orchard engine    1
## 45499                     orchestra and    1
## 45500                       orchila and    1
## 45501                     ord mountains    1
## 45502                     ordaz airport    1
## 45503                          order an    1
## 45504                        order from    1
## 45505                       ordered but    1
## 45506                    ordered carbon    1
## 45507                 ordered lightning    1
## 45508                       orders from    1
## 45509                         orders to    1
## 45510                ordination between    1
## 45511                          ore lost    1
## 45512                      oregon coast    1
## 45513              orfeon universitario    1
## 45514                         organ for    1
## 45515                  organ transplant    1
## 45516                  organization and    1
## 45517              organization claimed    1
## 45518                  organization hit    1
## 45519        organization stabilization    1
## 45520               organization stated    1
## 45521           organizational problems    1
## 45522                  organizations in    1
## 45523                      organs after    1
## 45524                 orientation after    1
## 45525                orientation caused    1
## 45526                    orientation of    1
## 45527            orientation procedures    1
## 45528                   orientation the    1
## 45529                  orientation when    1
## 45530                       oriented to    1
## 45531                        origin and    1
## 45532                    origin erupted    1
## 45533                     origin forced    1
## 45534                   origin possibly    1
## 45535                        origin the    1
## 45536                      origin under    1
## 45537              original destination    1
## 45538                   original flight    1
## 45539                    original route    1
## 45540                     original take    1
## 45541               originally departed    1
## 45542                  originally filed    1
## 45543                  originally going    1
## 45544                   originally lost    1
## 45545                originated besides    1
## 45546                   originated near    1
## 45547                   originated with    1
## 45548                    originating at    1
## 45549                    originating in    1
## 45550                     orinoco while    1
## 45551                   orlando florida    1
## 45552                  orleans sabotage    1
## 45553                   orleans shortly    1
## 45554                     orleans while    1
## 45555                   orly electrical    1
## 45556                        orm viking    1
## 45557                 ornithologist was    1
## 45558                       oro airport    1
## 45559                          oro into    1
## 45560               orographic currents    1
## 45561                  orphans pressure    1
## 45562                       orrin while    1
## 45563               orthodox christians    1
## 45564                  orumiyeh airport    1
## 45565                   osbourne's tour    1
## 45566                      osbourne was    1
## 45567                 oscillating pitch    1
## 45568                    oscillation of    1
## 45569                  oscillations and    1
## 45570               oscillations caused    1
## 45571            oscillations coincided    1
## 45572               oscillations during    1
## 45573                  oscillations for    1
## 45574            oscillations initiated    1
## 45575                   oskar stronorov    1
## 45576                        oslo fjord    1
## 45577                        oslo pilot    1
## 45578                          oslo the    1
## 45579                 ossetian militant    1
## 45580                         ostend as    1
## 45581                      ostend stene    1
## 45582                    ostend weather    1
## 45583                       ostraya the    1
## 45584                            otay 8    1
## 45585                         otay peak    1
## 45586                  other's aircraft    1
## 45587                          other 77    1
## 45588                         other 900    1
## 45589                  other apparently    1
## 45590                      other bailed    1
## 45591                      other before    1
## 45592                         other but    1
## 45593                       other child    1
## 45594                    other civilian    1
## 45595                      other clergy    1
## 45596                     other cockpit    1
## 45597                     other company    1
## 45598                other contributing    1
## 45599                     other crashed    1
## 45600                  other difficulty    1
## 45601                     other ejected    1
## 45602                   other essential    1
## 45603                    other existing    1
## 45604                         other for    1
## 45605                        other four    1
## 45606                      other glided    1
## 45607                       other goods    1
## 45608                  other government    1
## 45609                        other half    1
## 45610                        other high    1
## 45611                  other instrument    1
## 45612                 other maintenance    1
## 45613                         other men    1
## 45614                    other military    1
## 45615                 other nationalist    1
## 45616                          other on    1
## 45617                         other one    1
## 45618                      other people    1
## 45619                       other plane    1
## 45620                     other reasons    1
## 45621                     other remains    1
## 45622                      other source    1
## 45623                     other sources    1
## 45624                    other surfaces    1
## 45625                    other theories    1
## 45626                      other things    1
## 45627                   other thrusting    1
## 45628                        other tiny    1
## 45629                          other to    1
## 45630                       other under    1
## 45631                      other visual    1
## 45632                         other was    1
## 45633                       other while    1
## 45634                      other within    1
## 45635                       other would    1
## 45636                     other.the klm    1
## 45637                 others intentions    1
## 45638                      others sixty    1
## 45639                        others the    1
## 45640                      others there    1
## 45641                       others when    1
## 45642                         othrys at    1
## 45643                         oti radio    1
## 45644                      otis redding    1
## 45645                   ottavio missoni    1
## 45646                        ottawa all    1
## 45647                    otter's flight    1
## 45648                         otter and    1
## 45649                     otter outside    1
## 45650                      otter struck    1
## 45651                         otter the    1
## 45652                       otter which    1
## 45653                            ou and    1
## 45654                   ouagadougou and    1
## 45655                         ounces of    1
## 45656                         out after    1
## 45657                      out approach    1
## 45658                         out below    1
## 45659                          out both    1
## 45660                         out cargo    1
## 45661                        out caused    1
## 45662                     out correctly    1
## 45663                       out descent    1
## 45664                           out due    1
## 45665                        out during    1
## 45666                        out duties    1
## 45667                        out either    1
## 45668                          out fuel    1
## 45669                   out immediately    1
## 45670                            out it    1
## 45671                       out landing    1
## 45672                       out leaving    1
## 45673                      out limiting    1
## 45674                          out loud    1
## 45675                        out manual    1
## 45676                         out north    1
## 45677                           out oil    1
## 45678                          out part    1
## 45679                    out prescribed    1
## 45680                         out prior    1
## 45681                     out procedure    1
## 45682                    out procedures    1
## 45683                        out proper    1
## 45684                     out resulting    1
## 45685                        out safely    1
## 45686                       out sending    1
## 45687                          out they    1
## 45688                           out too    1
## 45689                       out towards    1
## 45690                          out what    1
## 45691                         out where    1
## 45692                         out which    1
## 45693                       out without    1
## 45694                     outback after    1
## 45695                 outboard ailerons    1
## 45696                     outboard bolt    1
## 45697                   outboard engine    1
## 45698                  outboard engines    1
## 45699                     outboard flap    1
## 45700                    outboard hinge    1
## 45701                  outboard leading    1
## 45702                  outboard portion    1
## 45703                     outboard wing    1
## 45704                       outbound on    1
## 45705                        outcrop on    1
## 45706                   outdated flight    1
## 45707               outdated improperly    1
## 45708               outeniqua mountains    1
## 45709                    outeniqua pass    1
## 45710                       outer cover    1
## 45711                       outer panel    1
## 45712                        outer port    1
## 45713                   outer propeller    1
## 45714                        outer skin    1
## 45715                outfielder charlie    1
## 45716                       outlook the    1
## 45717                         output of    1
## 45718                      output which    1
## 45719                         outs also    1
## 45720                     outs suddenly    1
## 45721                         outset of    1
## 45722                        outside an    1
## 45723                       outside her    1
## 45724                       outside its    1
## 45725                        outside or    1
## 45726                      outside roll    1
## 45727                        outside to    1
## 45728                      outward rush    1
## 45729                  ovejero mountain    1
## 45730                            over 1    1
## 45731                          over 100    1
## 45732                      over 144,000    1
## 45733                            over 2    1
## 45734                        over 2,800    1
## 45735                       over 20,000    1
## 45736                            over 4    1
## 45737                           over 43    1
## 45738                            over 5    1
## 45739                           over 50    1
## 45740                          over 500    1
## 45741                           over 60    1
## 45742                          over 680    1
## 45743                        over angel    1
## 45744                      over another    1
## 45745                       over baltic    1
## 45746                         over belo    1
## 45747                    over bulgarian    1
## 45748                      over buracao    1
## 45749                          over but    1
## 45750                           over by    1
## 45751                      over calapan    1
## 45752                     over calcutta    1
## 45753                       over canada    1
## 45754                      over causing    1
## 45755                     over cerritos    1
## 45756                      over chinese    1
## 45757                        over chino    1
## 45758                   over confidence    1
## 45759                       over corpus    1
## 45760                   over correction    1
## 45761                      over crashed    1
## 45762                         over crew    1
## 45763                       over curico    1
## 45764                        over dakka    1
## 45765                       over donner    1
## 45766                         over drug    1
## 45767                          over elk    1
## 45768                      over england    1
## 45769                         over flat    1
## 45770                        over gabon    1
## 45771                        over gross    1
## 45772                    over guanabara    1
## 45773                      over hitting    1
## 45774                           over in    1
## 45775                      over irkutsk    1
## 45776                      over israeli    1
## 45777                         over it's    1
## 45778                      over italian    1
## 45779                         over jipe    1
## 45780                       over kalibo    1
## 45781                      over kweilin    1
## 45782                        over misty    1
## 45783                       over mokmer    1
## 45784                    over mountains    1
## 45785                           over on    1
## 45786                     over reliance    1
## 45787                      over rotated    1
## 45788                       over rugged    1
## 45789                      over several    1
## 45790                         over shot    1
## 45791                         over sped    1
## 45792                        over speed    1
## 45793                     over speeding    1
## 45794                       over staten    1
## 45795                     over stressed    1
## 45796                       over taking    1
## 45797                      over terrain    1
## 45798                         over that    1
## 45799                        over thing    1
## 45800                        over those    1
## 45801                        over trees    1
## 45802                        over tulua    1
## 45803                    over unlighted    1
## 45804                    over vancouver    1
## 45805                       over verona    1
## 45806                        over which    1
## 45807                    over whitehall    1
## 45808               overall atmospheric    1
## 45809                   overbanked turn    1
## 45810                        overcast a    1
## 45811                       overcast at    1
## 45812                      overcast but    1
## 45813                 overcast contrary    1
## 45814                  overcast crashed    1
## 45815                   overcast flying    1
## 45816              overcast mountainous    1
## 45817                     overcast shot    1
## 45818                 overcast thinking    1
## 45819                 overcast trailing    1
## 45820                  overcast weather    1
## 45821                    overcast while    1
## 45822                  overcast without    1
## 45823                   overcome during    1
## 45824                 overconfidence of    1
## 45825                    overcontrol by    1
## 45826                overcontrolling or    1
## 45827                  overcorrected to    1
## 45828                 overcorrection by    1
## 45829                 overestimated his    1
## 45830                       overfew the    1
## 45831                    overfilling of    1
## 45832                    overflow boxes    1
## 45833                    overhang anvil    1
## 45834                       overhang of    1
## 45835                    overhaul while    1
## 45836                 overhauled clutch    1
## 45837                    overhauled the    1
## 45838           overhauling maintenance    1
## 45839              overhauls inadequate    1
## 45840                   overhead locker    1
## 45841                  overhead luggage    1
## 45842                      overhead the    1
## 45843                    overheated and    1
## 45844                    overheated apu    1
## 45845                overheated bearing    1
## 45846                   overheated fuel    1
## 45847              overheated resulting    1
## 45848                    overheated the    1
## 45849                   overheated tire    1
## 45850                   overheating and    1
## 45851               overheating problem    1
## 45852                        overlap in    1
## 45853                overload according    1
## 45854                      overload and    1
## 45855                    overload badly    1
## 45856                      overload due    1
## 45857                      overloaded a    1
## 45858                  overloaded cargo    1
## 45859                 overloaded center    1
## 45860              overloaded condition    1
## 45861             overloaded conditions    1
## 45862            overloaded disappeared    1
## 45863                 overloaded flight    1
## 45864                overloaded hurried    1
## 45865               overloaded improper    1
## 45866                   overloaded lack    1
## 45867                 overloaded midair    1
## 45868                  overloaded other    1
## 45869                  overloaded plane    1
## 45870               overloaded resulted    1
## 45871                   overloaded snow    1
## 45872                   overloaded with    1
## 45873                    overloading of    1
## 45874              overloading sabotage    1
## 45875                   overloading the    1
## 45876                 overloading while    1
## 45877              overnight operations    1
## 45878                   overpowered the    1
## 45879             overpressurization of    1
## 45880          overpressurization under    1
## 45881                      overran they    1
## 45882               overreacted causing    1
## 45883                   overreliance on    1
## 45884                     override this    1
## 45885                     overriding of    1
## 45886                   overrotated and    1
## 45887                         overrun a    1
## 45888                      overrun this    1
## 45889                       overrun was    1
## 45890                  overseas airways    1
## 45891                    overseeing the    1
## 45892                   overshoot after    1
## 45893                     overshoot and    1
## 45894                 overshoot because    1
## 45895                    overshoot even    1
## 45896                      overshoot in    1
## 45897                      overshoot of    1
## 45898                   overshooting in    1
## 45899                   overshooting on    1
## 45900                      overshot and    1
## 45901                    overshot belem    1
## 45902                      oversight by    1
## 45903                      oversight to    1
## 45904                     oversize bush    1
## 45905                      oversped and    1
## 45906                       overspeed a    1
## 45907                  overspeed during    1
## 45908                      overspeed of    1
## 45909               overspeed reduction    1
## 45910                    overspeed this    1
## 45911                   overspeeded and    1
## 45912               overspeeding became    1
## 45913                   overspeeding he    1
## 45914                   overspeeding no    1
## 45915                overstress failure    1
## 45916            overstressed amidships    1
## 45917                  overstressed the    1
## 45918                  overstressing as    1
## 45919              overstressing became    1
## 45920                overstressing last    1
## 45921                 overstressing the    1
## 45922                      overtook and    1
## 45923                     overtravel of    1
## 45924                   overturned both    1
## 45925           overturned contributing    1
## 45926                   overturned went    1
## 45927                  overturned while    1
## 45928               overweight aircraft    1
## 45929                 overweight planes    1
## 45930              overweight resulting    1
## 45931                        ovht light    1
## 45932                      owen stanley    1
## 45933                       own crashed    1
## 45934                         own inlet    1
## 45935                         own right    1
## 45936                       own serious    1
## 45937                        own visual    1
## 45938                         owner air    1
## 45939                          owner of    1
## 45940                        owner rick    1
## 45941                         owner the    1
## 45942                        owner with    1
## 45943                          oxygen a    1
## 45944                         oxygen at    1
## 45945                    oxygen bottles    1
## 45946                   oxygen cylinder    1
## 45947                oxygen deprivation    1
## 45948                  oxygen following    1
## 45949                 oxygen generators    1
## 45950                 oxygen inadequate    1
## 45951                     oxygen system    1
## 45952                       oxygen tank    1
## 45953                       oxygen when    1
## 45954                          oyama 15    1
## 45955                     ozzy osbourne    1
## 45956                              p 18    1
## 45957                              p 31    1
## 45958                              p 3c    1
## 45959                         p kennedy    1
## 45960                              p on    1
## 45961                             p the    1
## 45962                           p.m and    1
## 45963                           p2v and    1
## 45964                           p2v was    1
## 45965                             pa 28    1
## 45966                             pa 31    1
## 45967                     pablo airport    1
## 45968                     pablo escobar    1
## 45969                          pack the    1
## 45970                    package mailed    1
## 45971                       package the    1
## 45972                     packing house    1
## 45973                        packing in    1
## 45974                       packs which    1
## 45975                           pad had    1
## 45976                           pad the    1
## 45977                    padang unknown    1
## 45978                    paddock before    1
## 45979                         paddy 1.5    1
## 45980                         paddy and    1
## 45981                          paddy at    1
## 45982                         paddy one    1
## 45983                       padre amaya    1
## 45984                          pãƒâ rez    1
## 45985                     pagalungan ne    1
## 45986                           page 75    1
## 45987                pago international    1
## 45988                      pago neither    1
## 45989                           paid 40    1
## 45990                 paid insufficient    1
## 45991                      paintings by    1
## 45992                    paintings were    1
## 45993                pakhtakor tashkent    1
## 45994                       pakistan al    1
## 45995                   pakistan arnold    1
## 45996                      pakistan but    1
## 45997                   pakistan during    1
## 45998                    pakistani anti    1
## 45999                  pakistani border    1
## 46000                       pakistani f    1
## 46001                     pakistani jet    1
## 46002                pakistani military    1
## 46003                    palana airport    1
## 46004                         palay air    1
## 46005               palembang seventeen    1
## 46006                       palermo atc    1
## 46007                     palermo punta    1
## 46008            palestinian extremists    1
## 46009          palestinian organization    1
## 46010            palestinian terrorists    1
## 46011                           pali in    1
## 46012                          pali kea    1
## 46013                         pallet on    1
## 46014                        palm grove    1
## 46015                          palm oil    1
## 46016                   palm plantation    1
## 46017                         palm tree    1
## 46018                        palm trees    1
## 46019                          palma de    1
## 46020                    palmas airport    1
## 46021                         palmas in    1
## 46022                  palmdale airport    1
## 46023                       palmdale to    1
## 46024                     paloemeu with    1
## 46025                          palu the    1
## 46026                      palunge hill    1
## 46027                     pampa hermosa    1
## 46028                   pampa mountains    1
## 46029                            pan 25    1
## 46030                          pan am's    1
## 46031                      pan american    1
## 46032                    pan american's    1
## 46033                            pan de    1
## 46034                       panama city    1
## 46035                        panama the    1
## 46036                      panay island    1
## 46037                      pancaked 400    1
## 46038                     pancaked into    1
## 46039                  pandols mountain    1
## 46040                        panel from    1
## 46041                          panel he    1
## 46042                          panel in    1
## 46043                         panel led    1
## 46044                          panel of    1
## 46045                         panel the    1
## 46046                         panel was    1
## 46047                    pangkal pinang    1
## 46048                  panic afterwards    1
## 46049                       panic among    1
## 46050                         panic and    1
## 46051                          panic to    1
## 46052              panicking passengers    1
## 46053                      panjal hills    1
## 46054                      panther peak    1
## 46055                papandayan crashed    1
## 46056                   papua's eastern    1
## 46057                         papua the    1
## 46058                    par controller    1
## 46059                     parachute and    1
## 46060                    parachute drop    1
## 46061                parachute exercise    1
## 46062                     parachute got    1
## 46063                 parachute jumpers    1
## 46064                 parachute jumping    1
## 46065                     parachute out    1
## 46066                 parachute tangled    1
## 46067                parachute trainees    1
## 46068                parachute training    1
## 46069                    parachute were    1
## 46070                parachutes escaped    1
## 46071                   parachuting out    1
## 46072              parachuting training    1
## 46073                 parachutists lost    1
## 46074                  parallel taxiway    1
## 46075                    paralyzed from    1
## 46076                     paramedic and    1
## 46077                   paramedics were    1
## 46078                    parameters and    1
## 46079                     parameters of    1
## 46080              parameters resulting    1
## 46081                    parameters the    1
## 46082                  parameters while    1
## 46083               paramilitary forces    1
## 46084                   paramo frontino    1
## 46085                     paramo mucuti    1
## 46086                      paranaque in    1
## 46087                    paratroop drop    1
## 46088              paratroopers climbed    1
## 46089             paratroopers collided    1
## 46090                   paratroopers in    1
## 46091                 paratroopers were    1
## 46092                      pardoned the    1
## 46093                       parente the    1
## 46094                      parepare the    1
## 46095                         paris and    1
## 46096                          paris as    1
## 46097                     paris because    1
## 46098                     paris crashed    1
## 46099                     paris entered    1
## 46100                    paris improper    1
## 46101                         paris not    1
## 46102                          paris on    1
## 46103                       paris pilot    1
## 46104                         paris the    1
## 46105                          paris to    1
## 46106                        paris when    1
## 46107                            park 1    1
## 46108                           park 10    1
## 46109                        park about    1
## 46110                           park at    1
## 46111                        park crane    1
## 46112                       park during    1
## 46113                       park faulty    1
## 46114                          park not    1
## 46115                           park of    1
## 46116                           park on    1
## 46117                         park only    1
## 46118                          park six    1
## 46119                          park ten    1
## 46120                           park to    1
## 46121                      park volcano    1
## 46122                        park while    1
## 46123                        parked and    1
## 46124              parked approximately    1
## 46125                         parked at    1
## 46126                       parked cars    1
## 46127                 parked helicopter    1
## 46128                         parker on    1
## 46129                    parker shortly    1
## 46130                     parking apron    1
## 46131                     parks airport    1
## 46132                   parley's canyon    1
## 46133                  parliment member    1
## 46134                         parlor on    1
## 46135                      parnon about    1
## 46136               parrottsville after    1
## 46137                          part 135    1
## 46138                           part 91    1
## 46139                          part due    1
## 46140                      part failure    1
## 46141                          part for    1
## 46142                         part from    1
## 46143                        part owner    1
## 46144                          part the    1
## 46145                          part was    1
## 46146                  part.but instead    1
## 46147                partial detachment    1
## 46148                 partial premature    1
## 46149               partially collapsed    1
## 46150                partially extended    1
## 46151                  partially failed    1
## 46152                 partially lighted    1
## 46153                partially obscured    1
## 46154               partially recovered    1
## 46155                  partially sucked    1
## 46156                    partially torn    1
## 46157           partially unpressurised    1
## 46158                particular airport    1
## 46159                    particular and    1
## 46160                particular aspects    1
## 46161                 particular engine    1
## 46162                 particular reason    1
## 46163          particularly considering    1
## 46164                 particularly when    1
## 46165                    partly stalled    1
## 46166                      partner went    1
## 46167                      parts before    1
## 46168                         parts but    1
## 46169                     parts crashed    1
## 46170                        parts fell    1
## 46171                        parts from    1
## 46172                         parts out    1
## 46173                   parts resulting    1
## 46174                    parts stalling    1
## 46175                        parts that    1
## 46176                        parts were    1
## 46177                         party and    1
## 46178                          party at    1
## 46179                         party for    1
## 46180                       party pilot    1
## 46181                     party reached    1
## 46182                        party tour    1
## 46183                       partying by    1
## 46184                            pas de    1
## 46185                         pasco the    1
## 46186                pasengers survived    1
## 46187                      paskse while    1
## 46188                      paso macunaa    1
## 46189                         pass 10km    1
## 46190                           pass 12    1
## 46191                           pass 60    1
## 46192                            pass a    1
## 46193                        pass above    1
## 46194                          pass and    1
## 46195                         pass army    1
## 46196                           pass en    1
## 46197                    pass following    1
## 46198                         pass over    1
## 46199                      pass stalled    1
## 46200                      pass through    1
## 46201                        pass while    1
## 46202                        passage of    1
## 46203                     passage which    1
## 46204                          passed a    1
## 46205                    passed between    1
## 46206                   passed florence    1
## 46207                       passed into    1
## 46208                         passed mt    1
## 46209                   passed multiple    1
## 46210                         passed on    1
## 46211                   passed overhead    1
## 46212                       passed this    1
## 46213                        passed two    1
## 46214                         passed v1    1
## 46215                       passed very    1
## 46216             passenger's cigarette    1
## 46217              passenger's families    1
## 46218                passenger's infant    1
## 46219                  passenger's seat    1
## 46220                  passenger aboard    1
## 46221                passenger activity    1
## 46222                      passenger an    1
## 46223                 passenger baggage    1
## 46224                  passenger banked    1
## 46225                passenger briefing    1
## 46226                 passenger brought    1
## 46227               passenger committed    1
## 46228                 passenger control    1
## 46229                 passenger crashed    1
## 46230              passenger discarding    1
## 46231              passenger disengaged    1
## 46232                      passenger dr    1
## 46233                   passenger float    1
## 46234                   passenger floor    1
## 46235          passenger inadvertentlly    1
## 46236            passenger interference    1
## 46237                    passenger jane    1
## 46238                  passenger killed    1
## 46239                     passenger lit    1
## 46240                    passenger load    1
## 46241                    passenger mail    1
## 46242                     passenger may    1
## 46243                      passenger mr    1
## 46244                      passenger on    1
## 46245                passenger possibly    1
## 46246                passenger received    1
## 46247                 passenger refused    1
## 46248                    passenger saul    1
## 46249                    passenger shut    1
## 46250                 passenger sitting    1
## 46251                    passenger soon    1
## 46252                    passenger that    1
## 46253                    passenger this    1
## 46254               passenger transport    1
## 46255                    passenger when    1
## 46256                   passenger while    1
## 46257                     passengers as    1
## 46258                     passengers at    1
## 46259                 passengers before    1
## 46260                passengers crashed    1
## 46261               passengers departed    1
## 46262           passengers deplaned.one    1
## 46263                   passengers died    1
## 46264                    passengers due    1
## 46265               passengers exploded    1
## 46266                   passengers fell    1
## 46267                  passengers flaps    1
## 46268              passengers following    1
## 46269                passengers grabbed    1
## 46270                    passengers had    1
## 46271                   passengers hung    1
## 46272              passengers including    1
## 46273                 passengers jumped    1
## 46274                 passengers killed    1
## 46275                  passengers later    1
## 46276                passengers looking    1
## 46277                   passengers most    1
## 46278                 passengers polish    1
## 46279               passengers received    1
## 46280                passengers rescued    1
## 46281                 passengers rushed    1
## 46282           passengers subsequently    1
## 46283              passengers sustained    1
## 46284                  passengers tried    1
## 46285                  passengers while    1
## 46286                       passes over    1
## 46287                      passing cape    1
## 46288                        passing of    1
## 46289                     passing under    1
## 46290                     passion fruit    1
## 46291                     passport lost    1
## 46292                       passport of    1
## 46293                      passports to    1
## 46294                           past 90    1
## 46295                          past end    1
## 46296                    past incidents    1
## 46297                          past its    1
## 46298                   pastra mountain    1
## 46299                  pastra mountains    1
## 46300                 patascoy mountain    1
## 46301                         patch the    1
## 46302                         patched a    1
## 46303                        patches of    1
## 46304                      patching the    1
## 46305                     patchy clouds    1
## 46306                     patchyfog the    1
## 46307                           path an    1
## 46308                      path because    1
## 46309                          path but    1
## 46310                           path by    1
## 46311                 path contributing    1
## 46312                      path control    1
## 46313                         path crew    1
## 46314                     path directly    1
## 46315                          path for    1
## 46316                         path loss    1
## 46317                          path one    1
## 46318                     path relative    1
## 46319                    path resulting    1
## 46320                       path signal    1
## 46321                      path strayed    1
## 46322                       path thirty    1
## 46323                         path this    1
## 46324                           path to    1
## 46325                          path was    1
## 46326                         path were    1
## 46327                         path when    1
## 46328                        path while    1
## 46329                         path with    1
## 46330                        patient at    1
## 46331                   patient crashed    1
## 46332                      patient from    1
## 46333                        patient to    1
## 46334                       patient was    1
## 46335                      patient were    1
## 46336                     patient while    1
## 46337                      patients was    1
## 46338                     patients were    1
## 46339                         patna the    1
## 46340                      patras after    1
## 46341                  patriarch petros    1
## 46342                  patrick woodward    1
## 46343                      patrol about    1
## 46344                       patrol boat    1
## 46345                        patrol the    1
## 46346                  patrolling along    1
## 46347                     patrons along    1
## 46348                       patsy cline    1
## 46349                     pattern after    1
## 46350                     pattern along    1
## 46351                        pattern an    1
## 46352                        pattern as    1
## 46353                pattern associated    1
## 46354                   pattern because    1
## 46355                        pattern by    1
## 46356                       pattern due    1
## 46357                    pattern during    1
## 46358               pattern encountered    1
## 46359                        pattern in    1
## 46360                pattern inadequate    1
## 46361                  pattern obstacle    1
## 46362                        pattern of    1
## 46363                       pattern off    1
## 46364                        pattern on    1
## 46365                    pattern severe    1
## 46366                    pattern soviet    1
## 46367                        pattern to    1
## 46368                      pattern took    1
## 46369                   pattern waiting    1
## 46370                       pattern was    1
## 46371                      pattern were    1
## 46372                     pattern while    1
## 46373                       patterns as    1
## 46374                      patterns for    1
## 46375                       patterns to    1
## 46376                  paul's cathedral    1
## 46377                         paul dino    1
## 46378                     paul jeffreys    1
## 46379                     paulo airport    1
## 46380                       paulo error    1
## 46381                   paulo guarulhos    1
## 46382                     paved highway    1
## 46383                      paved runway    1
## 46384                  payakha mountain    1
## 46385                         payette a    1
## 46386                    payham airport    1
## 46387                      paying close    1
## 46388                     payne stewart    1
## 46389                            paz el    1
## 46390                           paz the    1
## 46391                      paz wreckage    1
## 46392                           pb4y he    1
## 46393                          pb4y via    1
## 46394                          pc while    1
## 46395                         pcu valve    1
## 46396                  peacekeepers was    1
## 46397                peacekeeping force    1
## 46398               peacekeeping forces    1
## 46399           peacekeeping operations    1
## 46400             peacekeeping soldiers    1
## 46401                 peachtree airport    1
## 46402                           peak 15    1
## 46403                           peak 23    1
## 46404                           peak 35    1
## 46405                            peak 4    1
## 46406                           peak 91    1
## 46407                 peak acceleration    1
## 46408                     peak altitude    1
## 46409                           peak by    1
## 46410                    peak exploding    1
## 46411                       peak flight    1
## 46412                       peak flying    1
## 46413                           peak la    1
## 46414                      peak located    1
## 46415                     peak mountain    1
## 46416                      peak patches    1
## 46417                     peak possible    1
## 46418                        peak table    1
## 46419                         peaks and    1
## 46420                          peaks at    1
## 46421                          peaks he    1
## 46422                          peat bog    1
## 46423                        pecan tree    1
## 46424                       pechora but    1
## 46425                     pedal causing    1
## 46426                      pedal inputs    1
## 46427                        pedals and    1
## 46428                         pedals as    1
## 46429                    pedestrian 800    1
## 46430                     pedestrian on    1
## 46431                   pedrera airport    1
## 46432                     pedro weather    1
## 46433                        peening on    1
## 46434                   peering forward    1
## 46435                          peete 27    1
## 46436                         peking to    1
## 46437                            pen on    1
## 46438                       pena blanca    1
## 46439                     penas blancas    1
## 46440                      penay island    1
## 46441                       penetrate a    1
## 46442                    penetrated 2nm    1
## 46443                    penetrated and    1
## 46444                 penetrated soviet    1
## 46445                penetrating severe    1
## 46446                   penetrating the    1
## 46447                   penetration the    1
## 46448                  penghu pescadore    1
## 46449                         penh when    1
## 46450                 peninsula airport    1
## 46451               peninsula patriarch    1
## 46452                    peninsula race    1
## 46453                     peninsula the    1
## 46454                  penitentiary and    1
## 46455          pennsylvania countryside    1
## 46456             pennsylvania salesman    1
## 46457              pennsylvania senator    1
## 46458                     pensacola and    1
## 46459                penshurst airfield    1
## 46460                      pensionist a    1
## 46461                       pentagon it    1
## 46462                   penthouse below    1
## 46463                 penticton drifted    1
## 46464                      people among    1
## 46465                    people crashed    1
## 46466                    people failure    1
## 46467                         people he    1
## 46468                     people killed    1
## 46469                       people loss    1
## 46470                        people out    1
## 46471                       people some    1
## 46472                        people the    1
## 46473                    people waiting    1
## 46474                       people when    1
## 46475                peoples revolution    1
## 46476                          per hour    1
## 46477                        per minute    1
## 46478                           pera 35    1
## 46479                      perceive the    1
## 46480                   perceived fault    1
## 46481                     perception as    1
## 46482                     perception at    1
## 46483                     perception by    1
## 46484                           pere de    1
## 46485                        perform at    1
## 46486                   perform correct    1
## 46487                    perform engine    1
## 46488                       perform two    1
## 46489                     performance a    1
## 46490                 performance after    1
## 46491                    performance at    1
## 46492                performance before    1
## 46493                    performance by    1
## 46494                  performance call    1
## 46495          performance capabilities    1
## 46496              performance computer    1
## 46497                  performance data    1
## 46498                    performance in    1
## 46499                   performance may    1
## 46500                    performance on    1
## 46501             performance published    1
## 46502                  performance that    1
## 46503                   performance two    1
## 46504                 performance while    1
## 46505                      performed at    1
## 46506                performed decision    1
## 46507                  performed during    1
## 46508               performed forbidden    1
## 46509                 performed untried    1
## 46510                   performed which    1
## 46511                   performed while    1
## 46512                      performing 3    1
## 46513              performing aerobatic    1
## 46514                 performing flight    1
## 46515                    performing low    1
## 46516                    performing the    1
## 46517                    performing too    1
## 46518                  performing touch    1
## 46519                 perhaps involving    1
## 46520                  perija mountains    1
## 46521                          peril of    1
## 46522                     perimeter and    1
## 46523                         period he    1
## 46524                       period when    1
## 46525               periodic inspection    1
## 46526                 peripheral vision    1
## 46527                      perished the    1
## 46528                          perm for    1
## 46529                permissable weight    1
## 46530               permissible crashed    1
## 46531                 permissible limit    1
## 46532                permissible limits    1
## 46533                     permission by    1
## 46534                    permission the    1
## 46535                   permission with    1
## 46536                          permit a    1
## 46537                   permit complete    1
## 46538                 permit insturment    1
## 46539                        permit the    1
## 46540                       permitted a    1
## 46541              permitted electrical    1
## 46542              permitted stabilized    1
## 46543                     permitted vfr    1
## 46544                    permitting the    1
## 46545                      perpignan at    1
## 46546                  perpignan france    1
## 46547            perpignan navigational    1
## 46548                     persist about    1
## 46549                    persisted with    1
## 46550                 persistent action    1
## 46551                persistent mistake    1
## 46552                    person crashed    1
## 46553                   person survived    1
## 46554                        person was    1
## 46555                        person who    1
## 46556                  personal ability    1
## 46557                  personal worries    1
## 46558                personell replaced    1
## 46559                        personne l    1
## 46560                       personnel a    1
## 46561                      personnel at    1
## 46562                 personnel because    1
## 46563                   personnel board    1
## 46564                     personnel did    1
## 46565                  personnel except    1
## 46566                  personnel failed    1
## 46567                    personnel from    1
## 46568                 personnel suicide    1
## 46569                 personnel weather    1
## 46570                    personnel when    1
## 46571                  personnel within    1
## 46572                        persons 28    1
## 46573                    persons aboard    1
## 46574                        persons on    1
## 46575                  persons survived    1
## 46576                    persuade cline    1
## 46577                         perth and    1
## 46578                   perth australia    1
## 46579                         perth the    1
## 46580                           peru 40    1
## 46581                        peru cargo    1
## 46582                       peru pieces    1
## 46583                         peru when    1
## 46584                      peruvian air    1
## 46585            peruvian ornithologist    1
## 46586                 pescadore islands    1
## 46587                 peshawar pakistan    1
## 46588                     peter nielsen    1
## 46589                       peter while    1
## 46590                peterborough about    1
## 46591                   peteroa located    1
## 46592                      peterson was    1
## 46593                         petra the    1
## 46594                    petrified lava    1
## 46595             petroleum corporation    1
## 46596                petroleum facility    1
## 46597                        petros vii    1
## 46598                   petrozavodsk in    1
## 46599                           pha bon    1
## 46600                      phaleron bay    1
## 46601                  phantom fighters    1
## 46602                       phantom jet    1
## 46603                    phase airspeed    1
## 46604                         phase and    1
## 46605                         phase due    1
## 46606                         phase the    1
## 46607             phenomena encountered    1
## 46608                  phenomena struck    1
## 46609                 phenomenon caused    1
## 46610                       phichit and    1
## 46611                    philadelphia a    1
## 46612                  philadelphia the    1
## 46613                philippine clipper    1
## 46614               philippine yachting    1
## 46615                  philippines died    1
## 46616                   philippines the    1
## 46617                    philippines to    1
## 46618                      phnom damrey    1
## 46619                        phnom penh    1
## 46620               phongsavanh airport    1
## 46621                  phosphorus bombs    1
## 46622                 phosphorus mortar    1
## 46623                  photographers as    1
## 46624                photographic chase    1
## 46625                 photographing the    1
## 46626              photojournalist bill    1
## 46627                          phou pha    1
## 46628                 physical capacity    1
## 46629                 physical evidence    1
## 46630               physical impairment    1
## 46631               physical imparement    1
## 46632           physical incapacitation    1
## 46633                 physical reaction    1
## 46634                 physioiogical and    1
## 46635             physiological factors    1
## 46636                   pianist crashed    1
## 46637                   pianist william    1
## 46638                            pic de    1
## 46639                           pic his    1
## 46640                          pic lost    1
## 46641                   picasso airport    1
## 46642                      pichincha as    1
## 46643                       pickle lake    1
## 46644                         pico alto    1
## 46645                       pico blanco    1
## 46646                      pictures the    1
## 46647                     pieces across    1
## 46648                      pieces north    1
## 46649                        pieces one    1
## 46650                       pieces only    1
## 46651                     pieces struck    1
## 46652                        pieces the    1
## 46653              pieces unintentional    1
## 46654                        pieces.ã â    1
## 46655                   pieces.the crew    1
## 46656                            pier a    1
## 46657                          pier and    1
## 46658                      pier crashed    1
## 46659                       piesky lake    1
## 46660                  pigafetta struck    1
## 46661                      pigeons into    1
## 46662                        piilot did    1
## 46663                     pike mountain    1
## 46664                       pilatus and    1
## 46665                          pile and    1
## 46666                 pilgrim passenger    1
## 46667                      pilgrims the    1
## 46668                      pillow cases    1
## 46669                        pilot's 11    1
## 46670                  pilot's approach    1
## 46671                 pilot's attention    1
## 46672                   pilot's control    1
## 46673                 pilot's disabling    1
## 46674                     pilot's error    1
## 46675                 pilot's excessive    1
## 46676                        pilot's in    1
## 46677               pilot's inattention    1
## 46678              pilot's inexperience    1
## 46679                  pilot's inflight    1
## 46680                      pilot's left    1
## 46681                   pilot's license    1
## 46682                      pilot's loss    1
## 46683                pilot's microphone    1
## 46684         pilot's misinterpretation    1
## 46685                 pilot's misjudged    1
## 46686               pilot's misjudgment    1
## 46687             pilot's mismanagement    1
## 46688                    pilot's misuse    1
## 46689                        pilot's of    1
## 46690                 pilot's premature    1
## 46691                  pilot's response    1
## 46692               pilot's temporarily    1
## 46693                     pilot's union    1
## 46694              pilot's unstabilized    1
## 46695                    pilot's vacuum    1
## 46696                    pilot's visual    1
## 46697                   pilot's warning    1
## 46698                          pilot 12    1
## 46699                          pilot 78    1
## 46700                           pilot a    1
## 46701                   pilot abandoned    1
## 46702                      pilot aboard    1
## 46703                       pilot about    1
## 46704                      pilot acting    1
## 46705                     pilot actress    1
## 46706                       pilot added    1
## 46707                     pilot advised    1
## 46708                          pilot al    1
## 46709                         pilot all    1
## 46710                       pilot alone    1
## 46711                        pilot also    1
## 46712                          pilot an    1
## 46713                      pilot andrew    1
## 46714                   pilot announced    1
## 46715                    pilot appeared    1
## 46716                         pilot are    1
## 46717                    pilot attempts    1
## 46718                      pilot bailed    1
## 46719                      pilot banked    1
## 46720                     pilot because    1
## 46721                       pilot blood    1
## 46722                       pilot broke    1
## 46723                         pilot but    1
## 46724                     pilot captain    1
## 46725                      pilot caught    1
## 46726                    pilot clarence    1
## 46727                   pilot commanded    1
## 46728                   pilot committed    1
## 46729                   pilot confirmed    1
## 46730                   pilot confusing    1
## 46731                     pilot copilot    1
## 46732                   pilot correctly    1
## 46733                    pilot decision    1
## 46734                   pilot declaired    1
## 46735                    pilot declined    1
## 46736                     pilot delayed    1
## 46737                  pilot descending    1
## 46738                    pilot diameter    1
## 46739                    pilot directed    1
## 46740                pilot discontinued    1
## 46741                  pilot discovered    1
## 46742                   pilot displayed    1
## 46743                 pilot disregarded    1
## 46744                  pilot distracted    1
## 46745                     pilot ditched    1
## 46746                        pilot down    1
## 46747                     pilot drowned    1
## 46748                        pilot each    1
## 46749                 pilot effectively    1
## 46750                   pilot encounter    1
## 46751                     pilot entered    1
## 46752                 pilot erroneously    1
## 46753                   pilot error.the    1
## 46754                   pilot executing    1
## 46755                  pilot experience    1
## 46756                     pilot exposed    1
## 46757                     pilot failing    1
## 46758                     pilot failure    1
## 46759                         pilot few    1
## 46760                       pilot filed    1
## 46761                      pilot flight    1
## 46762                         pilot fly    1
## 46763                      pilot forgot    1
## 46764                       pilot found    1
## 46765                       pilot frank    1
## 46766                        pilot from    1
## 46767                        pilot gene    1
## 46768                    pilot gonzales    1
## 46769                         pilot got    1
## 46770                      pilot having    1
## 46771                          pilot he    1
## 46772                     pilot however    1
## 46773                       pilot idled    1
## 46774                  pilot impairment    1
## 46775                  pilot improperly    1
## 46776                  pilot inactivity    1
## 46777                pilot inadequately    1
## 46778               pilot inadvertently    1
## 46779                     pilot induced    1
## 46780                    pilot informed    1
## 46781                    pilot initally    1
## 46782                  pilot instructor    1
## 46783               pilot intentionally    1
## 46784                        pilot into    1
## 46785                          pilot is    1
## 46786                      pilot issued    1
## 46787                     pilot jessica    1
## 46788                        pilot just    1
## 46789                        pilot knob    1
## 46790                       pilot later    1
## 46791                     pilot leading    1
## 46792                      pilot leaped    1
## 46793                        pilot left    1
## 46794                  pilot lieutenant    1
## 46795                        pilot loss    1
## 46796                      pilot lothar    1
## 46797                  pilot maintained    1
## 46798                     pilot managed    1
## 46799                    pilot maneuver    1
## 46800                       pilot medic    1
## 46801                  pilot mishandled    1
## 46802                      pilot missed    1
## 46803                     pilot mistook    1
## 46804                    pilot mountain    1
## 46805                   pilot navigator    1
## 46806                     pilot noticed    1
## 46807                       pilot nurse    1
## 46808                      pilot opened    1
## 46809                    pilot operated    1
## 46810                         pilot out    1
## 46811                        pilot over    1
## 46812              pilot overconfidence    1
## 46813                 pilot performance    1
## 46814                   pilot persisted    1
## 46815                    pilot prepared    1
## 46816               pilot progressively    1
## 46817                         pilot put    1
## 46818                      pilot raised    1
## 46819                       pilot randy    1
## 46820                  pilot reasonably    1
## 46821                    pilot received    1
## 46822                   pilot regarding    1
## 46823                    pilot released    1
## 46824                      pilot relied    1
## 46825                    pilot response    1
## 46826                   pilot resulting    1
## 46827                    pilot returned    1
## 46828                    pilot reversed    1
## 46829                      pilot robert    1
## 46830                       pilot roger    1
## 46831                     pilot rotated    1
## 46832                     pilot russian    1
## 46833                           pilot s    1
## 46834                        pilot said    1
## 46835                     pilot sensory    1
## 46836                      pilot should    1
## 46837                     pilot sixteen    1
## 46838                        pilot slid    1
## 46839                        pilot soon    1
## 46840                      pilot stated    1
## 46841                      pilot static    1
## 46842                      pilot steers    1
## 46843                        pilot stop    1
## 46844                      pilot struck    1
## 46845               pilot subordinating    1
## 46846                     pilot swerved    1
## 46847                      pilot taking    1
## 46848                  pilot techniques    1
## 46849                     pilot telling    1
## 46850                        pilot then    1
## 46851                       pilot thick    1
## 46852                     pilot thought    1
## 46853                        pilot time    1
## 46854                     pilot touched    1
## 46855                     pilot towards    1
## 46856                      pilot twenty    1
## 46857                         pilot two    1
## 46858                      pilot unable    1
## 46859               pilot understanding    1
## 46860                        pilot used    1
## 46861                      pilot valves    1
## 46862                    pilot violated    1
## 46863                 pilot voluntarily    1
## 46864                      pilot wanted    1
## 46865                       pilot water    1
## 46866                     pilot wearing    1
## 46867                   pilot willfully    1
## 46868                     pilot william    1
## 46869                      pilot wished    1
## 46870                     pilot without    1
## 46871                       pilot wrong    1
## 46872                  piloting crashed    1
## 46873                      piloting got    1
## 46874               piloting procedures    1
## 46875                          pilots 3    1
## 46876                    pilots ability    1
## 46877                     pilots aboard    1
## 46878                      pilots acted    1
## 46879                    pilots allowed    1
## 46880                     pilots appear    1
## 46881                         pilots as    1
## 46882                         pilots at    1
## 46883                     pilots became    1
## 46884                         pilots by    1
## 46885                   pilots charging    1
## 46886                  pilots commanded    1
## 46887               pilots contributing    1
## 46888                     pilots during    1
## 46889                      pilots error    1
## 46890                  pilots evidently    1
## 46891                   pilots exceeded    1
## 46892                pilots experienced    1
## 46893                    pilots fatigue    1
## 46894                      pilots first    1
## 46895                       pilots from    1
## 46896                     pilots george    1
## 46897                       pilots held    1
## 46898                  pilots ignorance    1
## 46899                    pilots ignored    1
## 46900                         pilots in    1
## 46901                 pilots inadequate    1
## 46902                   pilots insisted    1
## 46903                pilots instruments    1
## 46904                    pilots license    1
## 46905                     pilots losing    1
## 46906                       pilots lost    1
## 46907                   pilots navigate    1
## 46908                 pilots parachuted    1
## 46909                pilots performance    1
## 46910                       pilots poor    1
## 46911                   pilots realized    1
## 46912                  pilots realizing    1
## 46913                   pilots reported    1
## 46914                     pilots should    1
## 46915                pilots spontaneous    1
## 46916                  pilots struggled    1
## 46917                   pilots survived    1
## 46918                     pilots tested    1
## 46919                       pilots this    1
## 46920                       pilots took    1
## 46921                   pilots trailing    1
## 46922                      pilots tried    1
## 46923               pilots unfamilarity    1
## 46924             pilots unprofessional    1
## 46925                      pilots using    1
## 46926                       pilots when    1
## 46927                        pilots who    1
## 46928                      pilots would    1
## 46929                     pilots yelled    1
## 46930                pilots.were flying    1
## 46931                         pilotsã â    1
## 46932                           pin and    1
## 46933                            pin as    1
## 46934                       pin bearing    1
## 46935                        pin manual    1
## 46936                            pin on    1
## 46937                         pin prior    1
## 46938                        pin should    1
## 46939                           pin the    1
## 46940                          pin this    1
## 46941                      pinang after    1
## 46942                      pindaya near    1
## 46943                     pine deviated    1
## 46944                         pine tree    1
## 46945                        pine trees    1
## 46946                        pine woods    1
## 46947                      pinetos peak    1
## 46948                      pinion drive    1
## 46949                         pinion of    1
## 46950                        pins prior    1
## 46951                          pins the    1
## 46952                   pintado located    1
## 46953                       pioneer who    1
## 46954                         pipe that    1
## 46955                          piper at    1
## 46956                    piper collided    1
## 46957                         piper did    1
## 46958                        piper fell    1
## 46959                  piper inadequate    1
## 46960               piper inadvertently    1
## 46961                      piper killed    1
## 46962                    piper saratoga    1
## 46963                      piper seneca    1
## 46964                        piper shot    1
## 46965                      piper struck    1
## 46966                         piper the    1
## 46967                        piper were    1
## 46968                         piper who    1
## 46969                          pipes by    1
## 46970                        pir panjal    1
## 46971                      pirate radio    1
## 46972                      pisa shortly    1
## 46973                          pisa the    1
## 46974                        pistol and    1
## 46975                      pistol while    1
## 46976                        piston and    1
## 46977                      piston being    1
## 46978                        piston lug    1
## 46979                  piston nitriding    1
## 46980                         piston of    1
## 46981                      piston seals    1
## 46982                       pistons the    1
## 46983                            pit of    1
## 46984                         pitch and    1
## 46985                       pitch angle    1
## 46986                     pitch channel    1
## 46987                       pitch close    1
## 46988                  pitch coarsening    1
## 46989                     pitch crashed    1
## 46990                   pitch decreased    1
## 46991                        pitch feel    1
## 46992                     pitch handles    1
## 46993                      pitch inputs    1
## 46994                        pitch loss    1
## 46995                        pitch nose    1
## 46996                          pitch or    1
## 46997                     pitch pointer    1
## 46998                     pitch setting    1
## 46999                        pitch with    1
## 47000                       pitched the    1
## 47001                    pitched upward    1
## 47002                    pitched wildly    1
## 47003                    pitcher nestor    1
## 47004                     pitching down    1
## 47005                   pitching motion    1
## 47006                     pitching over    1
## 47007                  pitching steeply    1
## 47008                      pitching the    1
## 47009                       pitchup and    1
## 47010                       pitchup was    1
## 47011                        pitot anti    1
## 47012                       pitot heads    1
## 47013                      pitot system    1
## 47014                   pitre's brother    1
## 47015                         pitre air    1
## 47016                         pits that    1
## 47017              pitting subsequently    1
## 47018                       pitting the    1
## 47019          pittsburgh international    1
## 47020                     piura airport    1
## 47021                       pivoted and    1
## 47022                        piz segnas    1
## 47023                     pizzo cengalo    1
## 47024                            pl ane    1
## 47025                        placard on    1
## 47026                          place 45    1
## 47027                           place 5    1
## 47028                           place a    1
## 47029                     place against    1
## 47030                         place and    1
## 47031                          place as    1
## 47032                          place at    1
## 47033                     place between    1
## 47034                     place crashed    1
## 47035                        place nose    1
## 47036                          place on    1
## 47037                        place over    1
## 47038                         place the    1
## 47039                       place where    1
## 47040                        place with    1
## 47041                         placed an    1
## 47042                    placed between    1
## 47043                   placed intercom    1
## 47044                         placed it    1
## 47045                         placed no    1
## 47046                    placed onboard    1
## 47047                   placed squarely    1
## 47048                      placed there    1
## 47049                      placed under    1
## 47050                     placentia bay    1
## 47051              places approximately    1
## 47052                   placing himself    1
## 47053                       placing the    1
## 47054                        plain view    1
## 47055                          plan but    1
## 47056                           plan by    1
## 47057                      plan crashed    1
## 47058                           plan de    1
## 47059                           plan he    1
## 47060                           plan in    1
## 47061                    plan indicated    1
## 47062                           plan of    1
## 47063                     plan overshot    1
## 47064                     plan resulted    1
## 47065                         plan sent    1
## 47066                         plan that    1
## 47067                       planchãƒâ n    1
## 47068                  plane's airspeed    1
## 47069                  plane's altitude    1
## 47070                   plane's antenna    1
## 47071                 plane's autopilot    1
## 47072                   plane's battery    1
## 47073                      plane's body    1
## 47074                     plane's climb    1
## 47075                  plane's computer    1
## 47076                      plane's crew    1
## 47077                  plane's distance    1
## 47078                 plane's emergency    1
## 47079                    plane's engine    1
## 47080                   plane's engines    1
## 47081                      plane's fuel    1
## 47082                     plane's gross    1
## 47083                    plane's impact    1
## 47084                  plane's mechanic    1
## 47085                plane's navigation    1
## 47086                 plane's navigator    1
## 47087                        plane's no    1
## 47088                     plane's pilot    1
## 47089                    plane's pilots    1
## 47090                 plane's structure    1
## 47091                       plane's two    1
## 47092                   plane's unusual    1
## 47093                     plane's voice    1
## 47094                    plane's wheels    1
## 47095                           plane 3    1
## 47096                           plane 8    1
## 47097                   plane abandoned    1
## 47098                     plane aborted    1
## 47099                       plane about    1
## 47100                    plane abruptly    1
## 47101                 plane accelerated    1
## 47102                    plane acquired    1
## 47103                   plane activated    1
## 47104                       plane again    1
## 47105                     plane against    1
## 47106                    plane aircraft    1
## 47107                         plane all    1
## 47108                      plane almost    1
## 47109                          plane an    1
## 47110                     plane anymore    1
## 47111                      plane around    1
## 47112                    plane ascended    1
## 47113                      plane barely    1
## 47114                          plane be    1
## 47115                     plane because    1
## 47116                    plane belonged    1
## 47117                   plane belonging    1
## 47118                       plane close    1
## 47119                      plane coming    1
## 47120                   plane commander    1
## 47121                  plane completely    1
## 47122                   plane contacted    1
## 47123                  plane contracted    1
## 47124                      plane crashd    1
## 47125                plane crashed.this    1
## 47126                        plane crew    1
## 47127                     plane crossed    1
## 47128                       plane death    1
## 47129                    plane designed    1
## 47130                        plane died    1
## 47131                    plane disaster    1
## 47132              plane discintigrated    1
## 47133                plane disconnected    1
## 47134                   plane disobeyed    1
## 47135                         plane due    1
## 47136                      plane during    1
## 47137                        plane ever    1
## 47138                    plane executed    1
## 47139                     plane explode    1
## 47140                   plane explosion    1
## 47141                        plane feet    1
## 47142                     plane finally    1
## 47143                      plane flared    1
## 47144                        plane four    1
## 47145                      plane gashed    1
## 47146                     plane gliding    1
## 47147                         plane got    1
## 47148                      plane grazed    1
## 47149                        plane guay    1
## 47150                         plane has    1
## 47151                          plane he    1
## 47152                        plane held    1
## 47153                     plane hitting    1
## 47154                   plane including    1
## 47155                   plane indicated    1
## 47156               plane inexperienced    1
## 47157                          plane is    1
## 47158                      plane lacked    1
## 47159                     plane leveled    1
## 47160                      plane loaded    1
## 47161                        plane lose    1
## 47162                        plane loss    1
## 47163                     plane lowered    1
## 47164                      plane midair    1
## 47165                      plane missed    1
## 47166                        plane most    1
## 47167                       plane named    1
## 47168                          plane no    1
## 47169                       plane nosed    1
## 47170                   plane nosedived    1
## 47171                    plane obtained    1
## 47172                          plane of    1
## 47173                        plane only    1
## 47174                      plane opened    1
## 47175                        plane over    1
## 47176                     plane overfew    1
## 47177                  plane overloaded    1
## 47178                  plane overturned    1
## 47179                      plane parked    1
## 47180                 plane penetrating    1
## 47181                   plane permitted    1
## 47182                    plane pitching    1
## 47183                   plane porpoised    1
## 47184                    plane properly    1
## 47185                       plane quite    1
## 47186                     plane rapidly    1
## 47187                    plane received    1
## 47188                      plane safely    1
## 47189                   plane scheduled    1
## 47190                     plane sending    1
## 47191                     plane settled    1
## 47192                     plane shortly    1
## 47193                      plane should    1
## 47194                        plane side    1
## 47195                       plane since    1
## 47196                     plane smashed    1
## 47197                       plane sruck    1
## 47198                       plane still    1
## 47199                     plane strayed    1
## 47200                   plane struggled    1
## 47201                       plane stuck    1
## 47202                     plane swerved    1
## 47203                        plane take    1
## 47204                        plane that    1
## 47205                        plane this    1
## 47206                      plane toward    1
## 47207                plane transporting    1
## 47208                  plane ultimately    1
## 47209                 plane unbalancing    1
## 47210                    plane unlocked    1
## 47211                    plane unstable    1
## 47212                          plane up    1
## 47213                         plane vfr    1
## 47214                     plane weather    1
## 47215                         planed to    1
## 47216                    planel assumed    1
## 47217                          planes a    1
## 47218                     planes across    1
## 47219                   planes altitude    1
## 47220                planes apparitions    1
## 47221                 planes approached    1
## 47222                         planes at    1
## 47223                     planes caught    1
## 47224                     planes chased    1
## 47225                  planes destroyed    1
## 47226              planes disintegrated    1
## 47227                  planes excessive    1
## 47228                       planes flew    1
## 47229                     planes landed    1
## 47230                 planes permission    1
## 47231                   planes position    1
## 47232                     planes pulled    1
## 47233                     planes showed    1
## 47234                       planes slid    1
## 47235                       planes when    1
## 47236                        planes who    1
## 47237                    planned course    1
## 47238               planned destination    1
## 47239                    planned graham    1
## 47240                 planned paratroop    1
## 47241                        planned to    1
## 47242                      planned turn    1
## 47243                       planned vfr    1
## 47244                        planning a    1
## 47245                 planning approach    1
## 47246             planning contributing    1
## 47247                     planning crew    1
## 47248                planning emergency    1
## 47249                planning erroneous    1
## 47250                   planning errors    1
## 47251                      planning his    1
## 47252                 planning improper    1
## 47253               planning inadequate    1
## 47254                     planning lack    1
## 47255            planning mismanagement    1
## 47256                       planning of    1
## 47257                    planning pilot    1
## 47258               planning procedures    1
## 47259                   planning struck    1
## 47260           planning unsatisfactory    1
## 47261                    planning which    1
## 47262                         plans and    1
## 47263                        plans were    1
## 47264                 plant appromately    1
## 47265                        plant fire    1
## 47266                    plant improper    1
## 47267                 plant malfunction    1
## 47268                          plant to    1
## 47269                     plantation in    1
## 47270                     plantation on    1
## 47271                  plantation while    1
## 47272                        planted as    1
## 47273                        planting a    1
## 47274                      planting the    1
## 47275                    plasma coating    1
## 47276                 plastic explosive    1
## 47277                       plata broke    1
## 47278                  plata controlled    1
## 47279                     plata shortly    1
## 47280                       plate while    1
## 47281                        plateau in    1
## 47282                       plateau the    1
## 47283                  platform crashed    1
## 47284                 platform gullflex    1
## 47285                       platform in    1
## 47286                    platform while    1
## 47287                  platinum company    1
## 47288                 platinum shipment    1
## 47289                        play check    1
## 47290                    playa vincente    1
## 47291                        player ben    1
## 47292                    player roberto    1
## 47293                    player thurman    1
## 47294                     playground of    1
## 47295                    playground the    1
## 47296                        playing it    1
## 47297                   playing outside    1
## 47298                        pleiku the    1
## 47299                    plenum chamber    1
## 47300                        pliot made    1
## 47301                           plot it    1
## 47302                           plot to    1
## 47303                          plot was    1
## 47304                      ploughed 300    1
## 47305                     ploughed into    1
## 47306                       plovdiv due    1
## 47307                           plow on    1
## 47308                      plow overran    1
## 47309                      plowed field    1
## 47310                       plowed into    1
## 47311                        plowed the    1
## 47312                      plowing past    1
## 47313                         plug from    1
## 47314                           plug to    1
## 47315               plugs inappropriate    1
## 47316                   plugs installed    1
## 47317                        plume from    1
## 47318                          plume of    1
## 47319                   plummeted 600ft    1
## 47320                    plummeted into    1
## 47321                      plummeted to    1
## 47322                       plunged off    1
## 47323                  plunged straight    1
## 47324                     plunging from    1
## 47325                     plunging into    1
## 47326                      plunging the    1
## 47327                      plymouth and    1
## 47328                     plywood panel    1
## 47329          pochentong international    1
## 47330                       pocket that    1
## 47331                      pockets were    1
## 47332                 pockets.the plane    1
## 47333                           pod and    1
## 47334                       point 1,100    1
## 47335                        point 200m    1
## 47336                           point a    1
## 47337                   point according    1
## 47338                      point alaska    1
## 47339                          point an    1
## 47340               point approximately    1
## 47341                      point barrow    1
## 47342                      point beyond    1
## 47343                 point corrections    1
## 47344                     point ditched    1
## 47345                        point high    1
## 47346                          point it    1
## 47347                       point lebel    1
## 47348                        point mugu    1
## 47349                       point naval    1
## 47350                        point near    1
## 47351                          point on    1
## 47352                    point possible    1
## 47353                   point resulting    1
## 47354                          point to    1
## 47355                   point touchdown    1
## 47356                     point unknown    1
## 47357                       point which    1
## 47358                     point without    1
## 47359                      pointe noire    1
## 47360                   pointed asphalt    1
## 47361                  pointed slightly    1
## 47362                        pointer in    1
## 47363                        pointer on    1
## 47364                      pointing the    1
## 47365                    points crashed    1
## 47366                     points during    1
## 47367                   pokhara airport    1
## 47368                        pokhara to    1
## 47369                         poktoy 30    1
## 47370                          pole and    1
## 47371                          pole jet    1
## 47372                      pole located    1
## 47373                           pole on    1
## 47374                          pole the    1
## 47375                         pole then    1
## 47376                         pole well    1
## 47377                        pole while    1
## 47378                          poles on    1
## 47379                       poles while    1
## 47380                      poleta ridge    1
## 47381                   police aircraft    1
## 47382                   police believed    1
## 47383                      police chief    1
## 47384                 police helicopter    1
## 47385                         police in    1
## 47386                 police inspectors    1
## 47387                 police lieutenant    1
## 47388                   police officers    1
## 47389                      police three    1
## 47390                      policies and    1
## 47391                   policies before    1
## 47392                         policy at    1
## 47393                  policy direction    1
## 47394                  policy regarding    1
## 47395                        policy was    1
## 47396                    polisario shot    1
## 47397                 polish government    1
## 47398                  polish president    1
## 47399                     polish singer    1
## 47400                  polish violinist    1
## 47401                  political crisis    1
## 47402               political terrorism    1
## 47403                      pollution of    1
## 47404               polytechnic college    1
## 47405                           pond on    1
## 47406                        pond while    1
## 47407                     ponta delgada    1
## 47408                          ponta do    1
## 47409                  pontchartrain 19    1
## 47410                  pontchartrain at    1
## 47411                      pontoon boat    1
## 47412                           pool of    1
## 47413                          poor air    1
## 47414                  poor atmospheric    1
## 47415                      poor because    1
## 47416                 poor coordination    1
## 47417                     poor drainage    1
## 47418                          poor due    1
## 47419                       poor engine    1
## 47420                   poor evacuation    1
## 47421                       poor flying    1
## 47422                       poor ground    1
## 47423                      poor landing    1
## 47424                   poor management    1
## 47425                   poor monitoring    1
## 47426                 poor navigational    1
## 47427                 poor organization    1
## 47428                  poor positioning    1
## 47429                    poor reception    1
## 47430                     poor regional    1
## 47431                    poor technique    1
## 47432                          poor the    1
## 47433                     poor training    1
## 47434                  poor visiblility    1
## 47435                        poor water    1
## 47436                       poor weater    1
## 47437                poorly coordinated    1
## 47438                   poorly designed    1
## 47439                   poorly followed    1
## 47440                 poorly maintained    1
## 47441                    poorly planned    1
## 47442                         pop music    1
## 47443                        pop singer    1
## 47444                      popa located    1
## 47445               popocatepetl flying    1
## 47446                    popping noises    1
## 47447            populated neighborhood    1
## 47448                     population of    1
## 47449                  porlamar airport    1
## 47450                     porpoised and    1
## 47451                porpoised attained    1
## 47452                   porpoised while    1
## 47453                   porpoising from    1
## 47454                       porretta at    1
## 47455                          port and    1
## 47456                           port au    1
## 47457                      port carried    1
## 47458                        port ellen    1
## 47459                      port engines    1
## 47460                         port erin    1
## 47461                      port etienne    1
## 47462                         port flap    1
## 47463                        port flaps    1
## 47464                     port followed    1
## 47465                     port francqui    1
## 47466                         port fuel    1
## 47467                         port main    1
## 47468                      port morseby    1
## 47469                         port said    1
## 47470                        port tanks    1
## 47471                          port the    1
## 47472                     port townsend    1
## 47473                    port underwood    1
## 47474                         port vila    1
## 47475                        port which    1
## 47476                 portable bungalow    1
## 47477                   portable oxygen    1
## 47478                    portland canal    1
## 47479                      porto alegre    1
## 47480                       ports froze    1
## 47481                         ports nor    1
## 47482                      ports placed    1
## 47483                          ports to    1
## 47484                     portsmouth in    1
## 47485                      portugal the    1
## 47486                       position 15    1
## 47487                       position 65    1
## 47488                        position a    1
## 47489                  position african    1
## 47490                    position along    1
## 47491                       position as    1
## 47492                       position at    1
## 47493                  position because    1
## 47494                     position both    1
## 47495              position cartwheeled    1
## 47496                  position causing    1
## 47497                 position creating    1
## 47498                  position delayed    1
## 47499                    position error    1
## 47500                   position flying    1
## 47501                 position followed    1
## 47502              position gravational    1
## 47503                    position hambi    1
## 47504                 position improper    1
## 47505                  position instead    1
## 47506                       position it    1
## 47507                     position loss    1
## 47508                   position midair    1
## 47509                     position most    1
## 47510                       position on    1
## 47511                      position one    1
## 47512                     position poor    1
## 47513                 position relative    1
## 47514                   position report    1
## 47515                  position reports    1
## 47516                     position shot    1
## 47517                position standards    1
## 47518                  position thereby    1
## 47519                       position to    1
## 47520                 position training    1
## 47521              position transmitted    1
## 47522                      position two    1
## 47523                  position unknown    1
## 47524                    position which    1
## 47525                    position while    1
## 47526              positional awareness    1
## 47527            positional uncertainty    1
## 47528                     positioned by    1
## 47529                     positioned in    1
## 47530                     positioned so    1
## 47531                     positioned to    1
## 47532                positioning during    1
## 47533           positioning information    1
## 47534                positioning system    1
## 47535                   positioning the    1
## 47536               positionning flight    1
## 47537                      positions by    1
## 47538              positions continuing    1
## 47539          positions malfunctioning    1
## 47540                   positive action    1
## 47541              positive aerodynamic    1
## 47542                positive assurance    1
## 47543                   positive flight    1
## 47544                      positive for    1
## 47545                positive knowledge    1
## 47546                   positive manual    1
## 47547                    positive radio    1
## 47548             positively determined    1
## 47549                      positon they    1
## 47550                       positon was    1
## 47551                     possession of    1
## 47552                  possibilities by    1
## 47553             possibilities include    1
## 47554               possibility crashed    1
## 47555                 possibility frank    1
## 47556                  possibility that    1
## 47557                   possibility the    1
## 47558               possible accidental    1
## 47559                      possible act    1
## 47560                       possible an    1
## 47561                      possible and    1
## 47562                 possible arterial    1
## 47563                 possible attitude    1
## 47564                     possible bird    1
## 47565                possible buffeting    1
## 47566                      possible but    1
## 47567                     possible calm    1
## 47568             possible catastrophic    1
## 47569                   possible causal    1
## 47570                    possible cause    1
## 47571                 possible complete    1
## 47572             possible contributory    1
## 47573                  possible crashed    1
## 47574                   possible damage    1
## 47575                possible defective    1
## 47576                      possible due    1
## 47577               possible electrical    1
## 47578                possible encounter    1
## 47579                possible excessive    1
## 47580                  possible factors    1
## 47581                    possible fault    1
## 47582                      possible for    1
## 47583               possible impairment    1
## 47584              possible inadvertent    1
## 47585           possible incapacitation    1
## 47586                possible lightning    1
## 47587                 possible location    1
## 47588                     possible loss    1
## 47589                 possible maneuver    1
## 47590               possible microburst    1
## 47591                   possible midair    1
## 47592        possible misinterpretation    1
## 47593             possible navigational    1
## 47594              possible overloading    1
## 47595             possible overspeeding    1
## 47596                 possible physical    1
## 47597           possible pressurization    1
## 47598                 possible problems    1
## 47599                  possible sensory    1
## 47600                   possible severe    1
## 47601                     possible site    1
## 47602                 possible sometime    1
## 47603               possible structural    1
## 47604                     possible that    1
## 47605                possible unnoticed    1
## 47606                  possible vertigo    1
## 47607                possible windshear    1
## 47608                    possiblity the    1
## 47609                        possibly 1    1
## 47610                       possibly at    1
## 47611                      possibly bad    1
## 47612                       possibly be    1
## 47613                     possibly been    1
## 47614               possibly carburetor    1
## 47615                   possibly caught    1
## 47616                    possibly could    1
## 47617                      possibly due    1
## 47618                  possibly extreme    1
## 47619                possibly following    1
## 47620                     possibly from    1
## 47621                     possibly have    1
## 47622                      possibly hit    1
## 47623                    possibly icing    1
## 47624                possibly incorrect    1
## 47625             possibly insufficient    1
## 47626                  possibly jamming    1
## 47627                  possibly leading    1
## 47628        possibly misinterpretation    1
## 47629                 possibly overcome    1
## 47630                  possibly started    1
## 47631                 possibly startled    1
## 47632                   possibly struck    1
## 47633                    possibly three    1
## 47634                    possilbe cabin    1
## 47635                           post 37    1
## 47636                       post impact    1
## 47637                       post office    1
## 47638                    postal service    1
## 47639                         posts and    1
## 47640                          posts on    1
## 47641               potential collision    1
## 47642             potentially hazardous    1
## 47643            potentially surprising    1
## 47644                    potokari radio    1
## 47645                     potosi double    1
## 47646                     potter flying    1
## 47647                     potter stated    1
## 47648                          pounds a    1
## 47649                      pounds broke    1
## 47650                    pounds heavier    1
## 47651                      pounds liter    1
## 47652                     pounds struck    1
## 47653                   poured gasoline    1
## 47654                       poured into    1
## 47655                        poured out    1
## 47656                       pouring out    1
## 47657                 power's cameraman    1
## 47658                           power a    1
## 47659                    power although    1
## 47660                          power at    1
## 47661                   power available    1
## 47662                         power but    1
## 47663                          power by    1
## 47664                      power caused    1
## 47665                    power climbing    1
## 47666                    power controls    1
## 47667                       power could    1
## 47668                     power crashed    1
## 47669                     power created    1
## 47670               power disintegrated    1
## 47671                   power emergency    1
## 47672                     power factors    1
## 47673                   power following    1
## 47674                      power glided    1
## 47675                       power james    1
## 47676                         power led    1
## 47677                      power levels    1
## 47678                      power levers    1
## 47679                 power malfunction    1
## 47680                         power not    1
## 47681                    power occurred    1
## 47682                          power or    1
## 47683                     power package    1
## 47684                        power pole    1
## 47685                   power premature    1
## 47686                    power required    1
## 47687                 power restoration    1
## 47688                    power resulted    1
## 47689                     power setting    1
## 47690                       power stall    1
## 47691                    power steering    1
## 47692                      power system    1
## 47693                        power then    1
## 47694                        power this    1
## 47695                         power too    1
## 47696                power transmission    1
## 47697                     power turbine    1
## 47698                      power turned    1
## 47699               power unfamiliarity    1
## 47700                       power units    1
## 47701                       power water    1
## 47702                      powerful air    1
## 47703                  powerful however    1
## 47704                powerlines crashed    1
## 47705                    powerlines two    1
## 47706                    powerplant and    1
## 47707                powerplant failure    1
## 47708                         powers 48    1
## 47709                         poza rica    1
## 47710                   prabang airport    1
## 47711                        prabang on    1
## 47712                  practically zero    1
## 47713                 practice approach    1
## 47714                   practice diving    1
## 47715                      practice for    1
## 47716                  practice landing    1
## 47717                      practice the    1
## 47718                     practice they    1
## 47719                    practice touch    1
## 47720                     practice when    1
## 47721                     practices for    1
## 47722               practices regarding    1
## 47723                     practicing an    1
## 47724                  practicing night    1
## 47725                   practicing take    1
## 47726               practicing takeoffs    1
## 47727                  practicing touch    1
## 47728                    prague airport    1
## 47729                 prahuaniyeu while    1
## 47730                     prairie lands    1
## 47731                    prangli island    1
## 47732                           prank a    1
## 47733                       praying out    1
## 47734                         pre crash    1
## 47735                      pre existing    1
## 47736                      pre ignition    1
## 47737                    pre occupation    1
## 47738                       pre planned    1
## 47739                          pre take    1
## 47740               precarious attitude    1
## 47741              precarious situation    1
## 47742                     precaution on    1
## 47743               precautionary steps    1
## 47744                       preceding b    1
## 47745                   preceding heavy    1
## 47746                  preceding korean    1
## 47747                   precipitated an    1
## 47748                  precipitated the    1
## 47749                   precipitating a    1
## 47750           precipitation following    1
## 47751               precipitous terrain    1
## 47752                  precise position    1
## 47753                    precise reason    1
## 47754              precision approached    1
## 47755                   precision radar    1
## 47756                      preclude the    1
## 47757              precluded feathering    1
## 47758                    precluded such    1
## 47759                predeparture check    1
## 47760                      predicted at    1
## 47761                     predicted bad    1
## 47762                     predicted the    1
## 47763              predictive windshear    1
## 47764               preexisting fatigue    1
## 47765                   preflight check    1
## 47766                 preignition there    1
## 47767                  preignition took    1
## 47768                    preimpact part    1
## 47769                    prejudiced the    1
## 47770              preliminary evidence    1
## 47771           preliminary indications    1
## 47772               premature advancing    1
## 47773                     premature and    1
## 47774             premature application    1
## 47775                  premature change    1
## 47776                   premature chute    1
## 47777               premature departure    1
## 47778                  premature descet    1
## 47779               premature execution    1
## 47780                 premature liftoff    1
## 47781                    premature loss    1
## 47782                premature lowering    1
## 47783                   premature raise    1
## 47784            prematurely controlled    1
## 47785                prematurely failed    1
## 47786                    prematurely in    1
## 47787                prematurely pilots    1
## 47788                prematurely struck    1
## 47789                   prematurely ten    1
## 47790                   prematurely the    1
## 47791                  prematurely this    1
## 47792                    prematurely to    1
## 47793                   preoccupied the    1
## 47794                    preparation by    1
## 47795                   preparation had    1
## 47796                    preparation in    1
## 47797                   preparation the    1
## 47798                  preparations for    1
## 47799                  preparations had    1
## 47800                       prepare for    1
## 47801                      prepared and    1
## 47802                      prepared for    1
## 47803                      prepatory to    1
## 47804                    preperation to    1
## 47805                   prescribe route    1
## 47806                 prescribed airway    1
## 47807              prescribed altitudes    1
## 47808                   prescribed anti    1
## 47809                prescribed company    1
## 47810                prescribed holding    1
## 47811                    prescribed ifr    1
## 47812                    prescribed ils    1
## 47813             prescribed impairment    1
## 47814                     prescribed in    1
## 47815            prescribed limitations    1
## 47816                 prescribed minima    1
## 47817               prescribed minimums    1
## 47818                     prescribed or    1
## 47819            prescribed regulations    1
## 47820                prescribed setting    1
## 47821                  prescribed speed    1
## 47822                prescribed takeoff    1
## 47823                    prescribed the    1
## 47824                     prescribed to    1
## 47825                    prescribed vfr    1
## 47826                 prescribled route    1
## 47827                 prescription drug    1
## 47828               presence underlying    1
## 47829                       present for    1
## 47830                        present in    1
## 47831                  present inherent    1
## 47832                      presented by    1
## 47833                preservers crashed    1
## 47834                     president and    1
## 47835                   president boris    1
## 47836              president eisenhower    1
## 47837                president franklin    1
## 47838                    president lech    1
## 47839                   president ramon    1
## 47840                 president richard    1
## 47841                  president samora    1
## 47842                  president walter    1
## 47843             presidental candidate    1
## 47844             presidential campaign    1
## 47845           presidential helicopter    1
## 47846                       press agent    1
## 47847                         press fit    1
## 47848                      pressed down    1
## 47849                      pressing the    1
## 47850                    pressing their    1
## 47851                      pressure air    1
## 47852                pressure altimeter    1
## 47853                       pressure by    1
## 47854              pressure compressors    1
## 47855                  pressure control    1
## 47856                    pressure could    1
## 47857                      pressure due    1
## 47858                  pressure failure    1
## 47859                     pressure fuel    1
## 47860                      pressure had    1
## 47861                   pressure height    1
## 47862                     pressure hull    1
## 47863                     pressure line    1
## 47864                       pressure of    1
## 47865                      pressure oil    1
## 47866                       pressure on    1
## 47867                   pressure probes    1
## 47868                  pressure problem    1
## 47869                 pressure resulted    1
## 47870                  pressure sensors    1
## 47871                   pressure system    1
## 47872                  pressure turbine    1
## 47873                  pressure warning    1
## 47874                     pressures the    1
## 47875                pressurization and    1
## 47876            pressurization failure    1
## 47877                pressurization for    1
## 47878                pressurization was    1
## 47879 pressurizations depressurizations    1
## 47880               pressurized despite    1
## 47881                    pressurized on    1
## 47882                   preston airport    1
## 47883                prestwick scotland    1
## 47884                      presumably a    1
## 47885                   presumably lost    1
## 47886                     presumably to    1
## 47887                presumed including    1
## 47888                     presumed that    1
## 47889              pretakeoff checklist    1
## 47890                  prevailed except    1
## 47891                     prevailed the    1
## 47892                     prevailing at    1
## 47893                  prevailing gusty    1
## 47894                  prevailing state    1
## 47895            prevailing unfavorable    1
## 47896                  prevailing winds    1
## 47897                       prevent any    1
## 47898                   prevent captain    1
## 47899                    prevent impact    1
## 47900                        prevent or    1
## 47901                         prevent t    1
## 47902                   prevent terrain    1
## 47903                 prevented adquate    1
## 47904                      prevented at    1
## 47905                      prevented by    1
## 47906                      prevented it    1
## 47907              prevented perception    1
## 47908                    prevented them    1
## 47909                   preventive anti    1
## 47910                      previous atr    1
## 47911                 previous attempts    1
## 47912                   previous damage    1
## 47913                    previous false    1
## 47914                  previous landing    1
## 47915                    previous night    1
## 47916                previous occasions    1
## 47917                    previous rough    1
## 47918                      previous six    1
## 47919                      previous two    1
## 47920            previous understanding    1
## 47921              previously descended    1
## 47922           previously establishing    1
## 47923                 previously issued    1
## 47924                  previously known    1
## 47925                     primarily the    1
## 47926                   primary airport    1
## 47927                       primary and    1
## 47928                    primary causes    1
## 47929                    primary factor    1
## 47930                       primary nav    1
## 47931                primary navigation    1
## 47932              primary navigational    1
## 47933                    primary school    1
## 47934                     primary slide    1
## 47935                      primary task    1
## 47936                     prince george    1
## 47937                     prince gustav    1
## 47938                      prince henry    1
## 47939                        prince the    1
## 47940                      princess and    1
## 47941                     principles of    1
## 47942                   prinses juliana    1
## 47943                    prior airplane    1
## 47944                         prior the    1
## 47945                prioritize control    1
## 47946                     priority pass    1
## 47947                  priority several    1
## 47948                      prison after    1
## 47949                        prison for    1
## 47950                       prison made    1
## 47951                   prison national    1
## 47952                        prison the    1
## 47953                    prisoners from    1
## 47954                     prisoners the    1
## 47955                    prisoners they    1
## 47956                      prisoners to    1
## 47957                     pristina into    1
## 47958                   pristina kosovo    1
## 47959                   private company    1
## 47960                     private field    1
## 47961                    private postal    1
## 47962                 private residence    1
## 47963             probability bordering    1
## 47964               probable accidental    1
## 47965                   probable causes    1
## 47966             probable contributing    1
## 47967               probable electrical    1
## 47968              probable explanation    1
## 47969                  probable failure    1
## 47970                   probable habits    1
## 47971                    probable icing    1
## 47972                 probable shifting    1
## 47973                     probable slow    1
## 47974               probable variations    1
## 47975                        probably a    1
## 47976                probably affecting    1
## 47977                       probably at    1
## 47978                  probably because    1
## 47979                  probably buckled    1
## 47980                       probably by    1
## 47981                   probably caused    1
## 47982                    probably could    1
## 47983                  probably crashed    1
## 47984                     probably have    1
## 47985                   probably having    1
## 47986                     probably made    1
## 47987               probably originated    1
## 47988                 probably overload    1
## 47989       probably overpressurization    1
## 47990                 probably realized    1
## 47991                 probably resulted    1
## 47992                   probably struck    1
## 47993                      probably the    1
## 47994                    probably tried    1
## 47995                         probe was    1
## 47996                     probems cause    1
## 47997                   probes resulted    1
## 47998                     problem about    1
## 47999                     problem after    1
## 48000                  problem appeared    1
## 48001                   problem because    1
## 48002                      problem both    1
## 48003                        problem by    1
## 48004                    problem caused    1
## 48005                   problem causing    1
## 48006                   problem failure    1
## 48007                       problem for    1
## 48008                        problem in    1
## 48009                      problem lack    1
## 48010                       problem led    1
## 48011                      problem loss    1
## 48012                        problem on    1
## 48013              problem overstressed    1
## 48014                  problem reversed    1
## 48015                        problem to    1
## 48016                     problem while    1
## 48017                       problems 23    1
## 48018                   problems before    1
## 48019                    problems cause    1
## 48020                  problems causing    1
## 48021              problems controlling    1
## 48022                  problems crashed    1
## 48023                  problems earlier    1
## 48024                       problems en    1
## 48025                   problems forced    1
## 48026              problems maintaining    1
## 48027                       problems or    1
## 48028                      problems put    1
## 48029                 problems required    1
## 48030                     problems they    1
## 48031                      problems two    1
## 48032                     problems were    1
## 48033             problems.the aircraft    1
## 48034                       proceded to    1
## 48035              procedural checklist    1
## 48036           procedural instructions    1
## 48037                   procedural turn    1
## 48038          procedural uncertainties    1
## 48039                   procedure after    1
## 48040                procedure airspeed    1
## 48041                      procedure as    1
## 48042                      procedure at    1
## 48043                  procedure called    1
## 48044                    procedure came    1
## 48045                 procedure carried    1
## 48046               procedure correctly    1
## 48047                 procedure delayed    1
## 48048               procedure descended    1
## 48049                 procedure despite    1
## 48050             procedure disregarded    1
## 48051             procedure established    1
## 48052                 procedure failure    1
## 48053                    procedure have    1
## 48054                     procedure his    1
## 48055              procedure inadequate    1
## 48056                 procedure instead    1
## 48057                    procedure lack    1
## 48058               procedure necessary    1
## 48059                   procedure other    1
## 48060              procedure overheated    1
## 48061                   procedure pilot    1
## 48062             procedure recommended    1
## 48063          procedure specifications    1
## 48064                  procedure struck    1
## 48065                    procedure this    1
## 48066                     procedure too    1
## 48067                    procedure used    1
## 48068                    procedure with    1
## 48069                      procedures 3    1
## 48070              procedures according    1
## 48071                procedures adopted    1
## 48072                procedures alcohol    1
## 48073                     procedures as    1
## 48074                      procedures b    1
## 48075                 procedures before    1
## 48076             procedures compatible    1
## 48077             procedures concerning    1
## 48078           procedures contributing    1
## 48079                procedures coupled    1
## 48080                   procedures crew    1
## 48081               procedures detailed    1
## 48082              procedures developed    1
## 48083                procedures ditched    1
## 48084               procedures executed    1
## 48085               procedures followed    1
## 48086               procedures improper    1
## 48087             procedures improperly    1
## 48088              procedures incorrect    1
## 48089           procedures insufficient    1
## 48090                   procedures lack    1
## 48091                    procedures led    1
## 48092                procedures limited    1
## 48093                     procedures no    1
## 48094                     procedures of    1
## 48095                   procedures once    1
## 48096              procedures performed    1
## 48097                  procedures pilot    1
## 48098              procedures premature    1
## 48099                  procedures radar    1
## 48100                procedures related    1
## 48101                procedures shortly    1
## 48102                   procedures sops    1
## 48103                     procedures st    1
## 48104              procedures technique    1
## 48105                   procedures that    1
## 48106                  procedures total    1
## 48107               procedures undamped    1
## 48108                  procedures under    1
## 48109                    procedures was    1
## 48110                  procedures which    1
## 48111                   procedures with    1
## 48112                 procedures within    1
## 48113                procedures without    1
## 48114                       proceed off    1
## 48115                      proceed with    1
## 48116                   proceeded along    1
## 48117                  proceeded beyond    1
## 48118                      proceeded in    1
## 48119                 proceeded through    1
## 48120                      proceeded to    1
## 48121                     proceeding at    1
## 48122                     proceeding in    1
## 48123                    proceeding off    1
## 48124                proceeding towards    1
## 48125                  proceeding under    1
## 48126                    process during    1
## 48127                    process veered    1
## 48128                     process which    1
## 48129                   processing data    1
## 48130                     processor was    1
## 48131                        procure an    1
## 48132                      procuring it    1
## 48133                     prodromou was    1
## 48134                    produce enough    1
## 48135                       produced an    1
## 48136                produced irregular    1
## 48137               produced sufficient    1
## 48138                     producer mike    1
## 48139                      producing an    1
## 48140                   producing areas    1
## 48141                production company    1
## 48142                   productions inc    1
## 48143             professional demeanor    1
## 48144               professional skills    1
## 48145                 proficiency check    1
## 48146                  proficiency test    1
## 48147                   proficiency the    1
## 48148                     profile after    1
## 48149                       profile and    1
## 48150                  profile approach    1
## 48151                        profile by    1
## 48152                    profile during    1
## 48153                     profile until    1
## 48154                      profile view    1
## 48155                       profile was    1
## 48156                  program although    1
## 48157                        program at    1
## 48158                  program critical    1
## 48159                       program for    1
## 48160                  program guidance    1
## 48161                program guidelines    1
## 48162                    program killed    1
## 48163                      program that    1
## 48164            program underestimated    1
## 48165                       program was    1
## 48166                  programmed route    1
## 48167                   programming and    1
## 48168                  progress reports    1
## 48169                    progress strip    1
## 48170                       progress to    1
## 48171                    progressed the    1
## 48172                progressed through    1
## 48173         progressive deterioration    1
## 48174                  progressive loss    1
## 48175                 progressively and    1
## 48176       progressively disintegrated    1
## 48177                progressively lost    1
## 48178          progressively unbalanced    1
## 48179                prohibit parachute    1
## 48180                   prohibited from    1
## 48181                       project and    1
## 48182                   project manager    1
## 48183                      project near    1
## 48184                     projection in    1
## 48185                     promoter bill    1
## 48186                     promotion the    1
## 48187                  promotional tour    1
## 48188                prompted inquiries    1
## 48189                      prompted the    1
## 48190                     prompting the    1
## 48191                     promptly lost    1
## 48192                      prompts from    1
## 48193                     proof cockpit    1
## 48194                           prop an    1
## 48195                          prop and    1
## 48196                        prop broke    1
## 48197                        prop could    1
## 48198                       prop failed    1
## 48199                      prop failure    1
## 48200                    prop feathered    1
## 48201                          prop for    1
## 48202                         prop made    1
## 48203                        prop pitch    1
## 48204                        prop plane    1
## 48205                      prop remains    1
## 48206                    prop separated    1
## 48207                   prop separation    1
## 48208                      prop started    1
## 48209                          prop the    1
## 48210                         prop this    1
## 48211                        prop while    1
## 48212                     propagated by    1
## 48213                 propelled grenade    1
## 48214              propeller accidently    1
## 48215                   propeller after    1
## 48216                propeller assembly    1
## 48217                      propeller at    1
## 48218           propeller autofeathered    1
## 48219                   propeller began    1
## 48220                     propeller but    1
## 48221                 propeller crashed    1
## 48222                  propeller cruise    1
## 48223                 propeller deicing    1
## 48224                 propeller despite    1
## 48225                  propeller during    1
## 48226                  propeller flight    1
## 48227                propeller followed    1
## 48228               propeller following    1
## 48229                     propeller hit    1
## 48230                     propeller hub    1
## 48231                     propeller ice    1
## 48232                      propeller it    1
## 48233                 propeller leading    1
## 48234                     propeller may    1
## 48235                      propeller no    1
## 48236               propeller operation    1
## 48237                    propeller over    1
## 48238                propeller pressure    1
## 48239                propeller reverser    1
## 48240                     propeller rpm    1
## 48241               propeller separated    1
## 48242                   propeller shaft    1
## 48243                  propeller showed    1
## 48244                    propeller that    1
## 48245                    propeller this    1
## 48246                     propeller two    1
## 48247                   propeller while    1
## 48248             propeller windmilling    1
## 48249                propellers adverse    1
## 48250                    propellers and    1
## 48251                     propellers at    1
## 48252                   propellers back    1
## 48253               propellers detached    1
## 48254              propellers exhibited    1
## 48255              propellers feathered    1
## 48256                    propellers out    1
## 48257                   propellers over    1
## 48258                    propellers the    1
## 48259                     propellers to    1
## 48260                propellers touched    1
## 48261                  propellers which    1
## 48262                      propellor to    1
## 48263                   proper aircraft    1
## 48264                   proper airplane    1
## 48265                   proper airspace    1
## 48266                   proper altitude    1
## 48267                        proper and    1
## 48268                   proper attitude    1
## 48269                  proper clearance    1
## 48270             proper communications    1
## 48271                   proper crossing    1
## 48272                   proper decision    1
## 48273                     proper degree    1
## 48274                  proper direction    1
## 48275                  proper emergency    1
## 48276                      proper flaps    1
## 48277                       proper fuel    1
## 48278                  proper glidepath    1
## 48279                         proper go    1
## 48280                    proper landing    1
## 48281                       proper look    1
## 48282                    proper lookout    1
## 48283                proper maintenance    1
## 48284                 proper monitoring    1
## 48285               proper navigational    1
## 48286                   proper position    1
## 48287                   proper practice    1
## 48288                        proper pre    1
## 48289                proper preparation    1
## 48290                  proper procedure    1
## 48291                      proper radio    1
## 48292                   proper reaction    1
## 48293                        proper see    1
## 48294                    proper setting    1
## 48295                  proper touchdown    1
## 48296                      proper track    1
## 48297                   proper training    1
## 48298                     proper travel    1
## 48299                    proper weather    1
## 48300                  properly aligned    1
## 48301                      properly and    1
## 48302                       properly as    1
## 48303                  properly because    1
## 48304              properly communicate    1
## 48305               properly compensate    1
## 48306                  properly conduct    1
## 48307                properly connected    1
## 48308                  properly control    1
## 48309                  properly correct    1
## 48310                  properly crashed    1
## 48311                   properly during    1
## 48312                 properly evaluate    1
## 48313                   properly follow    1
## 48314              properly functioning    1
## 48315               properly initialize    1
## 48316                     properly just    1
## 48317                     properly load    1
## 48318                   properly loaded    1
## 48319                   properly locked    1
## 48320                   properly midair    1
## 48321                  properly perform    1
## 48322                     properly plan    1
## 48323                 properly prepared    1
## 48324                properly recognize    1
## 48325                   properly repair    1
## 48326                 properly repaired    1
## 48327                  properly respond    1
## 48328                properly resulting    1
## 48329                properly safeguard    1
## 48330                   properly secure    1
## 48331                 properly selected    1
## 48332                       properly so    1
## 48333                   properly stowed    1
## 48334                  properly tighten    1
## 48335                  properly trained    1
## 48336                    properly while    1
## 48337                         props had    1
## 48338                  prosecutors said    1
## 48339             prospective customers    1
## 48340                       protect the    1
## 48341                  protecting other    1
## 48342                    protecting the    1
## 48343                  protection alpha    1
## 48344                   protection from    1
## 48345                protection leading    1
## 48346                    protection not    1
## 48347                protection service    1
## 48348                protection systems    1
## 48349                  protection while    1
## 48350                  protections that    1
## 48351                       proven case    1
## 48352                    proven crashed    1
## 48353                        proven due    1
## 48354                        proven the    1
## 48355                       proven this    1
## 48356                    provence there    1
## 48357                  provide accurate    1
## 48358                        provide an    1
## 48359                       provide but    1
## 48360                 provide collision    1
## 48361                      provide crew    1
## 48362                       provide its    1
## 48363                provide sufficient    1
## 48364                        provided a    1
## 48365                    provided extra    1
## 48366                       provided in    1
## 48367             provided insufficient    1
## 48368               provided redundancy    1
## 48369                    providence the    1
## 48370              providing sufficient    1
## 48371                       province of    1
## 48372                     province some    1
## 48373                      province the    1
## 48374                      provinces of    1
## 48375                       proving his    1
## 48376                    provisions for    1
## 48377                     provisions of    1
## 48378                        provoked a    1
## 48379                proximity warnings    1
## 48380                    proximity with    1
## 48381                          psa crew    1
## 48382                 psa transmissions    1
## 48383                           psa two    1
## 48384                           psa was    1
## 48385                   psycho physical    1
## 48386            psychoemotional stress    1
## 48387             psychological factors    1
## 48388                 psychology degree    1
## 48389                         pt2 probe    1
## 48390                     ptolemy while    1
## 48391                         pty after    1
## 48392                            pub in    1
## 48393                       public road    1
## 48394                     public square    1
## 48395                 public statements    1
## 48396                publication weekly    1
## 48397                     publicist and    1
## 48398                   publicist kenny    1
## 48399                  publicized trial    1
## 48400                published decision    1
## 48401               published departure    1
## 48402                  published minima    1
## 48403                published minimums    1
## 48404                     published non    1
## 48405               published operating    1
## 48406             published operational    1
## 48407               published procedure    1
## 48408                published standard    1
## 48409                         puc servo    1
## 48410                     pucallpa when    1
## 48411                      puente hills    1
## 48412                      puerto montt    1
## 48413                      puerto ordaz    1
## 48414                      puerto rican    1
## 48415                   puerto vallarta    1
## 48416                           puff of    1
## 48417                       pulama pali    1
## 48418                    pulaski county    1
## 48419                         pull back    1
## 48420                          pull her    1
## 48421                          pull ups    1
## 48422                         pulled 45    1
## 48423                          pulled a    1
## 48424                        pulled all    1
## 48425                       pulled back    1
## 48426                   pulled disabled    1
## 48427                        pulled her    1
## 48428                         pulled on    1
## 48429                       pulled onto    1
## 48430                        pulled out    1
## 48431                      pulling back    1
## 48432                   pulling circuit    1
## 48433                        pullup was    1
## 48434                   pulverized into    1
## 48435                        puma while    1
## 48436                        pump drive    1
## 48437                         pump fuel    1
## 48438                          pump led    1
## 48439                    pump mechanics    1
## 48440                      pump seizure    1
## 48441                        pump shaft    1
## 48442                          pump the    1
## 48443                        pump while    1
## 48444                    pump.the crash    1
## 48445                       pumped free    1
## 48446                   pumping station    1
## 48447                          pumps on    1
## 48448                   pumps supplying    1
## 48449                         pumps the    1
## 48450                        pumps when    1
## 48451                       puncak jaya    1
## 48452                     punctured one    1
## 48453                     puncturing it    1
## 48454                           puno in    1
## 48455                      punta islita    1
## 48456                       punta raisi    1
## 48457                       purchased 1    1
## 48458                    purchased life    1
## 48459                     purchased the    1
## 48460                     purchased two    1
## 48461            purification equipment    1
## 48462                        purpose of    1
## 48463                purser.the failure    1
## 48464                      pursued from    1
## 48465                pursuing suspected    1
## 48466                        pursuit to    1
## 48467                        push force    1
## 48468                         push pull    1
## 48469                       pushed back    1
## 48470                       pushed down    1
## 48471                    pushed forward    1
## 48472                       pushed into    1
## 48473                         pushed on    1
## 48474                        pushed the    1
## 48475                 pusher activation    1
## 48476                          put back    1
## 48477                          put down    1
## 48478                           put out    1
## 48479                      put together    1
## 48480                    putre mountain    1
## 48481                       putting his    1
## 48482                       putting out    1
## 48483                    putting strain    1
## 48484                 putting survivors    1
## 48485                       putting the    1
## 48486                             pw 9d    1
## 48487                       pyanj river    1
## 48488                        pylon also    1
## 48489                        pylon from    1
## 48490                    pylon improper    1
## 48491                     pylon support    1
## 48492                         pylon was    1
## 48493                        pyrenees 5    1
## 48494                  pyrenees crashed    1
## 48495                   pyrenees during    1
## 48496                pyrenees mountains    1
## 48497                   qaeda terrorist    1
## 48498                      qantas crews    1
## 48499                        qantas for    1
## 48500                        qantas the    1
## 48501                           qfe and    1
## 48502                       qfe contact    1
## 48503                        qfe during    1
## 48504                           qnh and    1
## 48505                       qnh instead    1
## 48506                        qnh rather    1
## 48507                       qnh setting    1
## 48508                         qnh value    1
## 48509                       quadrant of    1
## 48510                  qualification as    1
## 48511                  qualification of    1
## 48512                 qualifications of    1
## 48513                     qualified the    1
## 48514                       quality and    1
## 48515                 quality assurance    1
## 48516               quantity indication    1
## 48517              quantity information    1
## 48518                    quantity sight    1
## 48519                       quantity to    1
## 48520                    quarry between    1
## 48521                 quebec detonation    1
## 48522               queen lili'uokalani    1
## 48523                        queens the    1
## 48524                    queensland and    1
## 48525                         quemoy at    1
## 48526                        quemoy the    1
## 48527                 quentin roosevelt    1
## 48528                 question remained    1
## 48529          questionable information    1
## 48530                      quetame hill    1
## 48531                         quetta in    1
## 48532                          qui nhon    1
## 48533                   quick reference    1
## 48534                      quick rudder    1
## 48535                 quicker emergency    1
## 48536                       quickly and    1
## 48537                        quickly as    1
## 48538                  quickly becoming    1
## 48539                 quickly corrected    1
## 48540                  quickly engulfed    1
## 48541              quickly extinguished    1
## 48542                quickly identified    1
## 48543                        quickly in    1
## 48544                   quickly leading    1
## 48545                   quickly moments    1
## 48546                quickly overturned    1
## 48547                  quickly pointing    1
## 48548                 quickly undershot    1
## 48549                       quill shaft    1
## 48550                          quit and    1
## 48551                       quit before    1
## 48552                          quit but    1
## 48553                     quite quickly    1
## 48554                        quite sick    1
## 48555                       quito after    1
## 48556                    quito mariscal    1
## 48557                       quito pilot    1
## 48558                         quito the    1
## 48559                          quote as    1
## 48560                              r 6d    1
## 48561                              r in    1
## 48562                     r incorrectly    1
## 48563                               r t    1
## 48564                               r w    1
## 48565                           r31 the    1
## 48566                           r34 and    1
## 48567                             r4 d6    1
## 48568                         r4q plane    1
## 48569                   ra contributory    1
## 48570                            ra may    1
## 48571                          rabat no    1
## 48572                         rabat the    1
## 48573                         race lost    1
## 48574                         racer the    1
## 48575                 rachel youngblood    1
## 48576                       racing drag    1
## 48577                       racing team    1
## 48578                           rack in    1
## 48579                           radar 3    1
## 48580                          radar 35    1
## 48581                    radar advisory    1
## 48582                          radar as    1
## 48583                  radar assistance    1
## 48584                     radar control    1
## 48585                  radar controller    1
## 48586                        radar crew    1
## 48587                        radar data    1
## 48588                   radar different    1
## 48589                 radar disappeared    1
## 48590                 radar environment    1
## 48591                  radar facilities    1
## 48592                       radar fifty    1
## 48593                          radar in    1
## 48594                 radar inoperative    1
## 48595                        radar john    1
## 48596                        radar just    1
## 48597                        radar lack    1
## 48598                          radar of    1
## 48599                    radar reported    1
## 48600                     radar returns    1
## 48601                    radar revealed    1
## 48602                      radar runway    1
## 48603                      radar showed    1
## 48604                       radar tower    1
## 48605                     radar tracker    1
## 48606                     radar traffic    1
## 48607                     radar vectors    1
## 48608                        radar view    1
## 48609                         radar was    1
## 48610                       radar which    1
## 48611                        radar with    1
## 48612                    radars relying    1
## 48613                     radial midair    1
## 48614                  radiatiors power    1
## 48615                         radio aid    1
## 48616                        radio aids    1
## 48617                    radio altitude    1
## 48618                         radio and    1
## 48619                     radio antenna    1
## 48620                  radio assistance    1
## 48621                     radio beacons    1
## 48622                       radio calls    1
## 48623                  radio challenges    1
## 48624                radio conversation    1
## 48625                     radio crashed    1
## 48626                   radio equipment    1
## 48627                     radio failure    1
## 48628                   radio financial    1
## 48629                         radio fix    1
## 48630                  radio navigation    1
## 48631                     radio officer    1
## 48632                          radio or    1
## 48633                      radio placed    1
## 48634                    radio problems    1
## 48635                     radio signals    1
## 48636                radio surveillance    1
## 48637                   radio technical    1
## 48638                         radio the    1
## 48639                     radio traffic    1
## 48640               radio transmissions    1
## 48641                radio transmitters    1
## 48642                        radioed an    1
## 48643              radioed experiencing    1
## 48644                       radioed for    1
## 48645                       radioed the    1
## 48646                 radiographs taken    1
## 48647                      radioing its    1
## 48648                     radioing they    1
## 48649                radiosonde weather    1
## 48650                      radius fifty    1
## 48651                         radius of    1
## 48652                          raf avro    1
## 48653                       raf bombers    1
## 48654                           raf the    1
## 48655                           rãƒâ ur    1
## 48656                     rãƒâ­o grande    1
## 48657                      rafik hariri    1
## 48658                          raft for    1
## 48659                        rafts were    1
## 48660                     rahman dadman    1
## 48661                          rai bali    1
## 48662                           raid by    1
## 48663                     raid wreckage    1
## 48664                         raidant a    1
## 48665                           rail in    1
## 48666                         rail yard    1
## 48667                  railroad freight    1
## 48668                   railroad tracks    1
## 48669                railway embankment    1
## 48670                     railway track    1
## 48671                          rain 100    1
## 48672                           rain 44    1
## 48673                           rain an    1
## 48674                   rain associated    1
## 48675                       rain became    1
## 48676                        rain bound    1
## 48677                    rain captain's    1
## 48678                     rain collided    1
## 48679                    rain continued    1
## 48680                      rain control    1
## 48681                         rain crew    1
## 48682                    rain divergent    1
## 48683                        rain drops    1
## 48684                       rain during    1
## 48685                     rain fluxgate    1
## 48686                    rain following    1
## 48687                       rain forest    1
## 48688                         rain high    1
## 48689                           rain it    1
## 48690                    rain lightning    1
## 48691                          rain low    1
## 48692                   rain navigation    1
## 48693                           rain on    1
## 48694                      rain overran    1
## 48695                     rain overshot    1
## 48696                    rain repellant    1
## 48697                        rain slick    1
## 48698                         rain snow    1
## 48699                        rain storm    1
## 48700                         rain they    1
## 48701                           rain to    1
## 48702                        rain which    1
## 48703                         rain wind    1
## 48704                       rainand fog    1
## 48705                  raindeer hunters    1
## 48706                    rainer crashed    1
## 48707                rainforest terrain    1
## 48708                        rainger 41    1
## 48709                        rainier at    1
## 48710                      raining with    1
## 48711                        rains poor    1
## 48712                       rains while    1
## 48713                       rainstorm 6    1
## 48714               rainstorm continued    1
## 48715                 rainstorm failure    1
## 48716                    rainstorm into    1
## 48717                   rainstorm while    1
## 48718       rainstorm.premature descent    1
## 48719                  rainy conditions    1
## 48720                          raise of    1
## 48721                        raised and    1
## 48722                     raisi airport    1
## 48723                  rajawali housing    1
## 48724                     ralph rainger    1
## 48725                           ram air    1
## 48726                        ramada inn    1
## 48727                         ramadi at    1
## 48728                       rammed into    1
## 48729                   ramon magsaysay    1
## 48730                          ramon on    1
## 48731                  ramon overloaded    1
## 48732                  ramone mountains    1
## 48733                     ramos failure    1
## 48734                 ramp accidentally    1
## 48735                           ramp at    1
## 48736                       ramp caused    1
## 48737                         ramp door    1
## 48738                       ramp opened    1
## 48739                    ramp personnel    1
## 48740                         ramp with    1
## 48741                       ramsey lost    1
## 48742                      ramzi yousef    1
## 48743                             ran 3    1
## 48744                          ran 343m    1
## 48745                          ran long    1
## 48746                           ran low    1
## 48747                 rancheria pilot's    1
## 48748                   ranches several    1
## 48749                   randolph hearst    1
## 48750                      randy rhoads    1
## 48751                          range 10    1
## 48752                    range aircraft    1
## 48753                      range course    1
## 48754                     range crashed    1
## 48755                       range drops    1
## 48756                         range due    1
## 48757                      range flying    1
## 48758                        range just    1
## 48759                          range of    1
## 48760                          range on    1
## 48761                   range resulting    1
## 48762                   range technique    1
## 48763                          range to    1
## 48764                    range wreckage    1
## 48765                      ranging from    1
## 48766                       rangoon and    1
## 48767                        rangoon to    1
## 48768                ranking australian    1
## 48769                  ranking generals    1
## 48770                  ranking officers    1
## 48771                 ranking officials    1
## 48772                         raphel 45    1
## 48773               rapid decompression    1
## 48774                   rapid explosive    1
## 48775                     rapid pitchup    1
## 48776                        rapid pull    1
## 48777                        rapid rate    1
## 48778                    rapid rearward    1
## 48779                   rapid reduction    1
## 48780                  rapid structural    1
## 48781                         rapid use    1
## 48782                     rapidly above    1
## 48783               rapidly accompanied    1
## 48784                        rapidly at    1
## 48785                  rapidly changing    1
## 48786                 rapidly descended    1
## 48787                rapidly descending    1
## 48788             rapidly deteriorating    1
## 48789                      rapidly from    1
## 48790                    rapidly losing    1
## 48791                     rapidly nosed    1
## 48792                        rapidly on    1
## 48793                     rapidly pilot    1
## 48794                    rapidly struck    1
## 48795                        rapidly to    1
## 48796                   rapidly veering    1
## 48797                  rapidly wreckage    1
## 48798                          rashed a    1
## 48799                     rast comedian    1
## 48800                        rate after    1
## 48801                           rate at    1
## 48802                     rate attitude    1
## 48803                          rate but    1
## 48804                        rate could    1
## 48805                       rate crew's    1
## 48806                   rate incredibly    1
## 48807                         rate into    1
## 48808                         rate most    1
## 48809                       rate spiral    1
## 48810                          rate the    1
## 48811                         rate when    1
## 48812                        rate while    1
## 48813                      rate without    1
## 48814                         rated and    1
## 48815                  rated commercial    1
## 48816                         rated for    1
## 48817                        rated lost    1
## 48818                         rated the    1
## 48819                        rates that    1
## 48820                         rates the    1
## 48821                       rather took    1
## 48822                         ratio epr    1
## 48823                        ratio read    1
## 48824                 ratmalana airport    1
## 48825                 rattlesnake butte    1
## 48826                          ravine 6    1
## 48827                    ravine actress    1
## 48828                   ravine adjacent    1
## 48829                   ravine bursting    1
## 48830                     ravine coming    1
## 48831                       ravine crew    1
## 48832                         ravine in    1
## 48833                       ravine into    1
## 48834                      ravine there    1
## 48835                          raw data    1
## 48836                    rawalpindi the    1
## 48837                       ray vaughan    1
## 48838                raytheon aerospace    1
## 48839                           rcaf cf    1
## 48840                      rcaf harvard    1
## 48841                        re applied    1
## 48842                      re establish    1
## 48843                       re extended    1
## 48844                             re iv    1
## 48845                         re landed    1
## 48846                       re starting    1
## 48847                         re starts    1
## 48848                           reach a    1
## 48849                          reach an    1
## 48850                        reach area    1
## 48851                       reach areas    1
## 48852                   reach cleveland    1
## 48853                         reach his    1
## 48854                       reach lajes    1
## 48855                    reach palmdale    1
## 48856                  reach passengers    1
## 48857                    reach peshawar    1
## 48858                     reach takeoff    1
## 48859                     reach whyalla    1
## 48860                    reached 23,000    1
## 48861                        reached 90    1
## 48862                    reached caused    1
## 48863                  reached cruising    1
## 48864                       reached due    1
## 48865                     reached fl230    1
## 48866                   reached forward    1
## 48867                       reached its    1
## 48868               reached livingstone    1
## 48869                 reached mountains    1
## 48870                      reached poor    1
## 48871                    reached runway    1
## 48872                        reached v2    1
## 48873                    reaching 1,500    1
## 48874                   reaching behind    1
## 48875                       reaching fl    1
## 48876                    reaching fl200    1
## 48877                  reaching forward    1
## 48878                      reaching its    1
## 48879                    reaching kxndb    1
## 48880                  reaching mimimum    1
## 48881                    reaching rabat    1
## 48882                  reaching uruapan    1
## 48883                 react immediately    1
## 48884                          react in    1
## 48885                         react nor    1
## 48886              reacted inadequately    1
## 48887           reacted inappropriately    1
## 48888               reacted incorrectly    1
## 48889                       reaction by    1
## 48890                     reaction time    1
## 48891                   reaction within    1
## 48892                    reactivated at    1
## 48893                  read instruments    1
## 48894                          read the    1
## 48895                         read zero    1
## 48896                 readily available    1
## 48897              reading calculations    1
## 48898                    reading caused    1
## 48899                  reading possible    1
## 48900                        readings a    1
## 48901                     readings from    1
## 48902                  readings leading    1
## 48903                     readings were    1
## 48904                     readings when    1
## 48905                       readout was    1
## 48906                          ready if    1
## 48907                          ready to    1
## 48908                        real cause    1
## 48909                    real emergency    1
## 48910                        real plane    1
## 48911                      real problem    1
## 48912                         real time    1
## 48913                   realign himself    1
## 48914                      reality show    1
## 48915                      realize from    1
## 48916                       realize how    1
## 48917                     realize their    1
## 48918                      realize they    1
## 48919                       realized he    1
## 48920                       realized it    1
## 48921                     realizing his    1
## 48922                  realizing sooner    1
## 48923                    realizing they    1
## 48924                       really were    1
## 48925                  reappeared there    1
## 48926                  reappearing once    1
## 48927                  reapplication of    1
## 48928                    rear auxillary    1
## 48929                         rear exit    1
## 48930                   rear lavoratory    1
## 48931                      rear loading    1
## 48932                       rear master    1
## 48933                     rear pressure    1
## 48934                        rear rotor    1
## 48935                          rear the    1
## 48936                         rear they    1
## 48937                       rear toilet    1
## 48938                  rearmost vehicle    1
## 48939                   rearward during    1
## 48940                rearward migration    1
## 48941                 rearward movement    1
## 48942                         reas from    1
## 48943                    reason appears    1
## 48944                      reason below    1
## 48945                       reason crew    1
## 48946                     reason during    1
## 48947                      reason other    1
## 48948                    reason shortly    1
## 48949                      reason three    1
## 48950                         reason to    1
## 48951               reason undetermined    1
## 48952                    reason unknown    1
## 48953                      reason water    1
## 48954                        reason why    1
## 48955                 reasonable notice    1
## 48956                   reasonable time    1
## 48957               reasonably believed    1
## 48958                         reasons a    1
## 48959                       reasons and    1
## 48960                        reasons as    1
## 48961                      reasons both    1
## 48962                     reasons could    1
## 48963                      reasons crew    1
## 48964                  reasons deviated    1
## 48965                   reasons ditched    1
## 48966                    reasons engine    1
## 48967                   reasons failure    1
## 48968                 reasons following    1
## 48969                        reasons in    1
## 48970                       reasons led    1
## 48971                     reasons pilot    1
## 48972                  reasons possible    1
## 48973                  reasons probably    1
## 48974                      reasons shot    1
## 48975                    reasons twenty    1
## 48976                       reasons why    1
## 48977                      reasons with    1
## 48978                    reassembly and    1
## 48979                     reba mcentire    1
## 48980                    rebel movement    1
## 48981                         rebels 20    1
## 48982                         rebels 30    1
## 48983                         rebels an    1
## 48984                         rebels as    1
## 48985                         rebels at    1
## 48986                    rebels brought    1
## 48987                    rebels claimed    1
## 48988                    rebels control    1
## 48989                    rebels however    1
## 48990                 rebels inadequate    1
## 48991                       rebels near    1
## 48992                         rebels on    1
## 48993                    rebels shortly    1
## 48994                     rebels struck    1
## 48995                        rebels two    1
## 48996                        rebels was    1
## 48997                      rebels while    1
## 48998                     rebounded and    1
## 48999                        rebuilt to    1
## 49000                   recalculate the    1
## 49001                        received 2    1
## 49002                        received 5    1
## 49003            received contradictory    1
## 49004                    received fatal    1
## 49005               received indicating    1
## 49006                    received prior    1
## 49007                   received recent    1
## 49008                  received serious    1
## 49009                     received that    1
## 49010                    received while    1
## 49011              receiver instruments    1
## 49012                  receiver leaving    1
## 49013                      receiver the    1
## 49014                      receivers in    1
## 49015          receivers unintelligible    1
## 49016                    receivers were    1
## 49017                       receives an    1
## 49018                       receiving a    1
## 49019           receiving contradictory    1
## 49020               receiving including    1
## 49021            receiving supplemental    1
## 49022                     recent engine    1
## 49023               recent malfunctions    1
## 49024                   recent training    1
## 49025                 recently arrested    1
## 49026                recently departing    1
## 49027                recently installed    1
## 49028                recently undergone    1
## 49029                      receptical a    1
## 49030                      reckless and    1
## 49031                  reckless conduct    1
## 49032                   recklessness of    1
## 49033                   recognition and    1
## 49034                    recognition of    1
## 49035                       recognize a    1
## 49036                 recognize address    1
## 49037                      recognize an    1
## 49038                 recognize crashed    1
## 49039                     recognize his    1
## 49040                      recognize or    1
## 49041                 recognize passage    1
## 49042                    recognize that    1
## 49043                   recognize these    1
## 49044               recognize windshear    1
## 49045                    recognized and    1
## 49046                     recognized as    1
## 49047              recommendation which    1
## 49048                    recommended 25    1
## 49049              recommended altitude    1
## 49050        recommended communications    1
## 49051             recommended departure    1
## 49052               recommended descent    1
## 49053             recommended procedure    1
## 49054                 recommended route    1
## 49055                  recommended that    1
## 49056                    recommended to    1
## 49057                    record attempt    1
## 49058                    record heavily    1
## 49059                         record of    1
## 49060                 recorded airplane    1
## 49061                recorder indicated    1
## 49062               recorder transcript    1
## 49063                      recorder was    1
## 49064                    recorder which    1
## 49065                    recorders show    1
## 49066                    recordings the    1
## 49067                    records showed    1
## 49068                       records the    1
## 49069                       recover and    1
## 49070                        recover by    1
## 49071                   recover control    1
## 49072                        recover on    1
## 49073                   recover stalled    1
## 49074                        recover to    1
## 49075                     recover while    1
## 49076               recoverable because    1
## 49077                      recovered 03    1
## 49078                       recovered 8    1
## 49079                   recovered after    1
## 49080                     recovered but    1
## 49081                 recovered crashed    1
## 49082                 recovered failure    1
## 49083                    recovered from    1
## 49084                 recovered shortly    1
## 49085                  recovered though    1
## 49086                    recovered when    1
## 49087                    recovered with    1
## 49088                   recovering from    1
## 49089                       recovery at    1
## 49090                  recovery attempt    1
## 49091                   recovery before    1
## 49092                       recovery by    1
## 49093                  recovery crashed    1
## 49094                       recovery it    1
## 49095                 recovery maneuver    1
## 49096                 recovery nineteen    1
## 49097                       recovery on    1
## 49098                    recovery pilot    1
## 49099                recovery procedure    1
## 49100               recovery procedures    1
## 49101                   recovery struck    1
## 49102               recovery techniques    1
## 49103                    recovery which    1
## 49104                    recovery while    1
## 49105                recurrent training    1
## 49106                        red airway    1
## 49107                         red baron    1
## 49108                          red neon    1
## 49109                         red river    1
## 49110                        red tailed    1
## 49111                   redbank trailer    1
## 49112                        redding 26    1
## 49113                     redesigned to    1
## 49114                  redondo mountain    1
## 49115                          reduce a    1
## 49116                       reduce bird    1
## 49117                       reduce drag    1
## 49118                      reduce speed    1
## 49119                        reduce the    1
## 49120                     reduced after    1
## 49121                        reduced at    1
## 49122               reduced directional    1
## 49123                    reduced flight    1
## 49124                      reduced from    1
## 49125                       reduced his    1
## 49126                   reduced lateral    1
## 49127                        reduced on    1
## 49128                reduced presumably    1
## 49129                 reduced stiffness    1
## 49130                   reduced takeoff    1
## 49131                      reducing air    1
## 49132                 reducing airspeed    1
## 49133                    reducing power    1
## 49134                    reducing their    1
## 49135                     reducing time    1
## 49136                    reduction gear    1
## 49137                     reduction the    1
## 49138             redundancy comparable    1
## 49139                    redwood forest    1
## 49140                          reed was    1
## 49141                  reelection metal    1
## 49142                         reeves 40    1
## 49143                        reeves was    1
## 49144                   reference after    1
## 49145                  reference caused    1
## 49146                     reference due    1
## 49147                reference handbook    1
## 49148                 reference however    1
## 49149                      reference in    1
## 49150                    reference lack    1
## 49151                      reference of    1
## 49152                      reference or    1
## 49153                    reference over    1
## 49154                  reference points    1
## 49155                   reference speed    1
## 49156              reference stabilizer    1
## 49157                    reference unit    1
## 49158                   reference using    1
## 49159                  references after    1
## 49160                     references at    1
## 49161                 references before    1
## 49162               references required    1
## 49163                    references the    1
## 49164                     references to    1
## 49165                  references which    1
## 49166                  references while    1
## 49167                      referring to    1
## 49168                      refuel after    1
## 49169                         refuel at    1
## 49170                    refuel because    1
## 49171                    refuel crashed    1
## 49172                       refuel when    1
## 49173                     refueled with    1
## 49174                refueling collided    1
## 49175                refueling directly    1
## 49176                      refueling in    1
## 49177                 refueling mission    1
## 49178                      refueling of    1
## 49179                     refueling one    1
## 49180                refueling practice    1
## 49181                      refuelled at    1
## 49182                    refugee flight    1
## 49183                       refused and    1
## 49184                       refused due    1
## 49185                        refused he    1
## 49186                   refused insects    1
## 49187                   refused weather    1
## 49188                   regain altitude    1
## 49189                     regain contol    1
## 49190                       regain lift    1
## 49191                       regain some    1
## 49192                        regained a    1
## 49193                      regained and    1
## 49194                       regained at    1
## 49195                       regarding a    1
## 49196                 regarding company    1
## 49197          regarding manufacturer's    1
## 49198                 regarding terrain    1
## 49199                    regardless the    1
## 49200                        regime and    1
## 49201                        regime the    1
## 49202                     regina during    1
## 49203                        region and    1
## 49204               region approximaely    1
## 49205                         region in    1
## 49206                    region killing    1
## 49207                       region near    1
## 49208                    region shortly    1
## 49209                      region while    1
## 49210                   regional ground    1
## 49211                   regional health    1
## 49212                     regional park    1
## 49213                       regions and    1
## 49214                        regions in    1
## 49215                       regions the    1
## 49216                 registered n13067    1
## 49217                     regretted the    1
## 49218               regularly scheduled    1
## 49219                      regulate the    1
## 49220                    regulation the    1
## 49221                   regulations and    1
## 49222                regulations caused    1
## 49223                   regulations did    1
## 49224                  regulations part    1
## 49225               regulations require    1
## 49226               regulations strayed    1
## 49227                 regulator crashed    1
## 49228                           rein 34    1
## 49229                       reinstall a    1
## 49230                         reject or    1
## 49231                     rejecting the    1
## 49232                      rejection of    1
## 49233                     related cloud    1
## 49234              related deficiencies    1
## 49235                   related factors    1
## 49236                       related the    1
## 49237         related.circumstances the    1
## 49238              relationship between    1
## 49239             relative inexperience    1
## 49240                     relative lack    1
## 49241                 relative position    1
## 49242                   relatively high    1
## 49243                    relatively new    1
## 49244              relatively untrained    1
## 49245                      relatives of    1
## 49246                      relay during    1
## 49247                    relay provided    1
## 49248                         relay the    1
## 49249                        release of    1
## 49250                       release the    1
## 49251                        released a    1
## 49252                     released from    1
## 49253                    released fumes    1
## 49254                     releasing the    1
## 49255                   reliable visual    1
## 49256                       reliance on    1
## 49257                     reliance upon    1
## 49258                       relied upon    1
## 49259                   relief diverted    1
## 49260                    relief efforts    1
## 49261                      relief first    1
## 49262                      relief items    1
## 49263                         relief of    1
## 49264                 relief operations    1
## 49265                       relight one    1
## 49266                     relighting of    1
## 49267                     relights were    1
## 49268                         relit and    1
## 49269                          relit no    1
## 49270                      relying only    1
## 49271                    remained alone    1
## 49272                     remained half    1
## 49273                   remained locked    1
## 49274                     remained lost    1
## 49275                     remained open    1
## 49276                       remained to    1
## 49277               remained undetected    1
## 49278                   remaining after    1
## 49279               remaining available    1
## 49280            remaining contributing    1
## 49281                remaining distance    1
## 49282                    remaining four    1
## 49283                 remaining gasbags    1
## 49284                  remaining locked    1
## 49285                      remaining of    1
## 49286               remaining survivors    1
## 49287                      remaining to    1
## 49288                    remaining wing    1
## 49289                        remains at    1
## 49290                     remains found    1
## 49291                      remains were    1
## 49292                     remains would    1
## 49293                  remedial options    1
## 49294                          remedy a    1
## 49295               remedy deficiencies    1
## 49296                       remorse for    1
## 49297                 remote aboriginal    1
## 49298                     remote andean    1
## 49299                    remote control    1
## 49300                      remote field    1
## 49301                    remote fishing    1
## 49302                 remote indonesian    1
## 49303                    remote jungles    1
## 49304                    remote landing    1
## 49305                   remote mountain    1
## 49306                 remote mountanous    1
## 49307                        remote oil    1
## 49308                    remote outback    1
## 49309                     remote region    1
## 49310                       remote town    1
## 49311                     removal after    1
## 49312                     remove galley    1
## 49313                        remove ice    1
## 49314                        remove u.s    1
## 49315                         removed a    1
## 49316                       removed and    1
## 49317                      removed four    1
## 49318                     removed prior    1
## 49319                      removing all    1
## 49320                      removing his    1
## 49321                      removing the    1
## 49322                    renamed travis    1
## 49323                     rendered both    1
## 49324                rendered difficult    1
## 49325                     rendered many    1
## 49326                rendered reception    1
## 49327                         rene chen    1
## 49328                     reno hospital    1
## 49329                        reno while    1
## 49330                         renoso at    1
## 49331                         renown as    1
## 49332                   rental airplane    1
## 49333                        rental car    1
## 49334                      reopened the    1
## 49335                        repaced as    1
## 49336                    repair fatigue    1
## 49337                         repair of    1
## 49338                 repair techniques    1
## 49339                       repaired at    1
## 49340                      repaired one    1
## 49341                     repaired this    1
## 49342                        repairs of    1
## 49343                      repeat their    1
## 49344                    repeated alarm    1
## 49345                repeated automatic    1
## 49346                      repeated the    1
## 49347               repeatedly reported    1
## 49348                  repellant caused    1
## 49349            repetitive malfunction    1
## 49350                        replaced a    1
## 49351                    replaced parts    1
## 49352                      replaced the    1
## 49353                    replaced which    1
## 49354                  replacement crew    1
## 49355                  replacement time    1
## 49356                  replenishing his    1
## 49357                      replied that    1
## 49358                          reply to    1
## 49359                        repo began    1
## 49360                       report also    1
## 49361                         report an    1
## 49362                 report attributed    1
## 49363                  report concludes    1
## 49364                   report confirms    1
## 49365                  report correctly    1
## 49366                       report give    1
## 49367                        report has    1
## 49368                         report in    1
## 49369                       report made    1
## 49370                         report or    1
## 49371                   report released    1
## 49372                   report revealed    1
## 49373                     report states    1
## 49374                       report that    1
## 49375                       report this    1
## 49376                       reported 37    1
## 49377                      reported 500    1
## 49378                    reported along    1
## 49379                      reported and    1
## 49380                      reported bad    1
## 49381                    reported being    1
## 49382                  reported between    1
## 49383                  reported crashed    1
## 49384                       reported en    1
## 49385                  reported failure    1
## 49386                  reported finding    1
## 49387                   reported flying    1
## 49388                     reported fuel    1
## 49389                   reported having    1
## 49390                    reported heavy    1
## 49391                      reported ice    1
## 49392               reported indefinite    1
## 49393                      reported low    1
## 49394           reported malfunctioning    1
## 49395                  reported missing    1
## 49396                      reported not    1
## 49397                  reported passing    1
## 49398                  reported picking    1
## 49399                reported positions    1
## 49400                  reported positon    1
## 49401                 reported reaching    1
## 49402                     reported some    1
## 49403                   reported strong    1
## 49404            reported thunderstorms    1
## 49405                  reported traffic    1
## 49406                  reported trouble    1
## 49407                  reported weather    1
## 49408                 reportedly failed    1
## 49409                   reportedly went    1
## 49410                     reporter were    1
## 49411                      reporting 15    1
## 49412                      reporting at    1
## 49413                   reporting being    1
## 49414              reporting facilities    1
## 49415                    reporting fire    1
## 49416                   reporting ready    1
## 49417                  reporting severe    1
## 49418                       reportly on    1
## 49419                 reports indicated    1
## 49420                       reports say    1
## 49421                   reports suggest    1
## 49422                      reports were    1
## 49423                    reposition the    1
## 49424             representative george    1
## 49425                   reproducing the    1
## 49426                       republic of    1
## 49427                      republic the    1
## 49428              requalification exam    1
## 49429                  request bearings    1
## 49430             request clarification    1
## 49431                       request for    1
## 49432                  request informed    1
## 49433                        request of    1
## 49434                request permission    1
## 49435                     request radar    1
## 49436                     requested atc    1
## 49437                      requested by    1
## 49438                  requested lights    1
## 49439                      requesting a    1
## 49440                       requests to    1
## 49441                      require crew    1
## 49442                 required altitude    1
## 49443                     required anti    1
## 49444                    required climb    1
## 49445                  required crashed    1
## 49446                required equipment    1
## 49447                  required failure    1
## 49448                   required flight    1
## 49449                   required flying    1
## 49450                       required hi    1
## 49451                      required ifr    1
## 49452                     required just    1
## 49453                    required level    1
## 49454                      required one    1
## 49455                     required post    1
## 49456                 required removing    1
## 49457                   required strict    1
## 49458                   required taking    1
## 49459                     required that    1
## 49460                   requirement for    1
## 49461                 requirement there    1
## 49462            requirements contained    1
## 49463                  requirements for    1
## 49464                 requirements that    1
## 49465              requiring helicopter    1
## 49466                 requisite caution    1
## 49467                        rescue all    1
## 49468                       rescue many    1
## 49469                  rescue operation    1
## 49470                 rescue operations    1
## 49471                      rescue party    1
## 49472                 rescue passengers    1
## 49473                       rescue shot    1
## 49474                       rescue team    1
## 49475                      rescue teams    1
## 49476                        rescue the    1
## 49477                         rescued 6    1
## 49478                     rescued cause    1
## 49479                        rescued on    1
## 49480                       rescued six    1
## 49481                       rescued two    1
## 49482                    rescuers could    1
## 49483                     rescuers were    1
## 49484                       rescues and    1
## 49485                  rescuing russian    1
## 49486                      research jet    1
## 49487                      research the    1
## 49488                     researcher in    1
## 49489                       reserve the    1
## 49490                       reservoir a    1
## 49491                   reservoir after    1
## 49492                 reservoir shortly    1
## 49493             reservoirs microburst    1
## 49494                          reset in    1
## 49495                     resetting the    1
## 49496                    resevoir after    1
## 49497                   residence after    1
## 49498                      residence in    1
## 49499                    residences and    1
## 49500           residental neighborhood    1
## 49501                   residential and    1
## 49502              residential building    1
## 49503             residential compounds    1
## 49504              residential district    1
## 49505                  residential home    1
## 49506                residential houses    1
## 49507            residential structures    1
## 49508                  residents flying    1
## 49509                   residents heard    1
## 49510                     residual fire    1
## 49511                      residual ice    1
## 49512                     resilient oil    1
## 49513                      resistant to    1
## 49514                      resonance or    1
## 49515                       resorted to    1
## 49516                     resources the    1
## 49517                      resources to    1
## 49518                   respective jobs    1
## 49519             respond appropriately    1
## 49520               respond erroneously    1
## 49521               respond immediately    1
## 49522                       respond the    1
## 49523                 responded because    1
## 49524             responded incorrectly    1
## 49525                 responded rapidly    1
## 49526                     responded the    1
## 49527                       response by    1
## 49528                      response hit    1
## 49529                       response if    1
## 49530                       response of    1
## 49531                      response one    1
## 49532                     response when    1
## 49533             responsibilities crew    1
## 49534              responsibilities for    1
## 49535               responsibilities of    1
## 49536              responsibility could    1
## 49537                responsibility the    1
## 49538                        rest 1,380    1
## 49539                        rest 2,050    1
## 49540                           rest 40    1
## 49541                            rest a    1
## 49542                        rest about    1
## 49543                           rest as    1
## 49544                        rest break    1
## 49545                        rest error    1
## 49546                      rest fatigue    1
## 49547                          rest off    1
## 49548                    rest partially    1
## 49549                       rest period    1
## 49550                           rest to    1
## 49551                   restart engines    1
## 49552               restart information    1
## 49553                       restart the    1
## 49554                      restart them    1
## 49555                     restarted and    1
## 49556                     restarted but    1
## 49557                     restarted one    1
## 49558                     restarted the    1
## 49559                restarting methods    1
## 49560                    restarting the    1
## 49561                  restaurant after    1
## 49562                restaurant private    1
## 49563                       rested just    1
## 49564                        resting on    1
## 49565                    restoration of    1
## 49566                   restoration was    1
## 49567                    restore engine    1
## 49568                      restore lift    1
## 49569            restored approximately    1
## 49570                      restrain him    1
## 49571                    restrains used    1
## 49572                   restraints made    1
## 49573                   restricted area    1
## 49574                restricted medical    1
## 49575                   restricted most    1
## 49576                    restricted the    1
## 49577                    restriction of    1
## 49578                   restrictions on    1
## 49579            restrictive conditions    1
## 49580                        resuled in    1
## 49581                     result beyond    1
## 49582                        result did    1
## 49583                         result he    1
## 49584                      result japan    1
## 49585                       result lost    1
## 49586                 resultant failure    1
## 49587             resultant inadvertent    1
## 49588                    resulted after    1
## 49589                   resulted either    1
## 49590                      resulted for    1
## 49591                      resultied in    1
## 49592                 resulting control    1
## 49593                    resulting dive    1
## 49594                    resulting drag    1
## 49595               resulting imbalance    1
## 49596             resulting inadvertent    1
## 49597                    resulting loss    1
## 49598               resulting reduction    1
## 49599                     resulting the    1
## 49600                       results the    1
## 49601                   resuming normal    1
## 49602                 resurfaced runway    1
## 49603                      ret position    1
## 49604               retain autothrottle    1
## 49605                        retain the    1
## 49606                retained imprecise    1
## 49607                      retained the    1
## 49608                   retaken control    1
## 49609                   retaliation for    1
## 49610                       retard both    1
## 49611                    retardation of    1
## 49612                      retarding no    1
## 49613                   retention posts    1
## 49614                     retired north    1
## 49615                   retiring midair    1
## 49616                     retract after    1
## 49617                      retract this    1
## 49618                      retracted 20    1
## 49619                       retracted a    1
## 49620                   retracted after    1
## 49621                 retracted causing    1
## 49622                    retracted from    1
## 49623                     retracted one    1
## 49624                retracted position    1
## 49625             retracted prematurely    1
## 49626                   retracted right    1
## 49627                    retracted shot    1
## 49628                retracting halfway    1
## 49629                    retracting the    1
## 49630                  retraction after    1
## 49631             retraction difficulty    1
## 49632                    retreaded tire    1
## 49633                      retrieve the    1
## 49634                  retrofitted with    1
## 49635                    return attempt    1
## 49636                       return home    1
## 49637                    return however    1
## 49638                    return landing    1
## 49639                       return line    1
## 49640                       return more    1
## 49641                    return shortly    1
## 49642                        return the    1
## 49643                        return too    1
## 49644                      return valve    1
## 49645                     return valves    1
## 49646                       return when    1
## 49647                    returned after    1
## 49648                      returned and    1
## 49649                      returned for    1
## 49650                       returned it    1
## 49651                   returning after    1
## 49652                     returning for    1
## 49653                      returning on    1
## 49654                    returning when    1
## 49655                       returns the    1
## 49656                        returnt to    1
## 49657                     reunited with    1
## 49658                          reuse of    1
## 49659                        reuther 63    1
## 49660                          rev isln    1
## 49661                        reveal its    1
## 49662                       revealed an    1
## 49663                  revealed fatigue    1
## 49664              revealed indications    1
## 49665                   revealed lethal    1
## 49666                       reversal in    1
## 49667                       reversal on    1
## 49668                    reversal other    1
## 49669                     reversal that    1
## 49670                      reversal the    1
## 49671                        reverse 10    1
## 49672                     reverse after    1
## 49673                        reverse an    1
## 49674                        reverse as    1
## 49675                    reverse course    1
## 49676                  reverse ejectors    1
## 49677                      reverse idle    1
## 49678                 reverse indicator    1
## 49679                     reverse pitch    1
## 49680                     reverse range    1
## 49681                   reverse rigging    1
## 49682                  reverse thruster    1
## 49683                      reversed and    1
## 49684                  reversed command    1
## 49685                      reversed his    1
## 49686                      reversed the    1
## 49687                  reverser crashed    1
## 49688              reverser deactivated    1
## 49689                reverser excessive    1
## 49690                       reverser in    1
## 49691                       reverser it    1
## 49692                       reverser no    1
## 49693                       reverser on    1
## 49694                     reverser part    1
## 49695                   reverser system    1
## 49696                       reverser to    1
## 49697                    reverser usage    1
## 49698                  reversers failed    1
## 49699                      reverses did    1
## 49700                       reverted to    1
## 49701                         review of    1
## 49702                        review the    1
## 49703                      revine after    1
## 49704                         revine in    1
## 49705                      revine where    1
## 49706                         revoked 6    1
## 49707                       revoked and    1
## 49708                       revoked the    1
## 49709                       revoled and    1
## 49710                   revolution army    1
## 49711               revolutionary guard    1
## 49712                       rey shortly    1
## 49713                   reykjavãƒâ­k to    1
## 49714                    reynosa mexico    1
## 49715                       rez located    1
## 49716                            rh 53d    1
## 49717                        rhein main    1
## 49718                       rhine river    1
## 49719                         rhoads 25    1
## 49720                     rhoads rachel    1
## 49721                         riaf were    1
## 49722                      riau islands    1
## 49723                     ribeiro baiao    1
## 49724                      ribs crashed    1
## 49725                       ribs pelvis    1
## 49726                        rica after    1
## 49727                     rican women's    1
## 49728                          rich via    1
## 49729                     richard nixon    1
## 49730                       richards in    1
## 49731                     richardson 28    1
## 49732                    richardson who    1
## 49733                     richie valens    1
## 49734                    richland after    1
## 49735                    richmond while    1
## 49736                    richthofen the    1
## 49737                    richthofen was    1
## 49738                     rick hendrick    1
## 49739                      rick intveld    1
## 49740                       rick nelson    1
## 49741            rickenbacker president    1
## 49742                          rico air    1
## 49743                      rico crashed    1
## 49744                         rico five    1
## 49745                           rico in    1
## 49746                           rico to    1
## 49747                           rid the    1
## 49748                         ride into    1
## 49749                           ride to    1
## 49750                         ride with    1
## 49751                          ridge 15    1
## 49752                         ridge 200    1
## 49753                           ridge 6    1
## 49754                         ridge 7.5    1
## 49755                          ridge 71    1
## 49756                           ridge 8    1
## 49757                           ridge a    1
## 49758                       ridge about    1
## 49759                       ridge after    1
## 49760                         ridge all    1
## 49761                       ridge along    1
## 49762                      ridge became    1
## 49763                     ridge bounded    1
## 49764                       ridge broke    1
## 49765                     ridge crashed    1
## 49766                      ridge during    1
## 49767                   ridge exploding    1
## 49768                        ridge lost    1
## 49769                    ridge regional    1
## 49770                       ridge short    1
## 49771                     ridge shortly    1
## 49772                       ridge which    1
## 49773                       ridge while    1
## 49774                          riding a    1
## 49775                         riding in    1
## 49776                         riding on    1
## 49777                            rig at    1
## 49778                         rig broke    1
## 49779                      rig improper    1
## 49780                            rig in    1
## 49781                             rig p    1
## 49782                     right aileron    1
## 49783                      right angles    1
## 49784                          right at    1
## 49785                     right because    1
## 49786                     right booster    1
## 49787                         right but    1
## 49788                   right continued    1
## 49789                       right could    1
## 49790                    right downwind    1
## 49791                     right engines    1
## 49792                     right forward    1
## 49793                        right from    1
## 49794                   right generator    1
## 49795                  right horizontal    1
## 49796                          right in    1
## 49797                   right incorrect    1
## 49798                        right nose    1
## 49799                    right outboard    1
## 49800                       right outer    1
## 49801               right overcorrected    1
## 49802                       right pitch    1
## 49803                     right pitched    1
## 49804                        right prop    1
## 49805                       right props    1
## 49806                      right runway    1
## 49807                        right seat    1
## 49808                     right shortly    1
## 49809                        right skid    1
## 49810                        right soon    1
## 49811                  right stabilizer    1
## 49812                   right starboard    1
## 49813                      right struck    1
## 49814                        right tail    1
## 49815                   right tailplane    1
## 49816                        right tank    1
## 49817                        right this    1
## 49818                        right thus    1
## 49819                           rigi at    1
## 49820                    rijeka airport    1
## 49821                    rila mountains    1
## 49822                       rilyadh the    1
## 49823                      rimouski the    1
## 49824                      ring allowed    1
## 49825                          ring and    1
## 49826                         ring cowl    1
## 49827                         ring seal    1
## 49828                          ring was    1
## 49829                     ringani after    1
## 49830                          rings by    1
## 49831                      rio approach    1
## 49832                        rio branco    1
## 49833                     rio caquetãƒâ    1
## 49834                        rio cuarto    1
## 49835                        rio grande    1
## 49836                         rio guape    1
## 49837                     rio magdalena    1
## 49838                       rio orinoco    1
## 49839                          riots at    1
## 49840                        ripped off    1
## 49841                          rise and    1
## 49842                          rise but    1
## 49843                           rise of    1
## 49844                           rise to    1
## 49845                          rising a    1
## 49846                      rising again    1
## 49847                rising mountainous    1
## 49848                   rising position    1
## 49849                    rising rapidly    1
## 49850                         rising so    1
## 49851                       rising tide    1
## 49852                         rising to    1
## 49853                         rising up    1
## 49854                      rising waves    1
## 49855                        risk after    1
## 49856                   risk assessment    1
## 49857                          risk for    1
## 49858                         risks and    1
## 49859                      rivadavia to    1
## 49860                     rivalry among    1
## 49861                         river 1km    1
## 49862                           river 5    1
## 49863                           river a    1
## 49864                    river although    1
## 49865                          river an    1
## 49866                     river because    1
## 49867                        river boat    1
## 49868                        river both    1
## 49869                    river breaking    1
## 49870                          river by    1
## 49871                      river coming    1
## 49872                  river considered    1
## 49873                        river crew    1
## 49874                     river despite    1
## 49875                        river dike    1
## 49876                      river during    1
## 49877                      river engine    1
## 49878                     river finally    1
## 49879                       river found    1
## 49880                      river guiaba    1
## 49881                  river inaccurate    1
## 49882                        river just    1
## 49883                      river leased    1
## 49884                      river making    1
## 49885                     river managed    1
## 49886                      river marine    1
## 49887                     river minutes    1
## 49888                        river near    1
## 49889                        river neva    1
## 49890                         river one    1
## 49891                       river orrin    1
## 49892                        river pier    1
## 49893                       river plate    1
## 49894                        river poor    1
## 49895                       river tagus    1
## 49896                          river to    1
## 49897                      river valley    1
## 49898                        river were    1
## 49899                        river when    1
## 49900                       river which    1
## 49901                         rivera 43    1
## 49902                      rivine while    1
## 49903                       rivit amber    1
## 49904                           rna and    1
## 49905                         rnav gnss    1
## 49906                      rnberg after    1
## 49907                        road about    1
## 49908                           road as    1
## 49909                       road during    1
## 49910                       road french    1
## 49911                           road he    1
## 49912                           road it    1
## 49913                         road just    1
## 49914                      road manager    1
## 49915                         road near    1
## 49916                        road which    1
## 49917                        road while    1
## 49918                       roads which    1
## 49919                      roadway from    1
## 49920                      roadway into    1
## 49921                      roadway slid    1
## 49922                  roadway striking    1
## 49923                       roadway the    1
## 49924                           rob the    1
## 49925                 robbed passengers    1
## 49926                      robert bajac    1
## 49927                         robert bo    1
## 49928                          robert e    1
## 49929                     robert elliot    1
## 49930                       robert loft    1
## 49931                    robert stethem    1
## 49932                  roberto clemente    1
## 49933                    roberto obando    1
## 49934                     robertson and    1
## 49935                        robery and    1
## 49936                   rocca president    1
## 49937                            rock 8    1
## 49938                      rock airport    1
## 49939                     rock arkansas    1
## 49940                        rock cause    1
## 49941                        rock cliff    1
## 49942                      rock covered    1
## 49943                   rock embankment    1
## 49944                           rock in    1
## 49945                      rock outcrop    1
## 49946                         rock pile    1
## 49947                     rock promoter    1
## 49948                        rocker box    1
## 49949                    rocket grenade    1
## 49950                  rocket propelled    1
## 49951                       rockland in    1
## 49952                         rockne 43    1
## 49953                         rocks and    1
## 49954                  rocks dovestones    1
## 49955                 rockwell aircraft    1
## 49956                      rockwell was    1
## 49957                      rocky desert    1
## 49958                       rocky ledge    1
## 49959                    rocky marciano    1
## 49960                    rocky mountain    1
## 49961                      rocky shores    1
## 49962                        rocky wall    1
## 49963                         rod after    1
## 49964                           rod and    1
## 49965                           rod due    1
## 49966                          rod from    1
## 49967                            rod in    1
## 49968                            rod of    1
## 49969                            rod on    1
## 49970                       rod stalled    1
## 49971                          rod that    1
## 49972                            rod to    1
## 49973               roddenberry creator    1
## 49974                      rodeo cowboy    1
## 49975                       rodeo gorge    1
## 49976                       rodeo pampa    1
## 49977                       rodes south    1
## 49978                        rodilla de    1
## 49979                     rodney culver    1
## 49980                    roger peterson    1
## 49981                         roger who    1
## 49982                         rogers 33    1
## 49983                         rogers 56    1
## 49984                      rohtang pass    1
## 49985                            roll a    1
## 49986                  roll accompanied    1
## 49987                roll approximately    1
## 49988                           roll as    1
## 49989                           roll at    1
## 49990               roll awareness.this    1
## 49991                       roll caused    1
## 49992                   roll consistent    1
## 49993              roll controllability    1
## 49994                      roll counter    1
## 49995                          roll due    1
## 49996                      roll factors    1
## 49997                          roll for    1
## 49998                      roll further    1
## 49999                           roll in    1
##  [ reached 'max' / getOption("max.print") -- omitted 11269 rows ]
bigrams_filtered <- sum_bigram %>% 
  separate(bigram, into = c("word1", "word2"), sep = " ") %>% 
  filter(!word1 %in% stop_words$word) %>%
  filter(!word2 %in% stop_words$word)
bigram_count <- bigrams_filtered %>% 
  count(word1, word2, sort = TRUE)
bigram_count
##                        word1                    word2   n
## 1                      plane                  crashed 517
## 2                   aircraft                  crashed 458
## 3                      cargo                    plane 426
## 4                         en                    route 388
## 5                    weather               conditions 278
## 6                       poor                  weather 221
## 7                  emergency                  landing 166
## 8                     engine                  failure 159
## 9                     caught                     fire 134
## 10                   landing                     gear 103
## 11                     final                 approach  98
## 12                     pilot                    error  97
## 13                     heavy                     rain  96
## 14                      poor               visibility  95
## 15                   adverse                  weather  94
## 16                      lost                  control  89
## 17                    engine                   failed  87
## 18                  aircraft                   struck  86
## 19                     plane                   struck  86
## 20                   crashed                  shortly  84
## 21                         1                   engine  79
## 22                      left                   engine  77
## 23                         2                   engine  76
## 24                      left                     wing  74
## 25                    midair                collision  74
## 26                      crew                    error  73
## 27                helicopter                  crashed  72
## 28                     heavy                      fog  68
## 29                    flight                     crew  66
## 30                   landing                  attempt  66
## 31                  aircraft                      hit  62
## 32                   crashed                    short  62
## 33                    struck                    trees  61
## 34               mountainous                  terrain  60
## 35                       low                 altitude  58
## 36                     plane                     lost  58
## 37                       vfr                   flight  58
## 38                instrument                 approach  57
## 39             international                  airport  57
## 40                         â                        â  56
## 41                      mail                    plane  56
## 42                     plane                      hit  56
## 43                       air                    force  52
## 44                      lost                 altitude  52
## 45                    flight                  crashed  50
## 46                controlled                   flight  48
## 47                    missed                 approach  47
## 48                  aircraft                  stalled  46
## 49              contributing                   factor  46
## 50                structural                  failure  46
## 51                  aircraft                     lost  43
## 52                    forced                  landing  41
## 53                     miles                    short  41
## 54                       bad                  weather  40
## 55                     plane                  stalled  40
## 56                     power                    lines  40
## 57                     miles                     east  39
## 58                         3                   engine  38
## 59                         4                   engine  38
## 60                      crew                 reported  38
## 61                     miles                    south  38
## 62                    severe               turbulence  38
## 63                       air                  traffic  37
## 64                       ils                 approach  37
## 65                     miles                    north  37
## 66              navigational                    error  37
## 67                      safe                 altitude  36
## 68                   unknown            circumstances  36
## 69                  aircraft                     flew  35
## 70                     icing               conditions  35
## 71                        dc                        9  34
## 72                      gain                 altitude  34
## 73                     pilot                attempted  34
## 74                     pilot                 reported  34
## 75                     plane                 carrying  34
## 76                   spatial           disorientation  34
## 77                 continued                      vfr  33
## 78                    engine                     fire  33
## 79                     plane                     flew  33
## 80                     crash                   landed  32
## 81                   crashed                  crashed  32
## 82                    engine                  trouble  32
## 83            meteorological               conditions  32
## 84                        ft                 mountain  31
## 85                   holding                  pattern  31
## 86                    runway                threshold  31
## 87                    strong                    winds  31
## 88                    visual                reference  31
## 89                  aircraft                descended  30
## 90                  atlantic                    ocean  30
## 91                       low               visibility  30
## 92                   pilot's                  failure  30
## 93                   reasons                  unknown  30
## 94                    engine                    power  29
## 95                    flight                     fire  29
## 96                       ifr               conditions  29
## 97                     miles                     west  29
## 98                    visual                 approach  29
## 99                    visual                  contact  29
## 100                 airliner                  crashed  28
## 101               conditions                  crashed  28
## 102                       dc                        3  28
## 103                      mid                      air  28
## 104                premature                  descent  28
## 105                  warning                   system  28
## 106                      air                     base  27
## 107                    plane                   landed  27
## 108                       10                    miles  26
## 109             experiencing                   engine  26
## 110                     fuel               starvation  26
## 111                     fuel                     tank  26
## 112               horizontal               stabilizer  26
## 113                 maintain                 altitude  26
## 114                    named                  clipper  26
## 115                   runway                  crashed  26
## 116                        3                    miles  25
## 117                     crew                   failed  25
## 118                   engine                   caught  25
## 119                   flight                   crew's  25
## 120                   flight                     path  25
## 121                       20                    miles  24
## 122                 approach                procedure  24
## 123             contributing                  factors  24
## 124                    dense                      fog  24
## 125                explosive                   device  24
## 126                    plane              disappeared  24
## 127                  unknown                  reasons  24
## 128            deteriorating                  weather  23
## 129                   flight                 engineer  23
## 130                  minimum                     safe  23
## 131                  reduced               visibility  23
## 132                       10                  minutes  22
## 133                 aircraft                    broke  22
## 134                  airport                  crashed  22
## 135                    cargo                     hold  22
## 136                   flying                      vfr  22
## 137                    force                     base  22
## 138               instrument           meteorological  22
## 139                   landed                   safely  22
## 140                     main                    rotor  22
## 141               navigation                    error  22
## 142                    route                  crashed  22
## 143                       15                    miles  21
## 144                        2                    miles  21
## 145                 aircraft                  entered  21
## 146                   crew's                  failure  21
## 147                     feet                    short  21
## 148                       km                    short  21
## 149                      low                   clouds  21
## 150                    steep                     dive  21
## 151                 training                   flight  21
## 152             undetermined                  reasons  21
## 153                     wing                separated  21
## 154                       30                    miles  20
## 155                 aircraft                  overran  20
## 156                 aircraft                      ran  20
## 157                 aircraft                  touched  20
## 158                  control                   system  20
## 159                     crew             coordination  20
## 160                     crew                  fatigue  20
## 161                  descent                 altitude  20
## 162                     fire                  crashed  20
## 163                      hit                    trees  20
## 164                  initial                    climb  20
## 165                    miles                southwest  20
## 166                  minimum                 altitude  20
## 167                  minimum                  descent  20
## 168                    plane                    broke  20
## 169                     test                   flight  20
## 170             thunderstorm                 activity  20
## 171                     wing                   struck  20
## 172                        1                     mile  19
## 173                        5                  minutes  19
## 174                      air                  missile  19
## 175                 approach                   lights  19
## 176                  crashed                       en  19
## 177                 elevator                  control  19
## 178                  fatigue                 fracture  19
## 179                     main                  landing  19
## 180                    miles                northeast  19
## 181                    pitch                  control  19
## 182                    radio                  contact  19
## 183                     salt                     lake  19
## 184                      san                francisco  19
## 185                     snow                  covered  19
## 186                 wreckage                    found  19
## 187                       15                  minutes  18
## 188                       50                    miles  18
## 189                 aircraft                   landed  18
## 190                 improper                      ifr  18
## 191                    level                   flight  18
## 192                 marginal                  weather  18
## 193                    miles                northwest  18
## 194                    miles                southeast  18
## 195                    pilot                  decided  18
## 196                    pilot                     lost  18
## 197                    plane                descended  18
## 198                    plane                  overran  18
## 199              positioning                   flight  18
## 200                  unknown                  crashed  18
## 201                    1,000                       ft  17
## 202                      500                       ft  17
## 203                 aircraft              experienced  17
## 204                     crew                  decided  17
## 205                     dark                    night  17
## 206                  engines                   failed  17
## 207                    error                  crashed  17
## 208                  failure                      due  17
## 209                   flight                  control  17
## 210                   flight                 planning  17
## 211                   killed                  crashed  17
## 212                     lost                    power  17
## 213                    plane                   failed  17
## 214                   rising                  terrain  17
## 215                   struck                       mt  17
## 216                   struck                    power  17
## 217                     tail                    rotor  17
## 218                     tree                     tops  17
## 219                     wing                      tip  17
## 220                       30                  minutes  16
## 221                 aircraft                 collided  16
## 222                  crashed                      due  16
## 223                   flight                     plan  16
## 224                   flying                      low  16
## 225                   killed                   aboard  16
## 226                  landing                 approach  16
## 227                      los                  angeles  16
## 228                 maintain                 adequate  16
## 229               mechanical                  failure  16
## 230                 military                    plane  16
## 231                 mountain                    range  16
## 232                    pilot                  radioed  16
## 233                    plane                  ditched  16
## 234                    plane                      ran  16
## 235                    stall                  warning  16
## 236                  takeoff                  crashed  16
## 237                  terrain                  crashed  16
## 238                       20                  minutes  15
## 239                        5                    miles  15
## 240                        6                    miles  15
## 241                        8                    miles  15
## 242                      air                ambulance  15
## 243                 altitude                  crashed  15
## 244                     anti                 aircraft  15
## 245                 approach               procedures  15
## 246                    cargo                   flight  15
## 247                   double                   engine  15
## 248                   flight              instruments  15
## 249                       ft                    short  15
## 250                     fuel               exhaustion  15
## 251                   ground                  crashed  15
## 252                       km                    south  15
## 253                     land                  crashed  15
## 254                      low                  ceiling  15
## 255                 military                transport  15
## 256                  terrain                clearance  15
## 257                transport                  crashed  15
## 258                   visual                   flight  15
## 259                    3,000                       ft  14
## 260                 accident                 happened  14
## 261                 aircraft                   banked  14
## 262                  airport                  shortly  14
## 263                      atc                    error  14
## 264                collision                 occurred  14
## 265                     crew                descended  14
## 266                 decision                   height  14
## 267                emergency               procedures  14
## 268                  english                  channel  14
## 269               inadequate              maintenance  14
## 270                     lost                  contact  14
## 271                     mile                    short  14
## 272                 mountain                    slope  14
## 273                passenger                    cabin  14
## 274                passenger                    plane  14
## 275                    pilot                descended  14
## 276                  pilot's                 decision  14
## 277                    plane                    crash  14
## 278                   runway                   lights  14
## 279                   severe                  weather  14
## 280                   single                   engine  14
## 281                  takeoff                     roll  14
## 282             uncontrolled                  descent  14
## 283                      vfr               conditions  14
## 284                      1.5                    miles  13
## 285                      300                       ft  13
## 286                       40                    miles  13
## 287                 accident                 occurred  13
## 288                 aircraft                continued  13
## 289                 aircraft                     fire  13
## 290                 airplane                   struck  13
## 291                 approach                  crashed  13
## 292                captain's                 decision  13
## 293                  crashed                        2  13
## 294                     crew                attempted  13
## 295              directional                  control  13
## 296                 elevator                     trim  13
## 297                emergency                  descent  13
## 298                  failure                  crashed  13
## 299                      fog                  crashed  13
## 300                     hard                  landing  13
## 301               improperly                   loaded  13
## 302                   landed                    short  13
## 303                  leading                     edge  13
## 304                     lost                   height  13
## 305                 mountain                  crashed  13
## 306                perimeter                    fence  13
## 307                    plane                  entered  13
## 308                    plane                 impacted  13
## 309               procedural                   errors  13
## 310                  traffic                  control  13
## 311                    1,000                     feet  12
## 312                       12                    miles  12
## 313                      200                       ft  12
## 314                        4                    miles  12
## 315                    5,000                       ft  12
## 316                       60                    miles  12
## 317                 aircraft                 impacted  12
## 318                 aircraft                 suffered  12
## 319                 approach                     path  12
## 320               artificial                  horizon  12
## 321                  control                      due  12
## 322                     crew                     lost  12
## 323                   design                     flaw  12
## 324                 domestic                   flight  12
## 325               electrical                  failure  12
## 326               electrical                    power  12
## 327                     fire                    broke  12
## 328                   flight                attendant  12
## 329                     left                     bank  12
## 330                     lose                 altitude  12
## 331                     lose                  control  12
## 332              maintenance               procedures  12
## 333                 military                 aircraft  12
## 334                 mountain                  located  12
## 335                  pacific                    ocean  12
## 336                    plane                   rolled  12
## 337                propeller                    blade  12
## 338                  reasons             undetermined  12
## 339                    rotor                    blade  12
## 340                  shallow                    water  12
## 341                     sink                     rate  12
## 342              situational                awareness  12
## 343                     twin                   engine  12
## 344                  weather                  crashed  12
## 345                    2,000                       ft  11
## 346                      200                     feet  11
## 347                       25                    miles  11
## 348                      500                     feet  11
## 349                  aborted                  landing  11
## 350                 accident                  crashed  11
## 351                      air                    speed  11
## 352                 aircraft                  climbed  11
## 353                 aircraft              disappeared  11
## 354                    andes                mountains  11
## 355                 approach                     crew  11
## 356                  charter                   flight  11
## 357                    cloud                  covered  11
## 358                  control                    tower  11
## 359                  crashed                       10  11
## 360                   engine                  crashed  11
## 361                     fire                  erupted  11
## 362                     fire                  shortly  11
## 363                   flight                 controls  11
## 364                   flight                    rules  11
## 365                    float                    plane  11
## 366                    found                  crashed  11
## 367                      ifr                operation  11
## 368             insufficient                 altitude  11
## 369                  landing                 attempts  11
## 370                      low                    level  11
## 371                      low                 overcast  11
## 372                 maintain                  control  11
## 373                 military                personnel  11
## 374                 mountain                    ridge  11
## 375                municipal                  airport  11
## 376                     nose                     gear  11
## 377                    outer                   marker  11
## 378                    pilot                   failed  11
## 379                     port                   engine  11
## 380               prescribed                    route  11
## 381                    radio                    range  11
## 382                  reverse                   thrust  11
## 383                      rio                       de  11
## 384                starboard                   engine  11
## 385                    steep                    climb  11
## 386                     tail                  section  11
## 387                  traffic               controller  11
## 388                  weather                condtions  11
## 389                        1                        2  10
## 390                      150                     feet  10
## 391                       18                    miles  10
## 392                  aborted                  takeoff  10
## 393                      air                  station  10
## 394                 aircraft                 exploded  10
## 395                 aircraft                   failed  10
## 396                 aircraft                   flying  10
## 397                 aircraft                 suddenly  10
## 398                 airplane                  crashed  10
## 399                  captain                  decided  10
## 400                     corn                    field  10
## 401                  covered                 mountain  10
## 402                  crashed                 inverted  10
## 403                     crew                     flew  10
## 404                       de                    icing  10
## 405                  descent                     rate  10
## 406              disappeared                       en  10
## 407                emergency                   return  10
## 408                explosive            decompression  10
## 409                  fatigue                    crack  10
## 410                  fatigue                  failure  10
## 411                     fire                  warning  10
## 412                   follow               prescribed  10
## 413                     fuel            contamination  10
## 414                     fuel                     leak  10
## 415                    glide                     path  10
## 416                    glide                    slope  10
## 417                   ground                proximity  10
## 418                   ground                    short  10
## 419                    heavy                     snow  10
## 420                 improper              maintenance  10
## 421                      jet                  crashed  10
## 422                  landing                  crashed  10
## 423                   losing                 altitude  10
## 424                    metal                  fatigue  10
## 425             navigational                     aids  10
## 426                     nose                    dived  10
## 427                    pilot                  fatigue  10
## 428                   pilots                  failure  10
## 429                    plane                   banked  10
## 430                    plane              experienced  10
## 431                   planes                  crashed  10
## 432                     poor                 judgment  10
## 433                    rebel                   forces  10
## 434                      sea                  crashed  10
## 435                    trees                  crashed  10
## 436           uncontrollable                     fire  10
## 437               visibility                  crashed  10
## 438                     wing                    broke  10
## 439                      100                    miles   9
## 440                        2                       km   9
## 441                        3                propeller   9
## 442                    3,500                       ft   9
## 443                      300                     feet   9
## 444                    4,000                     feet   9
## 445                    7,000                       ft   9
## 446                      air                collision   9
## 447                 aircraft                  control   9
## 448                  airport                      due   9
## 449                alternate                  airport   9
## 450                     anti                    icing   9
## 451                     bank                    angle   9
## 452                  burbank                  airport   9
## 453                 complete                     loss   9
## 454                  control                   inputs   9
## 455                  crashed                        5   9
## 456                  crashed                        6   9
## 457                     crew                      due   9
## 458                   cruise                   flight   9
## 459              dangerously                      low   9
## 460                 distress                     call   9
## 461                 distress                  message   9
## 462                   engine                 aircraft   9
## 463                  evasive                 maneuver   9
## 464                excessive                     sink   9
## 465                  extreme               turbulence   9
## 466                   failed                      due   9
## 467                  fatigue                   cracks   9
## 468                   flight                  failure   9
## 469                   flying                     boat   9
## 470                    foggy               conditions   9
## 471                     fuel                   supply   9
## 472                     hong                     kong   9
## 473              inadvertent                    stall   9
## 474                       km                northeast   9
## 475                       km                southeast   9
## 476                     lake                     city   9
## 477                     lake                 michigan   9
## 478                      las                    vegas   9
## 479                     mail                   flight   9
## 480                   meters                    short   9
## 481                 national                     park   9
## 482                    naval                      air   9
## 483                       nm                    short   9
## 484                    north                      sea   9
## 485              obstructing                  terrain   9
## 486                operating               procedures   9
## 487                    plane                   caught   9
## 488                    plane                  pitched   9
## 489                    plane                 suddenly   9
## 490                    power                     line   9
## 491                precision                 approach   9
## 492               prescribed               procedures   9
## 493                proximity                  warning   9
## 494                 reported                   engine   9
## 495              residential             neighborhood   9
## 496                    route                    pilot   9
## 497                   runway                    broke   9
## 498                   severe             thunderstorm   9
## 499                   soccer                     team   9
## 500                   strong               turbulence   9
## 501                  takeoff                  failure   9
## 502                   timely                   manner   9
## 503                    unita                   rebels   9
## 504                    1,500                     feet   8
## 505                      100                       ft   8
## 506                        2                  engines   8
## 507                      2.5                    miles   8
## 508                        3                  engines   8
## 509                       35                    miles   8
## 510                       40                  minutes   8
## 511                      400                     feet   8
## 512                        8                       km   8
## 513                       90                  degrees   8
## 514              aerodynamic                    stall   8
## 515                 aircraft                      due   8
## 516                 aircraft                   veered   8
## 517                ambulance                  crashed   8
## 518                    black                      sea   8
## 519                    cabin                   heater   8
## 520                    cabin                 pressure   8
## 521                 captainã                        â   8
## 522            circumstances                  crashed   8
## 523                  control                  crashed   8
## 524                   county                  airport   8
## 525                  crashed                  failure   8
## 526                     crew                continued   8
## 527                   effect                 recovery   8
## 528                    enemy                     fire   8
## 529                   engine                      due   8
## 530                  evasive                   action   8
## 531                excessive                    speed   8
## 532                explosion                 occurred   8
## 533                   failed                  shortly   8
## 534                  federal                 aviation   8
## 535                     fire                   caused   8
## 536                   flight               separation   8
## 537                     fuel                 selector   8
## 538                     fuel                    tanks   8
## 539                  guardia                  airport   8
## 540                      hit                     tree   8
## 541                    icing                   system   8
## 542                      ils                localizer   8
## 543                 improper                 approach   8
## 544               inadequate                   flight   8
## 545                inclement                  weather   8
## 546               instrument                   flight   8
## 547               instrument                  landing   8
## 548                 japanese                 military   8
## 549                      jet                  fighter   8
## 550                       km                     east   8
## 551                       km                northwest   8
## 552                       km                southwest   8
## 553                       km                     west   8
## 554                       la                  guardia   8
## 555                  landing                      due   8
## 556                    light                     rain   8
## 557                   loaded                 aircraft   8
## 558                 maintain                   visual   8
## 559              maintenance                  program   8
## 560            mediterranean                      sea   8
## 561                    named                     city   8
## 562                passenger                     died   8
## 563                    pilot                continued   8
## 564                    pilot                misjudged   8
## 565                    plane                 collided   8
## 566                    plane                continued   8
## 567                    plane                 diverted   8
## 568                    plane                   veered   8
## 569                    radar                  contact   8
## 570                   runway                       28   8
## 571                   runway               centerline   8
## 572                     safe                  landing   8
## 573                    santa                    maria   8
## 574                   severe                    icing   8
## 575              sightseeing                   flight   8
## 576              sightseeing               helicopter   8
## 577                     snow                    storm   8
## 578                   spiral                     dive   8
## 579                 standard                operating   8
## 580                    steep                  descent   8
## 581               sufficient                     time   8
## 582                 training                  mission   8
## 583               visibility                      due   8
## 584                     wake               turbulence   8
## 585                  weather                conditons   8
## 586                     wing                      hit   8
## 587                    1,500                       ft   7
## 588                       10                       km   7
## 589                    2,000                     feet   7
## 590                        3                       km   7
## 591                    3,000                     feet   7
## 592                       30                       km   7
## 593                       32                       km   7
## 594                      400                       ft   7
## 595                    6,000                       ft   7
## 596                        7                    miles   7
## 597                    8,000                       ft   7
## 598                 aircraft                 carrying   7
## 599                 aircraft            disintegrated   7
## 600                 aircraft                  ditched   7
## 601                 aircraft              encountered   7
## 602                 aircraft                   rolled   7
## 603                  airport                perimeter   7
## 604                 assigned                 altitude   7
## 605                   banked                     left   7
## 606                     bomb                 exploded   7
## 607                   buenos                    aires   7
## 608                captain's                  failure   7
## 609                    cargo                     door   7
## 610                    catch                     fire   7
## 611                    crash                  landing   7
## 612                  crashed                        1   7
## 613                  crashed                       15   7
## 614                  crashed                        3   7
## 615                  crashed                        4   7
## 616                     crew                  aborted   7
## 617                     crew                 declared   7
## 618                     crew                 deviated   7
## 619                     crew              encountered   7
## 620                     crew                 informed   7
## 621                       dc                        7   7
## 622                       dc                        8   7
## 623                 dynamite                     bomb   7
## 624               electrical                   system   7
## 625              encountered                     poor   7
## 626                   engine                     lost   7
## 627                   engine                   thrust   7
## 628                  engines                      due   7
## 629                    field                  crashed   7
## 630                  fighter                  crashed   7
## 631                    final                   stages   7
## 632                   flight                 altitude   7
## 633             flightcrew's                  failure   7
## 634                   flying                     crew   7
## 635                   flying                    speed   7
## 636                       ft                     past   7
## 637                     fuel                   system   7
## 638                     gear                collapsed   7
## 639                     gust                     lock   7
## 640               helicopter                 impacted   7
## 641                      ifr                procedure   7
## 642                      imc               conditions   7
## 643                 improper                  loading   7
## 644                   indian                    ocean   7
## 645                       km                    north   7
## 646                     land                   safely   7
## 647                     left                     hand   7
## 648                    light                     snow   7
## 649                lightning                   strike   7
## 650                  limited               visibility   7
## 651                      low                    cloud   7
## 652              maintenance                personnel   7
## 653                    miles                       sw   7
## 654                   minute                   flight   7
## 655                 mountain                     peak   7
## 656                 mountain                     wave   7
## 657                    night               conditions   7
## 658                passenger                   flight   7
## 659                passenger                 survived   7
## 660                    pilot                    chose   7
## 661                    pilot                 suffered   7
## 662                    plane                attempted   7
## 663                    plane                  plunged   7
## 664                    plane                     rose   7
## 665                    plane                  skidded   7
## 666                    plane                  touched   7
## 667                   planes                 collided   7
## 668                     poor                     crew   7
## 669                     poor                judgement   7
## 670                     port                     wing   7
## 671                    power                  failure   7
## 672                  private                    plane   7
## 673               procedural                    error   7
## 674                 properly                  monitor   7
## 675                    rapid                  descent   7
## 676                     rear                    cargo   7
## 677                  reduced                    power   7
## 678                 resource               management   7
## 679                     rice                    field   7
## 680                    rotor                   blades   7
## 681                    route                 wreckage   7
## 682                      san                     juan   7
## 683                      sea                  shortly   7
## 684                    stick                   shaker   7
## 685                 suffered                   engine   7
## 686                  takeoff                      due   7
## 687                     team                   killed   7
## 688                   thrust                 reverser   7
## 689                 training                 exercise   7
## 690                     trim                      tab   7
## 691                   twenty                  minutes   7
## 692              unfavorable                  weather   7
## 693                  warning                  sounded   7
## 694                     wing                   failed   7
## 695                witnesses                 reported   7
## 696                        1                     hour   6
## 697                      1.2                    miles   6
## 698                       11                       11   6
## 699                        2                     days   6
## 700                        2                  minutes   6
## 701                        2                propeller   6
## 702                    2,500                       ft   6
## 703                        3                alternate   6
## 704                        3                  minutes   6
## 705                       35                  minutes   6
## 706                    4,000                       ft   6
## 707                       40                       km   6
## 708                       50                       km   6
## 709                        6                       km   6
## 710                    6,000                     feet   6
## 711                    7,000                     feet   6
## 712                      700                     feet   6
## 713                    8,500                       ft   6
## 714                      air                 missiles   6
## 715                      air               turbulence   6
## 716                 aircraft                attempted   6
## 717                 aircraft                    crash   6
## 718                 aircraft                 departed   6
## 719                 aircraft                  plunged   6
## 720                 aircraft                     shot   6
## 721               aircraft's                  engines   6
## 722                 approach                  failure   6
## 723                 approach                    pilot   6
## 724                 aviation                  history   6
## 725                  baggage              compartment   6
## 726                  barrier                    fence   6
## 727                  british                 aircraft   6
## 728                   burned                  crashed   6
## 729                    cargo                  plane's   6
## 730                    cargo                  shifted   6
## 731                   center                     line   6
## 732                     city                  airport   6
## 733               conditions             contributing   6
## 734               conditions                resulting   6
## 735                  control                   cables   6
## 736                    crash                     site   6
## 737                  crashed                      1.5   6
## 738                     crew                initiated   6
## 739                     crew                 resource   6
## 740                   crew's                 decision   6
## 741                 critical                    stage   6
## 742                    cross                    check   6
## 743                    cross                    winds   6
## 744                       de                      ice   6
## 745                       de                  janeiro   6
## 746                    dense                   jungle   6
## 747                descended              prematurely   6
## 748              destination                  airport   6
## 749                     east                northeast   6
## 750             encountering                   severe   6
## 751                   engine                     fuel   6
## 752                   engine                separated   6
## 753                   engine                  shortly   6
## 754                  engines                  stopped   6
## 755                    error                     crew   6
## 756                    error                    pilot   6
## 757                  failure                   caused   6
## 758                     feet                     past   6
## 759                    field                  located   6
## 760                     fire                     crew   6
## 761                     fire                     shot   6
## 762                   flight                  causing   6
## 763                   flight                    crews   6
## 764                   flight                decisions   6
## 765                   flight               procedures   6
## 766                   flight               structural   6
## 767                   follow                 approved   6
## 768                    force                  fighter   6
## 769                  forward                    cargo   6
## 770                   fourth                  landing   6
## 771                francisco                      bay   6
## 772                     fuel                     flow   6
## 773                     fuel                     line   6
## 774                     fuel                     pump   6
## 775                 fuselage                    broke   6
## 776                    heart                   attack   6
## 777               helicopter                 carrying   6
## 778                    hilly                  terrain   6
## 779                      hit                       mt   6
## 780                  hitting                    power   6
## 781                hydraulic                    fluid   6
## 782               inadequate               monitoring   6
## 783               inadequate                preflight   6
## 784               instrument                  weather   6
## 785            investigation                 revealed   6
## 786                   island                  crashed   6
## 787                      klm                    plane   6
## 788                   losing                    power   6
## 789                      low                   height   6
## 790                      low                    speed   6
## 791                 maintain                 airspeed   6
## 792                     mile                 offshore   6
## 793                    miles                       ne   6
## 794                   minima                  weather   6
## 795                  minimum                  control   6
## 796                    minor                 injuries   6
## 797                   missed               approaches   6
## 798                 mountain                  shortly   6
## 799                    named                     star   6
## 800                   normal                  landing   6
## 801                     nose                  pitched   6
## 802                 obstacle                clearance   6
## 803                    pilot                 declared   6
## 804                   pilotã                        â   6
## 805                    plane               approached   6
## 806                    plane                 overshot   6
## 807                    plane                 suffered   6
## 808                   planeã                        â   6
## 809                 planning                 decision   6
## 810                     poor                   flight   6
## 811                precision               instrument   6
## 812               prescribed                  minimum   6
## 813                     rain                  showers   6
## 814                     rear                 lavatory   6
## 815                     rice                    paddy   6
## 816                    route                   flying   6
## 817                   runway                       18   6
## 818                   runway                       22   6
## 819                   runway                  failure   6
## 820                   runway                      hit   6
## 821                   runway                  overran   6
## 822                   runway                   struck   6
## 823                      san                    diego   6
## 824                      sea            approximately   6
## 825                    short                  circuit   6
## 826                snowstorm                  crashed   6
## 827                    spark                    plugs   6
## 828                       st                  maarten   6
## 829                  stalled                condition   6
## 830                starboard                     wing   6
## 831                  takeoff                   caused   6
## 832                  takeoff                   engine   6
## 833                    thick                      fog   6
## 834                   thirty                  minutes   6
## 835             thunderstorm                  crashed   6
## 836                      tip                   struck   6
## 837                transport                    plane   6
## 838                     trim                   system   6
## 839               turbulence                  crashed   6
## 840                      u.s           representative   6
## 841             undetermined                  crashed   6
## 842                  unknown                   origin   6
## 843                 vertical                    speed   6
## 844                      vfr                 approach   6
## 845               visibility               conditions   6
## 846                      vor                 approach   6
## 847                     wing                contacted   6
## 848                     wing                  crashed   6
## 849                   wooded                 hillside   6
## 850                    1,200                       ft   5
## 851                   10,000                       ft   5
## 852                      100                   meters   5
## 853                       12                       km   5
## 854                      180                   degree   5
## 855                    2,300                     feet   5
## 856                       20                  degrees   5
## 857                       20                       km   5
## 858                      200                    yards   5
## 859                    3,300                     feet   5
## 860                       30                     feet   5
## 861                        4                       km   5
## 862                        4                propeller   5
## 863                      400                   meters   5
## 864                    5,000                     feet   5
## 865                       50                       ft   5
## 866                        6                  minutes   5
## 867                      600                       ft   5
## 868                        8                  minutes   5
## 869                      800                     feet   5
## 870                        9                    miles   5
## 871                        9                  minutes   5
## 872                      aft                   center   5
## 873                      air                     taxi   5
## 874                 aircraft                developed   5
## 875                 aircraft                  reached   5
## 876                  airport             navigational   5
## 877                altimeter                  setting   5
## 878                 altitude                      due   5
## 879                 altitude             insufficient   5
## 880                 american                 airlines   5
## 881                 approach                    chart   5
## 882                 approach                    icing   5
## 883                 approved               procedures   5
## 884               artificial                 horizons   5
## 885                attempted                  takeoff   5
## 886                     auto                    pilot   5
## 887                   banked                  sharply   5
## 888                   carbon                 monoxide   5
## 889                    cargo              compartment   5
## 890                caribbean                      sea   5
## 891                   caused                     loss   5
## 892                   center                     fuel   5
## 893                 circling                 approach   5
## 894                  clipped                    trees   5
## 895                    cloud                    cover   5
## 896                  cockpit               discipline   5
## 897               conditions                     lack   5
## 898               conditions                   struck   5
## 899                continued                   flight   5
## 900                  control                    speed   5
## 901                  covered                    field   5
## 902                    crash                  crashed   5
## 903                    crash                 occurred   5
## 904                  crashed                       30   5
## 905                  crashed                  fatigue   5
## 906                  crashed                    icing   5
## 907                  crashed                     loss   5
## 908                     crew                 executed   5
## 909                     crew                  radioed   5
## 910                     crew                 training   5
## 911                    crewã                        â   5
## 912                       de                havilland   5
## 913                       de                       la   5
## 914               determined                  crashed   5
## 915                developed                   engine   5
## 916                  ejected                   safely   5
## 917              encountered                   strong   5
## 918                   engine                   caused   5
## 919                   engine                resulting   5
## 920                   engine                  stalled   5
## 921                equipment                  crashed   5
## 922                explosion                   aboard   5
## 923                extremely                     poor   5
## 924                  factors                  include   5
## 925                  factors                 included   5
## 926                  factors                  related   5
## 927                  fatigue                  crashed   5
## 928                  fatigue                      due   5
## 929                    field                  shortly   5
## 930                  fighter                    pilot   5
## 931                     fire                  started   5
## 932                   flames                  crashed   5
## 933                   flight                collision   5
## 934                   flight                     deck   5
## 935                   flight                     idle   5
## 936                      fog                 shrouded   5
## 937                    found                        5   5
## 938                   frozen                     lake   5
## 939                       ft                   runway   5
## 940                     fuel                     feed   5
## 941                     gain               sufficient   5
## 942                    gross                   weight   5
## 943                   ground                     fire   5
## 944                   ground                     nose   5
## 945                   ground                  shortly   5
## 946                   ground                   struck   5
## 947                guanabara                      bay   5
## 948                    gusty                    winds   5
## 949                     half                     mile   5
## 950                     hand                  grenade   5
## 951                    heavy                    icing   5
## 952                      ice            contamination   5
## 953                    icing                  crashed   5
## 954                 impacted                  terrain   5
## 955                 impacted                    trees   5
## 956                 improper                emergency   5
## 957                 improper                   flight   5
## 958                 improper                 planning   5
## 959                 improper               procedures   5
## 960                 informed                      atc   5
## 961                  initial                 approach   5
## 962               instrument                  failure   5
## 963               instrument                    rated   5
## 964                   jungle                  shortly   5
## 965                   kansas                     city   5
## 966                   killed                including   5
## 967                  landing                    short   5
## 968                       le                  bourget   5
## 969                     left                     main   5
## 970                     left                propeller   5
## 971                      low                 ceilings   5
## 972                    lower                 altitude   5
## 973                     main                     gear   5
## 974                 maintain                clearance   5
## 975                 maintain                   flying   5
## 976                 maintain                  minimum   5
## 977                 maintain                   proper   5
## 978                 maintain                     safe   5
## 979                   mayday                  message   5
## 980                    miles                 offshore   5
## 981                    miles                       se   5
## 982                 military                     base   5
## 983                  misread                altimeter   5
## 984                  missile                  crashed   5
## 985                 mountain                     pass   5
## 986                    night               instrument   5
## 987                     nose                     dive   5
## 988                 observed                   flying   5
## 989               officially               attributed   5
## 990                      oil                      rig   5
## 991                      oil                  workers   5
## 992                    paris                   france   5
## 993               passengers                  drowned   5
## 994                  persian                     gulf   5
## 995                    pilot                  aborted   5
## 996                    pilot                  crashed   5
## 997                    pilot                  ejected   5
## 998                    pilot                     flew   5
## 999                    pilot              transmitted   5
## 1000                 pilot's              inadvertent   5
## 1001                   plane                   cashed   5
## 1002                   plane                  drifted   5
## 1003                   plane                 exploded   5
## 1004                   plane                     fell   5
## 1005                   plane                   lifted   5
## 1006                   plane                  reached   5
## 1007                   plane                 returned   5
## 1008                   plane                     sank   5
## 1009                possibly                   caused   5
## 1010                  postal                    plane   5
## 1011                     pre                   flight   5
## 1012              prescribed                 altitude   5
## 1013               published               procedures   5
## 1014                    rain                  crashed   5
## 1015                 reasons                  crashed   5
## 1016               remaining                   engine   5
## 1017                    rest                 inverted   5
## 1018              restricted               visibility   5
## 1019                   river                  crashed   5
## 1020                   river                  shortly   5
## 1021                   route                   struck   5
## 1022                  rudder                  control   5
## 1023                  rudder                     trim   5
## 1024                  runway                     crew   5
## 1025                  runway                     loss   5
## 1026                    safe                   height   5
## 1027                     sea                  failure   5
## 1028                seaplane                  crashed   5
## 1029                 sensory                 illusion   5
## 1030                  severe                vibration   5
## 1031                  severe               vibrations   5
## 1032                  shaker                activated   5
## 1033               spatially              disoriented   5
## 1034                   speed                 readings   5
## 1035                  spiral                  descent   5
## 1036                   stall                 recovery   5
## 1037                   stall                    speed   5
## 1038                 stalled                  crashed   5
## 1039                standard               instrument   5
## 1040                   storm                  crashed   5
## 1041                  stormy                  weather   5
## 1042                striking                    trees   5
## 1043              subsequent                  failure   5
## 1044                    tail                   struck   5
## 1045                 takeoff                  overran   5
## 1046                 takeoff                   weight   5
## 1047                     ten                  minutes   5
## 1048                 traffic             controller's   5
## 1049                 traffic              controllers   5
## 1050                 traffic                  pattern   5
## 1051                training                  manuals   5
## 1052               turbulent               conditions   5
## 1053                    twin                    otter   5
## 1054                  united                  nations   5
## 1055                  unsafe                 altitude   5
## 1056                vertical                     dive   5
## 1057                  visual               references   5
## 1058                     vor                      dme   5
## 1059                     wet                   runway   5
## 1060                whiteout               conditions   5
## 1061                    wind               conditions   5
## 1062                    wing                  dropped   5
## 1063                    wing                    flaps   5
## 1064               witnesses                 observed   5
## 1065                   wrong                direction   5
## 1066                   wrong                   valley   5
## 1067                       1                       km   4
## 1068                     100                     feet   4
## 1069                      11                       65   4
## 1070                      11                        8   4
## 1071                      11                    miles   4
## 1072                  11,000                       ft   4
## 1073                  11,500                       ft   4
## 1074                  12,000                     feet   4
## 1075                      15                       km   4
## 1076                     150                       ft   4
## 1077                     150                    miles   4
## 1078                      16                       65   4
## 1079                  16,000                       ft   4
## 1080                  18,000                     feet   4
## 1081                      19                    miles   4
## 1082                       2                        4   4
## 1083                       2                   pilots   4
## 1084                      25                       km   4
## 1085                       3                     days   4
## 1086                       3                    hours   4
## 1087                       4                       66   4
## 1088                       4                  engines   4
## 1089                   4,500                     feet   4
## 1090                      40                  degrees   4
## 1091                      45                   degree   4
## 1092                       5                     days   4
## 1093                       5                       km   4
## 1094                   6,500                     feet   4
## 1095                      60                       km   4
## 1096                     600                     feet   4
## 1097                      65               cincinnati   4
## 1098                      65                     salt   4
## 1099                     7.5                    miles   4
## 1100                     727                accidents   4
## 1101                     727                 training   4
## 1102                       8                       16   4
## 1103                       8                       65   4
## 1104                      80                    miles   4
## 1105                     800                       ft   4
## 1106                   9,000                     feet   4
## 1107                   9,500                       ft   4
## 1108                     900                     feet   4
## 1109                     900                       ft   4
## 1110                     900                   meters   4
## 1111                    acme                      nut   4
## 1112                adequate                 airspeed   4
## 1113                adequate                 altitude   4
## 1114              adequately                  monitor   4
## 1115                 advised                      atc   4
## 1116                  afghan                   rebels   4
## 1117                 aileron                  control   4
## 1118                     air                    lines   4
## 1119                     air                midwest's   4
## 1120                     air                transport   4
## 1121                aircraft               approached   4
## 1122                aircraft                 attained   4
## 1123                aircraft                 attitude   4
## 1124                aircraft                  bounced   4
## 1125                aircraft              cartwheeled   4
## 1126                aircraft                 crashing   4
## 1127                aircraft                  drifted   4
## 1128                aircraft                 overshot   4
## 1129                aircraft                    owned   4
## 1130                aircraft                 returned   4
## 1131                aircraft                  shortly   4
## 1132                aircraft                 striking   4
## 1133                aircraft                   taking   4
## 1134                aircraft                     type   4
## 1135                aircraft                undershot   4
## 1136                aircraft                   weight   4
## 1137              aircraft's                 position   4
## 1138              aircraft's                     wing   4
## 1139               aircraftã                        â   4
## 1140                airplane                      hit   4
## 1141                airplane                     lost   4
## 1142                airplane                  stalled   4
## 1143                 airport                 boundary   4
## 1144                 airport                  failure   4
## 1145                 airport                  killing   4
## 1146                 airship                  crashed   4
## 1147               alternate                    tanks   4
## 1148                altitude                  warning   4
## 1149                approach                        3   4
## 1150                approach                attempted   4
## 1151                approach                      due   4
## 1152                approach                 improper   4
## 1153           approximately                        1   4
## 1154           approximately                       10   4
## 1155           approximately                       60   4
## 1156                assigned                   airway   4
## 1157                     atc                     lost   4
## 1158                aviation           administration   4
## 1159                  baltic                      sea   4
## 1160                    base                      leg   4
## 1161                     bay                        2   4
## 1162                     bay                  shortly   4
## 1163                   belly                  landing   4
## 1164                   blown                     tire   4
## 1165                    boat                  crashed   4
## 1166                 bourget                  airport   4
## 1167                 captain                continued   4
## 1168                 captain                 reported   4
## 1169               captain's               inadequate   4
## 1170                  carbon                  dioxide   4
## 1171              carburetor                    icing   4
## 1172                carrying             paratroopers   4
## 1173            catastrophic                  failure   4
## 1174                catching                     fire   4
## 1175                 causing                   damage   4
## 1176                 causing                     loss   4
## 1177                  cessna                    pilot   4
## 1178                   china                      sea   4
## 1179              cincinnati                       11   4
## 1180              cincinnati                  crashes   4
## 1181                    city                       11   4
## 1182               clearance                    limit   4
## 1183                  closed                   runway   4
## 1184                   cloud                 obscured   4
## 1185                   coast                    guard   4
## 1186                 cockpit                    voice   4
## 1187              conditions               controlled   4
## 1188              conditions                  existed   4
## 1189              conditions                  failure   4
## 1190              conditions                     shot   4
## 1191              connecting                      rod   4
## 1192                continue                      vfr   4
## 1193                 control                   column   4
## 1194                 control             difficulties   4
## 1195                 control                mechanism   4
## 1196                 control                      rod   4
## 1197                 control                     unit   4
## 1198                 crashed                       20   4
## 1199                 crashed                      200   4
## 1200                 crashed                       40   4
## 1201                 crashed                        7   4
## 1202                 crashed            approximately   4
## 1203                 crashed                    broke   4
## 1204                 crashed                     crew   4
## 1205                 crashed                     fuel   4
## 1206                 crashed                  killing   4
## 1207                    crew                  crashed   4
## 1208                    crew              experienced   4
## 1209                    crew                requested   4
## 1210                    crew                     shut   4
## 1211                  crew's                     lack   4
## 1212                  cruise                 altitude   4
## 1213                cruising                 altitude   4
## 1214            cumulonimbus                   clouds   4
## 1215                      dc                        4   4
## 1216                      de                  janerio   4
## 1217                   death                     toll   4
## 1218           demonstration                   flight   4
## 1219                 density                 altitude   4
## 1220               descended                  rapidly   4
## 1221                 descent                  crashed   4
## 1222               emergency                situation   4
## 1223             encountered                   severe   4
## 1224            encountering                      fog   4
## 1225                  engine                 exploded   4
## 1226                  engine                      led   4
## 1227                  engine                    plane   4
## 1228                  engine                propeller   4
## 1229                  engine                     shut   4
## 1230                  engine                   struck   4
## 1231                  engine                   surges   4
## 1232                   error                  failure   4
## 1233                   error                     lack   4
## 1234                esenboga                  airport   4
## 1235              eventually                      led   4
## 1236               excessive                     drag   4
## 1237               excessive                     wear   4
## 1238                exercise                  crashed   4
## 1239                existing                  weather   4
## 1240             experienced                   engine   4
## 1241             experienced                  spatial   4
## 1242                   faa's                  failure   4
## 1243                 factors                 relating   4
## 1244                  failed                  landing   4
## 1245                 failure                  failure   4
## 1246                 failure                 occurred   4
## 1247                    feet                      agl   4
## 1248                   field                    short   4
## 1249                   final                    stage   4
## 1250                    fire                   aboard   4
## 1251                    fire                developed   4
## 1252                    fire                    prior   4
## 1253                    fire                   spread   4
## 1254                    fire                  station   4
## 1255                      fl                      310   4
## 1256                  flames                  shortly   4
## 1257                   flaps                 extended   4
## 1258                    flat                     spin   4
## 1259                  flight               attendants   4
## 1260                  flight              disappeared   4
## 1261                  flight                      due   4
## 1262                  flight               engineer's   4
## 1263                  flight                   struck   4
## 1264                  flight                 training   4
## 1265                     fly                      ifr   4
## 1266                     fly                      vfr   4
## 1267                  flying          characteristics   4
## 1268                     fog                     bank   4
## 1269                     fog                  covered   4
## 1270                     fog                     crew   4
## 1271                     fog                    pilot   4
## 1272                     fog                  shortly   4
## 1273                   foggy                  weather   4
## 1274                  follow               procedures   4
## 1275                  follow                   proper   4
## 1276                      ft                     hole   4
## 1277                      ft                    level   4
## 1278                      ft                  stalled   4
## 1279                    fuel                  crashed   4
## 1280                    fuel                imbalance   4
## 1281                    fuel                 transfer   4
## 1282                fuselage                  killing   4
## 1283                    gain                   height   4
## 1284                    gear                retracted   4
## 1285                    girl                 survived   4
## 1286                    gpws                  warning   4
## 1287               gradually                descended   4
## 1288                   grand                   canyon   4
## 1289                  ground                  contact   4
## 1290                  ground                     crew   4
## 1291                  ground                  failure   4
## 1292                    head                    winds   4
## 1293                heathrow                  airport   4
## 1294                   heavy                  landing   4
## 1295                   heavy                rainstorm   4
## 1296                   heavy               turbulence   4
## 1297              helicopter                   struck   4
## 1298                    hill                  crashed   4
## 1299                    hill                  located   4
## 1300                    hill                  shortly   4
## 1301                     hit                    power   4
## 1302                     hit                telephone   4
## 1303                 hundred                     feet   4
## 1304                     ifr               procedures   4
## 1305              improperly                      set   4
## 1306              inadequate                     crew   4
## 1307               inaugural                   flight   4
## 1308                 induced                windshear   4
## 1309              instrument                 altitude   4
## 1310                jetliner                  crashed   4
## 1311                  killed                  shortly   4
## 1312                 landing                  causing   4
## 1313                 landing                   lights   4
## 1314                 landing                     site   4
## 1315                 landing                    speed   4
## 1316                 lateral                  control   4
## 1317                    left                 elevator   4
## 1318                    left                     lost   4
## 1319                    left                   rudder   4
## 1320               lightning                  crashed   4
## 1321               localizer                  antenna   4
## 1322                    lose                   height   4
## 1323                  losing                  control   4
## 1324                    lost                    sight   4
## 1325                    lost              situational   4
## 1326                    loud                     bang   4
## 1327                     low                   flying   4
## 1328                     low                     fuel   4
## 1329                maintain              directional   4
## 1330                maintain                   flight   4
## 1331                maintain                   height   4
## 1332                maintain                  terrain   4
## 1333                  manual                  control   4
## 1334                  marine                    corps   4
## 1335                      md                       87   4
## 1336                     mda                  crashed   4
## 1337                 medical                     team   4
## 1338                  mexico                     city   4
## 1339                      mi                        8   4
## 1340                michigan                        8   4
## 1341                   miles                       nw   4
## 1342                   miles               visibility   4
## 1343                military               helicopter   4
## 1344                 minimum                   flight   4
## 1345               misjudged                 altitude   4
## 1346                  missed                  landing   4
## 1347                mountain                       30   4
## 1348                mountain                       en   4
## 1349             mountainous                   region   4
## 1350                  narrow                   valley   4
## 1351                nautical                    miles   4
## 1352              navigation                equipment   4
## 1353                   night                  crashed   4
## 1354                   night                  takeoff   4
## 1355                   north                 atlantic   4
## 1356                   north                northeast   4
## 1357                     oil                 pressure   4
## 1358              operations                   manual   4
## 1359                opposite                direction   4
## 1360                 optical                 illusion   4
## 1361              overloaded                  crashed   4
## 1362                    palm                  springs   4
## 1363                 partial                     loss   4
## 1364                    path                  crashed   4
## 1365                  people                   aboard   4
## 1366              performing               aerobatics   4
## 1367                   pilot                 deviated   4
## 1368                   pilot              encountered   4
## 1369                   pilot                   pulled   4
## 1370                   pilot                requested   4
## 1371                   pilot                 survived   4
## 1372                 pilot's                 improper   4
## 1373                  pilots                   failed   4
## 1374                   pitch                     trim   4
## 1375                   plane                  bounced   4
## 1376                   plane              cartwheeled   4
## 1377                   plane                  climbed   4
## 1378                   plane                  clipped   4
## 1379                   plane                 crashing   4
## 1380                   plane                     left   4
## 1381                   plane                 reported   4
## 1382                   plane                undershot   4
## 1383                   plane                    yawed   4
## 1384                 plane's                     left   4
## 1385                   power                      due   4
## 1386                   power                     loss   4
## 1387               preflight                 planning   4
## 1388              procedures                  crashed   4
## 1389               propeller                  control   4
## 1390               propeller                   failed   4
## 1391                 quality                  control   4
## 1392                   radio                   beacon   4
## 1393                   radio                    tower   4
## 1394                    rain                      fog   4
## 1395                recovery                      hit   4
## 1396               refueling                     stop   4
## 1397                  regain                  control   4
## 1398                rejected                  takeoff   4
## 1399                  relief                  mission   4
## 1400                  remote              mountainous   4
## 1401                reported                   losing   4
## 1402                required                   visual   4
## 1403                   ridge                     line   4
## 1404                   route                     crew   4
## 1405                   route                  failure   4
## 1406                   royal                      air   4
## 1407                  rugged                  terrain   4
## 1408                  runway                       05   4
## 1409                  runway                       17   4
## 1410                  runway                       24   4
## 1411                  runway                      28l   4
## 1412                  runway                       29   4
## 1413                  runway                       30   4
## 1414                  runway                       31   4
## 1415                  runway                  causing   4
## 1416                  runway                  surface   4
## 1417                    safe                 approach   4
## 1418                    safe                   flying   4
## 1419                   santa                   monica   4
## 1420               scheduled                passenger   4
## 1421                     sea                    level   4
## 1422                     sea                     loss   4
## 1423                    seat                     belt   4
## 1424                   servo                    valve   4
## 1425                  severe                rainstorm   4
## 1426                  severe            thunderstorms   4
## 1427                 shallow                   waters   4
## 1428             sightseeing                    plane   4
## 1429                   snowy                    field   4
## 1430                  squall                     line   4
## 1431              stabilizer                     trim   4
## 1432                   stall                  crashed   4
## 1433                   steep                    angle   4
## 1434                   steep                     left   4
## 1435                  strong                     gust   4
## 1436                  struck                    mount   4
## 1437              subsequent                collision   4
## 1438              subsequent                   impact   4
## 1439            subsequently                  crashed   4
## 1440              succession                     lake   4
## 1441                suddenly                     dove   4
## 1442                suffered                  spatial   4
## 1443                suffered               structural   4
## 1444              sufficient                 altitude   4
## 1445                  system                  failure   4
## 1446                 takeoff                  attempt   4
## 1447                 takeoff                     crew   4
## 1448                 terrain             contributing   4
## 1449                 terrain                      due   4
## 1450                 terrain                  factors   4
## 1451                 terrain                  shortly   4
## 1452                 terrain              surrounding   4
## 1453                   tokyo                      bay   4
## 1454                   tower                     lost   4
## 1455            transmission                    tower   4
## 1456                  travis                      air   4
## 1457                   trees                    short   4
## 1458                   trees                  shortly   4
## 1459                 trouble                  crashed   4
## 1460                     u.s                      air   4
## 1461                     u.s                     navy   4
## 1462               undershot                   runway   4
## 1463            unstabilized                 approach   4
## 1464                 unusual                 attitude   4
## 1465                   upper                  surface   4
## 1466                vertical                 attitude   4
## 1467                  visual                     cues   4
## 1468                   voice                 recorder   4
## 1469                 warning                    light   4
## 1470                 weather               controlled   4
## 1471                 weather                    pilot   4
## 1472                    wing                  clipped   4
## 1473                    wing                     fuel   4
## 1474                   world                      war   4
## 1475                   yards                    short   4
## 1476                     0.5                    miles   3
## 1477                   1,100                     feet   3
## 1478                   1,200                   meters   3
## 1479                   1,300                       ft   3
## 1480                   1,600                     feet   3
## 1481                    1.25                    miles   3
## 1482                  10,500                       ft   3
## 1483                     100                    yards   3
## 1484                      11                  minutes   3
## 1485                      12                  minutes   3
## 1486                  12,000                       ft   3
## 1487                     125                    miles   3
## 1488                      13                       km   3
## 1489                      13                    miles   3
## 1490                      13                  minutes   3
## 1491                      14                    miles   3
## 1492                      15                  degrees   3
## 1493                  15,000                       ft   3
## 1494                  18,000                       ft   3
## 1495                       2                generator   3
## 1496                       2                       nm   3
## 1497                   2,000                   meters   3
## 1498                   2,200                     feet   3
## 1499                   2,300                       ft   3
## 1500                   2,500                     feet   3
## 1501                   2,800                       ft   3
## 1502                      23                    miles   3
## 1503                      25                     feet   3
## 1504                      28                       km   3
## 1505                       3                   aboard   3
## 1506                       3                     crew   3
## 1507                       3                       nm   3
## 1508                      30                   killed   3
## 1509                     300                    miles   3
## 1510                      31                    miles   3
## 1511                  33,000                     feet   3
## 1512                     360                   degree   3
## 1513                       4                  minutes   3
## 1514                       4                     prop   3
## 1515                      45                   killed   3
## 1516                       5                 cylinder   3
## 1517                      50                     feet   3
## 1518                     500                    yards   3
## 1519                       6                   piston   3
## 1520                     650                     feet   3
## 1521                       7                       km   3
## 1522                   7,800                       ft   3
## 1523                      70                       km   3
## 1524                      70                    miles   3
## 1525                      75                     feet   3
## 1526                   8,000                     feet   3
## 1527                       9                     crew   3
## 1528                   9,000                       ft   3
## 1529                      90                   degree   3
## 1530                       ã                        â   3
## 1531                accident                  failure   3
## 1532                  active                   runway   3
## 1533                adequate                clearance   3
## 1534                adequate                  terrain   3
## 1535                adhesive                     tape   3
## 1536             aeronautics           administration   3
## 1537                     aft                    cargo   3
## 1538                     air             conditioning   3
## 1539                     air                   france   3
## 1540                     air                   intake   3
## 1541                     air                    loads   3
## 1542                     air                    strip   3
## 1543                airborne                  overran   3
## 1544                aircraft                       15   3
## 1545                aircraft                    burst   3
## 1546                aircraft                   caught   3
## 1547                aircraft                  causing   3
## 1548                aircraft            certification   3
## 1549                aircraft                  circled   3
## 1550                aircraft                  clipped   3
## 1551                aircraft                 deviated   3
## 1552                aircraft                     fell   3
## 1553                aircraft                     left   3
## 1554                aircraft                     loss   3
## 1555                aircraft                  missile   3
## 1556                aircraft               penetrated   3
## 1557                aircraft                resulting   3
## 1558                aircraft                  skidded   3
## 1559                aircraft                  strayed   3
## 1560                aircraft             subsequently   3
## 1561                aircraft           uncontrollable   3
## 1562              aircraft's                encounter   3
## 1563                airlines                   flight   3
## 1564                airplane                  control   3
## 1565                airplane              encountered   3
## 1566                airplane                  entered   3
## 1567              airplane's                    stall   3
## 1568              airplane's                    wings   3
## 1569                 airport                  barrier   3
## 1570                 airport                    bound   3
## 1571                 airport                   engine   3
## 1572                 airport                   failed   3
## 1573                 airport                    radar   3
## 1574                airspeed                resulting   3
## 1575                   alarm                  sounded   3
## 1576                  alaska                 airlines   3
## 1577                 allowed                   vented   3
## 1578               altimeter                  reading   3
## 1579                altitude                awareness   3
## 1580                altitude                clearance   3
## 1581                altitude             contributing   3
## 1582                    anti                      ice   3
## 1583                 applied                    power   3
## 1584                approach                      atc   3
## 1585                approach            configuration   3
## 1586                approach                  control   3
## 1587                approach                 criteria   3
## 1588                approach                 lighting   3
## 1589                approach                  pattern   3
## 1590                approach                premature   3
## 1591                approach                resulting   3
## 1592                approach                   struck   3
## 1593             approaching                   runway   3
## 1594           approximately                        3   3
## 1595             atmospheric               conditions   3
## 1596                 attempt                  crashed   3
## 1597                 attempt                      due   3
## 1598               attempted                  landing   3
## 1599                attitude                  stalled   3
## 1600                aviation         administration's   3
## 1601               avoidance                   system   3
## 1602                 balance                  program   3
## 1603                 battery                   switch   3
## 1604                   blind                   canyon   3
## 1605                   blood                  alcohol   3
## 1606                  boeing                      707   3
## 1607                  boeing                      737   3
## 1608                  boeing                      747   3
## 1609                    bomb                   aboard   3
## 1610                boundary                    fence   3
## 1611                     box                   canyon   3
## 1612                 braking                   system   3
## 1613               brazilian                      air   3
## 1614                   broke                     free   3
## 1615                   broke                    loose   3
## 1616                  burned                  failure   3
## 1617                  burned                    pilot   3
## 1618                  burned                    short   3
## 1619                  burned                  shortly   3
## 1620                business                      jet   3
## 1621                   cabin                     crew   3
## 1622                   cabin                     door   3
## 1623                   cabin                    floor   3
## 1624                canadian                      air   3
## 1625                 captain                descended   3
## 1626                 captain                   failed   3
## 1627                 captain                   stated   3
## 1628                 captain                  trainee   3
## 1629               captain's                  attempt   3
## 1630                   cargo                 aircraft   3
## 1631                   cargo                      jet   3
## 1632                 carried                   aboard   3
## 1633                carrying                 military   3
## 1634                carrying                   troops   3
## 1635                    cart                  wheeled   3
## 1636                carthage                  airport   3
## 1637                  center                     wing   3
## 1638                   cerro                       el   3
## 1639           certification                standards   3
## 1640                 charles                       de   3
## 1641                   chief                    pilot   3
## 1642                   civil              aeronautics   3
## 1643               clearance                 altitude   3
## 1644               cleveland                  airport   3
## 1645                   climb                     rate   3
## 1646                 clipped                     tree   3
## 1647                   cloud                     base   3
## 1648                 cockpit                     crew   3
## 1649                 coconut               plantation   3
## 1650               collision                avoidance   3
## 1651                 command                   failed   3
## 1652               command's                  failure   3
## 1653              commercial                      jet   3
## 1654                commuter                    plane   3
## 1655             compartment                   caused   3
## 1656                complete               electrical   3
## 1657              conditions              encountered   3
## 1658              conditions                including   3
## 1659              conditions                   midair   3
## 1660              conditions                prevailed   3
## 1661              conditions                  shortly   3
## 1662               congonhas                  airport   3
## 1663                continue                   flight   3
## 1664              continuing                   flight   3
## 1665                 control             contributing   3
## 1666                 control                    input   3
## 1667                 control                     lost   3
## 1668                 control                 resulted   3
## 1669                 control                resulting   3
## 1670                 control                   struck   3
## 1671            controller's                 issuance   3
## 1672                controls                  crashed   3
## 1673                 correct                 approach   3
## 1674                 correct                procedure   3
## 1675                 correct                   runway   3
## 1676              corrective                   action   3
## 1677                 covered                   runway   3
## 1678                   crash                     fire   3
## 1679                 crashed                       12   3
## 1680                 crashed                      2.5   3
## 1681                 crashed                       60   3
## 1682                 crashed                        9   3
## 1683                 crashed               improperly   3
## 1684                 crashed               inadequate   3
## 1685                 crashed                   landed   3
## 1686                 crashed                      mid   3
## 1687                 crashed                   struck   3
## 1688                    crew                  advised   3
## 1689                    crew                  allowed   3
## 1690                    crew                   caused   3
## 1691                    crew                    chose   3
## 1692                    crew                contacted   3
## 1693                    crew                 diverted   3
## 1694                    crew               inadequate   3
## 1695                    crew               mistakenly   3
## 1696                    crew                  mistook   3
## 1697                    crew                     poor   3
## 1698                  crew's                 improper   3
## 1699            cumulonimbus                    cloud   3
## 1700                cylinder                     head   3
## 1701                      da                     nang   3
## 1702                    data                 recorder   3
## 1703                      dc                       10   3
## 1704                      dc                        6   3
## 1705                      de                   gaulle   3
## 1706                      de                      oro   3
## 1707                 defense                 minister   3
## 1708                  degree                    angle   3
## 1709                  degree                     nose   3
## 1710            deliberately                  crashed   3
## 1711              delivering                     mail   3
## 1712                delivery                   flight   3
## 1713                   dense                   forest   3
## 1714               departure                procedure   3
## 1715               departure               procedures   3
## 1716                 descent                continued   3
## 1717                 descent                      due   3
## 1718                  design                   limits   3
## 1719                  device                   aboard   3
## 1720                  direct                     mode   3
## 1721                  direct                    route   3
## 1722                   ditch                  crashed   3
## 1723                     dme                 approach   3
## 1724                  dorval                  airport   3
## 1725                drainage                    ditch   3
## 1726                drilling                 platform   3
## 1727                  dulles            international   3
## 1728                     dum                      dum   3
## 1729                    dust                    storm   3
## 1730                     eal                      853   3
## 1731                    east                    river   3
## 1732                    east                southeast   3
## 1733                    edge                    slats   3
## 1734              electrical                    short   3
## 1735                     elk                 mountain   3
## 1736               emergency                  message   3
## 1737            encountering                   engine   3
## 1738                  engine                 approach   3
## 1739                  engine                    broke   3
## 1740                  engine            disintegrated   3
## 1741                  engine                feathered   3
## 1742                  engine                    flame   3
## 1743                  engine              inoperative   3
## 1744                  engine                     loss   3
## 1745                  engine           malfunctioning   3
## 1746                  engine                 pressure   3
## 1747                  engine                  stopped   3
## 1748                  engine                  turbine   3
## 1749              engineer's                  failure   3
## 1750                 engines                  causing   3
## 1751                 engines                  crashed   3
## 1752               erroneous              information   3
## 1753                   error                      atc   3
## 1754                   error                   caused   3
## 1755                   error                 improper   3
## 1756              eventually                  crashed   3
## 1757                evidence                 suggests   3
## 1758               excessive                     rate   3
## 1759               exercised                     poor   3
## 1760              experience                   flying   3
## 1761                exploded                   aboard   3
## 1762               explosion                   caused   3
## 1763                extended               centerline   3
## 1764                external                   visual   3
## 1765                     faa               procedures   3
## 1766                  factor             contributing   3
## 1767                  factor                  crashed   3
## 1768                 factors             contributing   3
## 1769                  failed                  causing   3
## 1770                  failed                  crashed   3
## 1771                 failure                 resulted   3
## 1772                 failure                  shortly   3
## 1773                 failure                   struck   3
## 1774                     fan                     disk   3
## 1775                 fatally                  injured   3
## 1776                  faulty                   design   3
## 1777                 federal              regulations   3
## 1778                    feet                  shortly   3
## 1779                   field                       10   3
## 1780                   field                    broke   3
## 1781                 fifteen                  minutes   3
## 1782                 fighter                      jet   3
## 1783                fighters                  crashed   3
## 1784                   final                    phase   3
## 1785                    fine                      air   3
## 1786                    fire                continued   3
## 1787                    fire                  failure   3
## 1788                    fire                    pilot   3
## 1789                      fl                      350   3
## 1790                  flames                    pilot   3
## 1791                    flap                extension   3
## 1792                    flat                  terrain   3
## 1793                    flaw                   caused   3
## 1794                  flight                    break   3
## 1795                  flight                    crewã   3
## 1796                  flight                     data   3
## 1797                  flight                 director   3
## 1798                  flight               instrument   3
## 1799                  flight                     loss   3
## 1800                  flight               management   3
## 1801                  flight                   manual   3
## 1802                  flight               parameters   3
## 1803            flightcrew's                 decision   3
## 1804                  flying                 attitude   3
## 1805                  flying                      ifr   3
## 1806                  flying               procedures   3
## 1807                  flying                     time   3
## 1808                     fog                    bound   3
## 1809                     fog                 improper   3
## 1810                    foot                 mountain   3
## 1811                football                     team   3
## 1812                   force                    plane   3
## 1813                   force                    winds   3
## 1814                    fort                    worth   3
## 1815                   found                        2   3
## 1816               francisco            international   3
## 1817                freezing                     rain   3
## 1818                      ft                       20   3
## 1819                      ft                  crashed   3
## 1820                      ft                     hill   3
## 1821                      ft                       mt   3
## 1822                      ft                    pilot   3
## 1823                      ft                  shortly   3
## 1824                    fuel                 quantity   3
## 1825                fuselage                  failure   3
## 1826                fuselage                   struck   3
## 1827                 gaining                 altitude   3
## 1828                    gale                    force   3
## 1829                  gaulle                  airport   3
## 1830                    gear                   failed   3
## 1831                    gear                   struck   3
## 1832                    gear                     tire   3
## 1833                    gear                   wheels   3
## 1834                  german                 military   3
## 1835                 gradual                  descent   3
## 1836                 gravity                   limits   3
## 1837                  ground                collision   3
## 1838                  ground                    icing   3
## 1839                  ground                    pilot   3
## 1840                  ground                    radar   3
## 1841                  ground                reference   3
## 1842                  ground               visibility   3
## 1843               hazardous                  terrain   3
## 1844                 heavily                  damaged   3
## 1845                 heavily                   loaded   3
## 1846                   heavy            thunderstorms   3
## 1847                   heavy                  traffic   3
## 1848              helicopter                    crash   3
## 1849                hijacked                  shortly   3
## 1850                    hill                        3   3
## 1851                 hitting                    trees   3
## 1852              horizontal                     tail   3
## 1853                     hot                      air   3
## 1854                    hour                   flight   3
## 1855                   house                  located   3
## 1856                   house                    short   3
## 1857                  houses                  shortly   3
## 1858               hydraulic                  failure   3
## 1859               hydraulic                   system   3
## 1860               hydraulic                  systems   3
## 1861                     ice                accretion   3
## 1862                     ice                  covered   3
## 1863                   icing                   caused   3
## 1864                   icing                condition   3
## 1865                     ifr                clearance   3
## 1866                     ifr                conditons   3
## 1867                     ifr                condtions   3
## 1868                     ifr                   flight   3
## 1869                      il                       14   3
## 1870                      il                       76   3
## 1871                improper                     crew   3
## 1872                improper                     fuel   3
## 1873              inadequate                   design   3
## 1874              inadequate              supervision   3
## 1875              inadequate                 training   3
## 1876             inadvertent                encounter   3
## 1877             inadvertent                   flight   3
## 1878               incorrect               indication   3
## 1879              increasing                    power   3
## 1880             information                 supplied   3
## 1881              instructor                    pilot   3
## 1882              instrument               conditions   3
## 1883              instrument                departure   3
## 1884              instrument                   flying   3
## 1885             instruments                  crashed   3
## 1886            insufficient                   runway   3
## 1887               insurance                 policies   3
## 1888                 intense                     fire   3
## 1889           investigation                concluded   3
## 1890           investigation               determined   3
## 1891           investigation                    found   3
## 1892                     itã                        â   3
## 1893                   japan                      air   3
## 1894                     jet                 airliner   3
## 1895                    juan                   puerto   3
## 1896                    jump                     seat   3
## 1897                  killed                     flew   3
## 1898                  killed                 improper   3
## 1899                  killed                   midair   3
## 1900                    king                      air   3
## 1901                    kuan                 military   3
## 1902                    kung                     kuan   3
## 1903                      la                      paz   3
## 1904                    land                     crew   3
## 1905                    land                  failure   3
## 1906                 landing                     crew   3
## 1907                 landing                    pilot   3
## 1908                 landing               procedures   3
## 1909                 landing                   system   3
## 1910                 landing                   weight   3
## 1911             landing.the                 aircraft   3
## 1912                    left               horizontal   3
## 1913                   level                 attitude   3
## 1914                   light                     pole   3
## 1915                lighting                   system   3
## 1916                 locking                mechanism   3
## 1917                    lone                 survivor   3
## 1918                    lost                  crashed   3
## 1919                    lost                   visual   3
## 1920                    loud                    noise   3
## 1921                     low                 attitude   3
## 1922                     low                    lying   3
## 1923                     low                     pass   3
## 1924                     low                 pressure   3
## 1925                    mail                  crashed   3
## 1926                maintain                 aircraft   3
## 1927             maintenance                     crew   3
## 1928             maintenance                    error   3
## 1929             maintenance               inspection   3
## 1930           manufacturing                   defect   3
## 1931                  market                   square   3
## 1932                 maximum                  landing   3
## 1933                 maximum                  takeoff   3
## 1934               mcdonnell                  douglas   3
## 1935                 medical               helicopter   3
## 1936                  mekong                    river   3
## 1937                  meters                     past   3
## 1938              microburst                  induced   3
## 1939                  midway                  airport   3
## 1940                    mile                     east   3
## 1941                    mile                    north   3
## 1942                   miles                      ene   3
## 1943                   miles                     past   3
## 1944                military                      air   3
## 1945                military                  fighter   3
## 1946                 minimum                   safety   3
## 1947                 missile                    fired   3
## 1948                 missing                       en   3
## 1949                moderate               turbulence   3
## 1950               momentary                     loss   3
## 1951                  monica                      bay   3
## 1952                mountain                       10   3
## 1953                mountain                       15   3
## 1954                mountain                        5   3
## 1955                mountain                    pilot   3
## 1956               mountains                       50   3
## 1957               mountains                  shortly   3
## 1958                      mt                       el   3
## 1959                   muddy                    field   3
## 1960                national           transportation   3
## 1961              navigation              instruments   3
## 1962                 nearest                  airport   3
## 1963                   night                   visual   3
## 1964                  normal                 approach   3
## 1965                  normal                   flight   3
## 1966                normandy                 invasion   3
## 1967                   north                northwest   3
## 1968                   north                    slope   3
## 1969                    nose                   diving   3
## 1970                    nose                  section   3
## 1971                   ocean                       10   3
## 1972                   ocean                   engine   3
## 1973                 onboard                     fire   3
## 1974               operation                descended   3
## 1975             operational                  control   3
## 1976               operatorã                        â   3
## 1977                    orly                  airport   3
## 1978                overcast               conditions   3
## 1979               overshoot                procedure   3
## 1980                overshot                   runway   3
## 1981                  parked                 aircraft   3
## 1982                 parking                      lot   3
## 1983               partially                submerged   3
## 1984               passenger                 airliner   3
## 1985               passenger              compartment   3
## 1986               passenger                  drowned   3
## 1987               passenger                      jet   3
## 1988              passengers                 survived   3
## 1989                    path                    angle   3
## 1990                  people                including   3
## 1991               perimeter                     wall   3
## 1992               personnel                  crashed   3
## 1993                   pilot                  allowed   3
## 1994                   pilot               attempting   3
## 1995                   pilot                     died   3
## 1996                   pilot                  elected   3
## 1997                   pilot              experienced   3
## 1998                   pilot                   flying   3
## 1999                   pilot                initiated   3
## 2000                   pilot                  refused   3
## 2001                   pilot                 switched   3
## 2002                 pilot's                   action   3
## 2003                 pilot's                  attempt   3
## 2004                 pilot's                continued   3
## 2005                 pilot's                inability   3
## 2006                 pilot's               inadequate   3
## 2007                 pilot's                     lack   3
## 2008                 pilot's                     seat   3
## 2009                   piper                  crashed   3
## 2010                   piper                       pa   3
## 2011                   pitch                 attitude   3
## 2012                   pitot                    tubes   3
## 2013                   plane                    burst   3
## 2014                   plane                  carried   3
## 2015                   plane                  causing   3
## 2016                   plane                  circled   3
## 2017                   plane                developed   3
## 2018                   plane                 deviated   3
## 2019                   plane                     dove   3
## 2020                   plane              encountered   3
## 2021                   plane               eventually   3
## 2022                   plane                   flying   3
## 2023                   plane                     nose   3
## 2024                   plane                   stayed   3
## 2025                 planned                    route   3
## 2026                    poor                  cockpit   3
## 2027                    poor            communication   3
## 2028                    poor                 decision   3
## 2029                    poor                 planning   3
## 2030                possibly                     shot   3
## 2031                    post                    crash   3
## 2032                    post              maintenance   3
## 2033                 potomac                    river   3
## 2034                   power                    plant   3
## 2035           precautionary                  landing   3
## 2036               preflight               inspection   3
## 2037               preflight              preparation   3
## 2038              prescribed                   flight   3
## 2039                pressure                 bulkhead   3
## 2040                 primary                   flight   3
## 2041                     pro                   golfer   3
## 2042              procedures               directives   3
## 2043               propeller                    pitch   3
## 2044               propeller                   struck   3
## 2045                  proper                 approach   3
## 2046                  proper                  control   3
## 2047                  proper                   flight   3
## 2048                 provide                 adequate   3
## 2049               published               instrument   3
## 2050                  puerto                     rico   3
## 2051                   puget                    sound   3
## 2052                   radar                  screens   3
## 2053                   radar                  service   3
## 2054                   radar                  shortly   3
## 2055                   radio                altimeter   3
## 2056                   radio                 operator   3
## 2057                    rain                windshear   3
## 2058                   range                  station   3
## 2059                    rear                     door   3
## 2060                    rear                   engine   3
## 2061                    rear                  section   3
## 2062                recorder                 revealed   3
## 2063                 recover             contributing   3
## 2064                     red                      sea   3
## 2065                 reduced                 altitude   3
## 2066                  remain                    alert   3
## 2067                 remains                  unknown   3
## 2068                remedial                   action   3
## 2069               reporting                   engine   3
## 2070                  rescue                    crews   3
## 2071                    rest                   upside   3
## 2072                  return                     trip   3
## 2073                 reverse                 position   3
## 2074                   ridge                      top   3
## 2075                   river                     bank   3
## 2076                     rod                  bearing   3
## 2077                  rolled                 inverted   3
## 2078                  rolled                     left   3
## 2079                    roof                     tops   3
## 2080                   rotor                  failure   3
## 2081                   rotor                    speed   3
## 2082                   rough                  terrain   3
## 2083                   route                  ditched   3
## 2084                   route               navigation   3
## 2085                  rumors                  persist   3
## 2086                  runway                       06   3
## 2087                  runway                       10   3
## 2088                  runway                       11   3
## 2089                  runway                       14   3
## 2090                  runway                      18r   3
## 2091                  runway                       23   3
## 2092                  runway                       26   3
## 2093                  runway                      31l   3
## 2094                  runway                alignment   3
## 2095                  runway                  bounced   3
## 2096                  runway                  crossed   3
## 2097                  runway              environment   3
## 2098                  runway              malfunction   3
## 2099                  runway                    pilot   3
## 2100                  runway                  shortly   3
## 2101                  runway                 striking   3
## 2102                    safe                emergency   3
## 2103                    safe                   flight   3
## 2104                     sam                     neua   3
## 2105                     san                     jose   3
## 2106                    sand                    storm   3
## 2107                    sank                  crashed   3
## 2108                   santa                  barbara   3
## 2109                     sao                    paulo   3
## 2110              scattering                 wreckage   3
## 2111                     sea                        1   3
## 2112                     sea                      due   3
## 2113                     sea                    plane   3
## 2114                seaplane                  stalled   3
## 2115                    seat                    belts   3
## 2116                selector               positioned   3
## 2117                 service                     door   3
## 2118                  severe                downdraft   3
## 2119                  severe                     loss   3
## 2120            sheremetyevo                  airport   3
## 2121                shifting                    cargo   3
## 2122                   short                   runway   3
## 2123                   short                     time   3
## 2124                shrouded                 mountain   3
## 2125                  sierra                       de   3
## 2126             sightseeing                     tour   3
## 2127             sightseeing                     trip   3
## 2128               simulated                emergency   3
## 2129                   smoke                   filled   3
## 2130                    snow                     bank   3
## 2131                    snow                  falling   3
## 2132                    snow                  showers   3
## 2133                  soccer                    field   3
## 2134                  soviet                      air   3
## 2135                 spatial              orientation   3
## 2136                   speed                     dive   3
## 2137                   speed                 improper   3
## 2138                     spy                    plane   3
## 2139              stabilized                 approach   3
## 2140              stabilizer                  leading   3
## 2141                   stall                     spin   3
## 2142                 stalled                      hit   3
## 2143                  staten                   island   3
## 2144                  static                discharge   3
## 2145                  stayed                   afloat   3
## 2146                    stop                  landing   3
## 2147                  strong               downdrafts   3
## 2148                  strong                     head   3
## 2149                  strong                headwinds   3
## 2150                  struck                 approach   3
## 2151              subsequent                     fire   3
## 2152              subsequent                     loss   3
## 2153                suddenly                descended   3
## 2154                suddenly                  dropped   3
## 2155                suddenly                  pitched   3
## 2156                suddenly                   rolled   3
## 2157              sufficient                 airspeed   3
## 2158              sufficient                    speed   3
## 2159            supplemental                   oxygen   3
## 2160                survivor                  crashed   3
## 2161                   swiss                      air   3
## 2162                  system                  crashed   3
## 2163                  system                      due   3
## 2164                  system                   failed   3
## 2165                    tail                    plane   3
## 2166                    tail                     wind   3
## 2167                 takeoff                  causing   3
## 2168                 takeoff             contributing   3
## 2169                 takeoff                     flew   3
## 2170                 takeoff               overloaded   3
## 2171                 takeoff                      run   3
## 2172                 takeoff                     shot   3
## 2173               technical             difficulties   3
## 2174                terminal                 building   3
## 2175                 terrain                    ahead   3
## 2176                 terrain                     shot   3
## 2177               threshold                  crashed   3
## 2178                    tops                  stalled   3
## 2179                 totally                destroyed   3
## 2180                 trainee                    pilot   3
## 2181                training                exercises   3
## 2182                   trans                 atlantic   3
## 2183                    trim              compensator   3
## 2184                   tunis                 carthage   3
## 2185                  twelve                   aboard   3
## 2186                     u.s                     army   3
## 2187                     u.s                 military   3
## 2188              ultimately                      led   3
## 2189          uncontrollable                  crashed   3
## 2190            undetermined                   origin   3
## 2191                  unwise                 decision   3
## 2192                      v1                    speed   3
## 2193                  veered                  sharply   3
## 2194                  vented                     fuel   3
## 2195                vertical                     bank   3
## 2196                vertical               stabilizer   3
## 2197                     vfr                     mode   3
## 2198               vibration                   caused   3
## 2199                     vic                   morrow   3
## 2200                  visual           meteorological   3
## 2201                  visual               perception   3
## 2202                    wake                   island   3
## 2203                     war                       ii   3
## 2204                   water            contamination   3
## 2205                   water                  shortly   3
## 2206                   water                  surface   3
## 2207                 weather              information   3
## 2208                 weather                 minimums   3
## 2209                 weather                    radar   3
## 2210                 weather                  related   3
## 2211                    west                northwest   3
## 2212                   wheat                    field   3
## 2213                    wind                direction   3
## 2214                   winds                   caused   3
## 2215               windshear                  crashed   3
## 2216                    wing                     anti   3
## 2217                    wing                 detached   3
## 2218                    wing                  failure   3
## 2219                    wing                      low   3
## 2220                    wing                     tank   3
## 2221               witnesses                   stated   3
## 2222                  wooded                   ravine   3
## 2223               worsening                  weather   3
## 2224                   wrong                 approach   3
## 2225                     yak                       40   3
## 2226                   yards                 offshore   3
## 2227                   yards                     past   3
## 2228                    york                     city   3
## 2229                       1                        1   2
## 2230                       1                    month   2
## 2231                   1,200                     feet   2
## 2232                   1,500                   meters   2
## 2233                   1,800                     feet   2
## 2234                   1,800                       ft   2
## 2235                     1.5                       km   2
## 2236                     1.5                     mile   2
## 2237                     1.8                    miles   2
## 2238                      10                       24   2
## 2239                      10                 cylinder   2
## 2240                  10,000                     feet   2
## 2241                  10,500                     feet   2
## 2242                    1000                       ft   2
## 2243                      11                       47   2
## 2244                      11                  degrees   2
## 2245                  11,000                     feet   2
## 2246                  11,200                       ft   2
## 2247                      12                   aboard   2
## 2248                  12,500                     feet   2
## 2249                  12,500                       ft   2
## 2250                     120                    miles   2
## 2251                  13,000                       ft   2
## 2252                  13,500                     feet   2
## 2253                     130                     feet   2
## 2254                     134                  degrees   2
## 2255                      14                   aboard   2
## 2256                  14,000                     feet   2
## 2257                  14,000                       ft   2
## 2258                  14,200                       ft   2
## 2259                      15                       nm   2
## 2260                     155                     kias   2
## 2261                      16                    hours   2
## 2262                      16                     inch   2
## 2263                      16                       km   2
## 2264                      16                    miles   2
## 2265                      17                       km   2
## 2266                      18                     feet   2
## 2267                      18                       km   2
## 2268                      18                  minutes   2
## 2269                      18                       nm   2
## 2270                     180                  degrees   2
## 2271                      19                  minutes   2
## 2272                      19               passengers   2
## 2273                     1st                  officer   2
## 2274                       2                        3   2
## 2275                       2                     crew   2
## 2276                       2                  degrees   2
## 2277                       2                    hours   2
## 2278                       2                   missed   2
## 2279                       2               passengers   2
## 2280                       2               propellers   2
## 2281                   2,400                     feet   2
## 2282                   2,900                       ft   2
## 2283                      20                     feet   2
## 2284                      20                      kms   2
## 2285                     200                   meters   2
## 2286                      21                       km   2
## 2287                  21,000                       ft   2
## 2288                      22                       km   2
## 2289                      22                    miles   2
## 2290                      24                       47   2
## 2291                      24                       km   2
## 2292                  24,000                       ft   2
## 2293                      25                  minutes   2
## 2294                     250                       ft   2
## 2295                      27                    miles   2
## 2296                      27                  minutes   2
## 2297                      28                    miles   2
## 2298                       3                  degrees   2
## 2299                       3                    homes   2
## 2300                       3               passengers   2
## 2301                       3                    times   2
## 2302                   3,500                     feet   2
## 2303                     3.3                    miles   2
## 2304                      30                  degrees   2
## 2305                      30                    hours   2
## 2306                      30                   minute   2
## 2307                  30,000                       ft   2
## 2308                     300                   meters   2
## 2309                     300                      mph   2
## 2310                      32                    miles   2
## 2311                      34                       km   2
## 2312                      35                       km   2
## 2313                      35                       nm   2
## 2314                  35,000                     feet   2
## 2315                      38                  crashed   2
## 2316                      38                   killed   2
## 2317                  38,000                       ft   2
## 2318                      39                       km   2
## 2319                       4                alternate   2
## 2320                       4                     days   2
## 2321                       4               passengers   2
## 2322                       4                    times   2
## 2323                   4,200                       ft   2
## 2324                   4,300                       ft   2
## 2325                   4,700                     feet   2
## 2326                   4,800                       ft   2
## 2327                      40                     feet   2
## 2328                     400                    yards   2
## 2329                      41                   killed   2
## 2330                      42                   killed   2
## 2331                      43                    miles   2
## 2332                      45                  degrees   2
## 2333                      45                       km   2
## 2334                      45                   minute   2
## 2335                      45                  minutes   2
## 2336                     450                     feet   2
## 2337                      46                   killed   2
## 2338                       5                   months   2
## 2339                       5               passengers   2
## 2340                   5,500                       ft   2
## 2341                      50                   meters   2
## 2342                      50                  minutes   2
## 2343                     500                    miles   2
## 2344                      52                   killed   2
## 2345                      54                  degrees   2
## 2346                      56                   killed   2
## 2347                       6                     crew   2
## 2348                   6,100                     feet   2
## 2349                   6,500                       ft   2
## 2350                     6.5                    miles   2
## 2351                      60                  degrees   2
## 2352                      60                     feet   2
## 2353                      65                       km   2
## 2354                      67                       km   2
## 2355                       7                   aboard   2
## 2356                       7                     crew   2
## 2357                       7                  minutes   2
## 2358                       7                  missile   2
## 2359                   7,500                       ft   2
## 2360                     700                       ft   2
## 2361                     707                   landed   2
## 2362                      75                    miles   2
## 2363                       8               helicopter   2
## 2364                       8                       nm   2
## 2365                      80                    knots   2
## 2366                       9                   aboard   2
## 2367                       9                  failure   2
## 2368                   9,200                     feet   2
## 2369                      90                      deg   2
## 2370                      90                  minutes   2
## 2371                     990                     feet   2
## 2372                       â                incorrect   2
## 2373               abandoned                 approach   2
## 2374                abnormal                   flight   2
## 2375                abnormal                situation   2
## 2376                  aboard                       56   2
## 2377                  aboard                       pt   2
## 2378                   abort                  takeoff   2
## 2379                  abrupt                     left   2
## 2380                  abrupt                 maneuver   2
## 2381                     abu                    dhabi   2
## 2382                  access                     door   2
## 2383               accessory                    drive   2
## 2384                accident                     crew   2
## 2385                accident                   flight   2
## 2386                accident                      led   2
## 2387                accident                 sequence   2
## 2388                accident                  shortly   2
## 2389                accident                     site   2
## 2390              accidental                collision   2
## 2391            accidentally                      hit   2
## 2392            accidentally                     shot   2
## 2393                 acquire                     mode   2
## 2394                activity                  crashed   2
## 2395                      ad                        6   2
## 2396                   addis                    ababa   2
## 2397                adequate                  control   2
## 2398                adequate                  forward   2
## 2399                adequate                reference   2
## 2400                adequate              supervision   2
## 2401                adequate                 training   2
## 2402              adequately                   manage   2
## 2403                   adler                  airport   2
## 2404               adversely                 affected   2
## 2405                  aerial             surveillance   2
## 2406             aerodynamic                    loads   2
## 2407                  afghan                guerillas   2
## 2408                     aft                      c.g   2
## 2409                     aft                    limit   2
## 2410                   agana                    naval   2
## 2411                 aileron                 controls   2
## 2412                 aileron             oscillations   2
## 2413                     air                 currents   2
## 2414                     air                  defense   2
## 2415                     air                 disaster   2
## 2416                     air                      due   2
## 2417                     air                    field   2
## 2418                     air                    inlet   2
## 2419                     air                     mail   2
## 2420                     air                 marshall   2
## 2421                     air                    route   2
## 2422                     air                    space   2
## 2423                     air                     tour   2
## 2424                airborne                  crashed   2
## 2425                airborne                  express   2
## 2426                aircraft               apparently   2
## 2427                aircraft                   barely   2
## 2428                aircraft                  changed   2
## 2429                aircraft                  company   2
## 2430                aircraft            configuration   2
## 2431                aircraft                contacted   2
## 2432                aircraft                     dove   2
## 2433                aircraft                  failure   2
## 2434                aircraft                   flight   2
## 2435                aircraft                gradually   2
## 2436                aircraft              immediately   2
## 2437                aircraft              intercepted   2
## 2438                aircraft                   leased   2
## 2439                aircraft                      led   2
## 2440                aircraft                      log   2
## 2441                aircraft                   losing   2
## 2442                aircraft               maintained   2
## 2443                aircraft              maneuvering   2
## 2444                aircraft                    nosed   2
## 2445                aircraft               overloaded   2
## 2446                aircraft                   passed   2
## 2447                aircraft                 position   2
## 2448                aircraft                    prior   2
## 2449                aircraft                 reported   2
## 2450                aircraft                  rotated   2
## 2451                aircraft                   safely   2
## 2452                aircraft                     sank   2
## 2453                aircraft                     slid   2
## 2454                aircraft                     spun   2
## 2455                aircraft                  started   2
## 2456                aircraft                  stopped   2
## 2457                aircraft                structure   2
## 2458                aircraft                  swerved   2
## 2459                aircraft                    swung   2
## 2460                aircraft                   twenty   2
## 2461                aircraft                    yawed   2
## 2462              aircraft's                 altitude   2
## 2463              aircraft's                    cabin   2
## 2464              aircraft's                  descent   2
## 2465              aircraft's               electrical   2
## 2466              aircraft's                    speed   2
## 2467                airframe                    icing   2
## 2468                airliner              disappeared   2
## 2469                airliner                  drifted   2
## 2470                airlines                    crash   2
## 2471                airlines                       dc   2
## 2472                airlines                 extended   2
## 2473                airplane                   banked   2
## 2474                airplane             contributing   2
## 2475                airplane                  rapidly   2
## 2476                airplane                   rolled   2
## 2477               airplaneã                        â   2
## 2478                 airport                  control   2
## 2479                 airport               controlled   2
## 2480                 airport                 crashing   2
## 2481                 airport                       en   2
## 2482                 airport                    false   2
## 2483                 airport                     fire   2
## 2484                 airport                     loss   2
## 2485                 airport                    pilot   2
## 2486                 airport                     poor   2
## 2487                 airport                   runway   2
## 2488                 airport                   struck   2
## 2489                 airport                  traffic   2
## 2490                 airport                witnesses   2
## 2491               airport's                  control   2
## 2492                airspeed                  dropped   2
## 2493                airspeed              indications   2
## 2494                airspeed                indicator   2
## 2495           airworthiness                directive   2
## 2496                 alcohol               impairment   2
## 2497               alcoholic               impairment   2
## 2498                   alert                   system   2
## 2499              alexandria                    egypt   2
## 2500                  allied                 fighters   2
## 2501                  almaza                  airport   2
## 2502                   aloha                airline's   2
## 2503               alternate                 airfield   2
## 2504               alternate              destination   2
## 2505               alternate                  landing   2
## 2506               alternate                 probable   2
## 2507               alternate                     tank   2
## 2508               alternate                     vent   2
## 2509                altitude                  acquire   2
## 2510                altitude                    alert   2
## 2511                altitude                   failed   2
## 2512                altitude                 improper   2
## 2513                altitude                     lost   2
## 2514                altitude                    lower   2
## 2515                altitude                  overran   2
## 2516                altitude               prescribed   2
## 2517                altitude               separation   2
## 2518                altitude                  settled   2
## 2519                altitude                  shortly   2
## 2520                altitude                    stall   2
## 2521                altitude                   struck   2
## 2522                  amazon                   forest   2
## 2523                  amazon                   jungle   2
## 2524                   amber                   airway   2
## 2525                  amelia                  earhart   2
## 2526                   angle                increased   2
## 2527                  ankara                   turkey   2
## 2528                 antenna                    tower   2
## 2529                 antonov                       12   2
## 2530               apartment                 building   2
## 2531                apparent                  attempt   2
## 2532              apparently                   caused   2
## 2533              apparently                     flew   2
## 2534                appeared                   normal   2
## 2535                   apple                  orchard   2
## 2536                   apply                  reverse   2
## 2537                approach                       18   2
## 2538                approach                        2   2
## 2539                approach                        4   2
## 2540                approach                 briefing   2
## 2541                approach                clearance   2
## 2542                approach                conducted   2
## 2543                approach             contributing   2
## 2544                approach               controlled   2
## 2545                approach               descending   2
## 2546                approach                  factors   2
## 2547                approach                      fix   2
## 2548                approach                  landing   2
## 2549                approach                    light   2
## 2550                approach             navigational   2
## 2551                approach                 patterns   2
## 2552                approach                     poor   2
## 2553                approach                  profile   2
## 2554                approach                  reasons   2
## 2555                approach                  stalled   2
## 2556                approach                undershot   2
## 2557                approved               instrument   2
## 2558           approximately                      100   2
## 2559           approximately                        2   2
## 2560           approximately                       20   2
## 2561           approximately                      200   2
## 2562           approximately                       30   2
## 2563           approximately                      450   2
## 2564           approximately                      550   2
## 2565                 arabian                      sea   2
## 2566                    army                      air   2
## 2567                    army                    flyer   2
## 2568                assembly                  crashed   2
## 2569              asymmetric                    power   2
## 2570            asymmetrical                   thrust   2
## 2571                     atc               assistance   2
## 2572                     atc                     crew   2
## 2573                     atc                      due   2
## 2574                     atc                     lack   2
## 2575                     atr                       72   2
## 2576              attachment                    bolts   2
## 2577              attachment                  fitting   2
## 2578                  attain               sufficient   2
## 2579               attempted                   forced   2
## 2580               attempted                operation   2
## 2581                attitude                 director   2
## 2582                attitude               indicators   2
## 2583                attitude                reference   2
## 2584                attitude                resulting   2
## 2585                  aurora                  airport   2
## 2586              authorized                 altitude   2
## 2587              authorized               instrument   2
## 2588              authorized                  minimum   2
## 2589                    auto                 throttle   2
## 2590               automated                   flight   2
## 2591               automatic                direction   2
## 2592              automobile                  killing   2
## 2593               autopilot               disengaged   2
## 2594            autothrottle                    speed   2
## 2595               auxiliary                     fuel   2
## 2596                aviation              authorities   2
## 2597                aviation                 disaster   2
## 2598                   avoid                      bad   2
## 2599                   avoid                  concept   2
## 2600                   avoid                    heavy   2
## 2601                   avoid              overflowing   2
## 2602                   avoid                  terrain   2
## 2603                    avro                    anson   2
## 2604                 baggage                  shifted   2
## 2605                 balance              limitations   2
## 2606                  bandar                    abbas   2
## 2607                    bank                 attitude   2
## 2608                 banking                    angle   2
## 2609                barthãƒâ                     lãƒâ   2
## 2610                    base                  crashed   2
## 2611                    base                  failure   2
## 2612                baseball                   player   2
## 2613                   basic                   flight   2
## 2614              basketball                     team   2
## 2615                 battery               electrical   2
## 2616                battling                   strong   2
## 2617                     bay                        6   2
## 2618                     bay            approximately   2
## 2619              beechcraft                  failure   2
## 2620                    bell                    crank   2
## 2621              bernardino                mountains   2
## 2622                    beta                    range   2
## 2623                    bird                ingestion   2
## 2624                    bird                   strike   2
## 2625                    bird                  strikes   2
## 2626                   black                    smoke   2
## 2627                   blade                    angle   2
## 2628                   blade                    broke   2
## 2629                   blade                   caused   2
## 2630                   blade                      led   2
## 2631                   blade                separated   2
## 2632                   blade                  spindle   2
## 2633                   blade                   struck   2
## 2634                  boigny                  airport   2
## 2635                    bolt                     hole   2
## 2636                  bomber                  crashed   2
## 2637                 booster                     pump   2
## 2638                  bopper               richardson   2
## 2639                  botany                      bay   2
## 2640                  boxing                 champion   2
## 2641                   brake               components   2
## 2642                   brake                    lever   2
## 2643                 braking                   action   2
## 2644                 brought                   aboard   2
## 2645                   brown                    field   2
## 2646                   buddy                    holly   2
## 2647                building                 bursting   2
## 2648                building                collapsed   2
## 2649               buildings                  failure   2
## 2650                  burned                        8   2
## 2651                  burned                   engine   2
## 2652                  burned              immediately   2
## 2653                  burned                  moments   2
## 2654                 burning                     fuel   2
## 2655                   cabin                attendant   2
## 2656                   cabin            decompression   2
## 2657                   cabin                  shortly   2
## 2658                   cable                 mountain   2
## 2659                  cables                  stalled   2
## 2660                   cagay                       de   2
## 2661                    call                     outs   2
## 2662                  canada                    geese   2
## 2663                    cane                    field   2
## 2664                    cape                    verde   2
## 2665                 capital                     city   2
## 2666                 captain             deliberately   2
## 2667                 captain                  elected   2
## 2668                 captain                   losing   2
## 2669                 captain                     lost   2
## 2670                 captain                misjudged   2
## 2671                 captain                sustained   2
## 2672               captain's                   action   2
## 2673               captain's                     poor   2
## 2674                     car                   driver   2
## 2675                     car                  killing   2
## 2676              carburetor                      ice   2
## 2677                   cargo                  crashed   2
## 2678                   cargo                  loading   2
## 2679               caribbean                   island   2
## 2680                carrying                 american   2
## 2681                carrying             construction   2
## 2682                carrying                  freight   2
## 2683                carrying                   french   2
## 2684                carrying             humanitarian   2
## 2685                carrying                     mail   2
## 2686                carrying                      oil   2
## 2687                 caspian                      sea   2
## 2688                  caught                 fire.the   2
## 2689                 causing                  failure   2
## 2690                 causing                   severe   2
## 2691                  center                  section   2
## 2692                   cerro                      del   2
## 2693                  cessna                   killed   2
## 2694                 charter                  crashed   2
## 2695               chartered                   flight   2
## 2696               chartered                    plane   2
## 2697                   check                    lists   2
## 2698                   check                    pilot   2
## 2699               checklist               procedures   2
## 2700                 chinese                      air   2
## 2701               chingshan                 mountain   2
## 2702                 circuit                  breaker   2
## 2703                 circuit                 breakers   2
## 2704                 circuit                 occurred   2
## 2705                 claimed           responsibility   2
## 2706                cleaning                 vehicles   2
## 2707               clearance                altitudes   2
## 2708               clearance             contributing   2
## 2709               clearance                   limits   2
## 2710                   climb               capability   2
## 2711                   climb              immediately   2
## 2712                   climb                    phase   2
## 2713                   climb                    power   2
## 2714                   climb                  stalled   2
## 2715                   climb                  takeoff   2
## 2716                 climbed                   slowly   2
## 2717                climbing                     left   2
## 2718                 clipped                 treetops   2
## 2719                 clipper                  empress   2
## 2720                   close                proximity   2
## 2721                   cloud                     bank   2
## 2722                   cloud                  ceiling   2
## 2723                   cloud                 shrouded   2
## 2724                   cloud                     tops   2
## 2725                 cockpit                   debris   2
## 2726                 cockpit                     door   2
## 2727                 cockpit                   duties   2
## 2728                    coin                     toss   2
## 2729               collapsed                  causing   2
## 2730               collision                  crashed   2
## 2731               collision                   twenty   2
## 2732               colombian                   border   2
## 2733              combustion                      air   2
## 2734             commander's                  failure   2
## 2735              commercial                      air   2
## 2736              commercial                   flight   2
## 2737              commercial                    pilot   2
## 2738                  commit                  suicide   2
## 2739               committed                  suicide   2
## 2740              committing                  suicide   2
## 2741               communist                   ground   2
## 2742                 company               directives   2
## 2743                 company                   flight   2
## 2744                 company               operations   2
## 2745                 company               procedures   2
## 2746               company's                 standard   2
## 2747             compartment                  causing   2
## 2748             compartment                  crashed   2
## 2749                complete                  failure   2
## 2750              compressor                 coupling   2
## 2751              compressor                    stall   2
## 2752                computer                   failed   2
## 2753                computer                   system   2
## 2754                concrete                perimeter   2
## 2755               condition                  crashed   2
## 2756            conditioning                   system   2
## 2757              conditions              disappeared   2
## 2758              conditions                   flying   2
## 2759              conditions                      hit   2
## 2760              conditions                    icing   2
## 2761              conditions               navigation   2
## 2762              conditions                    pilot   2
## 2763              conditions                  spatial   2
## 2764              conditions                 wreckage   2
## 2765               congested                  traffic   2
## 2766              considered                  factors   2
## 2767            construction                materials   2
## 2768            construction                  workers   2
## 2769                 contact                   menhir   2
## 2770               contacted                    trees   2
## 2771               continued                  descent   2
## 2772               continued                   flying   2
## 2773              continuing                      vfr   2
## 2774            contributory                   factor   2
## 2775            contributory                  factors   2
## 2776                 control                 airspeed   2
## 2777                 control                    cable   2
## 2778                 control                      car   2
## 2779                 control                   center   2
## 2780                 control                    crash   2
## 2781                 control                  factors   2
## 2782                 control                   forces   2
## 2783                 control                     lock   2
## 2784                 control                    locks   2
## 2785                 control                personnel   2
## 2786                 control                 possibly   2
## 2787                 control                  systems   2
## 2788                 control                    wheel   2
## 2789              controlled                  crashed   2
## 2790              controlled                  descent   2
## 2791              controller                  crashed   2
## 2792             controversy              surrounding   2
## 2793                 convair                     crew   2
## 2794                    core                     lock   2
## 2795                   corps                      air   2
## 2796                 correct                 altitude   2
## 2797                 correct                   flight   2
## 2798                coupling                  adapter   2
## 2799                 covered                    ridge   2
## 2800                  cracks                  crashed   2
## 2801                   crank                   system   2
## 2802                   crash                  shortly   2
## 2803                 crashed                    1,200   2
## 2804                 crashed                    1,300   2
## 2805                 crashed                      1.2   2
## 2806                 crashed                     1.25   2
## 2807                 crashed                       13   2
## 2808                 crashed                       18   2
## 2809                 crashed                       24   2
## 2810                 crashed                       26   2
## 2811                 crashed                      2km   2
## 2812                 crashed                       35   2
## 2813                 crashed                       50   2
## 2814                 crashed                      500   2
## 2815                 crashed                        8   2
## 2816                 crashed                     atop   2
## 2817                 crashed                   engine   2
## 2818                 crashed              overloading   2
## 2819                 crashed                     shot   2
## 2820                 crashed                  stalled   2
## 2821                 crashed                  weather   2
## 2822                crashing                    3,000   2
## 2823                    crew                abandoned   2
## 2824                    crew                   choose   2
## 2825                    crew              compartment   2
## 2826                    crew              distraction   2
## 2827                    crew                  elected   2
## 2828                    crew                erroneous   2
## 2829                    crew                   forgot   2
## 2830                    crew                    heard   2
## 2831                    crew                      hit   2
## 2832                    crew                 improper   2
## 2833                    crew              incorrectly   2
## 2834                    crew                   killed   2
## 2835                    crew                  noticed   2
## 2836                    crew              performance   2
## 2837                    crew                    pilot   2
## 2838                    crew               procedural   2
## 2839                    crew                 received   2
## 2840                    crew                  started   2
## 2841                    crew                  steered   2
## 2842                    crew                 survived   2
## 2843                    crew              transferred   2
## 2844                  crew's             inexperience   2
## 2845                  crew's        misinterpretation   2
## 2846                  crew's            mismanagement   2
## 2847                critical                   height   2
## 2848                critical                     loss   2
## 2849                critical                    phase   2
## 2850                critical                situation   2
## 2851                   cross                     wind   2
## 2852                  cruise                    pitch   2
## 2853                  cruise                    speed   2
## 2854                  cumbal                  volcano   2
## 2855                     cut                     fuel   2
## 2856                      cv                      880   2
## 2857                   daily                   waters   2
## 2858                  dallas                     fort   2
## 2859               dangerous                  terrain   2
## 2860                      dc                        2   2
## 2861                      de                   france   2
## 2862                    dead                   bodies   2
## 2863                    dead                 included   2
## 2864                decision                 altitude   2
## 2865                decision                  crashed   2
## 2866                    deep                     snow   2
## 2867               defective                    stall   2
## 2868               deficient                   design   2
## 2869                  degree                     bank   2
## 2870                 degrees                       40   2
## 2871                 degrees                    flaps   2
## 2872                 deicing                    boots   2
## 2873                   delhi                  airport   2
## 2874                   delta                     crew   2
## 2875                  demand                      air   2
## 2876                     des                   moines   2
## 2877                 descend                  rapidly   2
## 2878               descended                 crashing   2
## 2879              descending                 attitude   2
## 2880              descending                  inbound   2
## 2881              descending              prematurely   2
## 2882                 descent                     crew   2
## 2883                 descent                    prior   2
## 2884                  design             deficiencies   2
## 2885              designated                   airway   2
## 2886                  detect                windshear   2
## 2887                 detroit             metropolitan   2
## 2888               developed                  trouble   2
## 2889              developing                   engine   2
## 2890                  device                detonated   2
## 2891                    died                   aboard   2
## 2892                    died                  crashed   2
## 2893                    died                  shortly   2
## 2894                 dioxide            extinguishers   2
## 2895               direction                   finder   2
## 2896             disappeared                  shortly   2
## 2897          disorientation                   caused   2
## 2898          disorientation             contributing   2
## 2899          disorientation              immediately   2
## 2900          disorientation                resulting   2
## 2901               displayed                     poor   2
## 2902                distress                   signal   2
## 2903                 ditched                      500   2
## 2904                    dive                  crashed   2
## 2905               divergent                    winds   2
## 2906               diversion                 airfield   2
## 2907                diverted                      due   2
## 2908                    door                resulting   2
## 2909                  dorado                  airport   2
## 2910                 douglas                 aircraft   2
## 2911                downward                    pitch   2
## 2912                    drag                    chute   2
## 2913                   drain                    valve   2
## 2914                   drive                    shaft   2
## 2915                  driven                     fuel   2
## 2916                 drowned                  crashed   2
## 2917                  dulles                  airport   2
## 2918                     dum                  airport   2
## 2919                    dump                     fuel   2
## 2920                 dumping                     fuel   2
## 2921                    dust                   storms   2
## 2922                    duty                     time   2
## 2923              earthquake                   relief   2
## 2924                    east                    china   2
## 2925                    east                    slope   2
## 2926                 eastern                      air   2
## 2927                    edge                  devices   2
## 2928             effectively                  monitor   2
## 2929                      el                    brega   2
## 2930                      el                    cable   2
## 2931                      el                   dorado   2
## 2932                      el                     toro   2
## 2933                 electra                  flipped   2
## 2934              electrical                   energy   2
## 2935              electrical                     fire   2
## 2936              electrical                  systems   2
## 2937              electrical                    wires   2
## 2938              electrical                   wiring   2
## 2939                elevator                   failed   2
## 2940                elevator                     lock   2
## 2941                elevator                  locking   2
## 2942                  eleven                   killed   2
## 2943                  eleven               passengers   2
## 2944               elizabeth                   taylor   2
## 2945               emergency                   action   2
## 2946               emergency                checklist   2
## 2947               emergency                    crash   2
## 2948               emergency                     exit   2
## 2949               emergency                    power   2
## 2950               emergency                procedure   2
## 2951               emergency                   single   2
## 2952               emergency                 training   2
## 2953                   empty                     fuel   2
## 2954             encountered             difficulties   2
## 2955             encountered                      fog   2
## 2956             encountered                    heavy   2
## 2957             encountered                    icing   2
## 2958             encountered                      low   2
## 2959             encountered               turbulence   2
## 2960            encountering                    heavy   2
## 2961            encountering                     poor   2
## 2962            encountering               turbulence   2
## 2963                  engine                    bleed   2
## 2964                  engine                 boosting   2
## 2965                  engine                    cores   2
## 2966                  engine                 detached   2
## 2967                  engine                   driven   2
## 2968                  engine                   failue   2
## 2969                  engine                 failures   2
## 2970                  engine                   faiure   2
## 2971                  engine                     fell   2
## 2972                  engine                     flew   2
## 2973                  engine                  landing   2
## 2974                  engine                  leading   2
## 2975                  engine              maintenance   2
## 2976                  engine                  nacelle   2
## 2977                  engine             necessitated   2
## 2978                  engine                      oil   2
## 2979                  engine                operating   2
## 2980                  engine                overshoot   2
## 2981                  engine               penetrated   2
## 2982                  engine                     quit   2
## 2983                  engine                  reverse   2
## 2984                  engine                 suffered   2
## 2985                  engine                  takeoff   2
## 2986                  engine                 throttle   2
## 2987                engineer            inadvertently   2
## 2988                engineer                 survived   2
## 2989                 engines                  leading   2
## 2990                 engines                     lost   2
## 2991                 engines               overheated   2
## 2992                 engines                separated   2
## 2993                 entered                   clouds   2
## 2994             environment             contributing   2
## 2995                 erratic                   action   2
## 2996                   error                attempted   2
## 2997                   error               controlled   2
## 2998                   error                 decision   2
## 2999                   error                descended   2
## 3000                   error                   flight   2
## 3001                   error                   flying   2
## 3002                   error                    forty   2
## 3003                   error               improperly   2
## 3004                   error                incorrect   2
## 3005                   error              incorrectly   2
## 3006                   error             navigational   2
## 3007                   error                  pilot's   2
## 3008                   error                   pilots   2
## 3009                   error                 possibly   2
## 3010                   error                premature   2
## 3011                   error                  shortly   2
## 3012                   error                   struck   2
## 3013                   error                      vfr   2
## 3014                 erupted                   aboard   2
## 3015               establish                 adequate   2
## 3016               establish                   visual   2
## 3017             established               procedures   2
## 3018              eventually                      ran   2
## 3019                   exact                 position   2
## 3020               excessive                  descent   2
## 3021               excessive                     fuel   2
## 3022               excessive                     nose   2
## 3023             excessively                    steep   2
## 3024                executed                 approach   2
## 3025              exhaustion                  crashed   2
## 3026              exhaustion                   forced   2
## 3027             experienced                  extreme   2
## 3028             experienced                  failure   2
## 3029             experienced                   severe   2
## 3030            experiencing               mechanical   2
## 3031            experimental                    plane   2
## 3032                exploded                  crashed   2
## 3033                exploded                  shortly   2
## 3034               explosion                  shortly   2
## 3035                exposive                   device   2
## 3036                extended                  holding   2
## 3037                 extreme                     nose   2
## 3038               extremely                  adverse   2
## 3039               extremely                  violent   2
## 3040                     faa                 approved   2
## 3041                     faa              regulations   2
## 3042                  factor                  related   2
## 3043                 factors                including   2
## 3044                  failed                  engines   2
## 3045                  failed                  forcing   2
## 3046                  failed                     fuel   2
## 3047                  failed                    pilot   2
## 3048                 failure                   engine   2
## 3049                 failure                   forced   2
## 3050                 failure              immediately   2
## 3051                 failure              maintenance   2
## 3052                 failure                resulting   2
## 3053                 failure                     shot   2
## 3054                 failure                suspected   2
## 3055                 falling                     snow   2
## 3056                   fatal                    crash   2
## 3057              fatalities                 occurred   2
## 3058                 fatigue                corrosion   2
## 3059                  faulty                altimiter   2
## 3060                  faulty                clearance   2
## 3061                  faulty                judgement   2
## 3062              feathering                   system   2
## 3063                    feed                   system   2
## 3064                    feed                    valve   2
## 3065                    feet                 altitude   2
## 3066                    feet                  contact   2
## 3067                    feet                  crashed   2
## 3068                    feet                     deep   2
## 3069                    feet                      due   2
## 3070                    feet                     east   2
## 3071                    feet                  failure   2
## 3072                    feet                      msl   2
## 3073                    feet                 offshore   2
## 3074                    feet                  stalled   2
## 3075                    feet                   thirty   2
## 3076                    feet                     till   2
## 3077                   felix                houphouet   2
## 3078                   fence                  crossed   2
## 3079                   ferry                   flight   2
## 3080                ferrying                   flight   2
## 3081                ferrying                  workers   2
## 3082                   field                        3   2
## 3083                   field                   engine   2
## 3084                   fight                 engineer   2
## 3085                 fighter                    plane   2
## 3086                 finally                  crashed   2
## 3087                    fire                       60   2
## 3088                    fire                  causing   2
## 3089                    fire                   ensued   2
## 3090                    fire                 fighters   2
## 3091                    fire                     loss   2
## 3092                    fire                 occurred   2
## 3093                    fire               originated   2
## 3094                    fire                 possibly   2
## 3095                   fired                  missile   2
## 3096                 fishing                     site   2
## 3097                 fitting                      due   2
## 3098                      fl                      150   2
## 3099                      fl                      180   2
## 3100                      fl                      290   2
## 3101                      fl                      300   2
## 3102                      fl                      330   2
## 3103                  flames               controlled   2
## 3104                  flames                   struck   2
## 3105                    flap                  setting   2
## 3106                   flaps                retracted   2
## 3107                   flaps                 selected   2
## 3108                  flight                      401   2
## 3109                  flight                     9877   2
## 3110                  flight                    bound   2
## 3111                  flight                 carrying   2
## 3112                  flight                condition   2
## 3113                  flight             contributing   2
## 3114                  flight                 decision   2
## 3115                  flight                 departed   2
## 3116                  flight                descended   2
## 3117                  flight              encountered   2
## 3118                  flight                  factors   2
## 3119                  flight                   flying   2
## 3120                  flight                      hit   2
## 3121                  flight            investigators   2
## 3122                  flight                     lost   2
## 3123                  flight               originated   2
## 3124                  flight              preparation   2
## 3125                  flight                 recorder   2
## 3126                  flight                   regime   2
## 3127                  flight                 reported   2
## 3128                  flight                resulting   2
## 3129                  flight                   safety   2
## 3130                  flight                  shortly   2
## 3131                  flight                 suddenly   2
## 3132                  flight                     test   2
## 3133                  flight                      vfr   2
## 3134                   fluid                   leaked   2
## 3135                fluxgate                  compass   2
## 3136                  flying                abilities   2
## 3137                  flying                 altitude   2
## 3138                  flying                  control   2
## 3139                  flying                 controls   2
## 3140                  flying                    pilot   2
## 3141                  flying                      vor   2
## 3142                     fog               conditions   2
## 3143                     fog                continued   2
## 3144                     fog                  failure   2
## 3145                     fog                   flying   2
## 3146                     fog                overlying   2
## 3147                     fog                     snow   2
## 3148                     fog                    wrong   2
## 3149                  follow                emergency   2
## 3150                  follow                   flight   2
## 3151                  follow                      ifr   2
## 3152                  follow                 standard   2
## 3153                    foot                     hole   2
## 3154                    foot                    level   2
## 3155                football                    coach   2
## 3156                  forces                  crashed   2
## 3157                  forces                   troops   2
## 3158                    ford                      tri   2
## 3159                  forest                     fire   2
## 3160                forested                 mountain   2
## 3161                    fort                 campbell   2
## 3162                    fort                       de   2
## 3163                    fort               lauderdale   2
## 3164                 forward                  baggage   2
## 3165                 forward                   center   2
## 3166                 forward                 fuselage   2
## 3167                 forward                    speed   2
## 3168                 forward                   thrust   2
## 3169                   found                        1   2
## 3170                   found                      100   2
## 3171                   found                       15   2
## 3172                   found                        4   2
## 3173                   found                        6   2
## 3174                   found                     poor   2
## 3175                     fox                  glacier   2
## 3176                 francis                     gary   2
## 3177                  french                     alps   2
## 3178                  french                     anti   2
## 3179                  french                violinist   2
## 3180                friendly                     fire   2
## 3181                 frontal                     wave   2
## 3182                      ft                       66   2
## 3183                      ft                 altitude   2
## 3184                      ft                     crew   2
## 3185                      ft                       ra   2
## 3186                    fuel              consumption   2
## 3187                    fuel                crossfeed   2
## 3188                    fuel                descended   2
## 3189                    fuel                    fumes   2
## 3190                    fuel                  ignited   2
## 3191                    fuel               inadequate   2
## 3192                    fuel                    lines   2
## 3193                    fuel                  loading   2
## 3194                    fuel                situation   2
## 3195                    fuel                starvaion   2
## 3196                    fuel                    valve   2
## 3197                    fuel                    vapor   2
## 3198                    fuel                   vapors   2
## 3199                fuselage                  causing   2
## 3200                fuselage                     slid   2
## 3201                    gain                  control   2
## 3202                 gaining                   height   2
## 3203                    gary                   powers   2
## 3204                     gas                  station   2
## 3205                gasoline                   flowed   2
## 3206                     gca                 minimums   2
## 3207                    gear                  failure   2
## 3208                    gear                    light   2
## 3209                    gear              malfunction   2
## 3210                    gear                  trouble   2
## 3211               generator                  tripped   2
## 3212                  giusto                  airport   2
## 3213              glideslope                   struck   2
## 3214                    gpws                 warnings   2
## 3215                  grande                  airport   2
## 3216                 grenade                 exploded   2
## 3217                 grossly               overloaded   2
## 3218                  ground                        2   2
## 3219                  ground                        8   2
## 3220                  ground                 bursting   2
## 3221                  ground                  control   2
## 3222                  ground               controller   2
## 3223                  ground              controllers   2
## 3224                  ground                      due   2
## 3225                  ground                      fog   2
## 3226                  ground                 improper   2
## 3227                  ground                     left   2
## 3228                  ground                    level   2
## 3229                  ground                personnel   2
## 3230                  ground                    radio   2
## 3231                  ground                   severe   2
## 3232                   guard                   cutter   2
## 3233               guatemala                     city   2
## 3234               guitarist                   stevie   2
## 3235                    gulf                      war   2
## 3236                     gun                     fire   2
## 3237                   gusty                     wind   2
## 3238              gyroscopic                  compass   2
## 3239                hamilton                 standard   2
## 3240                    hand                 grenades   2
## 3241                handling                    pilot   2
## 3242                  haneda                  airport   2
## 3243                    head                 injuries   2
## 3244                 heading                    north   2
## 3245                headwind                    level   2
## 3246                  heater               combustion   2
## 3247                 heavily                 forested   2
## 3248                   heavy                    cloud   2
## 3249                   heavy                     seas   2
## 3250                   heavy                snowstorm   2
## 3251                  height                      due   2
## 3252              helicopter              experienced   2
## 3253              helicopter                 ferrying   2
## 3254              helicopter                 suddenly   2
## 3255             helicopters                 collided   2
## 3256             helicopters                  crashed   2
## 3257                 highway               embankment   2
## 3258                hijacker                detonated   2
## 3259                hijacker                      set   2
## 3260               hijackers                     shot   2
## 3261                    hill                        6   2
## 3262                   hills                  shortly   2
## 3263                     hit                 mountain   2
## 3264                     hit               powerlines   2
## 3265                  hockey                     team   2
## 3266                horizons                   failed   2
## 3267               houphouet                   boigny   2
## 3268                   house                  crashed   2
## 3269                   house                  killing   2
## 3270                   house                    pilot   2
## 3271                  houses                  crashed   2
## 3272                  houses                  killing   2
## 3273                 howland                   island   2
## 3274                  hudson                    river   2
## 3275                    huge                explosion   2
## 3276                 hundred                   thirty   2
## 3277               hydraulic                emergency   2
## 3278               hydraulic                     pump   2
## 3279                hydrogen                      gas   2
## 3280                     ice                formation   2
## 3281                     ice                   hockey   2
## 3282                     ice                ingestion   2
## 3283                   icing                condtions   2
## 3284                   icing                     loss   2
## 3285                   icing                 official   2
## 3286                   icing                  systems   2
## 3287                   icing               turbulence   2
## 3288                     icy                   runway   2
## 3289               identical                 accident   2
## 3290                    idle                 position   2
## 3291                idlewild                  airport   2
## 3292                     ifr                 approach   2
## 3293                     ifr                  weather   2
## 3294                 ignited                     fuel   2
## 3295                 ignited                  leaking   2
## 3296                ignition                   source   2
## 3297                illusion                  created   2
## 3298                     ils                 receiver   2
## 3299             immediately                 adjacent   2
## 3300             immediately                  crashed   2
## 3301                  impact                     fire   2
## 3302                  impact                 occurred   2
## 3303                impacted                    mount   2
## 3304                impacted                    steep   2
## 3305                improper                  actions   2
## 3306                improper               adjustment   2
## 3307                improper                 altitude   2
## 3308                improper                clearance   2
## 3309                improper                execution   2
## 3310                improper                 handling   2
## 3311                improper                 inflight   2
## 3312                improper                    pilot   2
## 3313                improper              replacement   2
## 3314                improper              supervision   2
## 3315              improperly                 executed   2
## 3316              improperly                  latched   2
## 3317              improperly                  secured   2
## 3318              inadequate                  control   2
## 3319              inadequate               navigation   2
## 3320              inadequate              operational   2
## 3321              inadequate                oversight   2
## 3322              inadequate                 planning   2
## 3323              inadequate                     post   2
## 3324              inadequate                      pre   2
## 3325              inadequate              preparation   2
## 3326              inadequate               procedures   2
## 3327              inadequate             surveillance   2
## 3328             inadvertent               activation   2
## 3329             inadvertent               deployment   2
## 3330             inadvertent                  descent   2
## 3331             inadvertent                     fuel   2
## 3332             inadvertent                     spin   2
## 3333           inadvertently                 deployed   2
## 3334           inadvertently                 selected   2
## 3335           inappropriate                  control   2
## 3336           inappropriate               management   2
## 3337           inappropriate                 response   2
## 3338               incorrect                  actions   2
## 3339               incorrect              information   2
## 3340               incorrect           interpretation   2
## 3341               incorrect                  rigging   2
## 3342               incorrect                  setting   2
## 3343               incorrect               stabilizer   2
## 3344               incorrect                  weather   2
## 3345             incorrectly                      set   2
## 3346                 induced                  flutter   2
## 3347                informed                   ground   2
## 3348                initiate                  evasive   2
## 3349               injection                   system   2
## 3350                 injured                  crashed   2
## 3351              inspection                  crashed   2
## 3352              instrument                  descent   2
## 3353              instrument              malfunction   2
## 3354              instrument                reference   2
## 3355            insufficient                attention   2
## 3356            insufficient                 elevator   2
## 3357            insufficient                    sleep   2
## 3358            insufficient                   visual   2
## 3359               insurance                     plot   2
## 3360                  intake                    scoop   2
## 3361                intended                   flight   2
## 3362             intentional                  descent   2
## 3363            intermediate                     stop   2
## 3364            intermittent                     loss   2
## 3365            intermittent                operation   2
## 3366           international                   waters   2
## 3367                invasion                     shot   2
## 3368               inversion                   levels   2
## 3369                inverted                 attitude   2
## 3370                inverted                  shortly   2
## 3371                 iranian                      air   2
## 3372                 irkutsk                  airport   2
## 3373              irrigation                    ditch   2
## 3374                     iwo                     jima   2
## 3375                 jamaica                      bay   2
## 3376                japanese                 fighters   2
## 3377                     jet                 fighters   2
## 3378                judgment                 decision   2
## 3379                    june                       12   2
## 3380                 kanawha                   county   2
## 3381                 kennedy                       jr   2
## 3382                  killed                  failure   2
## 3383                  killed                    pilot   2
## 3384                  killed                   struck   2
## 3385                 killing                       16   2
## 3386                 killing                        3   2
## 3387              kilometers                northwest   2
## 3388                    kong               detonation   2
## 3389                      la                   aurora   2
## 3390                   laden                    field   2
## 3391                    lake                  airport   2
## 3392                    lake                     kivu   2
## 3393                    lake                 victoria   2
## 3394                    land                continued   2
## 3395                    land                descended   2
## 3396                    land                      due   2
## 3397                    land                     flew   2
## 3398                    land                 improper   2
## 3399                    land             navigational   2
## 3400                    land                      ran   2
## 3401                    land                     shot   2
## 3402                    land                witnesses   2
## 3403                  landed                     crew   2
## 3404                  landed                     fast   2
## 3405                  landed                  heavily   2
## 3406                  landed                 inverted   2
## 3407                 landing                   caused   2
## 3408                 landing             contributing   2
## 3409                 landing                 distance   2
## 3410                 landing                    flare   2
## 3411                 landing                    gears   2
## 3412                 landing                     hard   2
## 3413                 landing                     left   2
## 3414                 landing                     loss   2
## 3415                 landing                procedure   2
## 3416                 landing                resulting   2
## 3417                 landing                     roll   2
## 3418                 landing                  shortly   2
## 3419                 landing                    strip   2
## 3420                     las                   palmas   2
## 3421                 leaking                     fuel   2
## 3422                    left                  banking   2
## 3423                    left                  landing   2
## 3424                    left                     left   2
## 3425                    left                    logan   2
## 3426                    left                    power   2
## 3427                    left                     roll   2
## 3428                    left                     seat   2
## 3429              liberation                   tigers   2
## 3430                    life                    rafts   2
## 3431                   light                  drizzle   2
## 3432               lightning                discharge   2
## 3433               lightning                lightning   2
## 3434               lightning                     mast   2
## 3435               lightning                    storm   2
## 3436                  lights                     lack   2
## 3437                 limited               experience   2
## 3438                 lithium                batteries   2
## 3439                    load                      due   2
## 3440                  loaded                    plane   2
## 3441                   local                  weather   2
## 3442                 located                       12   2
## 3443                 located                       50   2
## 3444                 located                    short   2
## 3445                 locking                      nut   2
## 3446                 locking                      pin   2
## 3447                 locking                  sectors   2
## 3448                   logan            international   2
## 3449            longitudinal                  control   2
## 3450            longitudinal                     trim   2
## 3451                 loosing                 altitude   2
## 3452                     los                   roques   2
## 3453                    lose                    power   2
## 3454                    lost                   engine   2
## 3455                    lost                  spatial   2
## 3456                    lost                   thrust   2
## 3457                     low                      oil   2
## 3458                     low                    pitch   2
## 3459                   lower                      aft   2
## 3460                   lower                     spar   2
## 3461                   luang                  prabang   2
## 3462                    luis                   obispo   2
## 3463                 lunghwa                  airport   2
## 3464                   lying                   clouds   2
## 3465                 machine                      gun   2
## 3466                 machine                     guns   2
## 3467                   madre                mountains   2
## 3468                magnetic                  compass   2
## 3469                    main                   rudder   2
## 3470                    main                   runway   2
## 3471                maintain                    level   2
## 3472                maintain               sufficient   2
## 3473                maintain                      vfr   2
## 3474             maintaining                 altitude   2
## 3475             maintenance                performed   2
## 3476             maintenance               technician   2
## 3477             maintenance                    truck   2
## 3478             maintenance                  workers   2
## 3479                    male                passenger   2
## 3480          malfunctioning               artificial   2
## 3481          malfunctioning                   engine   2
## 3482          malfunctioning                equipment   2
## 3483          malfunctioning                propeller   2
## 3484              manacapuru                    river   2
## 3485              management                  program   2
## 3486                 manager                     dean   2
## 3487                maneuver                   caused   2
## 3488                  manner                  crashed   2
## 3489                manually                    flown   2
## 3490                   maria                  airport   2
## 3491                   marsa                       el   2
## 3492                martha's                 vineyard   2
## 3493                  master                      rod   2
## 3494                 maximum                    climb   2
## 3495                 maximum                    limit   2
## 3496                 maximum                    speed   2
## 3497                  mayday                     call   2
## 3498                  mayday                reporting   2
## 3499                 mcchord                      afb   2
## 3500                 mcguire                      air   2
## 3501                 medical                   center   2
## 3502                 medical              certificate   2
## 3503                 medical                   flight   2
## 3504                mehrabad                  airport   2
## 3505                  menhir                  control   2
## 3506                 message                reporting   2
## 3507                   metal                    strip   2
## 3508            metropolitan                    wayne   2
## 3509              microburst                windshear   2
## 3510                     mid                   flight   2
## 3511                  midair                       20   2
## 3512                 midspar                     fuse   2
## 3513               midwest's              maintenance   2
## 3514                  miguel                   island   2
## 3515                     mil                       mi   2
## 3516                    mile                southwest   2
## 3517                   miles                      ese   2
## 3518                   miles                      sse   2
## 3519                military                  airport   2
## 3520                military                 contract   2
## 3521                military                 fighters   2
## 3522                military                   flight   2
## 3523                military                      jet   2
## 3524                military                       mi   2
## 3525                military                 training   2
## 3526                military                  vehicle   2
## 3527                 million                  dollars   2
## 3528                   milne                      bay   2
## 3529                  minima                     crew   2
## 3530                 minimum                 airspeed   2
## 3531                 minimum                altitudes   2
## 3532                 minimum               conditions   2
## 3533                 minimum                  crashed   2
## 3534                 minimum               prescribed   2
## 3535                 minimum                   sector   2
## 3536                 minimum               visibility   2
## 3537                minimums                  crashed   2
## 3538                minimums               prescribed   2
## 3539                   minor                   damage   2
## 3540                  minute                refueling   2
## 3541                  missed                      ils   2
## 3542                 missile                   struck   2
## 3543                 mission                 wreckage   2
## 3544              mistakenly                     shut   2
## 3545               mogadishu                  airport   2
## 3546                 monitor                 altitude   2
## 3547                 monsoon                    rains   2
## 3548                    mont                    blanc   2
## 3549                  mortar                    shell   2
## 3550                moscow's             sheremetyevo   2
## 3551                mountain                       13   2
## 3552                mountain                       20   2
## 3553                mountain                       35   2
## 3554                mountain                       60   2
## 3555                mountain               controlled   2
## 3556                mountain                     crew   2
## 3557                mountain                  failure   2
## 3558                mountain                     flew   2
## 3559                mountain                     lost   2
## 3560                mountain                 obscured   2
## 3561                mountain                    peaks   2
## 3562                mountain                 shrouded   2
## 3563                mountain                      top   2
## 3564                mountain                   valley   2
## 3565                mountain                  weather   2
## 3566                mountain                 wreckage   2
## 3567             mountainous                  regions   2
## 3568               mountains                    ahead   2
## 3569               mountains                     crew   2
## 3570               mountains                       en   2
## 3571                     mph                    winds   2
## 3572                      mt                     dore   2
## 3573                      mt                   erebus   2
## 3574                      mt                  sanford   2
## 3575                muhammad            international   2
## 3576                 murtala                 muhammad   2
## 3577                   named                mainliner   2
## 3578                   named                     miss   2
## 3579                     nan                  airport   2
## 3580                national                 airlines   2
## 3581                national                  airport   2
## 3582                national                   forest   2
## 3583                national                    guard   2
## 3584              navigation                   errors   2
## 3585              navigation               facilities   2
## 3586              navigation                   system   2
## 3587            navigational                   errors   2
## 3588            navigational                 omission   2
## 3589                    navy                    flyer   2
## 3590                    navy                    pilot   2
## 3591                  nearby                    field   2
## 3592                  nearby                   forest   2
## 3593                 neutral                 position   2
## 3594                  nevado                       de   2
## 3595                  newark                  airport   2
## 3596                    news                     crew   2
## 3597               nicknamed                     yoke   2
## 3598                   night                   flight   2
## 3599                   night                  landing   2
## 3600                   night                 obstacle   2
## 3601                   night                     time   2
## 3602                      nm                     east   2
## 3603                      nm                    north   2
## 3604                      nm                northeast   2
## 3605                      nm                    south   2
## 3606                   noise                abatement   2
## 3607            nonprecision               instrument   2
## 3608                  normal                 altitude   2
## 3609                  normal                    climb   2
## 3610                  normal                   cruise   2
## 3611                  normal                procedure   2
## 3612                  normal                  takeoff   2
## 3613                   north                 carolina   2
## 3614                   north                   korean   2
## 3615               northwest                    slope   2
## 3616                    nose                      low   2
## 3617                    nose                    wheel   2
## 3618                numerous                    times   2
## 3619                     nut                   thread   2
## 3620                     nut                  threads   2
## 3621                     oak                     tree   2
## 3622                 oakland                municipal   2
## 3623                occurred                        2   2
## 3624                   ocean                      150   2
## 3625                   ocean                       50   2
## 3626                   ocean                  crashed   2
## 3627                   ocean                     fuel   2
## 3628                   ocean                    liner   2
## 3629                   ocean                southwest   2
## 3630                   ocean                   waters   2
## 3631                 officer                  advised   2
## 3632               officer's              inadvertent   2
## 3633                     oil                 drilling   2
## 3634                     oil                 platform   2
## 3635                     oil                   supply   2
## 3636                     oil                     tank   2
## 3637             operational               procedures   2
## 3638              operator's                  failure   2
## 3639                 orleans            international   2
## 3640                 orville                   wright   2
## 3641                  oshima                   island   2
## 3642                   otter                  crashed   2
## 3643                outboard                 nacelles   2
## 3644                outbound                    track   2
## 3645                   outer                  engines   2
## 3646                   outer                     wing   2
## 3647                 overran                   runway   2
## 3648               overshoot                 maneuver   2
## 3649            overspeeding                propeller   2
## 3650                  oxygen                    masks   2
## 3651                      pa                       18   2
## 3652                   paddy                    field   2
## 3653                    pago                     pago   2
## 3654              panamanian                   island   2
## 3655              parachuted                   safely   2
## 3656            paratroopers                  crashed   2
## 3657               passenger               fatalities   2
## 3658               passenger                     fell   2
## 3659               passenger                     seat   2
## 3660             passenger's                  luggage   2
## 3661              passengers                   aboard   2
## 3662              passengers                 included   2
## 3663              passengers                 reported   2
## 3664                     pcu                    servo   2
## 3665                    peak                 exploded   2
## 3666                  people                   inside   2
## 3667                  permit                  terrain   2
## 3668                  person                 believed   2
## 3669                  person                     died   2
## 3670            philadelphia                  airport   2
## 3671                physical                condition   2
## 3672           physiological              limitations   2
## 3673                   pic's                     lack   2
## 3674                   pilot               apparently   2
## 3675                   pilot                  applied   2
## 3676                   pilot                  carried   2
## 3677                   pilot                   caused   2
## 3678                   pilot                  changed   2
## 3679                   pilot                corrected   2
## 3680                   pilot                      cut   2
## 3681                   pilot                      due   2
## 3682                   pilot                 executed   2
## 3683                   pilot                   headed   2
## 3684                   pilot                     lack   2
## 3685                   pilot                   landed   2
## 3686                   pilot                   midair   2
## 3687                   pilot               mistakenly   2
## 3688                   pilot                 possibly   2
## 3689                   pilot                 realized   2
## 3690                   pilot                  reduced   2
## 3691                   pilot                  stalled   2
## 3692                   pilot                  started   2
## 3693                   pilot                 training   2
## 3694                 pilot's                altimeter   2
## 3695                 pilot's             continuation   2
## 3696                 pilot's                deviation   2
## 3697                 pilot's                disregard   2
## 3698                 pilot's                incorrect   2
## 3699                 pilot's              intentional   2
## 3700                 pilot's                     poor   2
## 3701                 pilot's            unfamiliarity   2
## 3702                  pilots               apparently   2
## 3703                  pilots                 decision   2
## 3704                  pilots                      hit   2
## 3705                  pilots                     lack   2
## 3706                  pilots                responded   2
## 3707                   pitch                    force   2
## 3708                   pitch                     lock   2
## 3709                   pitch             oscillations   2
## 3710                   pitch                 position   2
## 3711                 pitched                     nose   2
## 3712                   pitot                     head   2
## 3713                   pitot                     tube   2
## 3714                   plane                 appeared   2
## 3715                   plane                   caused   2
## 3716                   plane                chartered   2
## 3717                   plane                 declared   2
## 3718                   plane                 departed   2
## 3719                   plane               descending   2
## 3720                   plane                 detached   2
## 3721                   plane            disintegrated   2
## 3722                   plane                  dropped   2
## 3723                   plane                  flipped   2
## 3724                   plane                gradually   2
## 3725                   plane                impacting   2
## 3726                   plane                      led   2
## 3727                   plane                 operated   2
## 3728                   plane                   passed   2
## 3729                   plane                    pilot   2
## 3730                   plane                separated   2
## 3731                   plane                  slammed   2
## 3732                   plane                     slid   2
## 3733                   plane                  stopped   2
## 3734                   plane                   taking   2
## 3735                   plane                      ten   2
## 3736                   plane           uncontrollable   2
## 3737                 plane's                  landing   2
## 3738                 plane's                     nose   2
## 3739                  planes                    burst   2
## 3740                 planned                 approach   2
## 3741                   playa                   grande   2
## 3742                 plunged                     nose   2
## 3743                    pole                  crashed   2
## 3744                policies                 totaling   2
## 3745               political                  reasons   2
## 3746                    poor               airmanship   2
## 3747                    poor                 approach   2
## 3748                    poor                  braking   2
## 3749                    poor              maintenance   2
## 3750                    poor                visiblity   2
## 3751                  poorly                 executed   2
## 3752                    port                 harcourt   2
## 3753                    port                  hedland   2
## 3754                    port                  moresby   2
## 3755                    port                propeller   2
## 3756                    port                    sudan   2
## 3757                   porto                     rico   2
## 3758                position               accurately   2
## 3759                position             contributing   2
## 3760                position                  crashed   2
## 3761                positive                     rate   2
## 3762                possibly                initiated   2
## 3763                possibly                     lost   2
## 3764                possibly                  related   2
## 3765                possibly                  stalled   2
## 3766                  potato                    field   2
## 3767                   power                  applied   2
## 3768                   power                   cables   2
## 3769                   power                condition   2
## 3770                   power                    level   2
## 3771                   power                    lever   2
## 3772                   power                   output   2
## 3773                   power                   supply   2
## 3774                   power                     unit   2
## 3775              powerplant                 controls   2
## 3776                practice               approaches   2
## 3777                     pre                  takeoff   2
## 3778               precluded                 recovery   2
## 3779               premature                     lift   2
## 3780               premature               retraction   2
## 3781              prescribed                 approach   2
## 3782               president                     john   2
## 3783                pressure               compressor   2
## 3784                pressure                    ratio   2
## 3785              prevailing               conditions   2
## 3786              prevailing                  weather   2
## 3787                 prevent                    rapid   2
## 3788                 primary                  control   2
## 3789                   prime                 minister   2
## 3790                 private                 aircraft   2
## 3791              procedural               discipline   2
## 3792               procedure                  crashed   2
## 3793               procedure                resulting   2
## 3794              procedures               inadequate   2
## 3795              procedures                including   2
## 3796             progressive                  failure   2
## 3797              prohibited                    route   2
## 3798               propeller                   blades   2
## 3799               propeller                    broke   2
## 3800               propeller                   caused   2
## 3801               propeller                feathered   2
## 3802               propeller                 governor   2
## 3803               propeller               separation   2
## 3804               propeller                   wobble   2
## 3805              propellers                separated   2
## 3806              propellers                   struck   2
## 3807                  proper                   action   2
## 3808                  proper                alignment   2
## 3809                  proper                    climb   2
## 3810                  proper               procedures   2
## 3811                properly                configure   2
## 3812                properly                  execute   2
## 3813                properly                  observe   2
## 3814                properly                supervise   2
## 3815                 provide                   flight   2
## 3816                 provide                  terrain   2
## 3817                      pt                      gjz   2
## 3818                      pt                      gkl   2
## 3819               published                  minimum   2
## 3820                  puerto                    plata   2
## 3821                    pull                      rod   2
## 3822                   pylon                separated   2
## 3823                    race                      car   2
## 3824                   radar                 approach   2
## 3825                   radar                 coverage   2
## 3826                   radar                detection   2
## 3827                   radar                equipment   2
## 3828                   radar                   screen   2
## 3829                   radio           communications   2
## 3830                   radio                  compass   2
## 3831                   radio               facilities   2
## 3832                   radio                     mast   2
## 3833                   radio                  message   2
## 3834                   radio                  station   2
## 3835                   radio                   towers   2
## 3836                   radio             transmission   2
## 3837                     raf                  fighter   2
## 3838                 railway                  station   2
## 3839                    rain                   shower   2
## 3840                    rain            thunderstorms   2
## 3841                    rain               turbulence   2
## 3842               rainstorm                     flew   2
## 3843                   rainy                  weather   2
## 3844                     ran                     past   2
## 3845                   randy                   hughes   2
## 3846                   range                receivers   2
## 3847                   range                  shortly   2
## 3848                   range                  signals   2
## 3849                 ranking                 military   2
## 3850                   rapid                    climb   2
## 3851                 rapidly                     lost   2
## 3852                 rapidly                   rising   2
## 3853                    rate                excessive   2
## 3854                   rated                    pilot   2
## 3855                reaching                       v1   2
## 3856             reactionary                  evasive   2
## 3857                    real                 position   2
## 3858                    rear                  service   2
## 3859                    rear                     spar   2
## 3860                rearward                   center   2
## 3861                 reasons                 improper   2
## 3862                  rebels                  crashed   2
## 3863                 receive             supplemental   2
## 3864                received                        3   2
## 3865                received                  reports   2
## 3866                  recent                   report   2
## 3867          reconnaissance                   flight   2
## 3868                recovery             contributing   2
## 3869                 reduced                   engine   2
## 3870                regional                 airliner   2
## 3871                regional                  airport   2
## 3872                 related                  crashed   2
## 3873                 related                   factor   2
## 3874                  relief                 supplies   2
## 3875                  remain                 airborne   2
## 3876               remaining                  engines   2
## 3877               remaining                   runway   2
## 3878                 remains             undetermined   2
## 3879                  repair               facilities   2
## 3880                  report                   stated   2
## 3881                reported                     fire   2
## 3882                reported                  hearing   2
## 3883                reported                    smoke   2
## 3884                reported                technical   2
## 3885           repositioning                   flight   2
## 3886               requested                clearance   2
## 3887               requested               permission   2
## 3888             restricting               visibility   2
## 3889               resulting                     fire   2
## 3890                 reverse                direction   2
## 3891                    rice                   canyon   2
## 3892                  rikers                   island   2
## 3893                    risk               management   2
## 3894                 ritchie                   valens   2
## 3895                   river                       20   2
## 3896                   river                       50   2
## 3897                   river                      bed   2
## 3898                    roll                  control   2
## 3899                    rome                    italy   2
## 3900                    rome                witnesses   2
## 3901                   route                 aircraft   2
## 3902                   route                     fire   2
## 3903                   route              incorrectly   2
## 3904                   route                     lost   2
## 3905                   route             navigational   2
## 3906                   route                  shortly   2
## 3907                  rudder                 controls   2
## 3908                  rudder                 hardover   2
## 3909                  rudder                    pedal   2
## 3910                  rudder                  surface   2
## 3911                   rules                      vfr   2
## 3912                  runway                       04   2
## 3913                  runway                      05r   2
## 3914                  runway                        1   2
## 3915                  runway                       13   2
## 3916                  runway                       20   2
## 3917                  runway                      22l   2
## 3918                  runway                      24l   2
## 3919                  runway                       25   2
## 3920                  runway                      27l   2
## 3921                  runway                        6   2
## 3922                  runway                  boundry   2
## 3923                  runway                   center   2
## 3924                  runway                 collided   2
## 3925                  runway              contributed   2
## 3926                  runway             contributing   2
## 3927                  runway                 crashing   2
## 3928                  runway                 distance   2
## 3929                  runway                      due   2
## 3930                  runway                     edge   2
## 3931                  runway                     hard   2
## 3932                  runway                  heading   2
## 3933                  runway                    icing   2
## 3934                  runway                 improper   2
## 3935                  runway                  landing   2
## 3936                  runway                   length   2
## 3937                  runway               overturned   2
## 3938                  runway                   passed   2
## 3939                  runway                      ran   2
## 3940                  runway                 remained   2
## 3941                  runway                remaining   2
## 3942                  runway                   rolled   2
## 3943                  runway                  skidded   2
## 3944                  runway                     slid   2
## 3945                  runway                  stalled   2
## 3946              runway.the                    plane   2
## 3947                 russian                      air   2
## 3948                    safe                 distance   2
## 3949                    safe               separation   2
## 3950                  safely                  crashed   2
## 3951                  safety                    board   2
## 3952                  safety                   height   2
## 3953                  safety                    pilot   2
## 3954                  safety               procedures   2
## 3955                  safety                standards   2
## 3956                     sam                  missile   2
## 3957                     san               bernardino   2
## 3958                     san                    felix   2
## 3959                     san                   giusto   2
## 3960                     san                     luis   2
## 3961                     san                    ramon   2
## 3962                    sand                     dune   2
## 3963                    sand                     haze   2
## 3964                santiago                    chile   2
## 3965                   santo                  domingo   2
## 3966               scattered                   clouds   2
## 3967              scattering                   debris   2
## 3968               scheduled                  arrival   2
## 3969               scheduled                   flight   2
## 3970               scheduled                  landing   2
## 3971                schiphol                  airport   2
## 3972                  school                  killing   2
## 3973                     sea                       10   2
## 3974                     sea                       30   2
## 3975                     sea                       35   2
## 3976                     sea                        4   2
## 3977                     sea                      400   2
## 3978                     sea                        8   2
## 3979                     sea               detonation   2
## 3980                     sea                    pilot   2
## 3981                     sea                     shot   2
## 3982                     sea                     wall   2
## 3983                    seat                  captain   2
## 3984                    seat                 cushions   2
## 3985                  sector                 altitude   2
## 3986                security                    guard   2
## 3987                selector                   handle   2
## 3988                 service                 bulletin   2
## 3989                 service                bulletins   2
## 3990                 service                     life   2
## 3991                     set                altimeter   2
## 3992               seventeen                   aboard   2
## 3993                  severe                  control   2
## 3994                  severe                snowstorm   2
## 3995                 shallow                  descent   2
## 3996                 shallow                      fog   2
## 3997                  shamal                     dust   2
## 3998                 shannon                    river   2
## 3999                   sharp                     left   2
## 4000                   shook                violently   2
## 4001                   short                    final   2
## 4002                   short                   period   2
## 4003                shoulder                    fired   2
## 4004                shrouded                     hill   2
## 4005                    shui                      nan   2
## 4006                     sid                      zue   2
## 4007                   simon                  bolivar   2
## 4008               simulated                   engine   2
## 4009                  singer                      jim   2
## 4010                  single                    plane   2
## 4011                    site                  crashed   2
## 4012               situation                      due   2
## 4013                slippery                   runway   2
## 4014                   slope                   effect   2
## 4015                    snow                  crashed   2
## 4016                    snow                    drift   2
## 4017                    snow                    laden   2
## 4018                    snow                   shower   2
## 4019               snowstorm                    icing   2
## 4020                   snowy                   forest   2
## 4021                    sole                 survivor   2
## 4022                   south                  african   2
## 4023                   south                 american   2
## 4024                   south                   dakota   2
## 4025                   south                    slope   2
## 4026                   south                southwest   2
## 4027                  soviet                 airspace   2
## 4028                 soybean                    field   2
## 4029                    spar                     boom   2
## 4030                 special                   forces   2
## 4031                   speed                  control   2
## 4032                   speed                  crashed   2
## 4033                   speed                   flight   2
## 4034                   speed                   limits   2
## 4035                   speed                     mode   2
## 4036                   speed                  sensors   2
## 4037                 spencer                  airways   2
## 4038                 spilled                     fuel   2
## 4039                    spin                  crashed   2
## 4040                   split                      pin   2
## 4041                 spoiler                   handle   2
## 4042                 spoiler                   switch   2
## 4043                 spoiler                   system   2
## 4044                      st                 barthãƒâ   2
## 4045                      st                    croix   2
## 4046                      st                    johns   2
## 4047                      st                    louis   2
## 4048              stabilizer                  crashed   2
## 4049                   stall                avoidance   2
## 4050                   stall          characteristics   2
## 4051                   stall                  failure   2
## 4052                   stall                 occurred   2
## 4053                   stall                 resulted   2
## 4054                   stall                resulting   2
## 4055                 stalled                  entered   2
## 4056                 stalled                   struck   2
## 4057                stalling                    speed   2
## 4058                standard                 approach   2
## 4059                standard              phraseology   2
## 4060                standard                  traffic   2
## 4061                 standby               electrical   2
## 4062               starboard                  engines   2
## 4063               starboard                     main   2
## 4064               starboard                propeller   2
## 4065              starvation                  crashed   2
## 4066              starvation                      due   2
## 4067              starvation                     fuel   2
## 4068                  static               conditions   2
## 4069                  static                    ports   2
## 4070                   steep                     bank   2
## 4071                   steep                 climbing   2
## 4072                   steep               descending   2
## 4073                   steep                     nose   2
## 4074                   steep                    slope   2
## 4075                 sterile                  cockpit   2
## 4076                    stop                     bolt   2
## 4077                   storm                   clouds   2
## 4078                   story                 building   2
## 4079                  strike                  control   2
## 4080                  strike                   midair   2
## 4081                  strong                    cross   2
## 4082                  strong             thunderstorm   2
## 4083                  struck                    cerro   2
## 4084                  struck                   ground   2
## 4085                  struck                    light   2
## 4086                  struck               powerlines   2
## 4087                  struck                  terrain   2
## 4088                  struck                     tree   2
## 4089              structural                   damage   2
## 4090              structural                integrity   2
## 4091              structural              limitations   2
## 4092             substantial             contributing   2
## 4093           substantially                  reduced   2
## 4094                  sudden                   change   2
## 4095                  sudden                     loss   2
## 4096                  sudden                   squall   2
## 4097                suddenly                    nosed   2
## 4098                suddenly                  plunged   2
## 4099                suddenly                   veered   2
## 4100               suffering               structural   2
## 4101              sufficient              information   2
## 4102              sufficient                   visual   2
## 4103                 suicide                  attempt   2
## 4104                 suicide                  crashed   2
## 4105                suitable                alternate   2
## 4106                suitable                  terrain   2
## 4107                  supply                  crashed   2
## 4108                 support                  fitting   2
## 4109                 surface                    winds   2
## 4110             surrounding                mountains   2
## 4111            surveillance                  mission   2
## 4112            surveillance                    radar   2
## 4113                survived                  crashed   2
## 4114                survived              disappeared   2
## 4115                survivor                     died   2
## 4116                   swamp                 collided   2
## 4117                  switch                    cover   2
## 4118                  sydney                  crashed   2
## 4119                  system                    aural   2
## 4120                  system                   caused   2
## 4121                  system                resulting   2
## 4122                    tail                    broke   2
## 4123                    tail                      fin   2
## 4124                    tail               separating   2
## 4125                    tail                 surfaces   2
## 4126                    tail                    wheel   2
## 4127                    tail                    winds   2
## 4128                tailwind                    level   2
## 4129                 takeoff               conditions   2
## 4130                 takeoff                excessive   2
## 4131                 takeoff                  factors   2
## 4132                 takeoff                    flaps   2
## 4133                 takeoff                      hit   2
## 4134                 takeoff                  hitting   2
## 4135                 takeoff               inadequate   2
## 4136                 takeoff                     lost   2
## 4137                 takeoff               mechanical   2
## 4138                 takeoff                  stalled   2
## 4139                 takeoff                   thrust   2
## 4140                  taking                  evasive   2
## 4141                   tamil                   rebels   2
## 4142                    tank                  booster   2
## 4143                    tank                  causing   2
## 4144                    tank                 exploded   2
## 4145                    tank                 gasoline   2
## 4146                    tank                resulting   2
## 4147                    taxi                  crashed   2
## 4148                 tearing                    loose   2
## 4149               telephone                    lines   2
## 4150               telephone                    wires   2
## 4151             temperature                inversion   2
## 4152               temporary                     loss   2
## 4153                     ten                 american   2
## 4154                     ten                   killed   2
## 4155                 tension                   static   2
## 4156                terminal                  control   2
## 4157                 terrain                   caused   2
## 4158                 terrain                     crew   2
## 4159                    test                    pilot   2
## 4160                   thick                    smoke   2
## 4161                thirteen                   aboard   2
## 4162                thirteen                   killed   2
## 4163                  thrust                  bearing   2
## 4164                  thrust                reversers   2
## 4165                  thrust                  setting   2
## 4166            thunderstorm                     cell   2
## 4167                    time                 approach   2
## 4168                    time                 exceeded   2
## 4169                    time                witnesses   2
## 4170                  timely                 decision   2
## 4171                   tingo                    maria   2
## 4172                     tip                      hit   2
## 4173                    tire                     blew   2
## 4174                    tire                 exploded   2
## 4175                   tokyo                    japan   2
## 4176                     top                  ranking   2
## 4177                    tops                resulting   2
## 4178                   total                     loss   2
## 4179                   total                   weight   2
## 4180                    tour                      bus   2
## 4181                    tour                 carrying   2
## 4182                   tower                  crashed   2
## 4183                   tower                   warned   2
## 4184                   toxic                    smoke   2
## 4185                   trade                   center   2
## 4186                 trailer                     park   2
## 4187                trailing                    smoke   2
## 4188                training                  crashed   2
## 4189                   trang                      air   2
## 4190           transatlantic                   flight   2
## 4191                transfer                  process   2
## 4192                transfer                propeller   2
## 4193             transferred                     fuel   2
## 4194          transportation                   safety   2
## 4195            transporting                      oil   2
## 4196                    tree                      200   2
## 4197                   trees                    2,000   2
## 4198                   trees                  factors   2
## 4199                   trees                  failure   2
## 4200                   trees                     loss   2
## 4201                   trees                     lost   2
## 4202                   trees                   struck   2
## 4203                     tri                     city   2
## 4204                     tri                    motor   2
## 4205                 trinity                      bay   2
## 4206                tropical                    storm   2
## 4207                 trouble                attempted   2
## 4208                 trouble                     lost   2
## 4209                 trouble                  shortly   2
## 4210                    tube                 assembly   2
## 4211                 turbine                    blade   2
## 4212                 turbine                     disc   2
## 4213                 turbine                    wheel   2
## 4214              turbulence              encountered   2
## 4215              turbulence                 possibly   2
## 4216                      tv                    movie   2
## 4217                  twelve                   killed   2
## 4218              tyrrhenian                      sea   2
## 4219                     u.s                  senator   2
## 4220                     u.s                  special   2
## 4221                     u.s                   troops   2
## 4222             uncommanded               deployment   2
## 4223             uncontained                  failure   2
## 4224          uncontrollable                  descent   2
## 4225          uncontrollable                     loss   2
## 4226          uncontrollable             overspeeding   2
## 4227          uncontrollable                     roll   2
## 4228          uncontrollable                     spin   2
## 4229            undetermined                emergency   2
## 4230            undetermined                   reason   2
## 4231             unfavorable               conditions   2
## 4232                   unita                    rebel   2
## 4233                  united                       dc   2
## 4234                  united                  express   2
## 4235              university                 football   2
## 4236                 unknown                  shortly   2
## 4237                unmarked                     fuel   2
## 4238                  unsafe                condition   2
## 4239                  unsafe                    speed   2
## 4240            unstabilized               instrument   2
## 4241            unsuccessful                 attempts   2
## 4242                   upper                     wing   2
## 4243               upsloping                  terrain   2
## 4244                  vacant                 building   2
## 4245                  vacant                      lot   2
## 4246                     van                     nuys   2
## 4247                    vent                     line   2
## 4248                vertical                    climb   2
## 4249                vertical                     gyro   2
## 4250                   vesna                  vulovic   2
## 4251                     vfr               separation   2
## 4252                 victims                 included   2
## 4253              visibility                   caused   2
## 4254              visibility                   crew's   2
## 4255              visibility                     rain   2
## 4256              visibility                  shortly   2
## 4257              visibility                   struck   2
## 4258              visibility                windshear   2
## 4259                  visual                  lookout   2
## 4260              volleyball                     team   2
## 4261                     von               richthofen   2
## 4262                     vor                   beacon   2
## 4263                     vor               instrument   2
## 4264                    wake                   vortex   2
## 4265                    wall               overturned   2
## 4266                    wall              surrounding   2
## 4267                     war                  crashed   2
## 4268                 warning                 occurred   2
## 4269                 warning                  systems   2
## 4270                warnings                  crashed   2
## 4271              washington                 national   2
## 4272                   water                  crashed   2
## 4273                   water                ingestion   2
## 4274                   water                injection   2
## 4275                   water                  landing   2
## 4276                   water                     tank   2
## 4277                   wayne                   county   2
## 4278                 weather                 briefing   2
## 4279                 weather              conditiions   2
## 4280                 weather           conditions.the   2
## 4281                 weather                     crew   2
## 4282                 weather                  failure   2
## 4283                 weather                  forcast   2
## 4284                 weather                   hazard   2
## 4285                 weather                   minima   2
## 4286                 weather               operations   2
## 4287                 weather                resulting   2
## 4288                 weather                     shot   2
## 4289                 weather                  spatial   2
## 4290                 weather                  warning   2
## 4291                    west                    coast   2
## 4292                 western                 airlines   2
## 4293                 western                    slope   2
## 4294                 western                   slopes   2
## 4295               whitehall                    range   2
## 4296                    wind                    shear   2
## 4297                   winds                 wreckage   2
## 4298               windshear               conditions   2
## 4299                    wing               attachment   2
## 4300                    wing                  buckled   2
## 4301                    wing                 collided   2
## 4302                    wing                      due   2
## 4303                    wing                 exploded   2
## 4304                    wing                 impacted   2
## 4305                    wing                  section   2
## 4306                    wing                  surface   2
## 4307                    wing                    tanks   2
## 4308                    wing                  touched   2
## 4309                 witness                   stated   2
## 4310               witnesses                    heard   2
## 4311                  wooded             mountainside   2
## 4312                   world                    trade   2
## 4313                   worst                   single   2
## 4314                wreckage                     site   2
## 4315                   wrong                altimeter   2
## 4316                   wrong                   engine   2
## 4317                   wrong                     flap   2
## 4318                   wrong                     fuel   2
## 4319                   wrong               parameters   2
## 4320                   wrong                   rudder   2
## 4321                   wrong                   runway   2
## 4322                     yak                       42   2
## 4323                  zurich                  airport   2
## 4324                    0.17                alcoholic   1
## 4325                     0.7                    miles   1
## 4326                     0.8                       nm   1
## 4327                      00                       30   1
## 4328                      00                       40   1
## 4329                      00                       43   1
## 4330                      00                       47   1
## 4331                      00                      gct   1
## 4332                      00                      utc   1
## 4333                     000                       ft   1
## 4334                     007                   flight   1
## 4335                     007                    plane   1
## 4336                      01                       33   1
## 4337                      01                       48   1
## 4338                    0142                  crashed   1
## 4339                      02                       00   1
## 4340                      02                       14   1
## 4341                     027                  degrees   1
## 4342                    0270                  degrees   1
## 4343                      03                       19   1
## 4344                      03                       lt   1
## 4345                     035                      deg   1
## 4346                      04                       00   1
## 4347                      04                     1954   1
## 4348                      05                       10   1
## 4349                      05                 approach   1
## 4350                      05                   design   1
## 4351                      06                       17   1
## 4352                      06                       26   1
## 4353                    0622                      est   1
## 4354                     07r                  shortly   1
## 4355                      08                       14   1
## 4356                       1                       11   1
## 4357                       1                       12   1
## 4358                       1                       19   1
## 4359                       1                        4   1
## 4360                       1                      500   1
## 4361                       1                      900   1
## 4362                       1                      air   1
## 4363                       1                     crew   1
## 4364                       1                 cylinder   1
## 4365                       1               electrical   1
## 4366                       1                  failure   1
## 4367                       1                     fuel   1
## 4368                       1                      ils   1
## 4369                       1            incapacitated   1
## 4370                       1              intervening   1
## 4371                       1                kilometer   1
## 4372                       1               kilometers   1
## 4373                       1                kilometre   1
## 4374                       1                  million   1
## 4375                       1                       nm   1
## 4376                       1                passenger   1
## 4377                       1                   piston   1
## 4378                       1                propeller   1
## 4379                       1                 reverser   1
## 4380                       1                 standard   1
## 4381                       1                     tank   1
## 4382                   1,000                       km   1
## 4383                   1,000                   pounds   1
## 4384                   1,000                    trees   1
## 4385                   1,000                    yards   1
## 4386                   1,047                       ft   1
## 4387                   1,090                   mshort   1
## 4388                   1,100                   meters   1
## 4389                   1,100                       yd   1
## 4390                   1,120                     feet   1
## 4391                   1,120                       nm   1
## 4392                   1,150                     feet   1
## 4393                   1,170                     feet   1
## 4394                   1,200                    yards   1
## 4395                   1,300                     feet   1
## 4396                   1,360                   meters   1
## 4397                   1,380                       ft   1
## 4398                   1,400                       ft   1
## 4399                   1,440                       km   1
## 4400                   1,450                     feet   1
## 4401                  1,450m                    short   1
## 4402                   1,500                      lbs   1
## 4403                   1,500                    miles   1
## 4404                   1,600                       ft   1
## 4405                  1,600m                    short   1
## 4406                   1,620                     feet   1
## 4407                   1,640                     feet   1
## 4408                   1,700                     feet   1
## 4409                   1,700                       ft   1
## 4410                  1,700m                    short   1
## 4411                   1,725                     feet   1
## 4412                   1,875                     feet   1
## 4413                   1,900                     feet   1
## 4414                    1.24                  million   1
## 4415                     1.5                     hour   1
## 4416                     1.5                    hours   1
## 4417                   1.5km                    short   1
## 4418                     1.7                       nm   1
## 4419                      10                       11   1
## 4420                      10                       15   1
## 4421                      10                       16   1
## 4422                      10                     1957   1
## 4423                      10                       26   1
## 4424                      10                       30   1
## 4425                      10                 aircraft   1
## 4426                      10                 airplane   1
## 4427                      10                     crew   1
## 4428                      10                     days   1
## 4429                      10                  degrees   1
## 4430                      10                     feet   1
## 4431                      10                       ft   1
## 4432                      10                    hours   1
## 4433                      10                    knots   1
## 4434                      10                     lost   1
## 4435                      10                   meters   1
## 4436                      10                     mins   1
## 4437                      10                   months   1
## 4438                      10                       nm   1
## 4439                      10                   people   1
## 4440                      10                    radio   1
## 4441                      10                 soldiers   1
## 4442                      10                     tons   1
## 4443                  10,200                       ft   1
## 4444                  10,530                       ft   1
## 4445                  10,700                     feet   1
## 4446                  10,982                     feet   1
## 4447                     100                      130   1
## 4448                     100                      150   1
## 4449                     100                      200   1
## 4450                     100             intermittent   1
## 4451                     100                       km   1
## 4452                     100                    lives   1
## 4453                     100                   metres   1
## 4454                    1000                     feet   1
## 4455                     101               passengers   1
## 4456                    101b                   voodoo   1
## 4457                   101st                 airborne   1
## 4458                     102                  minutes   1
## 4459                    1020                   meters   1
## 4460                     105             thunderchief   1
## 4461                 105,000                    prior   1
## 4462                     107                   killed   1
## 4463                     107                   people   1
## 4464                     108                    miles   1
## 4465                     109                    knots   1
## 4466                    10th                     died   1
## 4467                      11                       21   1
## 4468                      11                       34   1
## 4469                      11                       56   1
## 4470                      11                   aboard   1
## 4471                      11                     feet   1
## 4472                      11                  injured   1
## 4473                      11                       km   1
## 4474                      11                      kms   1
## 4475                      11                   months   1
## 4476                      11                       nm   1
## 4477                      11               passengers   1
## 4478                      11                    story   1
## 4479                  11,152                       ft   1
## 4480                  11,400                       ft   1
## 4481                  11,500                     feet   1
## 4482                  11,600                       ft   1
## 4483                  11,770                       ft   1
## 4484                  11,800                       ft   1
## 4485                    11.3                    miles   1
## 4486                     111                   german   1
## 4487                     113                     feet   1
## 4488                     117                   pounds   1
## 4489                      12                       04   1
## 4490                      12                       12   1
## 4491                      12                     1953   1
## 4492                      12                     1972   1
## 4493                      12                     1993   1
## 4494                      12                     2018   1
## 4495                      12                       22   1
## 4496                      12                       38   1
## 4497                      12                 children   1
## 4498                      12                     crew   1
## 4499                      12                  degrees   1
## 4500                      12                     feet   1
## 4501                      12                   landed   1
## 4502                      12                   months   1
## 4503                      12               passengers   1
## 4504                      12                 perished   1
## 4505                      12                   planes   1
## 4506                      12                      ton   1
## 4507                  12,000                     volt   1
## 4508                  12,013                       ft   1
## 4509                  12,300                       ft   1
## 4510                  12,600                       ft   1
## 4511                    12.5                    miles   1
## 4512                     120                      150   1
## 4513                     120                   meters   1
## 4514                     123                    total   1
## 4515                     12s                   flight   1
## 4516                    12th                 aviation   1
## 4517                      13                       31   1
## 4518                      13                 civilian   1
## 4519                      13                  degrees   1
## 4520                      13                    hours   1
## 4521                      13                   killed   1
## 4522                      13                       m2   1
## 4523                      13                    meter   1
## 4524                      13                   pounds   1
## 4525                      13                    south   1
## 4526                  13,000                     foot   1
## 4527                  13,400                       ft   1
## 4528                  13,700                       ft   1
## 4529                    13.6                    miles   1
## 4530                     130                    broke   1
## 4531                     130                transport   1
## 4532                    134a                 prepared   1
## 4533                     135              contributed   1
## 4534                     135                    knots   1
## 4535                     135                operators   1
## 4536                   135bj                  legaacy   1
## 4537                     137                    knots   1
## 4538                      14                       95   1
## 4539                      14                civilians   1
## 4540                      14                     code   1
## 4541                      14                     crew   1
## 4542                      14                 cylinder   1
## 4543                      14                  iranian   1
## 4544                      14                      jet   1
## 4545                      14                   killed   1
## 4546                      14                  minutes   1
## 4547                      14                    pilot   1
## 4548                      14                  stating   1
## 4549                      14                      utc   1
## 4550                  14,250                       ft   1
## 4551                  14,346                     feet   1
## 4552                  14,500                     feet   1
## 4553                  14,700                       ft   1
## 4554                     140                     kias   1
## 4555                     141             contributing   1
## 4556                     144              overreacted   1
## 4557                 144,000                   square   1
## 4558                    14th                       st   1
## 4559                      15                       20   1
## 4560                      15                     2012   1
## 4561                      15                      26z   1
## 4562                      15                       30   1
## 4563                      15                       35   1
## 4564                      15                   aboard   1
## 4565                      15                      afw   1
## 4566                      15                      air   1
## 4567                      15                  crashed   1
## 4568                      15                     days   1
## 4569                      15                   degree   1
## 4570                      15                       ft   1
## 4571                      15                   minute   1
## 4572                      15                   months   1
## 4573                      15             organization   1
## 4574                      15                  russian   1
## 4575                      15                 soldiers   1
## 4576                      15                    tones   1
## 4577                      15                  warning   1
## 4578                  15,000                     feet   1
## 4579                  15,150                     feet   1
## 4580                  15,500                       ft   1
## 4581                  15,721                       ft   1
## 4582                    15.5                    miles   1
## 4583                     150                      200   1
## 4584                     150                 carrying   1
## 4585                     150                    knots   1
## 4586                     150                       kt   1
## 4587                     150                      mph   1
## 4588                     150               passengers   1
## 4589                     150                    yards   1
## 4590                     153                paintings   1
## 4591                     154                 aircraft   1
## 4592                     155                       kt   1
## 4593                     158                     kias   1
## 4594                     158                  persons   1
## 4595                      16                     1959   1
## 4596                      16                     21nm   1
## 4597                      16                       50   1
## 4598                      16                     bolt   1
## 4599                      16                  columba   1
## 4600                      16                     feet   1
## 4601                      16                 fighters   1
## 4602                      16                      jet   1
## 4603                      16                    month   1
## 4604                      16                   months   1
## 4605                      16               passengers   1
## 4606                      16                   people   1
## 4607                      16                   pilots   1
## 4608                      16                     tons   1
## 4609                  16,355                     feet   1
## 4610                  16,700                     feet   1
## 4611                  16,739                       ft   1
## 4612                   16202                       66   1
## 4613                     164                    knots   1
## 4614                     165                      mph   1
## 4615                    1655                  central   1
## 4616                   16592                       66   1
## 4617                   16601                passenger   1
## 4618                    16km                       se   1
## 4619                      17                       09   1
## 4620                      17                     1960   1
## 4621                      17                     2003   1
## 4622                      17                    buddy   1
## 4623                      17                  crashed   1
## 4624                      17                     feet   1
## 4625                      17                   killed   1
## 4626                  17,000                     feet   1
## 4627                  17,000                       ft   1
## 4628                   17.10                  shortly   1
## 4629                     170                  degrees   1
## 4630                     170                     kias   1
## 4631                     170                    miles   1
## 4632                   171st                       st   1
## 4633                     172                    knots   1
## 4634                     175                    miles   1
## 4635                      18                       12   1
## 4636                      18                   aboard   1
## 4637                      18                 approach   1
## 4638                      18                  crashed   1
## 4639                      18                     crew   1
## 4640                      18              crewmembers   1
## 4641                      18                 eighteen   1
## 4642                      18                      kms   1
## 4643                      18                   minute   1
## 4644                      18                   months   1
## 4645                      18                   people   1
## 4646                      18                    super   1
## 4647                      18                survivors   1
## 4648                      18                     tons   1
## 4649                  18,400                      msl   1
## 4650                    18.7                    miles   1
## 4651                     180                    knots   1
## 4652                    1800                       ft   1
## 4653                     182                  injured   1
## 4654                     182                    knots   1
## 4655                     18l                 impacted   1
## 4656                      19                       03   1
## 4657                      19                     2000   1
## 4658                      19                     2004   1
## 4659                      19                      a.m   1
## 4660                      19                   bodies   1
## 4661                      19                   people   1
## 4662                  19,000                     feet   1
## 4663                  19,600                     feet   1
## 4664                    19.5                    miles   1
## 4665                     190                   ground   1
## 4666                     190                    knots   1
## 4667                     190                    miles   1
## 4668                    1934                 crrashed   1
## 4669                  1941at                       mt   1
## 4670                    1951                    crash   1
## 4671                    1953                  crashed   1
## 4672                    1958                  shortly   1
## 4673                    1960                 olympics   1
## 4674                     197                      mph   1
## 4675                    1978                    worst   1
## 4676                    1980               tailstrike   1
## 4677                    1983                  crashed   1
## 4678                    1989                       65   1
## 4679                    1992                       tv   1
## 4680                    1994                   stated   1
## 4681                    1995                  crashed   1
## 4682                    1997                       25   1
## 4683                      1a                  corsair   1
## 4684                 1engine              overspeeded   1
## 4685                 1engine                    smoke   1
## 4686                      1r                   escape   1
## 4687                       2                      000   1
## 4688                       2                        1   1
## 4689                       2                      3km   1
## 4690                       2                     3rds   1
## 4691                       2                      500   1
## 4692                       2                      air   1
## 4693                       2                  airport   1
## 4694                       2                  baggage   1
## 4695                       2                    blade   1
## 4696                       2                   bleach   1
## 4697                       2                    bolts   1
## 4698                       2                  bombers   1
## 4699                       2                 brothers   1
## 4700                       2                   caught   1
## 4701                       2                   caused   1
## 4702                       2               companions   1
## 4703                       2                  crashed   1
## 4704                       2           engine.failure   1
## 4705                       2                     feet   1
## 4706                       2                      ils   1
## 4707                       2                     inch   1
## 4708                       2              instructors   1
## 4709                       2                kilometer   1
## 4710                       2               kilometers   1
## 4711                       2                      low   1
## 4712                       2                     mile   1
## 4713                       2                 military   1
## 4714                       2                  million   1
## 4715                       2                   months   1
## 4716                       2                   pinion   1
## 4717                       2                    plane   1
## 4718                       2              programming   1
## 4719                       2                     prop   1
## 4720                       2                     rear   1
## 4721                       2                 reverser   1
## 4722                       2                      spy   1
## 4723                       2                 sudanese   1
## 4724                       2                   sukhoi   1
## 4725                       2                  surface   1
## 4726                       2                   thrust   1
## 4727                       2                 vertical   1
## 4728                       2                   visual   1
## 4729                       2                      vor   1
## 4730                       2                     vors   1
## 4731                   2,000                     foot   1
## 4732                 2,000ft                    power   1
## 4733                  2,000m                     past   1
## 4734                   2,050                     feet   1
## 4735                   2,100                       ft   1
## 4736                   2,150                     feet   1
## 4737                   2,250                   meters   1
## 4738                   2,310                     feet   1
## 4739                   2,380                     feet   1
## 4740                   2,460                       ft   1
## 4741                   2,500                      lbs   1
## 4742                   2,500                   metres   1
## 4743                  2,520m                     22km   1
## 4744                   2,525                     feet   1
## 4745                    2,5ã                        â   1
## 4746                   2,600                       ft   1
## 4747                   2,600                 meters.ã   1
## 4748                   2,650                     feet   1
## 4749                   2,690                     feet   1
## 4750                   2,700                       ft   1
## 4751                   2,748                     feet   1
## 4752                   2,760                     feet   1
## 4753                   2,790                       ft   1
## 4754                   2,800                     feet   1
## 4755                   2,800                   flying   1
## 4756                  2,800m                       13   1
## 4757                   2,850                     feet   1
## 4758                   2,900                     feet   1
## 4759                   2,950                       ft   1
## 4760                     2.2                      lbs   1
## 4761                     2.3                     tons   1
## 4762                     2.5                        3   1
## 4763                     2.5                     mile   1
## 4764                   2.5km                    short   1
## 4765                     2.8                    miles   1
## 4766                      20                       30   1
## 4767                      20                   aboard   1
## 4768                      20                   border   1
## 4769                      20                     days   1
## 4770                      20                       ft   1
## 4771                      20                    hours   1
## 4772                      20                  injured   1
## 4773                      20                       kt   1
## 4774                      20                     mile   1
## 4775                      20                   minute   1
## 4776                      20                       nm   1
## 4777                      20                      ran   1
## 4778                      20                     rick   1
## 4779                      20                witnesses   1
## 4780                  20,000                     feet   1
## 4781                  20,000                       ft   1
## 4782                     200                      300   1
## 4783                     200                 airliner   1
## 4784                     200                       km   1
## 4785                     200                   metres   1
## 4786                     200                    miles   1
## 4787                    2000                       53   1
## 4788                    2000                     feet   1
## 4789                    2003                recovered   1
## 4790                    2004                  ditched   1
## 4791                    2011                    sites   1
## 4792                    2012                  crashed   1
## 4793                    2013                        8   1
## 4794                    2017                   struck   1
## 4795                     206                       ob   1
## 4796                     208                   pilots   1
## 4797                      21                       00   1
## 4798                      21                       61   1
## 4799                      21                    miles   1
## 4800                      21                  minutes   1
## 4801                      21                  trainer   1
## 4802                     210                    miles   1
## 4803                     216               passengers   1
## 4804                    21nm                     west   1
## 4805                      22                     1934   1
## 4806                      22                     1943   1
## 4807                      22                       56   1
## 4808                      22                       59   1
## 4809                      22                       72   1
## 4810                      22                    bobby   1
## 4811                      22                      due   1
## 4812                      22                    jiles   1
## 4813                      22                   killed   1
## 4814                      22               passengers   1
## 4815                  22,000                     feet   1
## 4816                  22,000                     foot   1
## 4817                   22268                   thirty   1
## 4818                     223                     foot   1
## 4819                     225                   bodies   1
## 4820                     225                   people   1
## 4821                     227                 collided   1
## 4822                     227               passengers   1
## 4823                   228th                 squadron   1
## 4824                      23                 approach   1
## 4825                      23                 children   1
## 4826                      23                   houses   1
## 4827                      23                  minutes   1
## 4828                  23,000                     feet   1
## 4829                  23,000                       ft   1
## 4830                  23,900                       ft   1
## 4831                     230                    knots   1
## 4832                     230                      mph   1
## 4833                     231                    miles   1
## 4834                     232                  crashed   1
## 4835                   23307                    73209   1
## 4836                     234                       14   1
## 4837                      24                  causing   1
## 4838                      24                       mi   1
## 4839                      24                    miles   1
## 4840                      24                  overran   1
## 4841                      24               structural   1
## 4842                     240                    knots   1
## 4843                     240                      mph   1
## 4844                     243               vietnamese   1
## 4845                      25                  degrees   1
## 4846                      25                       ft   1
## 4847                      25                    hours   1
## 4848                      25                     lead   1
## 4849                  25,000                     feet   1
## 4850                  25,000                       ft   1
## 4851                     250               kilometers   1
## 4852                     250                    knots   1
## 4853                    25km                northwest   1
## 4854                      26                     1958   1
## 4855                      26                     2012   1
## 4856                      26                       33   1
## 4857                      26                     feet   1
## 4858                      26                   killed   1
## 4859                      26                    miles   1
## 4860                      26                  minutes   1
## 4861                      26                       nm   1
## 4862                      26               overloaded   1
## 4863                      26               passengers   1
## 4864                     260                     feet   1
## 4865                     263                  degrees   1
## 4866                     265                      mph   1
## 4867                      27                     1953   1
## 4868                      27                     1997   1
## 4869                      27                     days   1
## 4870                      27                   killed   1
## 4871                      27                       km   1
## 4872                      27                 soundman   1
## 4873                  27,200                       ft   1
## 4874                     270                   degree   1
## 4875                     270                  degrees   1
## 4876                     270                      mph   1
## 4877                   27deg                    flaps   1
## 4878                      28                 families   1
## 4879                      28                  minutes   1
## 4880                      28                   sister   1
## 4881                      28                threshold   1
## 4882                      28                   visual   1
## 4883                  28,000                     feet   1
## 4884                  28,000                   pounds   1
## 4885                     283               passengers   1
## 4886                     285                    miles   1
## 4887                     28l             continuation   1
## 4888                      29                       59   1
## 4889                      29                  brother   1
## 4890                      29                  degrees   1
## 4891                      29                guitarist   1
## 4892                      29                    miles   1
## 4893                      29                  minutes   1
## 4894                  29,000                     feet   1
## 4895                   29.97                  advised   1
## 4896                     2km                     east   1
## 4897                     2km                    short   1
## 4898                     2nd                    stage   1
## 4899                     2nm                   inside   1
## 4900                      2t                  crashed   1
## 4901                       3                        1   1
## 4902                       3                       17   1
## 4903                       3                     2011   1
## 4904                       3                      300   1
## 4905                       3                       35   1
## 4906                       3                      400   1
## 4907                       3                      air   1
## 4908                       3                    built   1
## 4909                       3                   caused   1
## 4910                       3                 civilian   1
## 4911                       3                  climbed   1
## 4912                       3                 collided   1
## 4913                       3                  crashed   1
## 4914                       3                descended   1
## 4915                       3                diverging   1
## 4916                       3                  entered   1
## 4917                       3                  fighter   1
## 4918                       3                   flying   1
## 4919                       3                     foot   1
## 4920                       3                generator   1
## 4921                       3                   ground   1
## 4922                       3                     hour   1
## 4923                       3                  injured   1
## 4924                       3                   junior   1
## 4925                       3                     lack   1
## 4926                       3                     left   1
## 4927                       3              maintenance   1
## 4928                       3                     mile   1
## 4929                       3                   missed   1
## 4930                       3                   pieces   1
## 4931                       3               pieces.the   1
## 4932                       3                   pilots   1
## 4933                       3                     plan   1
## 4934                       3                    power   1
## 4935                       3            preoccupation   1
## 4936                       3                    staff   1
## 4937                       3                  student   1
## 4938                       3                 students   1
## 4939                       3              technicians   1
## 4940                       3                     tire   1
## 4941                       3                     tons   1
## 4942                       3                    touch   1
## 4943                   3,300                      fpm   1
## 4944                   3,300                       ft   1
## 4945                   3,556                     feet   1
## 4946                   3,600                     feet   1
## 4947                   3,600                       ft   1
## 4948                   3,700                     feet   1
## 4949                   3,750                     feet   1
## 4950                   3,800                       ft   1
## 4951                   3,830                     foot   1
## 4952                   3,900                       ft   1
## 4953                   3,975                     feet   1
## 4954                     3.3                   degree   1
## 4955                     3.4                       km   1
## 4956                     3.4                    miles   1
## 4957                     3.5                       km   1
## 4958                     3.5                       nm   1
## 4959                   3.5km                    short   1
## 4960                     3.8                    miles   1
## 4961                      30                     1983   1
## 4962                      30                    dairy   1
## 4963                      30                      day   1
## 4964                      30                      dme   1
## 4965                      30                       ft   1
## 4966                      30                      kms   1
## 4967                      30                    local   1
## 4968                      30                  minuets   1
## 4969                      30               passengers   1
## 4970                      30               registered   1
## 4971                      30                survivors   1
## 4972                  30,000                     feet   1
## 4973                    30.5                    miles   1
## 4974                     300                      600   1
## 4975                     300               detonation   1
## 4976                     300                    yards   1
## 4977                    3000                       ft   1
## 4978                   301st                       bg   1
## 4979                     309                   aboard   1
## 4980                      31                     2000   1
## 4981                      31                      350   1
## 4982                      31                 climbing   1
## 4983                      31                     days   1
## 4984                      31                    hours   1
## 4985                      31                   killed   1
## 4986                      31                   minute   1
## 4987                      31                occupants   1
## 4988                      31                      oil   1
## 4989                      31                     tons   1
## 4990                      31                      u.s   1
## 4991                   314th                    troop   1
## 4992                 31l.the                    plane   1
## 4993                      32                   aboard   1
## 4994                      32                      kms   1
## 4995                     320                       ft   1
## 4996                     320                      mph   1
## 4997                     325                    miles   1
## 4998                     326                        9   1
## 4999                     328                       ft   1
## 5000                      33                    35553   1
## 5001                      33                  ejected   1
## 5002                      33                   killed   1
## 5003                      33                      utc   1
## 5004                  33,330                     feet   1
## 5005                     335                     feet   1
## 5006                     33a                    pilot   1
## 5007                      34                  degrees   1
## 5008                      34                   killed   1
## 5009                      34                   landed   1
## 5010                      34                    local   1
## 5011                      34                    miles   1
## 5012                  34,500                     feet   1
## 5013                     340                   meters   1
## 5014                     340                    miles   1
## 5015                     340                      mph   1
## 5016                    340b                   engine   1
## 5017                    34km                      wnw   1
## 5018                      35                   clineã   1
## 5019                      35                  degrees   1
## 5020                      35                       ft   1
## 5021                      35                    hours   1
## 5022                      35                   killed   1
## 5023                      35                   minute   1
## 5024                      35                scheduled   1
## 5025                      35                      son   1
## 5026                      35                    worms   1
## 5027                  35,000                       ft   1
## 5028                  35,400                       ft   1
## 5029                     350                       46   1
## 5030                     350                     died   1
## 5031                     350                     feet   1
## 5032                      36                  degrees   1
## 5033                      36                   killed   1
## 5034                  36,000                       ft   1
## 5035                     360                  degrees   1
## 5036                     360                     feet   1
## 5037                     367                      due   1
## 5038                     36r                     fuel   1
## 5039                      37                   aboard   1
## 5040                      37                    miles   1
## 5041                      37                  minutes   1
## 5042                  37,000                     feet   1
## 5043                     375                 birthday   1
## 5044            37passengers                        6   1
## 5045                      38                      hit   1
## 5046                      38                       km   1
## 5047                      38                    miles   1
## 5048                      38                 survived   1
## 5049                     387               originated   1
## 5050                      39                   cowboy   1
## 5051                  39,000                       ft   1
## 5052                    39th                     home   1
## 5053                      3c                 collided   1
## 5054                    3hrs                  serving   1
## 5055                     3rd                    class   1
## 5056                     3rd                      day   1
## 5057                     3rd                   engine   1
## 5058                       4                        1   1
## 5059                       4                     2013   1
## 5060                       4                       30   1
## 5061                       4               aircraft's   1
## 5062                       4                    cargo   1
## 5063                       4                   colgan   1
## 5064                       4                  crashed   1
## 5065                       4                    cuban   1
## 5066                       4                      due   1
## 5067                       4                emergency   1
## 5068                       4              experienced   1
## 5069                       4                  failure   1
## 5070                       4                  fatigue   1
## 5071                       4                   french   1
## 5072                       4                       ft   1
## 5073                       4                    hours   1
## 5074                       4                   houses   1
## 5075                       4                   inches   1
## 5076                       4                      kms   1
## 5077                       4                       nm   1
## 5078                       4                 throttle   1
## 5079                       4             thunderstorm   1
## 5080                       4                 weakened   1
## 5081                   4,000                     foot   1
## 5082                  4,000m                   cliffs   1
## 5083                   4,090                     foot   1
## 5084                   4,100                     feet   1
## 5085                   4,100                       ft   1
## 5086                   4,193                      lbs   1
## 5087                   4,250                     feet   1
## 5088                   4,355                       ft   1
## 5089                   4,500                     foot   1
## 5090                   4,500                       ft   1
## 5091                   4,600                     feet   1
## 5092                   4,600                       ft   1
## 5093                   4,980                     feet   1
## 5094                     4.4                    miles   1
## 5095                     4.5                    miles   1
## 5096                     4.7                 nautical   1
## 5097                    4.8g                     pull   1
## 5098                      40                  crashed   1
## 5099                      40                   degree   1
## 5100                      40                   killed   1
## 5101                      40                   meters   1
## 5102                      40                   minute   1
## 5103                      40               passengers   1
## 5104                      40               violations   1
## 5105                    4000                       ft   1
## 5106                      41                    hours   1
## 5107                      41                  minutes   1
## 5108                      41               passengers   1
## 5109                  41,000                     feet   1
## 5110                  41,600                     feet   1
## 5111                      42                     7183   1
## 5112                      42                     7408   1
## 5113                      42                   aboard   1
## 5114                      42                     crew   1
## 5115                      42                       km   1
## 5116                      42                    knots   1
## 5117                      42                    miles   1
## 5118                      42                       nm   1
## 5119                     420               additional   1
## 5120                      43                   famous   1
## 5121                      43                  injured   1
## 5122                      43                 injuries   1
## 5123                      43                   killed   1
## 5124                      44                       ft   1
## 5125                      44                   magnum   1
## 5126                      44                    miles   1
## 5127                      44                  minutes   1
## 5128                      44                  persons   1
## 5129                     449                    kilos   1
## 5130                      45                   aboard   1
## 5131                      45                  caliber   1
## 5132                      45                 champion   1
## 5133                      45                 fiancãƒâ   1
## 5134                      45                    miles   1
## 5135                     450                    miles   1
## 5136                     450                      mph   1
## 5137                   45714                   flying   1
## 5138                     45ã                        â   1
## 5139                      46                       15   1
## 5140                      46                   aboard   1
## 5141                      46                  crashed   1
## 5142                      46                  minutes   1
## 5143                      46               passengers   1
## 5144                   46094                    45714   1
## 5145                   46325                    46094   1
## 5146                      47                continued   1
## 5147                      47               helicopter   1
## 5148                      47                   killed   1
## 5149                      47                  minutes   1
## 5150                      47                   planes   1
## 5151                      48                  crashed   1
## 5152                      48               passengers   1
## 5153                      48                      utc   1
## 5154                     483                    knots   1
## 5155                      49                     195a   1
## 5156                      49                  husband   1
## 5157                  49,000                       ft   1
## 5158                      4e                   landed   1
## 5159                       5                       16   1
## 5160                       5                  armored   1
## 5161                       5                   burned   1
## 5162                       5                  coaches   1
## 5163                       5                   cycles   1
## 5164                       5                   degree   1
## 5165                       5                     feet   1
## 5166                       5                  fighter   1
## 5167                       5                 japanese   1
## 5168                       5                    knots   1
## 5169                       5                 military   1
## 5170                       5                  patrons   1
## 5171                       5                   people   1
## 5172                       5                   pieces   1
## 5173                   5,000                      g's   1
## 5174                   5,000                   pounds   1
## 5175                   5,053                     feet   1
## 5176                   5,165                      lbs   1
## 5177                   5,200                       ft   1
## 5178                   5,300                       ft   1
## 5179                   5,400                      fpm   1
## 5180                   5,500                     feet   1
## 5181                   5,500                     foot   1
## 5182                   5,600                     foot   1
## 5183                   5,800                       ft   1
## 5184                   5,900                       ft   1
## 5185                     5.2                    miles   1
## 5186                     5.5                    miles   1
## 5187                     5.5                 nautical   1
## 5188                     5.7                     tons   1
## 5189                      50                  degrees   1
## 5190                      50                    hours   1
## 5191                      50                   killed   1
## 5192                      50                    knots   1
## 5193                      50                   minute   1
## 5194                      50                       nm   1
## 5195                      50                operators   1
## 5196                      50                   people   1
## 5197                      50                prisoners   1
## 5198                      50                    volts   1
## 5199                     500                      650   1
## 5200                     500                      800   1
## 5201                     500                     foot   1
## 5202                     500                   meters   1
## 5203                     500                      mph   1
## 5204                   509th                     bomb   1
## 5205                      51               passengers   1
## 5206                  51,000                     feet   1
## 5207                      52                     dean   1
## 5208                      52                       nm   1
## 5209                      52           stratofortress   1
## 5210                     520                   meters   1
## 5211                      53                       km   1
## 5212                      53                    miles   1
## 5213                     53d                      sea   1
## 5214                      54                    miles   1
## 5215                      55                   degree   1
## 5216                      55                    hours   1
## 5217                      55                  injured   1
## 5218                      55                   killed   1
## 5219                      55                  minutes   1
## 5220                     550                     feet   1
## 5221                     550                      mph   1
## 5222                      56                      661   1
## 5223                      56                      681   1
## 5224                      56               cartoonist   1
## 5225                      56                  crashed   1
## 5226                      56               detonation   1
## 5227                      56                  minutes   1
## 5228                     560                   meters   1
## 5229                     560                      mph   1
## 5230                     560                       nm   1
## 5231                      57                  minutes   1
## 5232                      57                    tones   1
## 5233                      58                     tons   1
## 5234                     582                       nm   1
## 5235                      59               detonation   1
## 5236                      59                   forced   1
## 5237                     595                     feet   1
## 5238                     595                      lbs   1
## 5239                      5g                resulting   1
## 5240                       6                       12   1
## 5241                       6                     1960   1
## 5242                       6                       22   1
## 5243                       6                     aids   1
## 5244                       6                   caused   1
## 5245                       6                     days   1
## 5246                       6                   degree   1
## 5247                       6                  degrees   1
## 5248                       6                   engine   1
## 5249                       6                     feet   1
## 5250                       6                  harvard   1
## 5251                       6                      hot   1
## 5252                       6                    hours   1
## 5253                       6                    miels   1
## 5254                       6                 moldovan   1
## 5255                       6                 nautical   1
## 5256                       6                       nm   1
## 5257                       6               passengers   1
## 5258                       6                   people   1
## 5259                       6                    pilot   1
## 5260                       6                  pilot's   1
## 5261                       6                     poor   1
## 5262                       6                propeller   1
## 5263                       6                  tempest   1
## 5264                       6                    weeks   1
## 5265                   6,100                       ft   1
## 5266                   6,120                       ft   1
## 5267                   6,167                       ft   1
## 5268                   6,200                     feet   1
## 5269                   6,200                       ft   1
## 5270                   6,300                       ft   1
## 5271                   6,400                       ft   1
## 5272                   6,560                       ft   1
## 5273                   6,660                    miles   1
## 5274                   6,700                     feet   1
## 5275                   6,740                     feet   1
## 5276                   6,800                       ft   1
## 5277                   6,888                       ft   1
## 5278                     6.7                    miles   1
## 5279                      60                   aboard   1
## 5280                      60                   degree   1
## 5281                      60                  injured   1
## 5282                      60                     mile   1
## 5283                      60                  minutes   1
## 5284                     600                 business   1
## 5285                     600                   meters   1
## 5286                     600                      mph   1
## 5287                     600                   pounds   1
## 5288                     600                   rudder   1
## 5289                    6000                     feet   1
## 5290                      61                passenger   1
## 5291                      62                 aircraft   1
## 5292                      62                    miles   1
## 5293                      63                    miles   1
## 5294                    6300                       ft   1
## 5295                      64                   killed   1
## 5296                     645                     feet   1
## 5297                      65                     0255   1
## 5298                      65                       85   1
## 5299                      65                     feet   1
## 5300                      65                 nautical   1
## 5301                     650                       ft   1
## 5302                   65816                 fourteen   1
## 5303                      66                     0142   1
## 5304                      66                    16202   1
## 5305                      66                    16592   1
## 5306                      66                    16601   1
## 5307                      66                   degree   1
## 5308                      66                 governor   1
## 5309                      66                    miles   1
## 5310                     660                     feet   1
## 5311                     674                       ft   1
## 5312                     680                    miles   1
## 5313                    6800                     feet   1
## 5314                      69                   aboard   1
## 5315                      69                  crashed   1
## 5316                      6d                 improper   1
## 5317                      6f                 reckless   1
## 5318                       7                     2017   1
## 5319                       7                   afghan   1
## 5320                       7                 airliner   1
## 5321                       7                  crashed   1
## 5322                       7                     days   1
## 5323                       7                       ft   1
## 5324                       7                     fuel   1
## 5325                       7                      kms   1
## 5326                       7                 military   1
## 5327                       7                       nm   1
## 5328                       7                   ounces   1
## 5329                       7                    story   1
## 5330                       7                 survived   1
## 5331                   7,000                 mountain   1
## 5332                   7,200                       ft   1
## 5333                   7,250                       ft   1
## 5334                   7,450                       ft   1
## 5335                   7,550                       ft   1
## 5336                   7,598                       ft   1
## 5337                   7,600                       ft   1
## 5338                   7,900                     feet   1
## 5339                      70                  degrees   1
## 5340                      70                   meters   1
## 5341                      70                      mph   1
## 5342                      70                   people   1
## 5343                     700                      800   1
## 5344                     700                      900   1
## 5345                     700                   meters   1
## 5346                     700                    miles   1
## 5347                     700                      mph   1
## 5348                    700m                    short   1
## 5349                     707                 crashing   1
## 5350                      71                    miles   1
## 5351                      71                   minute   1
## 5352                     727                 overtook   1
## 5353                     727                   struck   1
## 5354                     727                undershot   1
## 5355                      73                       km   1
## 5356                   73209                    46325   1
## 5357                     737                      200   1
## 5358                     737                      236   1
## 5359                     737                      max   1
## 5360                    7408                   faulty   1
## 5361                     747                 accident   1
## 5362                     747                     blew   1
## 5363                     747                    cabin   1
## 5364                     747                    pylon   1
## 5365                      75                       ft   1
## 5366                      75                       km   1
## 5367                     750                     feet   1
## 5368                     757                 filpping   1
## 5369                     757                     left   1
## 5370                     75m                    short   1
## 5371                      76                descended   1
## 5372                      77               passengers   1
## 5373                     777                      200   1
## 5374                      78                   aboard   1
## 5375                      78                   thrust   1
## 5376                    79th                    floor   1
## 5377                       8                       14   1
## 5378                       8                       69   1
## 5379                       8                        8   1
## 5380                       8                   aboard   1
## 5381                       8                civilians   1
## 5382                       8              consecutive   1
## 5383                       8                  crashed   1
## 5384                       8                     died   1
## 5385                       8                   flight   1
## 5386                       8                       ft   1
## 5387                       8              helicopters   1
## 5388                       8                     knot   1
## 5389                       8                    knots   1
## 5390                       8                 military   1
## 5391                       8                   months   1
## 5392                       8                occupants   1
## 5393                       8               passengers   1
## 5394                       8                   people   1
## 5395                       8                   struck   1
## 5396                       8                 survived   1
## 5397                   8,200                       ft   1
## 5398                   8,250                     feet   1
## 5399                   8,500                     feet   1
## 5400                   8,640                       ft   1
## 5401                   8,800                     feet   1
## 5402                   8,800                       ft   1
## 5403                     8.5                    miles   1
## 5404                      80                     feet   1
## 5405                      80                       ft   1
## 5406                      80                       km   1
## 5407                     800                   meters   1
## 5408                   800ft                      min   1
## 5409                    800m                    short   1
## 5410                    80nm                southwest   1
## 5411                     815                 aircraft   1
## 5412                      82                  crashed   1
## 5413                      82                   mother   1
## 5414                     830                     feet   1
## 5415                      84                   pounds   1
## 5416                     840                      lbs   1
## 5417                    84th                   floors   1
## 5418                      85                      mph   1
## 5419                     850                    meter   1
## 5420                     853                     crew   1
## 5421                      86                  fighter   1
## 5422                      86                      jet   1
## 5423                      86                    pilot   1
## 5424                     86f                  fighter   1
## 5425                      87                 aircraft   1
## 5426                      87                    miles   1
## 5427                      87                  rotated   1
## 5428                      88                   aboard   1
## 5429                      88                  degrees   1
## 5430                      88                     foot   1
## 5431                     880                     crew   1
## 5432                    8840                   killed   1
## 5433                     887                       nm   1
## 5434                      89                  crashed   1
## 5435                     89j                      air   1
## 5436                    89th                      ave   1
## 5437                     8th                    touch   1
## 5438                       9                       16   1
## 5439                       9                       29   1
## 5440                       9                      atc   1
## 5441                       9               attempting   1
## 5442                       9                    cargo   1
## 5443                       9                 collided   1
## 5444                       9                combustor   1
## 5445                       9                  crashed   1
## 5446                       9                     days   1
## 5447                       9                descended   1
## 5448                       9               inadequacy   1
## 5449                       9            inadvertently   1
## 5450                       9                   killed   1
## 5451                       9                   landed   1
## 5452                       9                     lost   1
## 5453                       9                    meter   1
## 5454                       9                       nm   1
## 5455                       9                      p.m   1
## 5456                       9                   series   1
## 5457                       9                     shot   1
## 5458                       9                 soldiers   1
## 5459                       9                       sq   1
## 5460                       9                   taxied   1
## 5461                       9                     tons   1
## 5462                   9,200                       ft   1
## 5463                   9,300                     feet   1
## 5464                   9,500                     feet   1
## 5465                   9,600                       ft   1
## 5466                   9,646                       ft   1
## 5467                   9,700                     feet   1
## 5468                   9,900                     feet   1
## 5469                   9,900                     foot   1
## 5470                   9.000                       ft   1
## 5471                     9.7                       km   1
## 5472                     9.7                    miles   1
## 5473                      90                     feet   1
## 5474                      90                     knts   1
## 5475                      91                    miles   1
## 5476                      91             paratroopers   1
## 5477                      92                       km   1
## 5478                      94                     feet   1
## 5479                     940                    miles   1
## 5480                      95                  crashed   1
## 5481                      95                  degrees   1
## 5482                     950                       ft   1
## 5483                     970                     feet   1
## 5484                     980                       ft   1
## 5485                     984                     feet   1
## 5486                     990                     lost   1
## 5487                    99th                   floors   1
## 5488                       â            ëœglideslopeã   1
## 5489                       â                   ëœlost   1
## 5490                       â                ëœretardã   1
## 5491                       â                    icing   1
## 5492                       â                    loved   1
## 5493                       â                 occurred   1
## 5494                       â                  warning   1
## 5495                     a.b                      won   1
## 5496                     a.c               electrical   1
## 5497                     a.g                      von   1
## 5498                     a.m                    bound   1
## 5499                    a340                 aircraft   1
## 5500                     aad                  babaker   1
## 5501                    aãƒâ                     reas   1
## 5502                   ababa                     bole   1
## 5503                    abad                  village   1
## 5504               abandoned                       al   1
## 5505               abandoned                      due   1
## 5506               abandoned                      ifr   1
## 5507               abandoned                   runway   1
## 5508               abandoned                warehouse   1
## 5509               abatement               guidelines   1
## 5510               abatement               procedures   1
## 5511                   abbas                  airport   1
## 5512               abejorral                      ndb   1
## 5513                aberdare                mountains   1
## 5514                 abidjan                    felix   1
## 5515                 ability                    level   1
## 5516                abingdon                 airfield   1
## 5517                 abkhazi                   forces   1
## 5518                 abkhazi               separatist   1
## 5519               abkhazian                   rebels   1
## 5520                  ablaze                  killing   1
## 5521                abnormal                 attitude   1
## 5522                abnormal               clearances   1
## 5523                abnormal             longitudinal   1
## 5524                abnormal                maneuvers   1
## 5525                abnormal                     nose   1
## 5526                abnormal                    pitch   1
## 5527              abnormally                    steep   1
## 5528              abnormally                     wide   1
## 5529                  aboard                   158930   1
## 5530                  aboard                   159325   1
## 5531                  aboard                     3222   1
## 5532                  aboard                       42   1
## 5533                  aboard                  4207183   1
## 5534                  aboard                     7841   1
## 5535                  aboard                     8760   1
## 5536                  aboard                     8840   1
## 5537                  aboard                   caused   1
## 5538                  aboard               detonation   1
## 5539                  aboard                      eal   1
## 5540                  aboard                    error   1
## 5541                  aboard                  escaped   1
## 5542                  aboard                evacuated   1
## 5543                  aboard                 included   1
## 5544                  aboard                initially   1
## 5545                  aboard                  injured   1
## 5546                  aboard                  leading   1
## 5547                  aboard                  leakage   1
## 5548                  aboard                  moments   1
## 5549                  aboard               negligence   1
## 5550                  aboard               parachuted   1
## 5551                  aboard                premature   1
## 5552                  aboard                      pro   1
## 5553                  aboard                returning   1
## 5554                  aboard                   rhoads   1
## 5555                  aboard                  shifted   1
## 5556                  aboard                 suffered   1
## 5557                  aboard                   thirty   1
## 5558                  aboard                 tourists   1
## 5559                  aboard                 wreckage   1
## 5560                  aboout                        1   1
## 5561              aboriginal                community   1
## 5562                   abort             successfully   1
## 5563                 aborted                 attempts   1
## 5564                 aborted                  barrier   1
## 5565                  abrupt              application   1
## 5566                  abrupt            deterioration   1
## 5567                  abrupt                     lack   1
## 5568                  abrupt                     pull   1
## 5569                  abrupt                    steep   1
## 5570                abruptly              encountered   1
## 5571                abruptly                     lose   1
## 5572                abruptly                  reduced   1
## 5573                abruptly                  swerved   1
## 5574                      ac                      bus   1
## 5575                      ac                    power   1
## 5576                 academy                 building   1
## 5577                   acars                 messages   1
## 5578             accelerated                     rate   1
## 5579             accelerated                    stall   1
## 5580            acceleration                     crew   1
## 5581            acceleration                   forces   1
## 5582            acceleration                  stoping   1
## 5583            acceleration               undetected   1
## 5584              acceptable                 approach   1
## 5585              acceptable                    limit   1
## 5586                accepted              explanation   1
## 5587                accepted                   policy   1
## 5588                accepted                    rules   1
## 5589                  access                  medical   1
## 5590                  access                    panel   1
## 5591               accessory                  section   1
## 5592                accident                        4   1
## 5593                accident                    actor   1
## 5594                accident                      air   1
## 5595                accident                 airplane   1
## 5596                accident                 alleging   1
## 5597                accident                      atc   1
## 5598                accident                  blaming   1
## 5599                accident                   boeing   1
## 5600                accident               controlled   1
## 5601                accident                       en   1
## 5602                accident                    heavy   1
## 5603                accident                  include   1
## 5604                accident                 included   1
## 5605                accident            investigation   1
## 5606                accident                involving   1
## 5607                accident                     lost   1
## 5608                accident                   midair   1
## 5609                accident             navagational   1
## 5610                accident             overspeeding   1
## 5611                accident                    pitot   1
## 5612                accident                    plane   1
## 5613                accident                 possibly   1
## 5614                accident                    radar   1
## 5615                accident                  remains   1
## 5616                accident                 repaired   1
## 5617                accident                   report   1
## 5618                accident                 resulted   1
## 5619                accident                resulting   1
## 5620                accident                 savagely   1
## 5621                accident                 scenario   1
## 5622                accident                 thirteen   1
## 5623                accident                  unknown   1
## 5624                accident                  vehicle   1
## 5625                accident                  victims   1
## 5626                accident                   weight   1
## 5627          accident.pilot                    error   1
## 5628            accident.the                  primary   1
## 5629              accidental                   caging   1
## 5630              accidental                      cut   1
## 5631              accidental               detonation   1
## 5632              accidental                 ignition   1
## 5633              accidental                  jamming   1
## 5634            accidentally                connected   1
## 5635            accidentally             disconnected   1
## 5636            accidentally                  dropped   1
## 5637            accidentally                feathered   1
## 5638            accidentally                     shut   1
## 5639            accidentally                   struck   1
## 5640            accidentally                 switched   1
## 5641              accidently                feathered   1
## 5642              accidently                     left   1
## 5643              accidently                   struck   1
## 5644             accompanist                  maurice   1
## 5645              accomplice               marguerite   1
## 5646               accretion                  causing   1
## 5647             accumulated               flammables   1
## 5648             accumulated                   vapors   1
## 5649            accumulative                   engine   1
## 5650                accurate                  bearing   1
## 5651                accurate                    check   1
## 5652                accurate              information   1
## 5653                accurate                    radio   1
## 5654               acoustics                  linings   1
## 5655                 acquire                   visual   1
## 5656                acquired                excessive   1
## 5657               acquitted                      due   1
## 5658                   acted                 contrary   1
## 5659                   acted                 properly   1
## 5660                   acted                strangely   1
## 5661                  acting                     head   1
## 5662                  action                   caused   1
## 5663                  action                emergency   1
## 5664                  action                  failure   1
## 5665                  action                initiated   1
## 5666                  action            mismanagement   1
## 5667                  action                 required   1
## 5668                  action                  shortly   1
## 5669                  action                   taking   1
## 5670                 actions                including   1
## 5671                 actions                 resulted   1
## 5672                 actions                  stalled   1
## 5673               activated                  causing   1
## 5674              activating                  springs   1
## 5675                activity                    float   1
## 5676                activity                including   1
## 5677                activity                     loss   1
## 5678                activity                     shot   1
## 5679                   actor                       50   1
## 5680                   actor                   leslie   1
## 5681                   actor                   singer   1
## 5682                   actor                      vic   1
## 5683                   actor                  william   1
## 5684                 actress                   carole   1
## 5685                 actress                    donna   1
## 5686                 actress                     fern   1
## 5687                 actress                     jane   1
## 5688                 actress                     june   1
## 5689                 actress                 marãƒâ­a   1
## 5690                 actress                    susan   1
## 5691                 actress                   tamara   1
## 5692                  actual                 airspace   1
## 5693                  actual                 airspeed   1
## 5694                  actual                 altitude   1
## 5695                  actual                  landing   1
## 5696                  actual                    stall   1
## 5697                  actual                  weather   1
## 5698                  actual                   weight   1
## 5699               actuation                   handle   1
## 5700                actuator                  circuit   1
## 5701                actuator                  forward   1
## 5702                actuator                  support   1
## 5703                    adak                 improper   1
## 5704                   adana                       15   1
## 5705                 adapter                     gear   1
## 5706                   added                    power   1
## 5707                   added                  takeoff   1
## 5708                addition                embraer's   1
## 5709                addition                    fifty   1
## 5710                addition              maintenance   1
## 5711                addition                 software   1
## 5712                addition                   strong   1
## 5713              additional                  engines   1
## 5714              additional                   factor   1
## 5715              additional                   person   1
## 5716              additional                   pounds   1
## 5717              additional                   system   1
## 5718                adelaide                    hills   1
## 5719                adelaide                  piloted   1
## 5720                    aden                  airport   1
## 5721                adequate                 aircraft   1
## 5722                adequate                 airfield   1
## 5723                adequate                altimeter   1
## 5724                adequate            certification   1
## 5725                adequate                 distance   1
## 5726                adequate               experience   1
## 5727                adequate                   flight   1
## 5728                adequate                   flying   1
## 5729                adequate                   ground   1
## 5730                adequate                 lookouts   1
## 5731                adequate                   policy   1
## 5732                adequate              positioning   1
## 5733                adequate              preparation   1
## 5734                adequate               procedures   1
## 5735                adequate                  program   1
## 5736                adequate               provisions   1
## 5737                adequate                    radar   1
## 5738                adequate                    rotor   1
## 5739                adequate                   runway   1
## 5740                adequate                    speed   1
## 5741                adequate                   supply   1
## 5742                adequate             surveillance   1
## 5743                adequate                   visual   1
## 5744                adequate                  weather   1
## 5745              adequately             communicated   1
## 5746              adequately              disseminate   1
## 5747              adequately                     plan   1
## 5748              adequately                   pumped   1
## 5749              adequately                 reported   1
## 5750                     adf               instrument   1
## 5751                adhesive                  crashed   1
## 5752                     adi           antidetonation   1
## 5753                     adi               comparator   1
## 5754                adjacent                 elevated   1
## 5755                adjacent                     fire   1
## 5756                adjacent                    horse   1
## 5757                adjacent                mountains   1
## 5758          administration                  douglas   1
## 5759          administration                   flight   1
## 5760          administration                   midair   1
## 5761          administration                oversight   1
## 5762        administration's                 approval   1
## 5763        administration's                      faa   1
## 5764        administration's                  failure   1
## 5765                   adolf                       41   1
## 5766                 adquate                   visual   1
## 5767                advanced                      737   1
## 5768                advanced                 aircraft   1
## 5769              adventurer                    wiley   1
## 5770                 adverse               conditions   1
## 5771                 adverse           meteorological   1
## 5772                 adverse           meteriological   1
## 5773                 adverse                operating   1
## 5774                 adverse                     wind   1
## 5775                 adverse                    winds   1
## 5776                  advese                  weather   1
## 5777                 advised                      gca   1
## 5778              advisories                   visual   1
## 5779                advisory                practices   1
## 5780                advisory                  service   1
## 5781                advisory                   system   1
## 5782                advisory                  warning   1
## 5783                  aegean                      sea   1
## 5784                  aerial           disintegration   1
## 5785                  aerial                     mast   1
## 5786                  aerial                     tour   1
## 5787               aerobatic                 maneuver   1
## 5788               aerobatic                maneuvers   1
## 5789              aerobatics                 maneuver   1
## 5790             aerodynamic              performance   1
## 5791             aeroelastic             oscillations   1
## 5792               aeroplane                   slowed   1
## 5793               aerospace                  quality   1
## 5794               aerospace               scientists   1
## 5795               aerosweet                      yak   1
## 5796                     ãƒâ                 insfjãƒâ   1
## 5797                     afb                  shortly   1
## 5798                    afer              encounteing   1
## 5799                    afer                   taking   1
## 5800                  afghan                      air   1
## 5801                  afghan                guerrilla   1
## 5802                  afghan                 soldiers   1
## 5803                  afghan                   troops   1
## 5804                  africa              disappeared   1
## 5805                  africa                   killed   1
## 5806                 african                     anti   1
## 5807                 african                  cricket   1
## 5808                 african                 explorer   1
## 5809                 african             peacekeepers   1
## 5810                     aft                    belly   1
## 5811                     aft                    cabin   1
## 5812                     aft                   corner   1
## 5813                     aft                 fuselage   1
## 5814                     aft                hydraulic   1
## 5815                     aft                     link   1
## 5816                     aft                 movement   1
## 5817                     aft                 pressure   1
## 5818                     aft                    servo   1
## 5819                     aft             transmission   1
## 5820                     afw                   cashed   1
## 5821                agencies                    acted   1
## 5822                agency's                  failure   1
## 5823                   agent                confessed   1
## 5824              aggressive                     roll   1
## 5825                agostino                    rocca   1
## 5826                 agunish                    river   1
## 5827                   ahead                 narrowed   1
## 5828                   ahead                realizing   1
## 5829                   ahead                  warning   1
## 5830                   ahmed                   khalif   1
## 5831                    aide                   killed   1
## 5832                   aides              possibility   1
## 5833                    aids                 aircraft   1
## 5834                    aids                    pilot   1
## 5835                    aids                   struck   1
## 5836                 aileron                    boost   1
## 5837                 aileron                  flutter   1
## 5838                 aileron                    hinge   1
## 5839                 aileron                  primary   1
## 5840                 aileron                 suddenly   1
## 5841                 aileron                     tabs   1
## 5842                 aileron                     trim   1
## 5843                ailerons                   caused   1
## 5844                     air                 accident   1
## 5845                     air              accumulated   1
## 5846                     air                  balloon   1
## 5847                     air                   boeing   1
## 5848                     air                   bottle   1
## 5849                     air                   canada   1
## 5850                     air                  carrier   1
## 5851                     air                   center   1
## 5852                     air                   chinaã   1
## 5853                     air                  climate   1
## 5854                     air                  command   1
## 5855                     air                 commerce   1
## 5856                     air                  company   1
## 5857                     air             contributing   1
## 5858                     air                  control   1
## 5859                     air                  crashed   1
## 5860                     air                 delivery   1
## 5861                     air                    depot   1
## 5862                     air                  ejected   1
## 5863                     air                  express   1
## 5864                     air                 facility   1
## 5865                     air                  failure   1
## 5866                     air                   faulty   1
## 5867                     air                     fiji   1
## 5868                     air                  flowing   1
## 5869                     air                     foce   1
## 5870                     air                   ground   1
## 5871                     air                    india   1
## 5872                     air                  leaking   1
## 5873                     air                     mass   1
## 5874                     air                  mixture   1
## 5875                     air                 national   1
## 5876                     air                    noise   1
## 5877                     air                    nosed   1
## 5878                     air                officials   1
## 5879                     air                 operator   1
## 5880                     air            participating   1
## 5881                     air                   pilots   1
## 5882                     air                   pocket   1
## 5883                     air              pockets.the   1
## 5884                     air                 possibly   1
## 5885                     air                     race   1
## 5886                     air                refueling   1
## 5887                     air                      sea   1
## 5888                     air                   speeds   1
## 5889                     air                    stair   1
## 5890                     air                    start   1
## 5891                     air                  starter   1
## 5892                     air                station's   1
## 5893                     air               sunshine's   1
## 5894                     air                   switch   1
## 5895                     air                 terminal   1
## 5896                   air's               inadequate   1
## 5897                    airã                        â   1
## 5898                 airbase                       15   1
## 5899                airborne                collision   1
## 5900                airborne                 division   1
## 5901                airborne                      due   1
## 5902                airborne                   ground   1
## 5903                airborne                     lost   1
## 5904                airborne                   rolled   1
## 5905                airborne                   sooner   1
## 5906                airborne                   struck   1
## 5907                  airbus                      320   1
## 5908                  airbus                      330   1
## 5909                  airbus                     a320   1
## 5910                  airbus                     a330   1
## 5911                aircarft                  crashed   1
## 5912               aircraaft                   banked   1
## 5913                aircraft                       12   1
## 5914                aircraft                        2   1
## 5915                aircraft                       20   1
## 5916                aircraft                    23307   1
## 5917                aircraft                       42   1
## 5918                aircraft                 accident   1
## 5919                aircraft              accompanied   1
## 5920                aircraft               accurately   1
## 5921                aircraft               adventurer   1
## 5922                aircraft                 airborne   1
## 5923                aircraft                 appeared   1
## 5924                aircraft                 ascended   1
## 5925                aircraft                  assumed   1
## 5926                aircraft                      atc   1
## 5927                aircraft                avoidance   1
## 5928                aircraft                     b767   1
## 5929                aircraft                     body   1
## 5930                aircraft                    bound   1
## 5931                aircraft                  brushed   1
## 5932                aircraft                     carl   1
## 5933                aircraft                  carrier   1
## 5934                aircraft                   caused   1
## 5935                aircraft                  charter   1
## 5936                aircraft                  cleared   1
## 5937                aircraft                colliding   1
## 5938                aircraft                completed   1
## 5939                aircraft               components   1
## 5940                aircraft                 computer   1
## 5941                aircraft                computers   1
## 5942                aircraft                concealed   1
## 5943                aircraft              corporation   1
## 5944                aircraft                 damaging   1
## 5945                aircraft                   debris   1
## 5946                aircraft                    dense   1
## 5947                aircraft                departing   1
## 5948                aircraft                   design   1
## 5949                aircraft                 designer   1
## 5950                aircraft              destruction   1
## 5951                aircraft               detonation   1
## 5952                aircraft             disapppeared   1
## 5953                aircraft                 diverted   1
## 5954                aircraft                dornacker   1
## 5955                aircraft                  elected   1
## 5956                aircraft                       en   1
## 5957                aircraft                encounted   1
## 5958                aircraft             encountering   1
## 5959                aircraft                    enter   1
## 5960                aircraft                erroneous   1
## 5961                aircraft               eventually   1
## 5962                aircraft                 exceeded   1
## 5963                aircraft              excessively   1
## 5964                aircraft               expierence   1
## 5965                aircraft                  factors   1
## 5966                aircraft                  flew100   1
## 5967                aircraft                    float   1
## 5968                aircraft                flotation   1
## 5969                aircraft                    forty   1
## 5970                aircraft                     fuel   1
## 5971                aircraft                 fuselage   1
## 5972                aircraft                 handling   1
## 5973                aircraft                  hitting   1
## 5974                aircraft                      ice   1
## 5975                aircraft                      ils   1
## 5976                aircraft                  imposed   1
## 5977                aircraft               improperly   1
## 5978                aircraft                incapable   1
## 5979                aircraft                 ingested   1
## 5980                aircraft                initially   1
## 5981                aircraft                initiated   1
## 5982                aircraft                   inside   1
## 5983                aircraft                 involved   1
## 5984                aircraft                   joined   1
## 5985                aircraft                  killing   1
## 5986                aircraft                   lifted   1
## 5987                aircraft              maintenance   1
## 5988                aircraft           malfunctioning   1
## 5989                aircraft           manufacturer's   1
## 5990                aircraft                   missed   1
## 5991                aircraft                  missing   1
## 5992                aircraft                  misused   1
## 5993                aircraft              momentarily   1
## 5994                aircraft                  moments   1
## 5995                aircraft                       ms   1
## 5996                aircraft                     nose   1
## 5997                aircraft                nosedived   1
## 5998                aircraft                     ntsb   1
## 5999                aircraft                 numerous   1
## 6000                aircraft               originally   1
## 6001                aircraft                  orville   1
## 6002                aircraft              overheating   1
## 6003                aircraft             overspeeding   1
## 6004                aircraft               overturned   1
## 6005                aircraft            participating   1
## 6006                aircraft                     pass   1
## 6007                aircraft               passengers   1
## 6008                aircraft             pennsylvania   1
## 6009                aircraft              performance   1
## 6010                aircraft                    pilot   1
## 6011                aircraft                  piloted   1
## 6012                aircraft                    pitch   1
## 6013                aircraft                  pitched   1
## 6014                aircraft                 pitching   1
## 6015                aircraft                   plowed   1
## 6016                aircraft                 plunging   1
## 6017                aircraft                porpoised   1
## 6018                aircraft                 possibly   1
## 6019                aircraft                 proceded   1
## 6020                aircraft                proceeded   1
## 6021                aircraft               progressed   1
## 6022                aircraft            progressively   1
## 6023                aircraft                  quickly   1
## 6024                aircraft                     quit   1
## 6025                aircraft                   rammed   1
## 6026                aircraft                  rapidly   1
## 6027                aircraft                 receives   1
## 6028                aircraft                recovered   1
## 6029                aircraft                rendering   1
## 6030                aircraft               reportedly   1
## 6031                aircraft                reporting   1
## 6032                aircraft                 response   1
## 6033                aircraft                 resulted   1
## 6034                aircraft                     rose   1
## 6035                aircraft                   rudder   1
## 6036                aircraft                  running   1
## 6037                aircraft                  seventy   1
## 6038                aircraft                  sheared   1
## 6039                aircraft                    shook   1
## 6040                aircraft                    short   1
## 6041                aircraft                shuttered   1
## 6042                aircraft                  slammed   1
## 6043                aircraft                    speed   1
## 6044                aircraft                stability   1
## 6045                aircraft                 stalling   1
## 6046                aircraft                 starting   1
## 6047                aircraft                  stating   1
## 6048                aircraft                   stayed   1
## 6049                aircraft                struggled   1
## 6050                aircraft             sufficiently   1
## 6051                aircraft                  surface   1
## 6052                aircraft                sustained   1
## 6053                aircraft                   system   1
## 6054                aircraft                  takeoff   1
## 6055                aircraft                   thirty   1
## 6056                aircraft        uncontrollability   1
## 6057                aircraft                  warning   1
## 6058                aircraft                 weighing   1
## 6059                aircraft                witnesses   1
## 6060                aircraft                   worker   1
## 6061                aircraft                 wreckage   1
## 6062                aircraft                   yawing   1
## 6063              aircraft's             acceleration   1
## 6064              aircraft's                      aft   1
## 6065              aircraft's                  aileron   1
## 6066              aircraft's                 approach   1
## 6067              aircraft's               artificial   1
## 6068              aircraft's                 attitude   1
## 6069              aircraft's               capability   1
## 6070              aircraft's                   center   1
## 6071              aircraft's                    climb   1
## 6072              aircraft's                   design   1
## 6073              aircraft's                      dme   1
## 6074              aircraft's                    entry   1
## 6075              aircraft's                   flight   1
## 6076              aircraft's                   flying   1
## 6077              aircraft's                  forward   1
## 6078              aircraft's                     fuel   1
## 6079              aircraft's                  grossly   1
## 6080              aircraft's                   height   1
## 6081              aircraft's               horizontal   1
## 6082              aircraft's                hydraulic   1
## 6083              aircraft's               hydraulics   1
## 6084              aircraft's              instruments   1
## 6085              aircraft's                  landing   1
## 6086              aircraft's             longitudinal   1
## 6087              aircraft's                    lower   1
## 6088              aircraft's                     main   1
## 6089              aircraft's                  minimum   1
## 6090              aircraft's                     nose   1
## 6091              aircraft's                operating   1
## 6092              aircraft's                    pitch   1
## 6093              aircraft's                    power   1
## 6094              aircraft's                     rate   1
## 6095              aircraft's                 rotating   1
## 6096              aircraft's                   slight   1
## 6097              aircraft's                     tail   1
## 6098              aircraft's                     trim   1
## 6099              aircraft's                   weight   1
## 6100              aircraft's                   wing's   1
## 6101              aircraft's                    wings   1
## 6102              aircraft's                  wingtip   1
## 6103              aircraft's                      yaw   1
## 6104            aircraft.the                crosswind   1
## 6105               aircrafts                   limits   1
## 6106                 aircrew                   failed   1
## 6107                 aircrew                  fatigue   1
## 6108                 aircrew                initiated   1
## 6109                 airdome                  shortly   1
## 6110                   aires                  airport   1
## 6111                   aires                    based   1
## 6112                   aires                   harbor   1
## 6113                airfield                 aircraft   1
## 6114                airfield                 approach   1
## 6115                airfield                 baseball   1
## 6116                airfield                 boundary   1
## 6117                airfield                    close   1
## 6118                airfield                  crashed   1
## 6119                airfield                 evidence   1
## 6120                airfield                     fuel   1
## 6121                airfield                  landing   1
## 6122                airfield                     left   1
## 6123                airfield                    prior   1
## 6124                airfield                  shortly   1
## 6125                 airfoil                 surfaces   1
## 6126                airframe                  failure   1
## 6127                airframe                      ice   1
## 6128                airframe                 resulted   1
## 6129                airframe                structure   1
## 6130                airframe                 surfaces   1
## 6131                    airl                     taxi   1
## 6132               airlilner                  crashed   1
## 6133                 airline                  captain   1
## 6134                 airline                    crews   1
## 6135                 airline                 disaster   1
## 6136                 airline                 industry   1
## 6137                 airline               management   1
## 6138               airline's                        1   1
## 6139               airline's                    cargo   1
## 6140               airline's               inspection   1
## 6141               airline's              maintenance   1
## 6142               airline's               management   1
## 6143               airline's               procedures   1
## 6144               airline's                   safety   1
## 6145                airliner                 composer   1
## 6146                airliner                  entered   1
## 6147                airliner              experienced   1
## 6148                airliner                     fell   1
## 6149                airliner                     flew   1
## 6150                airliner                hijacking   1
## 6151                airliner                      hit   1
## 6152                airliner                initiated   1
## 6153                airliner                operating   1
## 6154                airliner                      run   1
## 6155                airliner                  shortly   1
## 6156                airliner                 wreckage   1
## 6157                airlines                       18   1
## 6158                airlines                 advanced   1
## 6159                airlines               guidelines   1
## 6160                airlines             insufficient   1
## 6161                airlines              maintenance   1
## 6162                airlines                 occurred   1
## 6163                airlines                    pilot   1
## 6164                airlines                 reported   1
## 6165                airlines                 terminal   1
## 6166                 airmail                    plane   1
## 6167                airplane                 accident   1
## 6168                airplane                 attitude   1
## 6169                airplane                    broke   1
## 6170                airplane                     clip   1
## 6171                airplane                contacted   1
## 6172                airplane                continued   1
## 6173                airplane                    crash   1
## 6174                airplane                 departed   1
## 6175                airplane                descended   1
## 6176                airplane                 deviated   1
## 6177                airplane               eventually   1
## 6178                airplane                 fatality   1
## 6179                airplane                     fell   1
## 6180                airplane                    flaps   1
## 6181                airplane                     flew   1
## 6182                airplane                   flight   1
## 6183                airplane             flightcrew's   1
## 6184                airplane                   impact   1
## 6185                airplane                 impacted   1
## 6186                airplane               inadequate   1
## 6187                airplane               increasing   1
## 6188                airplane              inoperative   1
## 6189                airplane                     left   1
## 6190                airplane                     lose   1
## 6191                airplane                 operated   1
## 6192                airplane                    pitch   1
## 6193                airplane                    prior   1
## 6194                airplane                      ran   1
## 6195                airplane                  skidded   1
## 6196                airplane                spiraling   1
## 6197                airplane                  started   1
## 6198                airplane                 striking   1
## 6199                airplane          unintentionally   1
## 6200                airplane                    water   1
## 6201              airplane's                      aft   1
## 6202              airplane's                autobrake   1
## 6203              airplane's                   center   1
## 6204              airplane's                 changing   1
## 6205              airplane's                departure   1
## 6206              airplane's                 location   1
## 6207              airplane's                     loss   1
## 6208              airplane's                     nose   1
## 6209              airplane's              performance   1
## 6210              airplane's                 position   1
## 6211              airplane's                premature   1
## 6212              airplane's                  primary   1
## 6213              airplane's                    range   1
## 6214              airplane's                   single   1
## 6215              airplane's                    speed   1
## 6216              airplane's                structure   1
## 6217                 airport                       25   1
## 6218                 airport                        4   1
## 6219                 airport                        6   1
## 6220                 airport                        8   1
## 6221                 airport                      air   1
## 6222                 airport                 approach   1
## 6223                 airport                ascending   1
## 6224                 airport                authority   1
## 6225                 airport                  boundry   1
## 6226                 airport                    broke   1
## 6227                 airport                buildings   1
## 6228                 airport                captain's   1
## 6229                 airport                  caracas   1
## 6230                 airport                 carrying   1
## 6231                 airport                  chadian   1
## 6232                 airport                  climbed   1
## 6233                 airport              combination   1
## 6234                 airport                   coming   1
## 6235                 airport                 complete   1
## 6236                 airport              congressman   1
## 6237                 airport                contained   1
## 6238                 airport                continued   1
## 6239                 airport               controller   1
## 6240                 airport                     crew   1
## 6241                 airport                     dark   1
## 6242                 airport               detonation   1
## 6243                 airport                deviation   1
## 6244                 airport              discontinue   1
## 6245                 airport             disorienting   1
## 6246                 airport                  display   1
## 6247                 airport                  ditched   1
## 6248                 airport                 employee   1
## 6249                 airport                   errors   1
## 6250                 airport                  factors   1
## 6251                 airport               fatalities   1
## 6252                 airport                    fence   1
## 6253                 airport                     flew   1
## 6254                 airport                   forced   1
## 6255                 airport                   french   1
## 6256                 airport                hijacking   1
## 6257                 airport                  hitting   1
## 6258                 airport              immediately   1
## 6259                 airport                 improper   1
## 6260                 airport           incapacitation   1
## 6261                 airport              involvement   1
## 6262                 airport                   lacked   1
## 6263                 airport                  landing   1
## 6264                 airport                landmarks   1
## 6265                 airport                   london   1
## 6266                 airport                     lost   1
## 6267                 airport                       lt   1
## 6268                 airport                     maui   1
## 6269                 airport                   minima   1
## 6270                 airport        misidentification   1
## 6271                 airport                  molokai   1
## 6272                 airport                  moments   1
## 6273                 airport               navigation   1
## 6274                 airport                   ninety   1
## 6275                 airport               overloaded   1
## 6276                 airport               passengers   1
## 6277                 airport                personnel   1
## 6278                 airport                  pilot's   1
## 6279                 airport                      pty   1
## 6280                 airport                   ramada   1
## 6281                 airport                      ran   1
## 6282                 airport                 shanghai   1
## 6283                 airport                     shot   1
## 6284                 airport                  sinking   1
## 6285                 airport                  slammed   1
## 6286                 airport                  stalled   1
## 6287                 airport                  storage   1
## 6288                 airport                  surface   1
## 6289                 airport                 terminal   1
## 6290                 airport             thunderstorm   1
## 6291                 airport                   twelve   1
## 6292                 airport                undershot   1
## 6293                 airport              unfavorable   1
## 6294                 airport               visibility   1
## 6295                 airport                     wall   1
## 6296                 airport                   worker   1
## 6297                 airport                 wreckage   1
## 6298               airport's                  baggage   1
## 6299               airport's                    fence   1
## 6300               airport's               instrument   1
## 6301               airport's                    means   1
## 6302               airport's                   radars   1
## 6303               airport's                      vor   1
## 6304             airport.the                 aircraft   1
## 6305             airport.the                    cargo   1
## 6306             airport.the                     crew   1
## 6307             airport.the                   flight   1
## 6308                    airs              operational   1
## 6309                 airship                     flew   1
## 6310                 airship               hindenburg   1
## 6311                airspace                allocated   1
## 6312                airspace                      atc   1
## 6313                airspace                 occupied   1
## 6314                airspace               separation   1
## 6315                airspace                      u.s   1
## 6316                airspeed                 altitude   1
## 6317                airspeed                   caused   1
## 6318                airspeed             considerable   1
## 6319                airspeed                      due   1
## 6320                airspeed                 envelope   1
## 6321                airspeed                  factors   1
## 6322                airspeed               increasing   1
## 6323                airspeed               indicators   1
## 6324                airspeed                residents   1
## 6325                airspeed                selection   1
## 6326                airspeed                   slowed   1
## 6327                airspeed                  stalled   1
## 6328                airspeed                   values   1
## 6329                airstrip                 designed   1
## 6330                airstrip                  failure   1
## 6331                airstrip               overloaded   1
## 6332                airstrip                resulting   1
## 6333                  airway              disappeared   1
## 6334                  airway               navigation   1
## 6335                  airway                   struck   1
## 6336                  airway                   twenty   1
## 6337                 airways                 aircraft   1
## 6338                 airways                 assigned   1
## 6339                 airways                  crashed   1
## 6340                 airways              maintenance   1
## 6341                 airways                    plane   1
## 6342                 airways                     shot   1
## 6343           airworthiness              information   1
## 6344           airworthiness              requirement   1
## 6345                   akron                   canton   1
## 6346                   akron                 exploded   1
## 6347                      al                     asad   1
## 6348                      al                   hasaba   1
## 6349                      al                    khoul   1
## 6350                      al                   minhar   1
## 6351                      al                    nursa   1
## 6352                      al                   potter   1
## 6353                      al                    qaeda   1
## 6354                 alameda                    naval   1
## 6355                    alan                 kulwicki   1
## 6356                   alarm                       60   1
## 6357                   alarm                connected   1
## 6358                   alarm                  signals   1
## 6359                   alarm                 software   1
## 6360                  alarms                  fifteen   1
## 6361                  alaska              congressman   1
## 6362                  alaska                  pilot's   1
## 6363                  alaska                      u.s   1
## 6364                  albany                   county   1
## 6365                  albany                municipal   1
## 6366                  albert                     guay   1
## 6367                alcazaba                       20   1
## 6368                 alcohol              consumption   1
## 6369                 alcohol                  crashed   1
## 6370                 alcohol                  shortly   1
## 6371                 alcohol                     shot   1
## 6372                 alcohol               windshield   1
## 6373               alejandro                 bernales   1
## 6374                  aleman                  roadway   1
## 6375                  aleppo                   double   1
## 6376                   alert                      atc   1
## 6377                   alert                     lack   1
## 6378                   alert                 warnings   1
## 6379                  alerts                activated   1
## 6380                  alerts             contributing   1
## 6381               alexander                    lebed   1
## 6382              alexandrov                 emsemble   1
## 6383                 alfabia                     peak   1
## 6384                 alfredo                       le   1
## 6385                algereia                       15   1
## 6386                 algeria                       80   1
## 6387                 algeria                    libya   1
## 6388                algerian                  capital   1
## 6389                algerian                 military   1
## 6390                 algiers                  algeria   1
## 6391                     ali                      mir   1
## 6392                 alianza                     lima   1
## 6393                   alice                     lake   1
## 6394               alignment             insufficient   1
## 6395                    alin                 mountain   1
## 6396                   alive                     fire   1
## 6397                  alkali                     lake   1
## 6398                 alleged                   thomas   1
## 6399               allegedly                     told   1
## 6400                  allied               democratic   1
## 6401                  allied              directorate   1
## 6402                  allied                   forces   1
## 6403                  allied                    night   1
## 6404                 allison                       30   1
## 6405               allowable                   weight   1
## 6406                 allowed                 airlines   1
## 6407                 allowed                   carbon   1
## 6408                 allowed                excessive   1
## 6409                 allowed                  leakage   1
## 6410                 allowed                   united   1
## 6411                allowing                 airspeed   1
## 6412                allowing               sufficient   1
## 6413                allowing                    water   1
## 6414                  almaty                  airport   1
## 6415                   aloha                 airlines   1
## 6416                   alpha                    floor   1
## 6417                    alps                       25   1
## 6418                    alps                   french   1
## 6419               alternate                  crashed   1
## 6420               alternate                extension   1
## 6421               altimeter                  captain   1
## 6422               altimeter                  crashed   1
## 6423               altimeter                    cross   1
## 6424               altimeter                    error   1
## 6425               altimeter                  failure   1
## 6426               altimeter                 possibly   1
## 6427               altimeter                  readout   1
## 6428               altimeter                 reported   1
## 6429               altimeter                  takeoff   1
## 6430               altimeter                  trigger   1
## 6431               altimeter                  warning   1
## 6432              altimeters                   struck   1
## 6433               altimetry                   system   1
## 6434               altimiter                   struck   1
## 6435                altitude                    based   1
## 6436                altitude                  beneath   1
## 6437                altitude                     call   1
## 6438                altitude                 callouts   1
## 6439                altitude                   caused   1
## 6440                altitude                  ceiling   1
## 6441                altitude               clearances   1
## 6442                altitude                  cleared   1
## 6443                altitude                 collided   1
## 6444                altitude                corrector   1
## 6445                altitude                 crashing   1
## 6446                altitude                   decent   1
## 6447                altitude                  descent   1
## 6448                altitude                 distance   1
## 6449                altitude                  entered   1
## 6450                altitude              environment   1
## 6451                altitude              established   1
## 6452                altitude                  failure   1
## 6453                altitude                     flew   1
## 6454                altitude                   flight   1
## 6455                altitude                   flying   1
## 6456                altitude                 headings   1
## 6457                altitude                  helipad   1
## 6458                altitude                      hit   1
## 6459                altitude                  holding   1
## 6460                altitude                    human   1
## 6461                altitude                    icing   1
## 6462                altitude               inadequate   1
## 6463                altitude                indicator   1
## 6464                altitude             inexperience   1
## 6465                altitude               instrument   1
## 6466                altitude                     lack   1
## 6467                altitude                 maneuver   1
## 6468                altitude              maneuvering   1
## 6469                altitude                      mda   1
## 6470                altitude                   midair   1
## 6471                altitude                   minima   1
## 6472                altitude                orchestra   1
## 6473                altitude              orientation   1
## 6474                altitude           overconfidence   1
## 6475                altitude              permissible   1
## 6476                altitude                     poor   1
## 6477                altitude               procedural   1
## 6478                altitude                  rapidly   1
## 6479                altitude               references   1
## 6480                altitude                 required   1
## 6481                altitude             restrictions   1
## 6482                altitude                   rising   1
## 6483                altitude                     rock   1
## 6484                altitude                   rolled   1
## 6485                altitude                schooling   1
## 6486                altitude              significant   1
## 6487                altitude                      sri   1
## 6488                altitude               sufficient   1
## 6489                altitude                     till   1
## 6490                altitude                    total   1
## 6491                altitude             transmission   1
## 6492                altitude                   twenty   1
## 6493                altitude              unawareness   1
## 6494                altitude                   unsafe   1
## 6495                altitude                   varied   1
## 6496                altitude                   veered   1
## 6497                altitude               violations   1
## 6498                altitude                 warnings   1
## 6499                altitude                windshear   1
## 6500               altitudes                 depicted   1
## 6501               altitudes               inadequate   1
## 6502               altitudes                   issued   1
## 6503               altitutde                    pilot   1
## 6504                    alto                  airport   1
## 6505                    alto                      del   1
## 6506                    alto                       el   1
## 6507                    alto                 mountain   1
## 6508                    am's                  failure   1
## 6509                 amadeus                   mozart   1
## 6510                   amana                   struck   1
## 6511                   amaya                  located   1
## 6512                  amazon                    river   1
## 6513                   amber                  radioed   1
## 6514                   amber                  warning   1
## 6515                 ambient              temperature   1
## 6516               ambiguous                clearance   1
## 6517               ambiguous                  holding   1
## 6518               ambiguous             instructions   1
## 6519               ambulance                   flight   1
## 6520               ambulance               helicopter   1
## 6521               ambulance                      hit   1
## 6522               ambulance                     left   1
## 6523               ambulance                   struck   1
## 6524                american                     army   1
## 6525                american              barnstormer   1
## 6526                american                  bristol   1
## 6527                american                 canadian   1
## 6528                american              corporation   1
## 6529                american                    eagle   1
## 6530                american                   female   1
## 6531                american                   flight   1
## 6532                american                     gold   1
## 6533                american                 military   1
## 6534                american               passengers   1
## 6535                american                  pianist   1
## 6536                american                      pop   1
## 6537                american               servicemen   1
## 6538                american              singerjenni   1
## 6539                american                 tourists   1
## 6540                american                   troops   1
## 6541               amidships                 breaking   1
## 6542                   amman                hijackers   1
## 6543                    ammo                    depot   1
## 6544                ammonium                  nitrate   1
## 6545              ammunition                 exploded   1
## 6546                  amount            antihistamine   1
## 6547                amritsar                    india   1
## 6548                amritsar               structural   1
## 6549               amsterdam                  crashed   1
## 6550               amusement                     park   1
## 6551                analysis                    based   1
## 6552               anchorage                   alaska   1
## 6553                anchored                  liberty   1
## 6554                 andaman                      sea   1
## 6555                  andean                     city   1
## 6556                  andean                highlands   1
## 6557                anderson                      air   1
## 6558                   andes                     crew   1
## 6559                   andes                   struck   1
## 6560                  andies                     peak   1
## 6561                   andra                 survived   1
## 6562                 andreas                prodromou   1
## 6563                  andrew                 aycock's   1
## 6564                    andy                   chapin   1
## 6565                   angel                    falls   1
## 6566                   angel                   flight   1
## 6567                 angeles                      air   1
## 6568                 angeles                  airport   1
## 6569                 angeles                      atc   1
## 6570                 angeles                    based   1
## 6571                 angeles            international   1
## 6572                 angeles                  power's   1
## 6573                 angeles                 terminal   1
## 6574               anghialos                  airport   1
## 6575                   angle                    bolts   1
## 6576                   angle                displayed   1
## 6577                   angle                 inferior   1
## 6578                   angle                  leading   1
## 6579                   angle                   limits   1
## 6580                   angle                    pilot   1
## 6581                   angle               porpoising   1
## 6582                   angle                  reached   1
## 6583                   angle                   rolled   1
## 6584                   angle                  stalled   1
## 6585                   angle                  warning   1
## 6586                  angles                  moments   1
## 6587                   anglo                 american   1
## 6588                  ankara                  airport   1
## 6589                  ankara                 mountain   1
## 6590                ankara's                 esenboga   1
## 6591                    anna                   jantar   1
## 6592                 annette                   island   1
## 6593               announced                     pull   1
## 6594                  annual                 memorial   1
## 6595                 anomaly                        2   1
## 6596                   anson                  failure   1
## 6597                 antalya                    crash   1
## 6598            antananarivo                   double   1
## 6599               antarctic                     crew   1
## 6600               antarctic                    route   1
## 6601                 antenna                    1,000   1
## 6602                 antenna                    broke   1
## 6603                 antenna                     mast   1
## 6604                 antenna                resulting   1
## 6605                 antenna                windshear   1
## 6606                 antenna                     wire   1
## 6607                    anti                corrosion   1
## 6608                    anti               government   1
## 6609                    anti                narcotics   1
## 6610                    anti                     node   1
## 6611                    anti                     rust   1
## 6612             anticipated               velocities   1
## 6613          antidetonation                injection   1
## 6614                antilock                  braking   1
## 6615                 antonio                pigafetta   1
## 6616                 antonov                       18   1
## 6617                 antonov                  crashed   1
## 6618          anunstabilized                 approach   1
## 6619                     aoa                   sensor   1
## 6620                     aom                  shortly   1
## 6621                aorcraft                      hit   1
## 6622               apartment                  complex   1
## 6623               apartment                    house   1
## 6624               apartment                  parking   1
## 6625                   apica                  located   1
## 6626                apparent            abnormalities   1
## 6627                apparent                   action   1
## 6628                apparent                     lack   1
## 6629                apparent                    level   1
## 6630                apparent                  spatial   1
## 6631              apparently                  causing   1
## 6632              apparently                  changed   1
## 6633              apparently                continued   1
## 6634              apparently                      due   1
## 6635              apparently                 exploded   1
## 6636              apparently                 fatigued   1
## 6637              apparently                      hit   1
## 6638              apparently                     lost   1
## 6639              apparently                    minor   1
## 6640              apparently            misunderstood   1
## 6641              apparently                      ran   1
## 6642              apparently                     shut   1
## 6643              apparently                   unable   1
## 6644              apparently               unfamiliar   1
## 6645                 appeals                    court   1
## 6646                appeared                 confused   1
## 6647                appeared                corrected   1
## 6648                appeared                   unable   1
## 6649                   apple                     tree   1
## 6650                 applied                    prior   1
## 6651                   apply              oscillating   1
## 6652                   apply                    power   1
## 6653                applying                  maximum   1
## 6654                applying               procedures   1
## 6655                applying                  reverse   1
## 6656                apporach                 improper   1
## 6657                apporach                   lights   1
## 6658                apporach              malfunction   1
## 6659            appoximately                        1   1
## 6660             appreciably           incapacitating   1
## 6661            apprehension                resulting   1
## 6662                approach                      0.5   1
## 6663                approach                       10   1
## 6664                approach                       15   1
## 6665                approach                       32   1
## 6666                approach                        5   1
## 6667                approach                      5.2   1
## 6668                approach                       50   1
## 6669                approach                        6   1
## 6670                approach                      600   1
## 6671                approach                        7   1
## 6672                approach               accidently   1
## 6673                approach                    aides   1
## 6674                approach                     aids   1
## 6675                approach                  aircrew   1
## 6676                approach                 altitude   1
## 6677                approach                 american   1
## 6678                approach               apparently   1
## 6679                approach                 appeared   1
## 6680                approach                 approach   1
## 6681                approach                      ban   1
## 6682                approach                   beacon   1
## 6683                approach                    broke   1
## 6684                approach                   caused   1
## 6685                approach                  causing   1
## 6686                approach            characterized   1
## 6687                approach                   charts   1
## 6688                approach             continuation   1
## 6689                approach                continued   1
## 6690                approach             controller's   1
## 6691                approach                   crew's   1
## 6692                approach                 decision   1
## 6693                approach                     deep   1
## 6694                approach                  descent   1
## 6695                approach                deviation   1
## 6696                approach                displayed   1
## 6697                approach                  ditched   1
## 6698                approach                    error   1
## 6699                approach                  evasive   1
## 6700                approach                excessive   1
## 6701                approach                  execute   1
## 6702                approach                execution   1
## 6703                approach                   failed   1
## 6704                approach                      fog   1
## 6705                approach                    glide   1
## 6706                approach                      hit   1
## 6707                approach                  horizon   1
## 6708                approach                   hudbay   1
## 6709                approach               impairment   1
## 6710                approach                  inbound   1
## 6711                approach           incapacitation   1
## 6712                approach                      led   1
## 6713                approach                     line   1
## 6714                approach                   midair   1
## 6715                approach                  minimum   1
## 6716                approach           misinformation   1
## 6717                approach           misinterpreted   1
## 6718                approach            necessitating   1
## 6719                approach             overreliance   1
## 6720                approach               parameters   1
## 6721                approach              performance   1
## 6722                approach                    phase   1
## 6723                approach                 properly   1
## 6724                approach                    radio   1
## 6725                approach                resultied   1
## 6726                approach                  segment   1
## 6727                approach                    short   1
## 6728                approach                  shortly   1
## 6729                approach           simultaneously   1
## 6730                approach                    slope   1
## 6731                approach                 striking   1
## 6732                approach               structural   1
## 6733                approach                   sudden   1
## 6734                approach               techniques   1
## 6735                approach                  weather   1
## 6736            approach.the                    pilot   1
## 6737            approach.the                    plane   1
## 6738              approached                 downwind   1
## 6739              approached                  durzana   1
## 6740              approached                  gaspãƒâ   1
## 6741              approached                  huanuco   1
## 6742              approached                       la   1
## 6743              approached                     land   1
## 6744              approached                    level   1
## 6745              approached                    marsa   1
## 6746              approached                       mt   1
## 6747              approached                   runway   1
## 6748              approaches                 improper   1
## 6749             approaching                 amberley   1
## 6750             approaching                 argentia   1
## 6751             approaching                  bishkek   1
## 6752             approaching                 boufarik   1
## 6753             approaching                    cairo   1
## 6754             approaching                     cali   1
## 6755             approaching                  charles   1
## 6756             approaching                     cluj   1
## 6757             approaching                      gca   1
## 6758             approaching                   juanda   1
## 6759             approaching                  lorient   1
## 6760             approaching                   luanda   1
## 6761             approaching                    luang   1
## 6762             approaching                    maria   1
## 6763             approaching                    miles   1
## 6764             approaching                  ontario   1
## 6765             approaching                palembang   1
## 6766             approaching                     perm   1
## 6767             approaching                     port   1
## 6768             approaching               portsmouth   1
## 6769             approaching                   ruzyne   1
## 6770             approaching                 salonica   1
## 6771             approaching                    sioux   1
## 6772             approaching                 tshikapa   1
## 6773             approaching                       v1   1
## 6774             approaching               washington   1
## 6775             approaching            xiangkhoung's   1
## 6776             approaching                     zone   1
## 6777             appromately                        3   1
## 6778                approved                      air   1
## 6779                approved                  company   1
## 6780                approved                   design   1
## 6781                approved                   device   1
## 6782                approved                emergency   1
## 6783                approved                     fuel   1
## 6784                approved              maintenance   1
## 6785                approved                   safety   1
## 6786                approved                    seats   1
## 6787            approximaely                       30   1
## 6788             approximate                       25   1
## 6789             approximate                     time   1
## 6790           approximately                     0815   1
## 6791           approximately                    1,000   1
## 6792           approximately                   1,000m   1
## 6793           approximately                    1,500   1
## 6794           approximately                    1,900   1
## 6795           approximately                      1.2   1
## 6796           approximately                      1.5   1
## 6797           approximately                    1.5km   1
## 6798           approximately                       11   1
## 6799           approximately                       12   1
## 6800           approximately                      120   1
## 6801           approximately                      175   1
## 6802           approximately                       18   1
## 6803           approximately                       19   1
## 6804           approximately                    2,000   1
## 6805           approximately                    2,300   1
## 6806           approximately                       22   1
## 6807           approximately                      270   1
## 6808           approximately                      3.5   1
## 6809           approximately                      300   1
## 6810           approximately                      325   1
## 6811           approximately                       34   1
## 6812           approximately                   34,500   1
## 6813           approximately                       35   1
## 6814           approximately                       40   1
## 6815           approximately                      400   1
## 6816           approximately                        5   1
## 6817           approximately                       50   1
## 6818           approximately                      560   1
## 6819           approximately                      600   1
## 6820           approximately                      650   1
## 6821           approximately                      700   1
## 6822           approximately                       75   1
## 6823           approximately                       80   1
## 6824           approximately                        9   1
## 6825           approximately                       90   1
## 6826           approximately                      970   1
## 6827           approximately                     half   1
## 6828                   april                     1996   1
## 6829                   april                        3   1
## 6830                   april                        4   1
## 6831                     apu                      led   1
## 6832             aquaplaning                  crashed   1
## 6833                  aquino                  airport   1
## 6834                  arafat                  crashed   1
## 6835             archerfield                airfiield   1
## 6836             archerfield                 brisbane   1
## 6837                  archie                twitchell   1
## 6838                 arching                 ignition   1
## 6839                  arcing                  ignited   1
## 6840                  arctic                    ocean   1
## 6841                  arctic                 twilight   1
## 6842                 ardmore                municipal   1
## 6843                argentia                  bristol   1
## 6844               argentine                newspaper   1
## 6845                   armed                   forces   1
## 6846                   armed                   robery   1
## 6847                armenian                   forces   1
## 6848                 armored                 vehicles   1
## 6849                    arms                     fire   1
## 6850                    arms                     held   1
## 6851                    army                  arsenal   1
## 6852                    army                     band   1
## 6853                    army                   bomber   1
## 6854                    army                  chinook   1
## 6855                    army              disappeared   1
## 6856                    army                 garrison   1
## 6857                    army                personnel   1
## 6858                    army                    pilot   1
## 6859                    army                  soldier   1
## 6860                    army                 supplies   1
## 6861                    army                transport   1
## 6862                    army                     unit   1
## 6863                  arnold                   raphel   1
## 6864            arrastradero                 mountain   1
## 6865                  arrest               aircraft's   1
## 6866                arrested                  crashed   1
## 6867               arresting                   system   1
## 6868                 arrival               assessment   1
## 6869                 arrival                  landing   1
## 6870                  arrive                  earlier   1
## 6871                 arrived                     late   1
## 6872                arterial               hemorrhage   1
## 6873                  artery                  disease   1
## 6874                 article                 covering   1
## 6875             articulated                  control   1
## 6876                 artigas                  airport   1
## 6877                    asad                      air   1
## 6878                  aseman                 airlines   1
## 6879               asheville                  airport   1
## 6880                  ashiya                      air   1
## 6881                  ashore                   struck   1
## 6882                 ashraff                       52   1
## 6883                   asian                     tour   1
## 6884                 asphalt                  covered   1
## 6885                assembly             contributing   1
## 6886                assembly               inadequate   1
## 6887                assembly                 mounting   1
## 6888                assembly                    pilot   1
## 6889                assembly                resulting   1
## 6890                assembly                separated   1
## 6891              assembly's                     acme   1
## 6892              assessment            certification   1
## 6893                assigned                clearance   1
## 6894                assigned                    route   1
## 6895                assigned                    track   1
## 6896              assistance                    force   1
## 6897              assistance                   struck   1
## 6898               assistant                  manager   1
## 6899                assisted                  takeoff   1
## 6900               associate                     wake   1
## 6901                 assumed                  control   1
## 6902                 assumed                   manual   1
## 6903               assurance              inspector's   1
## 6904                  assure                 adequate   1
## 6905                  assure                   proper   1
## 6906                 assured                 attitude   1
## 6907                 assured                    based   1
## 6908               astronaut                   manley   1
## 6909                   aswan                  failure   1
## 6910             asymetrical                   thrust   1
## 6911              asymmetric                     fuel   1
## 6912            asymmetrical                 elevator   1
## 6913            asymmetrical                     flap   1
## 6914            asymmetrical                     fuel   1
## 6915            asymmetrical                refueling   1
## 6916            asymmetrical                  reverse   1
## 6917            asymmetrical                    stall   1
## 6918               asymmetry                condition   1
## 6919               asymmetry                 resulted   1
## 6920                 atalaya                    beach   1
## 6921                     atc                  causing   1
## 6922                     atc                clearance   1
## 6923                     atc                  cleared   1
## 6924                     atc                 confused   1
## 6925                     atc                  crashed   1
## 6926                     atc                  descent   1
## 6927                     atc                   errors   1
## 6928                     atc               facilities   1
## 6929                     atc                 facility   1
## 6930                     atc                   failed   1
## 6931                     atc                     fell   1
## 6932                     atc             instructions   1
## 6933                     atc                  noticed   1
## 6934                     atc                    prior   1
## 6935                     atc               procedural   1
## 6936                     atc               procedures   1
## 6937                     atc             questionable   1
## 6938                     atc                    radar   1
## 6939                     atc                   sector   1
## 6940                     atc             specifically   1
## 6941                     atc                   struck   1
## 6942                     atc                   system   1
## 6943                     atc                  systems   1
## 6944                     atc                    tapes   1
## 6945                     atc                    tower   1
## 6946                     atc                  trainee   1
## 6947                   atc.ã                        â   1
## 6948                    atcs                  crashed   1
## 6949                  athens                      cvr   1
## 6950                  athens               structural   1
## 6951                atlantic                      100   1
## 6952                atlantic                      300   1
## 6953                atlantic                     city   1
## 6954                atlantic                    coast   1
## 6955                atlantic                   flight   1
## 6956                atlantic                  flilght   1
## 6957                atlantic                passenger   1
## 6958                atlantic                   treaty   1
## 6959                   atlas                 mountain   1
## 6960             atmospheric                    icing   1
## 6961                  atomic                    bombs   1
## 6962                    atop                      fog   1
## 6963                    atop                    water   1
## 6964                     atr                       42   1
## 6965                     atr                incidents   1
## 6966                     ats             instructions   1
## 6967                  attach                    angle   1
## 6968              attachment                     bolt   1
## 6969              attachment                   clevis   1
## 6970              attachment                      pin   1
## 6971              attachment                   screws   1
## 6972              attachment                structure   1
## 6973                  attack                  crashed   1
## 6974                  attack                   eleven   1
## 6975                  attack                      low   1
## 6976                  attack                    prior   1
## 6977                  attack                  sensors   1
## 6978                  attack                   singer   1
## 6979                  attain                 adequate   1
## 6980                  attain                 remedial   1
## 6981                attained                    prior   1
## 6982               attaining                    5,000   1
## 6983                 attempt                   bounce   1
## 6984                 attempt                 breaking   1
## 6985                 attempt               controlled   1
## 6986                 attempt               detonation   1
## 6987                 attempt                      fan   1
## 6988                 attempt             hydroplaning   1
## 6989                 attempt                 improper   1
## 6990                 attempt                involving   1
## 6991                 attempt                     lack   1
## 6992                 attempt                     loss   1
## 6993                 attempt                     lost   1
## 6994                 attempt             misjudgement   1
## 6995                 attempt                  overran   1
## 6996                 attempt               procedural   1
## 6997                 attempt                   unwise   1
## 6998               attempted                    abort   1
## 6999               attempted                emergency   1
## 7000               attempted                 manually   1
## 7001               attempted                 recovery   1
## 7002               attempted                   return   1
## 7003               attempted                   safety   1
## 7004               attempted                   visual   1
## 7005              attempting                     poor   1
## 7006              attempting                    touch   1
## 7007                attempts                  crashed   1
## 7008                attempts                     crew   1
## 7009               attendant                       22   1
## 7010               attendant                  andreas   1
## 7011               attendant                      c.b   1
## 7012               attendant                  drowned   1
## 7013               attendant                 jumpseat   1
## 7014               attendant                   manual   1
## 7015               attendant                 reported   1
## 7016              attendants                partially   1
## 7017              attendants                 survived   1
## 7018                attended                   annual   1
## 7019               attention                resulting   1
## 7020                attitude                        2   1
## 7021                attitude                        5   1
## 7022                attitude                       54   1
## 7023                attitude                 abnormal   1
## 7024                attitude                 altitude   1
## 7025                attitude                   banked   1
## 7026                attitude                   burned   1
## 7027                attitude                  control   1
## 7028                attitude                  crashed   1
## 7029                attitude                      due   1
## 7030                attitude                     gust   1
## 7031                attitude              immediately   1
## 7032                attitude                increased   1
## 7033                attitude                indicator   1
## 7034                attitude              information   1
## 7035                attitude              instruments   1
## 7036                attitude                  killing   1
## 7037                attitude              orientation   1
## 7038                attitude                 pitching   1
## 7039                attitude              progressive   1
## 7040                attitude               protection   1
## 7041                attitude                     shot   1
## 7042                attitude                  spatial   1
## 7043                attitude                 spinning   1
## 7044                attitude                    stall   1
## 7045                attitude                 stalling   1
## 7046                attitude                 striking   1
## 7047                 attract                attention   1
## 7048                      au                   prince   1
## 7049                 audible                    alarm   1
## 7050                 audible                    stall   1
## 7051                 audible                   system   1
## 7052                   audie                   murphy   1
## 7053                     aug                       31   1
## 7054                  august                     2003   1
## 7055                  august                     2005   1
## 7056                  august                       27   1
## 7057                  august                        4   1
## 7058                   aural                   signal   1
## 7059                   aural                 warnings   1
## 7060                  aurora                 borealis   1
## 7061                  aurora            international   1
## 7062              australian                 military   1
## 7063              australila                  crashed   1
## 7064             authorities                confirmed   1
## 7065             authorities                     lack   1
## 7066             authorities                 reported   1
## 7067           authorization                   taxied   1
## 7068              authorized                intrusion   1
## 7069              authorized                     left   1
## 7070              authorized                 minimums   1
## 7071              authorized                   person   1
## 7072              authorized                resulting   1
## 7073              authorized              transponder   1
## 7074                    auto                     body   1
## 7075                    auto                    brake   1
## 7076                    auto                  feather   1
## 7077                    auto                   flight   1
## 7078                    auto                 position   1
## 7079                    auto                  salvage   1
## 7080                    auto                 worker's   1
## 7081               autobrake               procedures   1
## 7082               autobrake                   system   1
## 7083             autofeather                 occurred   1
## 7084             autofeather                   sensor   1
## 7085               automated                 aircraft   1
## 7086               automated                  message   1
## 7087               automated                  systems   1
## 7088               automated                  warning   1
## 7089               automatic                  coupled   1
## 7090               automatic                     nose   1
## 7091               automatic                    pilot   1
## 7092               automatic                    pitch   1
## 7093               automatic                  spoiler   1
## 7094               automatic                 throttle   1
## 7095               automatic             transferring   1
## 7096           automatically                      cut   1
## 7097           automatically             disconnected   1
## 7098           automatically                  recover   1
## 7099              automobile                   struck   1
## 7100             automobiles                 decision   1
## 7101               autopilot            automatically   1
## 7102               autopilot                   caused   1
## 7103               autopilot                  control   1
## 7104               autopilot             disconnected   1
## 7105               autopilot            disengagement   1
## 7106               autopilot              disengaging   1
## 7107               autopilot                  engaged   1
## 7108               autopilot                  linkage   1
## 7109               autopilot                    panel   1
## 7110               autopilot                   system   1
## 7111               autopilot                      yaw   1
## 7112            autorotation                  fifteen   1
## 7113            autothrottle                  engaged   1
## 7114            autothrottle                   system   1
## 7115           autothrottles                  engaged   1
## 7116               auxiliary                    power   1
## 7117               auxillary                    tanks   1
## 7118              auxilliary                    tanks   1
## 7119                   avala                     hill   1
## 7120                 avenida                   miguel   1
## 7121                 average                     rate   1
## 7122                 average                   weight   1
## 7123                    avia                  express   1
## 7124                aviation                 accident   1
## 7125                aviation                  brigade   1
## 7126                aviation                  crashed   1
## 7127                aviation                  experts   1
## 7128                aviation                      gas   1
## 7129                aviation                 gasoline   1
## 7130                aviation                officials   1
## 7131                aviation             organization   1
## 7132                aviation               regulation   1
## 7133                aviation              regulations   1
## 7134                aviation                    rules   1
## 7135                aviation                standards   1
## 7136                aviation                     unit   1
## 7137              aviation's               inadequate   1
## 7138                 aviator                     jean   1
## 7139               aviodance              opportunity   1
## 7140                   avoid                  gunfire   1
## 7141                   avoid                  hitting   1
## 7142                   avoid                 military   1
## 7143                   avoid                  objects   1
## 7144                   avoid             overshooting   1
## 7145                   avoid                      pan   1
## 7146                   avoid                     poor   1
## 7147                   avoid                procedure   1
## 7148                   avoid               procedures   1
## 7149                   avoid                    storm   1
## 7150                   avoid                 striking   1
## 7151                   avoid                  traffic   1
## 7152                   avoid                    trees   1
## 7153                   avoid                  weather   1
## 7154                   avoid                  workers   1
## 7155               avoidable                  weather   1
## 7156               avoidance              maneuvering   1
## 7157               avoidance                  manuver   1
## 7158               avoidance              opportunity   1
## 7159               avoidance               procedures   1
## 7160               avoidance                  warning   1
## 7161                 avoided                    blame   1
## 7162                avoiding                  cumulus   1
## 7163                    avro                     york   1
## 7164                   aware                      ran   1
## 7165               awareness                  failure   1
## 7166               awareness                  spatial   1
## 7167               awareness                   struck   1
## 7168               awareness                  warning   1
## 7169          awareness.this                  started   1
## 7170                 awkward                  landing   1
## 7171                    ayan                      atc   1
## 7172                aycock's                  medical   1
## 7173                 ayudhya                 aircraft   1
## 7174                   azari                 district   1
## 7175                  azores                  islands   1
## 7176                  azucar                     peak   1
## 7177                    azur                  airport   1
## 7178                    b767                      200   1
## 7179                   babia                     gora   1
## 7180                  backup                  battery   1
## 7181                  backup                    means   1
## 7182                  backup                     tank   1
## 7183               backwards                  crashed   1
## 7184                    baco                  located   1
## 7185                     bad               directions   1
## 7186                     bad                   engine   1
## 7187                     bad                     fire   1
## 7188                   badly                   burned   1
## 7189                   badly                  damaged   1
## 7190                   badly               fragmented   1
## 7191                   badly                  injured   1
## 7192                   badly                   loaded   1
## 7193                     bag              transferred   1
## 7194                 bagasin                  overran   1
## 7195                bagdogra                      afs   1
## 7196                 baggage                     door   1
## 7197                 baggage                 handlers   1
## 7198                 baggage                 handling   1
## 7199                 baghdad                  shortly   1
## 7200                 baghdad                     shot   1
## 7201                  bagram                      air   1
## 7202                 bagrami                 district   1
## 7203              bahawalpur                       60   1
## 7204                   bahia                       de   1
## 7205                   bahia                   solano   1
## 7206                 bahrain            international   1
## 7207                   baiao                  parente   1
## 7208                   bajac                       36   1
## 7209                    baku               instrument   1
## 7210                   balad                      air   1
## 7211                 balance             calculations   1
## 7212                 balance                condition   1
## 7213                balanced                    plane   1
## 7214               balancing                   forces   1
## 7215                  balboa                     park   1
## 7216                    bald                    eagle   1
## 7217                 baldwin                    field   1
## 7218                    bali                      due   1
## 7219                    bali            international   1
## 7220                  balked                  landing   1
## 7221                balkhash                  crashed   1
## 7222                    ball                    joint   1
## 7223                    ball                     team   1
## 7224                 ballast                   raised   1
## 7225                 balloon                  crashed   1
## 7226                 balloon                   struck   1
## 7227                 balsalt                   island   1
## 7228               baltimore               washington   1
## 7229                   baltz                 survived   1
## 7230                  bamboo                   forest   1
## 7231                     ban                  applied   1
## 7232                     ban                       ta   1
## 7233                  banana               plantation   1
## 7234                    band                     andy   1
## 7235                    band                   killed   1
## 7236                    band                   leader   1
## 7237                    band                returning   1
## 7238                    band                  trumpet   1
## 7239             bandeirante                   planes   1
## 7240                   bandi                     hill   1
## 7241                 bangkok                  airport   1
## 7242                 bangkok               detonation   1
## 7243                 bangkok                  failure   1
## 7244                 bangkok            international   1
## 7245                 bangoka            international   1
## 7246                  bangui                  airport   1
## 7247                    bank                       54   1
## 7248                    bank               attempting   1
## 7249                    bank                  channel   1
## 7250                    bank                  control   1
## 7251                    bank           disintegration   1
## 7252                    bank                employees   1
## 7253                    bank                     fuel   1
## 7254                    bank                  heavily   1
## 7255                    bank                increased   1
## 7256                    bank                     lack   1
## 7257                    bank                  shortly   1
## 7258                    bank                   struck   1
## 7259                  banked                       10   1
## 7260                  banked                        4   1
## 7261                  banked                       60   1
## 7262                  banked                    angle   1
## 7263                  banked                     hard   1
## 7264                  banked                   ninety   1
## 7265                 banking                 customer   1
## 7266                 banking                  steeply   1
## 7267                 banning                    house   1
## 7268                     bar                     flew   1
## 7269                     bar                     kays   1
## 7270                 baranta                 mountain   1
## 7271                 barbara                       de   1
## 7272                 barbara                  francis   1
## 7273               barcelona                    spain   1
## 7274                  barely                      100   1
## 7275                  barely                  cleared   1
## 7276                  barely                     hear   1
## 7277                  barely                     rose   1
## 7278                    bari                   harbor   1
## 7279                    bari                    italy   1
## 7280                  barley                    field   1
## 7281                    barn                 adjacent   1
## 7282              barnstable                municipal   1
## 7283             barnstormer                     john   1
## 7284              barometric                altimeter   1
## 7285                   baron                     lost   1
## 7286             barrackpore                      afs   1
## 7287                   barre                 scranton   1
## 7288                barrells                     shot   1
## 7289                 barrier               inadequate   1
## 7290                 barrier                  mission   1
## 7291               barrigada                 bursting   1
## 7292                  barrow                   alaska   1
## 7293                 barrule                  located   1
## 7294                barskoon                     pass   1
## 7295             bartholomew                   salãƒâ   1
## 7296                    basa                      air   1
## 7297                    base                      atc   1
## 7298                    base                converted   1
## 7299                    base                    dubai   1
## 7300                    base                      due   1
## 7301                    base                   engine   1
## 7302                    base                    level   1
## 7303                    base             navigational   1
## 7304                    base                    pilot   1
## 7305                    base                  shortly   1
## 7306                    base                     shot   1
## 7307                    base                      ten   1
## 7308                   based                      low   1
## 7309                   based               occidental   1
## 7310                   based                   safety   1
## 7311                   based                  techint   1
## 7312                   basic                 maneuver   1
## 7313                   basic               procedural   1
## 7314                    bass                   strait   1
## 7315                   basso                       20   1
## 7316                 batagay                  airport   1
## 7317                   bates                      u.s   1
## 7318              batesville                 arkansas   1
## 7319                   baton                    rouge   1
## 7320               batteries                  ditched   1
## 7321               batteries                   lasted   1
## 7322               batteries                   thirty   1
## 7323                 battery                generator   1
## 7324                 battery                  standby   1
## 7325                  batuco                  crashed   1
## 7326                  batumi                  airport   1
## 7327                  batumi                      atc   1
## 7328                     bay                    1,000   1
## 7329                     bay                       12   1
## 7330                     bay                       15   1
## 7331                     bay                      150   1
## 7332                     bay                      2.5   1
## 7333                     bay                        3   1
## 7334                     bay                       55   1
## 7335                     bay                   caught   1
## 7336                     bay                   failed   1
## 7337                     bay                  failure   1
## 7338                     bay                     lack   1
## 7339                     bay                  molokai   1
## 7340                     bay                  ontario   1
## 7341                     bay                seventeen   1
## 7342                     bay                    short   1
## 7343                     bay                     snow   1
## 7344                     bay                   waters   1
## 7345                   bazar                  airport   1
## 7346                   beach                      1.2   1
## 7347                   beach                  airport   1
## 7348                   beach                continued   1
## 7349                   beach                  holiday   1
## 7350                   beach                   houses   1
## 7351                   beach                municipal   1
## 7352                   beach                    short   1
## 7353                   beach                  shortly   1
## 7354                   beach                     shot   1
## 7355                  beacon             broadcasting   1
## 7356                  beacon                continued   1
## 7357                  beacon                 entering   1
## 7358                  beacon                   oldham   1
## 7359                  beagle                  channel   1
## 7360                 beard's                    creek   1
## 7361                 bearing                   cashed   1
## 7362                 bearing                  failure   1
## 7363                 bearing                 failures   1
## 7364                 bearing                  support   1
## 7365               bearingsã                        â   1
## 7366                    beau                   allied   1
## 7367                beauvais                   france   1
## 7368                 bedford                  england   1
## 7369                   beech                     1900   1
## 7370                   beech                  failure   1
## 7371              beechcraft                  decided   1
## 7372                    beed                     road   1
## 7373                behavior                deviation   1
## 7374                   beinn                tharsuinn   1
## 7375                  beirut                  airport   1
## 7376                  beirut               structural   1
## 7377                 belated                 decision   1
## 7378                   belem                  airport   1
## 7379                   belem                  station   1
## 7380                belgrade                    zemun   1
## 7381                believed                   caused   1
## 7382                    bell                    knoll   1
## 7383                   belly              compartment   1
## 7384                   belly                  counted   1
## 7385                   belly                     land   1
## 7386                   belly                   landed   1
## 7387                    belo                horizonte   1
## 7388                    belt                    broke   1
## 7389                    belt                   failed   1
## 7390                    belt                     sign   1
## 7391                   belts              disappeared   1
## 7392                   belts                  failure   1
## 7393                     ben                   cauley   1
## 7394                     ben                robertson   1
## 7395                 benazir                   bhutto   1
## 7396                 beneath                  minimum   1
## 7397                bengawan                     solo   1
## 7398                    beni                    mered   1
## 7399                 benning                 military   1
## 7400                  benson                       20   1
## 7401                   berau                indonesia   1
## 7402                  berlin                premature   1
## 7403                  berlin                     shot   1
## 7404                    berm               supporting   1
## 7405                 bermuda                 official   1
## 7406                 bermuda                 triangle   1
## 7407                bernales                       59   1
## 7408                 bernard                     pass   1
## 7409                    bert                   mooney   1
## 7410                   besar                 mountain   1
## 7411                bessette                kennedy's   1
## 7412                    beta                 blocking   1
## 7413                    beta                     mode   1
## 7414                beyrough                   harbor   1
## 7415                      bg                       15   1
## 7416                  bhabha                   father   1
## 7417             bhattedanda                     hill   1
## 7418                  bhutto            international   1
## 7419                      bi                    plane   1
## 7420                 bicycle                     path   1
## 7421               bicyclist                   riding   1
## 7422             bijlmermeer              residential   1
## 7423                    bill                   graham   1
## 7424                    bill                linderman   1
## 7425                    bill                strothman   1
## 7426                    bima                  sumbawa   1
## 7427                 binalud                  heights   1
## 7428                binstock                       62   1
## 7429               binstockã                        â   1
## 7430                 bintang                mountains   1
## 7431                    bird                  hazards   1
## 7432                    bird            international   1
## 7433                   birds             accidentally   1
## 7434                   birds                   unable   1
## 7435              birmingham                  overran   1
## 7436             birobidzhan               completely   1
## 7437                birthday              celebration   1
## 7438                birthday                    party   1
## 7439                   black                   forest   1
## 7440                   black                     fork   1
## 7441                   black                     hawk   1
## 7442                   black                     hole   1
## 7443                   black                 mountain   1
## 7444              blackwater                     lake   1
## 7445                   blade                   damper   1
## 7446                   blade                 disabled   1
## 7447                   blade                      due   1
## 7448                   blade                   failed   1
## 7449                   blade                    grips   1
## 7450                   blade                  leading   1
## 7451                   blade               penetrated   1
## 7452                   blade                punctured   1
## 7453                   blade                resulting   1
## 7454                   blade                     root   1
## 7455                   blade                     spar   1
## 7456                   blade                     tips   1
## 7457                  blades             accidentally   1
## 7458                  blades                   failed   1
## 7459                  blades                 flapping   1
## 7460                  blades                      hit   1
## 7461                  blades                     stop   1
## 7462                  blades                     tore   1
## 7463              blades.the                resulting   1
## 7464                   blair                       27   1
## 7465                   blake                     mora   1
## 7466                   blanc           miscalculation   1
## 7467                   blanc                   summit   1
## 7468                  blanca                 mountain   1
## 7469                 blancas                    hills   1
## 7470                  blanco                 mountain   1
## 7471                   blast                  damaged   1
## 7472                   blast                destroyed   1
## 7473                   blast                    fence   1
## 7474                   blaze                 exploded   1
## 7475                   bleed                      air   1
## 7476                   bleed                   valves   1
## 7477                 bleeder                   valves   1
## 7478                    blew                  causing   1
## 7479                   blind                      box   1
## 7480                   blind                    spots   1
## 7481                blinding                  monsoon   1
## 7482                blinding                sandstorm   1
## 7483                blinding                snowstorm   1
## 7484                blinding                whiteness   1
## 7485                 blindly                      180   1
## 7486                blizzard                    pilot   1
## 7487                blizzard                   scadta   1
## 7488                blizzard                 wreckage   1
## 7489                 blocked                   runway   1
## 7490                blocking                   device   1
## 7491                blocking                  forward   1
## 7492                blocking                 material   1
## 7493                  blocks                     crew   1
## 7494                  blocks                 striking   1
## 7495                    blow                    torch   1
## 7496                blowdown                    limit   1
## 7497                 blowing                     dust   1
## 7498                 blowing                     snow   1
## 7499                   blown                retreaded   1
## 7500                    blue                     bell   1
## 7501                    blue                    ridge   1
## 7502                   blues                guitarist   1
## 7503                   bluff                exploding   1
## 7504                   bluff                 mountain   1
## 7505                   blume                  spain's   1
## 7506                    blvd                   twenty   1
## 7507                      bo                     rein   1
## 7508                     boa                   viagem   1
## 7509                    boac                    crews   1
## 7510                   board               apparently   1
## 7511                   board                  fifteen   1
## 7512                   board                     fire   1
## 7513                   board                  heading   1
## 7514                   board                including   1
## 7515                   board                 strongly   1
## 7516                   board                 wreckage   1
## 7517                    boat                  invicta   1
## 7518                    boat                   landed   1
## 7519                    boat                  plunged   1
## 7520                    boat                     sank   1
## 7521                    boat                   struck   1
## 7522                    boat                    wakes   1
## 7523                   bobby                     neal   1
## 7524                  bodies                    found   1
## 7525                    body                 aircraft   1
## 7526                    body                    broke   1
## 7527                    body                disabling   1
## 7528                    body                  missing   1
## 7529                    body                     shop   1
## 7530                  boeing                      757   1
## 7531                  boeing                      777   1
## 7532                  boeing                     army   1
## 7533                  boeing                    aware   1
## 7534                  boeing                     crew   1
## 7535                  boeing                engineers   1
## 7536                  boeing                       pw   1
## 7537                boeing's                     tcas   1
## 7538                     bog                        1   1
## 7539                   boggs                   alaska   1
## 7540                  bogoro                     peak   1
## 7541                  bogota                  crashed   1
## 7542                  bogota                  shortly   1
## 7543                bogota's                       el   1
## 7544                  bolder                  killing   1
## 7545                    bole                  airport   1
## 7546                 bolivar                  airport   1
## 7547                 bolivar            international   1
## 7548                 bolivia                    north   1
## 7549                bolivian                     army   1
## 7550                bolivian                   soccer   1
## 7551                 bolling                      air   1
## 7552                    bolt                     loss   1
## 7553                   bolts                  causing   1
## 7554                   bolts                      faa   1
## 7555                   bolts                   failed   1
## 7556                   bolts                      led   1
## 7557                   bolts                 official   1
## 7558                   bolts                resulting   1
## 7559                    bomb                     blew   1
## 7560                    bomb                  carrier   1
## 7561                    bomb                   caused   1
## 7562                    bomb               consisting   1
## 7563                    bomb                  crashed   1
## 7564                    bomb                detonated   1
## 7565                    bomb                explosion   1
## 7566                    bomb                     fell   1
## 7567                    bomb                  onboard   1
## 7568                    bomb                     wing   1
## 7569            bombardier's               inadequate   1
## 7570                  bombay                    india   1
## 7571                  bomber                    pilot   1
## 7572                 bombers               approached   1
## 7573                 bombing                      run   1
## 7574                     bon                    range   1
## 7575                    bond                promotion   1
## 7576                  bonito                     peak   1
## 7577                    book             individually   1
## 7578                    boom                 fuselage   1
## 7579                    boom                resulting   1
## 7580                   booms                   caused   1
## 7581                   boost                 assembly   1
## 7582                   boost               enrichment   1
## 7583                   boost                   system   1
## 7584                 booster                    pumps   1
## 7585                    boot               activation   1
## 7586                   boots                  crashed   1
## 7587                  border                      act   1
## 7588                  border                      air   1
## 7589                  border                     city   1
## 7590                  border                  crashed   1
## 7591                  border                     crew   1
## 7592                  border               detonation   1
## 7593                  border                   guards   1
## 7594                  border               protection   1
## 7595                  border                  shortly   1
## 7596                   boris               trajkovski   1
## 7597                borussia                 dortmund   1
## 7598                    bost                  airport   1
## 7599                  boston                   harbor   1
## 7600                botafogo                      bay   1
## 7601                 bottles                   stored   1
## 7602                  bottom                   center   1
## 7603                boufarik                      afb   1
## 7604                boufarik                 airfield   1
## 7605                boufarik                 military   1
## 7606                  bought                 multiple   1
## 7607                  bounce                  causing   1
## 7608                  bounce                generated   1
## 7609                 bounced                      300   1
## 7610                 bounced                collapsed   1
## 7611                 bounced                contacted   1
## 7612                 bounced                  crashed   1
## 7613                 bounced                   lifted   1
## 7614                   bound                    tower   1
## 7615                 boundry                    fence   1
## 7616               bountiful                     peak   1
## 7617                 bourget                 airfield   1
## 7618                 bourget                    field   1
## 7619                     bow                     peak   1
## 7620                     bow                  section   1
## 7621                  bowery                      bay   1
## 7622                    bowl                 assembly   1
## 7623                     box                   caused   1
## 7624                     box                  seating   1
## 7625                   boxer                   carlos   1
## 7626                  boxing                     team   1
## 7627                     boy                        3   1
## 7628                     boy                    heavy   1
## 7629                     boy                    pilot   1
## 7630                     boy                  stephen   1
## 7631                     boy                 survived   1
## 7632                 braemar                 resevoir   1
## 7633                   brake                correctly   1
## 7634                   brake                  failure   1
## 7635                   brake                hydraulic   1
## 7636                   brake                  systems   1
## 7637                  brakes                   caused   1
## 7638                  brakes                  causing   1
## 7639                  brakes                 dragging   1
## 7640                 braking                commenced   1
## 7641                 braking            effectiveness   1
## 7642                 braking                 impaired   1
## 7643                 braking          ineffectiveness   1
## 7644                 braking                    power   1
## 7645                 braking                  systems   1
## 7646                  branco                  airport   1
## 7647               brazilian              chapecoense   1
## 7648               brazilian                   limits   1
## 7649               brazilian                  service   1
## 7650             brazzaville                  weather   1
## 7651                   break                formation   1
## 7652                 breaker                   caused   1
## 7653                breaking                   ground   1
## 7654                breaking                    loose   1
## 7655                 breakup                   severe   1
## 7656                   brega                    libya   1
## 7657             bremerhaven                  airport   1
## 7658                   brest                 guipavas   1
## 7659                   brick                     wall   1
## 7660                  bridge                 shearing   1
## 7661                  bridge                 spanning   1
## 7662                 bridger                       wy   1
## 7663                briefing                     flew   1
## 7664                 briefly                  overran   1
## 7665                  bright                  focused   1
## 7666                  bright                    light   1
## 7667                brisbane                 improper   1
## 7668                 bristol                     beau   1
## 7669                 bristol                    field   1
## 7670                 bristol                tennessee   1
## 7671               britannia                  stalled   1
## 7672                 british                     39th   1
## 7673                 british                    actor   1
## 7674                 british                     anti   1
## 7675                 british                     army   1
## 7676                 british                 columbia   1
## 7677                 british                 mosquito   1
## 7678                 british                     nato   1
## 7679                 british                 overseas   1
## 7680                 british                    prime   1
## 7681                 british                      raf   1
## 7682                 british                 reopened   1
## 7683                 british                    spies   1
## 7684                brittany                   region   1
## 7685               broadcast                    radio   1
## 7686                   broke                      due   1
## 7687                   broke                 improper   1
## 7688                   broke                  upwards   1
## 7689                  broken               collarbone   1
## 7690                  broken                     head   1
## 7691                  broken                     hill   1
## 7692                  broken                      hub   1
## 7693                  broken                 overcast   1
## 7694                  broken                     ribs   1
## 7695                  broken                    rotor   1
## 7696                  broken                   spigot   1
## 7697                  broken                  tearing   1
## 7698                  broken               windshield   1
## 7699                  broken                     wing   1
## 7700                  broken                     wire   1
## 7701               bronislaw                hubermann   1
## 7702                brooklyn                    forty   1
## 7703                   brown                       55   1
## 7704                   bruno                    range   1
## 7705               brunswick                  failure   1
## 7706                   brush                     fire   1
## 7707                 brushed                    trees   1
## 7708                  brushy                    field   1
## 7709               brussel's                    haren   1
## 7710                  bryant               california   1
## 7711                      bt                       13   1
## 7712                  bubank                  airport   1
## 7713             bucaramanga                   flying   1
## 7714              bucharesst                  crashed   1
## 7715                   bucks                    elbow   1
## 7716                 buffalo                  niagara   1
## 7717                 buffalo                    texas   1
## 7718                    buga                continued   1
## 7719                   buick              promotional   1
## 7720                building                     crew   1
## 7721                building                   crew's   1
## 7722                building                  failure   1
## 7723                building                     fuel   1
## 7724                building                     hold   1
## 7725                building                  housing   1
## 7726                building                  missing   1
## 7727                building                    short   1
## 7728                building                     site   1
## 7729                building                 spinning   1
## 7730                building                    storm   1
## 7731                building              uncommanded   1
## 7732               buildings                   houses   1
## 7733               buildings               overloaded   1
## 7734                   built                  crashed   1
## 7735                     buk                  missile   1
## 7736                   bukit                    besar   1
## 7737               bulgarian                 airspace   1
## 7738               bulgarian                      jet   1
## 7739                bulkhead                  failure   1
## 7740                bulkhead                 ruptured   1
## 7741                    bull                 mountain   1
## 7742                bulletin               stipulated   1
## 7743               bulletins                mandatory   1
## 7744                 bullets               penetrated   1
## 7745                  bungee                   system   1
## 7746              burangrang                  attempt   1
## 7747                 burbank               california   1
## 7748                 burbank                  failure   1
## 7749                burghley                    radio   1
## 7750                  buried                     eggs   1
## 7751               burketown               queensland   1
## 7752                  burned                    1,600   1
## 7753                  burned                       10   1
## 7754                  burned                       19   1
## 7755                  burned                        2   1
## 7756                  burned                       25   1
## 7757                  burned                        3   1
## 7758                  burned                       30   1
## 7759                  burned                        5   1
## 7760                  burned                      6.5   1
## 7761                  burned                    7,800   1
## 7762                  burned                  absence   1
## 7763                  burned                  adverse   1
## 7764                  burned            approximately   1
## 7765                  burned             asymmetrical   1
## 7766                  burned              businessman   1
## 7767                  burned             continuation   1
## 7768                  burned                 cracking   1
## 7769                  burned                     crew   1
## 7770                  burned                    crews   1
## 7771                  burned                estimated   1
## 7772                  burned                  fatigue   1
## 7773                  burned                     film   1
## 7774                  burned                 fracture   1
## 7775                  burned                ingestion   1
## 7776                  burned                  killing   1
## 7777                  burned                  landing   1
## 7778                  burned                     loss   1
## 7779                  burned              malfunction   1
## 7780                  burned                    north   1
## 7781                  burned                   pilots   1
## 7782                  burned                    power   1
## 7783                  burned                starboard   1
## 7784                  burned                      ten   1
## 7785                  burned                      vfr   1
## 7786                burned.ã                        â   1
## 7787                 burning             preparations   1
## 7788                   burnt                  crashed   1
## 7789                   burst                      int   1
## 7790                   burst                     nose   1
## 7791                   burst                     tire   1
## 7792                 burundi                  cyprien   1
## 7793                     bus                 accident   1
## 7794                     bus                      hit   1
## 7795                     bus               puncturing   1
## 7796                    bush            international   1
## 7797                business                   flight   1
## 7798                business                  section   1
## 7799             businessman                      f.h   1
## 7800                   butte             acknowledged   1
## 7801                   butte                  airport   1
## 7802                   butte                captain's   1
## 7803                    buzz               osbourne's   1
## 7804                bwabwata                 national   1
## 7805                    byck                attempted   1
## 7806                  bypass                     fuel   1
## 7807                     c.b                  lansing   1
## 7808                     c.g                    limit   1
## 7809                     cab                  changed   1
## 7810                   cabin               accidental   1
## 7811                   cabin                      air   1
## 7812                   cabin                  blowing   1
## 7813                   cabin                  causing   1
## 7814                   cabin                  crashed   1
## 7815                   cabin         depressurization   1
## 7816                   cabin            depressurized   1
## 7817                   cabin                     fire   1
## 7818                   cabin                     free   1
## 7819                   cabin                  heating   1
## 7820                   cabin           incapacitating   1
## 7821                   cabin                  killing   1
## 7822                   cabin                     left   1
## 7823                   cabin                   lights   1
## 7824                   cabin           pressurization   1
## 7825                   cabin                   proper   1
## 7826                   cabin                 trapping   1
## 7827                   cabin                     wall   1
## 7828                   cabin                  windows   1
## 7829                 cabinet                 minister   1
## 7830                   cable                    broke   1
## 7831                   cable                    crane   1
## 7832                   cable                   failed   1
## 7833                  cables                  causing   1
## 7834                  cables                    loose   1
## 7835                  cables                 plunging   1
## 7836                  cables                  running   1
## 7837                 cabling                  causing   1
## 7838                    cabo                    ruivo   1
## 7839                   cabre                  located   1
## 7840                 cacasus                mountains   1
## 7841                 cagayan                       de   1
## 7842                    cago                    plane   1
## 7843                 caguãƒâ                       nã   1
## 7844                   caida                     hill   1
## 7845                  cairns              disappeared   1
## 7846                   cairo                  airport   1
## 7847                   cairo                   almaza   1
## 7848                   cairo                 approach   1
## 7849                   cairo                    egypt   1
## 7850                   cairo                   flying   1
## 7851                   cairo                  killing   1
## 7852                   cairo                    metal   1
## 7853                   cairo                  pilot's   1
## 7854                   cairo                 skychief   1
## 7855                 caisson                 anchored   1
## 7856                   cajas                mountains   1
## 7857            calculations                        2   1
## 7858                calcutta                     city   1
## 7859                 calgary                      atc   1
## 7860                    cali                 columbia   1
## 7861                    cali                     lack   1
## 7862                 caliber                   pistol   1
## 7863              california                  aviator   1
## 7864              california                    coast   1
## 7865              california                      due   1
## 7866              california                     jury   1
## 7867            california's                   shasta   1
## 7868                    call                reporting   1
## 7869                  called               feathering   1
## 7870                  called                    green   1
## 7871                  called                   kataib   1
## 7872                  called                 military   1
## 7873                callejon                     pass   1
## 7874                 calling               deviations   1
## 7875                    calm                   waters   1
## 7876                    calm                     wind   1
## 7877                cameroon                    congo   1
## 7878                cameroon                mountains   1
## 7879                    camp                     dell   1
## 7880                    camp                       le   1
## 7881                    camp                    south   1
## 7882                campaign                     aide   1
## 7883                campaign                  crashed   1
## 7884             campaigning                     trip   1
## 7885                campbell                 kentucky   1
## 7886                campbell                     lake   1
## 7887                campbell                 military   1
## 7888                campbell                 reported   1
## 7889                  canada                  checked   1
## 7890                  canada                 occurred   1
## 7891                canadian                 aviation   1
## 7892                canadian                  cabinet   1
## 7893                canadian                    coast   1
## 7894                canadian                     folk   1
## 7895                canadian                maneuvers   1
## 7896                canadian                     tour   1
## 7897                  canana                   island   1
## 7898                canberra                aerodrome   1
## 7899                   candi                   kubeck   1
## 7900               candidate                   cesare   1
## 7901                    cano                  damiãƒâ   1
## 7902                cantelli                       36   1
## 7903                  canton                 airfield   1
## 7904                  canyon                    1,500   1
## 7905                  canyon                       20   1
## 7906                  canyon                       27   1
## 7907                  canyon                     band   1
## 7908                  canyon                   cashed   1
## 7909                  canyon               confronted   1
## 7910                  canyon                    error   1
## 7911                  canyon                      hit   1
## 7912                  canyon                    icing   1
## 7913                  canyon                 national   1
## 7914                     cap                      des   1
## 7915                     cap                  haitien   1
## 7916                     cap                    white   1
## 7917            capabilities                resulting   1
## 7918              capability                     flew   1
## 7919                   capac                  airport   1
## 7920                 caparao                 mountain   1
## 7921                    cape                  bojador   1
## 7922                    cape                mendocino   1
## 7923                    cape                  spencer   1
## 7924                    cape                     york   1
## 7925                 capital                 airlines   1
## 7926                 capital                mogadishu   1
## 7927                 capital                  shortly   1
## 7928                 capital                witnesses   1
## 7929                  capped                 mountain   1
## 7930                   capri                   island   1
## 7931                 captain                    acted   1
## 7932                 captain                  allowed   1
## 7933                 captain                 allowing   1
## 7934                 captain                  applied   1
## 7935                 captain             apprehensive   1
## 7936                 captain                  arrived   1
## 7937                 captain                  assumed   1
## 7938                 captain                attempted   1
## 7939                 captain                   choose   1
## 7940                 captain                  circled   1
## 7941                 captain                  delayed   1
## 7942                 captain                     died   1
## 7943                 captain               disengaged   1
## 7944                 captain                dispensed   1
## 7945                 captain                      due   1
## 7946                 captain                   edward   1
## 7947                 captain                    edwin   1
## 7948                 captain                 exceeded   1
## 7949                 captain               flightcrew   1
## 7950                 captain                   grabed   1
## 7951                 captain                   hansie   1
## 7952                 captain                    idled   1
## 7953                 captain            inadvertently   1
## 7954                 captain                initiated   1
## 7955                 captain              interpreted   1
## 7956                 captain                     john   1
## 7957                 captain                   landed   1
## 7958                 captain                     left   1
## 7959                 captain                   looked   1
## 7960                 captain                     loss   1
## 7961                 captain                  lowered   1
## 7962                 captain                 marshall   1
## 7963                 captain               mistakenly   1
## 7964                 captain                  noticed   1
## 7965                 captain              preoccupied   1
## 7966                 captain                   pushed   1
## 7967                 captain                  putting   1
## 7968                 captain                 remained   1
## 7969                 captain                resulting   1
## 7970                 captain                   riding   1
## 7971                 captain                   robert   1
## 7972                 captain                 speaking   1
## 7973                 captain                  steered   1
## 7974                 captain                  stewart   1
## 7975                 captain                 suffered   1
## 7976               captain's                  actions   1
## 7977               captain's                altimeter   1
## 7978               captain's                 apparent   1
## 7979               captain's                attention   1
## 7980               captain's                  chronic   1
## 7981               captain's               commitment   1
## 7982               captain's                    depth   1
## 7983               captain's                deviation   1
## 7984               captain's                 director   1
## 7985               captain's              distraction   1
## 7986               captain's                  fatigue   1
## 7987               captain's                   faulty   1
## 7988               captain's                   flight   1
## 7989               captain's                     gear   1
## 7990               captain's               impairment   1
## 7991               captain's                 improper   1
## 7992               captain's                inability   1
## 7993               captain's           incapacitation   1
## 7994               captain's             inexperience   1
## 7995               captain's             insufficient   1
## 7996               captain's              intentional   1
## 7997               captain's                     lack   1
## 7998               captain's                     legs   1
## 7999               captain's                  license   1
## 8000               captain's                     loss   1
## 8001               captain's        misinterpretation   1
## 8002               captain's               misreading   1
## 8003               captain's              performance   1
## 8004               captain's               subsequent   1
## 8005               captain's                   unwise   1
## 8006                captains              uncertainty   1
## 8007                 caqueta                    river   1
## 8008               caquetãƒâ                  crashed   1
## 8009                     car                   705.32   1
## 8010                     car                   agency   1
## 8011                     car                believing   1
## 8012                     car                   engine   1
## 8013                     car              immediately   1
## 8014                 caracas                 mountain   1
## 8015              carbondale                   thirty   1
## 8016             carborateur                    icing   1
## 8017              carburetor                    drain   1
## 8018              carburetor                     fuel   1
## 8019              carburetor                  intakes   1
## 8020                 cardiac                   arrest   1
## 8021                 cardiac                    death   1
## 8022                 cardiff                  airport   1
## 8023                cardinal               outfielder   1
## 8024              cardington                  england   1
## 8025                    care                     free   1
## 8026               carefully             ascertaining   1
## 8027                   cargo                   aboard   1
## 8028                   cargo               aircraft's   1
## 8029                   cargo                      bay   1
## 8030                   cargo                 breaking   1
## 8031                   cargo                   caused   1
## 8032                   cargo               configured   1
## 8033                   cargo                     fire   1
## 8034                   cargo                  fllight   1
## 8035                   cargo                    floor   1
## 8036                   cargo                    hatch   1
## 8037                   cargo                 included   1
## 8038                   cargo                     lost   1
## 8039                   cargo               operations   1
## 8040                   cargo                     plan   1
## 8041                   cargo                   planel   1
## 8042                   cargo                  related   1
## 8043                   cargo                   weight   1
## 8044                    carl                    smith   1
## 8045                  carlos                     cruz   1
## 8046                  carlos                   gardel   1
## 8047                carnahan                       66   1
## 8048                  carole                  lombard   1
## 8049                carolina               detonation   1
## 8050                carolina                      due   1
## 8051                  caroni                    river   1
## 8052                 carpish                 mountain   1
## 8053                  carran                    field   1
## 8054                 carried                       12   1
## 8055                 carried                       18   1
## 8056                 carrier                   failed   1
## 8057                 carrier                     wing   1
## 8058               carrier's                  license   1
## 8059               carrier's               procedures   1
## 8060                 carring                       26   1
## 8061                 carring                reporters   1
## 8062                 carroll                      u.s   1
## 8063                carrying                       12   1
## 8064                carrying                    2,500   1
## 8065                carrying                       31   1
## 8066                carrying                        5   1
## 8067                carrying                       57   1
## 8068                carrying                       58   1
## 8069                carrying                        6   1
## 8070                carrying                        9   1
## 8071                carrying                       91   1
## 8072                carrying                  african   1
## 8073                carrying                 bolivian   1
## 8074                carrying                brazilian   1
## 8075                carrying                   checks   1
## 8076                carrying                 children   1
## 8077                carrying                 civilian   1
## 8078                carrying                   cruise   1
## 8079                carrying                employees   1
## 8080                carrying               executives   1
## 8081                carrying                  firemen   1
## 8082                carrying                  flowers   1
## 8083                carrying                 football   1
## 8084                carrying                     gold   1
## 8085                carrying                hungarian   1
## 8086                carrying                 infantry   1
## 8087                carrying                  italian   1
## 8088                carrying              journalists   1
## 8089                carrying                 magazins   1
## 8090                carrying                  mexican   1
## 8091                carrying               nicaraguan   1
## 8092                carrying                     palm   1
## 8093                carrying                parachute   1
## 8094                carrying             parachutists   1
## 8095                carrying               passengers   1
## 8096                carrying             peacekeeping   1
## 8097                carrying                   relief   1
## 8098                carrying                     rotc   1
## 8099                carrying                   shrimp   1
## 8100                carrying                     sick   1
## 8101                carrying                      sir   1
## 8102                carrying                skydivers   1
## 8103                carrying                  spanish   1
## 8104                carrying                    spare   1
## 8105                carrying                      tin   1
## 8106                carrying                  turkish   1
## 8107                carrying                      u.s   1
## 8108                carrying                   united   1
## 8109                carrying                    uzbek   1
## 8110                carrying                  victims   1
## 8111                carrying                villagers   1
## 8112                    cars                   coming   1
## 8113                    cars                     fell   1
## 8114                    cars                      mid   1
## 8115                carstenz                    range   1
## 8116                  cartel                   headed   1
## 8117             cartwheeled                     slid   1
## 8118                 cascade                mountains   1
## 8119                  cashed                       25   1
## 8120                  cashed                       en   1
## 8121                  cassie                   gaines   1
## 8122                  castle                 delaware   1
## 8123                  castle                      nut   1
## 8124                  casual                 attitude   1
## 8125              casualties                 probable   1
## 8126                catalina                 seaplane   1
## 8127            catastrophic                  effects   1
## 8128            catastrophic                    event   1
## 8129            catastrophic                explosion   1
## 8130            catastrophic               mechanical   1
## 8131            catastrophic               structural   1
## 8132               cathedral                   church   1
## 8133                catskill                mountains   1
## 8134                 cauayan                  isabela   1
## 8135                caucasus                mountains   1
## 8136                  caught                      fir   1
## 8137                  causal                  factors   1
## 8138               causative                  factors   1
## 8139                  caused                corrosion   1
## 8140                  caused                     crew   1
## 8141                  caused                   damage   1
## 8142                  caused                dangerous   1
## 8143                  caused            decompression   1
## 8144                  caused           disorientation   1
## 8145                  caused             displacement   1
## 8146                  caused                excessive   1
## 8147                  caused                explosive   1
## 8148                  caused                  failure   1
## 8149                  caused                   flight   1
## 8150                  caused                      hot   1
## 8151                  caused           incapacitation   1
## 8152                  caused                    minor   1
## 8153                  caused                misfiring   1
## 8154                  caused                     nuts   1
## 8155                  caused              overheating   1
## 8156                  caused                    power   1
## 8157                  caused               propellers   1
## 8158                  caused               separation   1
## 8159                  caused                   severe   1
## 8160                  caused                    smoke   1
## 8161                  caused                 stresses   1
## 8162                  caused               structural   1
## 8163                  caused                temporary   1
## 8164                  caused                    thick   1
## 8165                  caused                  unusual   1
## 8166                 causing                    cargo   1
## 8167                 causing                 complete   1
## 8168                 causing                   debris   1
## 8169                 causing                     drag   1
## 8170                 causing                   engine   1
## 8171                 causing                 eventual   1
## 8172                 causing                excessive   1
## 8173                 causing                extension   1
## 8174                 causing                extensive   1
## 8175                 causing                  intense   1
## 8176                 causing                  multipe   1
## 8177                 causing                   pieces   1
## 8178                 causing                    rapid   1
## 8179                 causing              significant   1
## 8180                 causing              substantial   1
## 8181                 causing                temporary   1
## 8182                 causing                  thermal   1
## 8183                 causing                vibration   1
## 8184                 caution                     note   1
## 8185               cavendish                       28   1
## 8186                 cazenga                 district   1
## 8187                    cccp                    22268   1
## 8188                      ce                      208   1
## 8189                    cebu                    bound   1
## 8190                 cecilia                  airport   1
## 8191                 cecilia                   cichan   1
## 8192                   cedar                   forest   1
## 8193                   cedar                 mountain   1
## 8194                  cedrel                 mountain   1
## 8195                   cedro                 mountain   1
## 8196                 ceiling               conditions   1
## 8197                 ceiling                continued   1
## 8198                 ceiling                    night   1
## 8199                 ceiling               prescribed   1
## 8200                 ceiling                     rain   1
## 8201                 ceiling                  spatial   1
## 8202                 ceiling                 suddenly   1
## 8203                ceilings                   clouds   1
## 8204                ceilings                      due   1
## 8205                ceilings                 whiteout   1
## 8206             celebration                  bearing   1
## 8207               celebrity                   skiers   1
## 8208               celestial               ammunition   1
## 8209              celibrated                   polish   1
## 8210                    cell                batteries   1
## 8211                    cell                  crashed   1
## 8212                   cells                 ruptured   1
## 8213                cemetery                      300   1
## 8214                cemetery                    short   1
## 8215                  center                propeller   1
## 8216                  center                  shortly   1
## 8217                  center                     tank   1
## 8218              centerline                   impact   1
## 8219                 central                 airlines   1
## 8220                 central                  airport   1
## 8221                 central                   alaska   1
## 8222                 central               california   1
## 8223                 central                       dc   1
## 8224                 central                  glasgow   1
## 8225                 central                      hub   1
## 8226                 central                 standard   1
## 8227                  cerdan                       33   1
## 8228                cerritos               california   1
## 8229                   cerro                     baco   1
## 8230                   cerro                   blanco   1
## 8231                   cerro                  carpich   1
## 8232                   cerro                  granada   1
## 8233                   cerro                   grande   1
## 8234                   cerro                 horqueta   1
## 8235                   cerro              sincholagua   1
## 8236               certainty                  crashed   1
## 8237             certificate                      3rd   1
## 8238            certificated                requiring   1
## 8239           certification             requirements   1
## 8240         certificication                 envelope   1
## 8241               certified                      aft   1
## 8242               certified                  deicing   1
## 8243               certified              operational   1
## 8244               certified                   weight   1
## 8245                  cesare                  gaviria   1
## 8246          ceskoslovenske                   dakota   1
## 8247          ceskoslovenske                     loss   1
## 8248                  cessna                       14   1
## 8249                  cessna                      150   1
## 8250                  cessna                      206   1
## 8251                  cessna                      208   1
## 8252                  cessna                 aircraft   1
## 8253                  cessna                 citation   1
## 8254                  cessna                  crashed   1
## 8255                  cessna                   failed   1
## 8256                  cessna                   system   1
## 8257                      cf                      100   1
## 8258                      cf                     101b   1
## 8259                    cfit               controlled   1
## 8260                     cga                  landing   1
## 8261                      ch                       47   1
## 8262                      ch                       53   1
## 8263                      ch                      53s   1
## 8264              chacaltaya                mountains   1
## 8265            chachacomani                     peak   1
## 8266             chachapoyas               controlled   1
## 8267                 chadian                   rebels   1
## 8268                   chãƒâ              teaubernard   1
## 8269                  chafed               insulation   1
## 8270                  chafed                    wires   1
## 8271                   chain                   failed   1
## 8272                   chain                     link   1
## 8273                chairman                     dick   1
## 8274                chairman                      von   1
## 8275                 chalk's                    ocean   1
## 8276              challenger                   flight   1
## 8277             challenging                  landing   1
## 8278             chamberlain                    field   1
## 8279              champadevi                mountains   1
## 8280                champion                     alan   1
## 8281                champion                     jake   1
## 8282                champion                   killed   1
## 8283                champion                   marcel   1
## 8284                champion                    rodeo   1
## 8285                  chance                     hill   1
## 8286                chandler                    field   1
## 8287                  change                      due   1
## 8288                  change                  heading   1
## 8289                  change                resulting   1
## 8290                 changed                 altitude   1
## 8291                 changed                direction   1
## 8292                changing                 attitude   1
## 8293                changing                 handling   1
## 8294                changing           meteorological   1
## 8295                changing                    winds   1
## 8296                 channel                       10   1
## 8297                 channel                       50   1
## 8298                 channel            approximately   1
## 8299                 channel                       en   1
## 8300                 channel                  failure   1
## 8301             chapecoense                   soccer   1
## 8302                 chaperi                 mountain   1
## 8303                  chapin                       20   1
## 8304                chargers                  running   1
## 8305                 charges                      atc   1
## 8306               charlakhi                   island   1
## 8307                 charles                     town   1
## 8308              charleston                       30   1
## 8309              charleston                       wv   1
## 8310              charleston                   yeager   1
## 8311             charleville                cloncurry   1
## 8312                 charlie                    peete   1
## 8313               charlotte                  douglas   1
## 8314         charlottesville                  airport   1
## 8315                   chart                     lost   1
## 8316                 charter                 aircraft   1
## 8317                 charter                 carrying   1
## 8318                 charter                      jet   1
## 8319                 charter                  overran   1
## 8320                 charter                    plane   1
## 8321                 charter                   planes   1
## 8322               chartered                 american   1
## 8323               chartered                    cargo   1
## 8324               chartered                   cessna   1
## 8325               chartered                passenger   1
## 8326                  charts                 diverted   1
## 8327                  charts                  leading   1
## 8328                  charts                 provided   1
## 8329                   chase                    plane   1
## 8330                 chateau                       de   1
## 8331                 chatham                    sound   1
## 8332                  chavez                       22   1
## 8333                   cheat                 mountain   1
## 8334                 chechen                guerillas   1
## 8335               chechnyan                   rebels   1
## 8336                   check               altimeters   1
## 8337                   check                  captain   1
## 8338                   check                captain's   1
## 8339                   check                 interval   1
## 8340                   check                resulting   1
## 8341                 checked                  baggage   1
## 8342               checklist                    items   1
## 8343               checklist               prejudiced   1
## 8344               checklist             requirements   1
## 8345                  checks             contributing   1
## 8346                chemical                 reaction   1
## 8347                    chen                        6   1
## 8348                   chena                     dome   1
## 8349                chestnut                    ridge   1
## 8350                cheyenne                    pilot   1
## 8351                cheyenne                    radio   1
## 8352                cheyenne                     test   1
## 8353                     chi                     minh   1
## 8354                  chiang                      kai   1
## 8355                   chiao                  village   1
## 8356                 chicago                  circled   1
## 8357                 chicago                 collided   1
## 8358                 chicago                   o'hare   1
## 8359               chicago's                   midway   1
## 8360              chichijima                   island   1
## 8361            chichontepec                  volcano   1
## 8362                   chief                   mushaf   1
## 8363                   chief                     test   1
## 8364                  chikat                 mountain   1
## 8365                   child                   actors   1
## 8366                   child                     myca   1
## 8367                   child                     rene   1
## 8368                children                        3   1
## 8369                children                  playing   1
## 8370                   chile                 carrying   1
## 8371                 chile's                 national   1
## 8372                 chilean                   soccer   1
## 8373             chillacocha                 mountain   1
## 8374              chimborazo               controlled   1
## 8375                   china                  clipper   1
## 8376                   china                  crashed   1
## 8377                  chinaã                        â   1
## 8378                 chinese                lachovlin   1
## 8379                 chinese             nationalists   1
## 8380                 chinese                nationals   1
## 8381                   chino                  airport   1
## 8382                   chino                   canyon   1
## 8383                chiquita                   lagoon   1
## 8384              chkalovsky                  airport   1
## 8385             chochabanba                 vanished   1
## 8386                   choir                   orfeon   1
## 8387                   choir                reporters   1
## 8388                  chorro                      del   1
## 8389                  chosen                diversion   1
## 8390            christchurch                  airport   1
## 8391                 christi                      bay   1
## 8392              christians                    rugby   1
## 8393               christmas                 vacation   1
## 8394             christopher                 columbus   1
## 8395                 chronic                  fatigue   1
## 8396                 chugach                 mountain   1
## 8397                  churia                 mountain   1
## 8398                   chute                  causing   1
## 8399                   chute               deployment   1
## 8400                   chuuk                     weno   1
## 8401                  cierva                   killed   1
## 8402               cigarette                   caused   1
## 8403               cigarette                  crashed   1
## 8404              cincinnati            international   1
## 8405                cindacta                      iii   1
## 8406                    cinq                    croix   1
## 8407                   cinta                 mountain   1
## 8408                  cintra                 mountain   1
## 8409                  circle                     land   1
## 8410                 circled                    davao   1
## 8411                circling                 canberra   1
## 8412                circling                    gatow   1
## 8413                circling               instrument   1
## 8414                circling                  kaimana   1
## 8415                circling                  pattern   1
## 8416            circumstance                  crashed   1
## 8417           circumstances                conducive   1
## 8418           circumstances                including   1
## 8419           circumstances                  plunged   1
## 8420           circumstances                 required   1
## 8421          circumstantial                 evidence   1
## 8422                citation                       ii   1
## 8423                  cities                  airport   1
## 8424                  citrus                    fruit   1
## 8425                    city                amusement   1
## 8426                    city                breeching   1
## 8427                    city                  causing   1
## 8428                    city                  crashed   1
## 8429                    city                  failure   1
## 8430                    city                  heading   1
## 8431                    city                     iowa   1
## 8432                    city                   kansas   1
## 8433                    city                       la   1
## 8434                    city                 maryland   1
## 8435                    city             navigational   1
## 8436                    city                   police   1
## 8437                    city                president   1
## 8438                    city                  shortly   1
## 8439                    city                   street   1
## 8440                    city                  takeoff   1
## 8441                    city                 tocument   1
## 8442                    city                     utah   1
## 8443                    city                witnesses   1
## 8444                  ciudad                  bolivar   1
## 8445                  ciudad                  guayana   1
## 8446                  ciudad                   valles   1
## 8447                   civil                   airway   1
## 8448                   civil                 approach   1
## 8449                   civil                 aviation   1
## 8450                   civil               aviation's   1
## 8451                   civil                emergency   1
## 8452                   civil                    trial   1
## 8453                civilian                 aircraft   1
## 8454                civilian                    cargo   1
## 8455                civilian             construction   1
## 8456                civilian             contractor's   1
## 8457                civilian              controllers   1
## 8458                civilian                dependent   1
## 8459                civilian                   houses   1
## 8460                civilian                  iranian   1
## 8461                civilian               passengers   1
## 8462                civilian                    pilot   1
## 8463                civilian                relatives   1
## 8464                civilian                    ships   1
## 8465               civilians                   aboard   1
## 8466                     cl2                  gyrosyn   1
## 8467                clarence                    bates   1
## 8468                clarence                     king   1
## 8469                   clark                      air   1
## 8470                   clark                  russell   1
## 8471                 classic                 symptoms   1
## 8472                   clean                   flight   1
## 8473                cleaning                  causing   1
## 8474               clearance                   cashed   1
## 8475               clearance                 confused   1
## 8476               clearance                congested   1
## 8477               clearance                  crashed   1
## 8478               clearance                 delivery   1
## 8479               clearance                  factors   1
## 8480               clearance             instructions   1
## 8481               clearance                   issued   1
## 8482               clearance                     poor   1
## 8483               clearance             requirements   1
## 8484               clearance                      sid   1
## 8485               clearance                standards   1
## 8486               clearance                      vfr   1
## 8487                 cleared                 altitude   1
## 8488                 cleared                  failure   1
## 8489                clearing                procedure   1
## 8490               clearlake                     iowa   1
## 8491                clemente                       38   1
## 8492                clements                      bay   1
## 8493                clermont             ferrand.flew   1
## 8494               cleveland                      bay   1
## 8495                   cliff                   lifted   1
## 8496                   cliff                  stalled   1
## 8497                  cliffs                   engine   1
## 8498                   climb                    angle   1
## 8499                   climb                 appeared   1
## 8500                   climb                  crashed   1
## 8501                   climb                  earlier   1
## 8502                   climb                   flight   1
## 8503                   climb                    icing   1
## 8504                   climb                  leading   1
## 8505                   climb              performance   1
## 8506                   climb                    plane   1
## 8507                   climb                procedure   1
## 8508                   climb                  profile   1
## 8509                   climb                  shortly   1
## 8510                   climb                    speed   1
## 8511                   climb                   thrust   1
## 8512                 climbed                     past   1
## 8513                climbing                    angle   1
## 8514                climbing                 attitude   1
## 8515                climbing                       en   1
## 8516                climbing                     flew   1
## 8517                climbing                     lost   1
## 8518                climbing                 slightly   1
## 8519                climbing                    speed   1
## 8520                climbout                  forcing   1
## 8521                climbout                      gca   1
## 8522                climbout                    phase   1
## 8523                   cline                       30   1
## 8524                   cline                allegedly   1
## 8525                 cline's                  manager   1
## 8526                  clineã                        â   1
## 8527                    clip                    trees   1
## 8528                 clipped                     palm   1
## 8529                 clipped                    power   1
## 8530                 clipped                     roof   1
## 8531                 clipper                  america   1
## 8532                 clipper                caribbean   1
## 8533                 clipper                celestial   1
## 8534                 clipper                   climax   1
## 8535                 clipper             constitution   1
## 8536                 clipper                  crashed   1
## 8537                 clipper                 defiance   1
## 8538                 clipper                  eclipse   1
## 8539                 clipper                 endeavor   1
## 8540                 clipper               friendship   1
## 8541                 clipper                   golden   1
## 8542                 clipper                     maid   1
## 8543                 clipper                    malay   1
## 8544                 clipper                  monarch   1
## 8545                 clipper                     navy   1
## 8546                 clipper                 novelist   1
## 8547                 clipper                      pan   1
## 8548                 clipper                  raidant   1
## 8549                 clipper                  romance   1
## 8550                 clipper                sovereign   1
## 8551                 clipper                 talisman   1
## 8552                 clipper                   titian   1
## 8553                 clipper                tradewind   1
## 8554                 clipper                   united   1
## 8555                 clipper                   victor   1
## 8556                 clipper                   winged   1
## 8557                clipping                     tree   1
## 8558                clipping                    trees   1
## 8559              clockmaker                   helped   1
## 8560                 clogged                  bleeder   1
## 8561                 clogged                    pitot   1
## 8562                   close                attention   1
## 8563                   close                    calls   1
## 8564                   close                encounter   1
## 8565                   close                 obstacle   1
## 8566                   close                    range   1
## 8567                  closed                  airport   1
## 8568                  closed                 airports   1
## 8569                  closed               completely   1
## 8570                  closed                    doors   1
## 8571                  closed                      due   1
## 8572                  closer                diversion   1
## 8573                 closing                landscape   1
## 8574                 closure                    angle   1
## 8575                 closure                    rates   1
## 8576                   cloud              approaching   1
## 8577                   cloud               conditions   1
## 8578                   cloud                     mass   1
## 8579                   cloud                prepatory   1
## 8580                   cloud                resulting   1
## 8581                  clouds                       28   1
## 8582                  clouds                       47   1
## 8583                  clouds               controlled   1
## 8584                  clouds                  crashed   1
## 8585                  clouds                    cross   1
## 8586                  clouds              disappeared   1
## 8587                  clouds                     flew   1
## 8588                  clouds                      fog   1
## 8589                  clouds                  hanging   1
## 8590                  clouds                     lack   1
## 8591                  clouds                     lost   1
## 8592                  clouds                     rain   1
## 8593                  clouds              reappearing   1
## 8594                  clouds                  reduced   1
## 8595                  clouds                 reducing   1
## 8596                  clouds                   severe   1
## 8597                  clouds              surrounding   1
## 8598                  clouds             thunderstorm   1
## 8599                  clouds                   twenty   1
## 8600                  clouds                windshear   1
## 8601                    club                  crashed   1
## 8602                    club                      med   1
## 8603                    cluj                   napoca   1
## 8604                  clutha                      pub   1
## 8605                   coach                    knute   1
## 8606                   coach                   robert   1
## 8607                    coal                   miners   1
## 8608              coarsening                     unit   1
## 8609                   coast                  crashed   1
## 8610                   coast                  failure   1
## 8611                   coast                  shortly   1
## 8612                   coast                     tail   1
## 8613                 coastal                  capital   1
## 8614                 coating                   flakes   1
## 8615                 coating                  flaking   1
## 8616                 coaxial             misalignment   1
## 8617              cochabamba              disappeared   1
## 8618                 cockpit                attempted   1
## 8619                 cockpit                automated   1
## 8620                 cockpit                  causing   1
## 8621                 cockpit                  ceiling   1
## 8622                 cockpit                checklist   1
## 8623                 cockpit                clambered   1
## 8624                 cockpit                 darkness   1
## 8625                 cockpit              distracting   1
## 8626                 cockpit                exchanges   1
## 8627                 cockpit                   filled   1
## 8628                 cockpit                    floor   1
## 8629                 cockpit                      hit   1
## 8630                 cockpit              indications   1
## 8631                 cockpit          instrumentation   1
## 8632                 cockpit              limitations   1
## 8633                 cockpit                procedure   1
## 8634                 cockpit               procedures   1
## 8635                 cockpit                rendering   1
## 8636                 cockpit                 resource   1
## 8637                 cockpit                     roof   1
## 8638                 cockpit                  sharing   1
## 8639                 cockpit              supervision   1
## 8640                 cockpit                     tcas   1
## 8641                 cockpit               visibility   1
## 8642                 cockpit                  warning   1
## 8643                 cockpit                   window   1
## 8644                 cockpit                  windows   1
## 8645                   cocos                  islands   1
## 8646                    code                     vapp   1
## 8647                   coded                  message   1
## 8648                   cogar                       51   1
## 8649                  cognac                    chãƒâ   1
## 8650                cointrin                  airport   1
## 8651                     col                      des   1
## 8652                     col                turganbek   1
## 8653                     col                  william   1
## 8654                colcanin                 mountain   1
## 8655                    cold              environment   1
## 8656                    cold                    front   1
## 8657                    cold                  weather   1
## 8658                  colgan                      air   1
## 8659                  colgan                     airã   1
## 8660                collapse                    bolts   1
## 8661               collapsed                 improper   1
## 8662               collapsed                  violent   1
## 8663                 collect                   37,500   1
## 8664            collectively              contributed   1
## 8665               collector                      box   1
## 8666                 college                      san   1
## 8667                collided                     head   1
## 8668                collided                 hijacked   1
## 8669                 collins                   killed   1
## 8670               collision                       17   1
## 8671               collision                     crew   1
## 8672               collision                   eleven   1
## 8673               collision                 exposure   1
## 8674               collision               inadequate   1
## 8675               collision                    pilot   1
## 8676               collision               protection   1
## 8677               collision                 resulted   1
## 8678               collision                seventeen   1
## 8679               colombian                caribbean   1
## 8680               colombian                   jungle   1
## 8681               colombian                territory   1
## 8682                   colon                    cargo   1
## 8683                 colonel                   norman   1
## 8684                 coloque                 mountain   1
## 8685                colorado                  springs   1
## 8686                colorful                       11   1
## 8687                 columba                   guinea   1
## 8688                columbia             metropolitan   1
## 8689                columbia                    river   1
## 8690               columbian               venezuelan   1
## 8691                  column                   shaker   1
## 8692                  column                  slipped   1
## 8693               columnist                      tom   1
## 8694                comair's                  failure   1
## 8695                comair's                   manual   1
## 8696                  combat                  mission   1
## 8697                  combat                    tours   1
## 8698                  combat                      u.s   1
## 8699                combined                  effects   1
## 8700                combined                  failure   1
## 8701               combustor                     slow   1
## 8702                comedian                   george   1
## 8703                   comet                 aircraft   1
## 8704                 command                       14   1
## 8705                 command                adversely   1
## 8706                 command                attempted   1
## 8707                 command                  changed   1
## 8708                 command               consistent   1
## 8709                 command                continued   1
## 8710                 command               continuing   1
## 8711                 command             coordination   1
## 8712                 command                  crashed   1
## 8713                 command                  decided   1
## 8714                 command                 deprived   1
## 8715                 command             disconnected   1
## 8716                 command                 executed   1
## 8717                 command                exercised   1
## 8718                 command               initiating   1
## 8719                 command                   killed   1
## 8720                 command                     lack   1
## 8721                 command                     lost   1
## 8722                 command               misleading   1
## 8723                 command                permitted   1
## 8724                 command                    pilot   1
## 8725                 command                   pulled   1
## 8726                 command                   pushed   1
## 8727                 command         responsibilities   1
## 8728                 command                retracted   1
## 8729                 command                 suffered   1
## 8730                 command                 switched   1
## 8731                 command                  terrain   1
## 8732             commander's                 decision   1
## 8733             commander's                unability   1
## 8734              commanding                  officer   1
## 8735                commando                     raid   1
## 8736               commenced                 dropping   1
## 8737                commerce              regulations   1
## 8738                commerce                      ron   1
## 8739              commercial                 aircraft   1
## 8740              commercial                  airline   1
## 8741              commercial                 aviation   1
## 8742              commercial                 building   1
## 8743              commercial                  filming   1
## 8744              commercial                  flights   1
## 8745              commercial               helicopter   1
## 8746              commercial                   midair   1
## 8747               committee                    found   1
## 8748           communication                    tower   1
## 8749          communications               facilities   1
## 8750          communications               guidelines   1
## 8751          communications                  leaving   1
## 8752          communications                   midair   1
## 8753          communications                operators   1
## 8754          communications               procedures   1
## 8755               communist                     anti   1
## 8756                commuter                 airliner   1
## 8757                comodoro                rivadavia   1
## 8758               companies                      air   1
## 8759                 company                airplanes   1
## 8760                 company                 approach   1
## 8761                 company               checklists   1
## 8762                 company                      due   1
## 8763                 company                employees   1
## 8764                 company                   ground   1
## 8765                 company                    guard   1
## 8766                 company               instrument   1
## 8767                 company              maintenance   1
## 8768                 company               management   1
## 8769                 company                  manuals   1
## 8770                 company                 minimums   1
## 8771                 company                 operator   1
## 8772                 company                  overran   1
## 8773                 company                 personne   1
## 8774                 company                personnel   1
## 8775                 company                 policies   1
## 8776                 company                   policy   1
## 8777                 company                 sundance   1
## 8778               company's               dispatcher   1
## 8779               company's                  failure   1
## 8780               company's                   ground   1
## 8781               company's               inadequate   1
## 8782               company's                   laxity   1
## 8783               company's                     load   1
## 8784               company's              maintenance   1
## 8785               company's                   minima   1
## 8786                companyã                        â   1
## 8787              comparator                    alarm   1
## 8788              comparator                  warning   1
## 8789              comparator                 warnings   1
## 8790             compartment                        6   1
## 8791             compartment                  located   1
## 8792             compartment                  planted   1
## 8793             compartment                     wall   1
## 8794             compartment                  warning   1
## 8795                 compass               artificial   1
## 8796                 compass                      cl2   1
## 8797                 compass                    error   1
## 8798                 compass                    gyros   1
## 8799                 compass               indication   1
## 8800                 compass              inoperative   1
## 8801                 compass                  leading   1
## 8802                 compass                plummeted   1
## 8803               compasses                captain's   1
## 8804            compensation                  applied   1
## 8805             compensator              degradation   1
## 8806             compensator                      ran   1
## 8807                complete                autopilot   1
## 8808                complete                    check   1
## 8809                complete              destruction   1
## 8810                complete                   engine   1
## 8811                complete              established   1
## 8812                complete                     left   1
## 8813                complete                    light   1
## 8814                complete               mechanical   1
## 8815                complete                 recovery   1
## 8816               completed                        3   1
## 8817              completely                       37   1
## 8818              completely                    broke   1
## 8819              completely                   burned   1
## 8820              completely               demolished   1
## 8821              completely                destroyed   1
## 8822              completely                   follow   1
## 8823              completely                 separate   1
## 8824                 complex                    chain   1
## 8825                 complex                 improper   1
## 8826                 complex                  shortly   1
## 8827             complicated                maneuvers   1
## 8828             complicated                  removal   1
## 8829               component                   failed   1
## 8830               component                  failure   1
## 8831               component                positions   1
## 8832              components                 improper   1
## 8833              compressed                 approach   1
## 8834              compressor                     disc   1
## 8835              compressor                 impeller   1
## 8836              compressor                      led   1
## 8837              compressor                   spacer   1
## 8838              compressor                  turbine   1
## 8839             compressors                  crashed   1
## 8840             compressors                     tore   1
## 8841                computed                 rotation   1
## 8842                computer               controlled   1
## 8843                computer                     data   1
## 8844                computer                   flight   1
## 8845                computer                   stored   1
## 8846              concepcion                  volcano   1
## 8847              concorde's                    tires   1
## 8848               concreate                     wall   1
## 8849                concrete                   blocks   1
## 8850                concrete                  culvert   1
## 8851                concrete                 drainage   1
## 8852                concrete              obstruction   1
## 8853              concurrent              restoration   1
## 8854             conditiions                  crashed   1
## 8855               condition                    arose   1
## 8856               condition                   caused   1
## 8857               condition                conducive   1
## 8858               condition             contributing   1
## 8859               condition                  existed   1
## 8860               condition                 external   1
## 8861               condition                      hit   1
## 8862               condition                 resulted   1
## 8863               condition                     snow   1
## 8864               condition               turbulence   1
## 8865            conditioning                    packs   1
## 8866              conditions                      0.8   1
## 8867              conditions                       30   1
## 8868              conditions                        5   1
## 8869              conditions                 aircraft   1
## 8870              conditions               apparently   1
## 8871              conditions               authorized   1
## 8872              conditions                    broke   1
## 8873              conditions                    buddy   1
## 8874              conditions                    cargo   1
## 8875              conditions                   caused   1
## 8876              conditions                  causing   1
## 8877              conditions                  changed   1
## 8878              conditions                    close   1
## 8879              conditions                conducive   1
## 8880              conditions               conductive   1
## 8881              conditions               consisting   1
## 8882              conditions                continued   1
## 8883              conditions                 contrary   1
## 8884              conditions                  coupled   1
## 8885              conditions                     crew   1
## 8886              conditions                     dark   1
## 8887              conditions                  entered   1
## 8888              conditions              established   1
## 8889              conditions                excessive   1
## 8890              conditions                    exist   1
## 8891              conditions                  factors   1
## 8892              conditions                      fog   1
## 8893              conditions                   forced   1
## 8894              conditions                   french   1
## 8895              conditions                  imposed   1
## 8896              conditions                 improper   1
## 8897              conditions                 improved   1
## 8898              conditions            inappropriate   1
## 8899              conditions               incomplete   1
## 8900              conditions                incorrect   1
## 8901              conditions                involving   1
## 8902              conditions                      low   1
## 8903              conditions               microburst   1
## 8904              conditions                  minutes   1
## 8905              conditions             misjudgement   1
## 8906              conditions                   misled   1
## 8907              conditions                nantucket   1
## 8908              conditions             navigational   1
## 8909              conditions                    north   1
## 8910              conditions               overloaded   1
## 8911              conditions                     poor   1
## 8912              conditions              preliminary   1
## 8913              conditions                 probable   1
## 8914              conditions                 produced   1
## 8915              conditions                    radio   1
## 8916              conditions                 reported   1
## 8917              conditions                 required   1
## 8918              conditions                requiring   1
## 8919              conditions              restricting   1
## 8920              conditions                 returned   1
## 8921              conditions                   rumors   1
## 8922              conditions                   severe   1
## 8923              conditions                     snow   1
## 8924              conditions                   static   1
## 8925              conditions             subsequently   1
## 8926              conditions                   sudden   1
## 8927              conditions                 supplied   1
## 8928              conditions                suspected   1
## 8929              conditions            thunderstorms   1
## 8930              conditions                      u.s   1
## 8931              conditions                undershot   1
## 8932              conditions                  weather   1
## 8933              conditions                windshear   1
## 8934              conditions                    worse   1
## 8935          conditions.the                 aircraft   1
## 8936               conditons              controllled   1
## 8937               conditons                  failure   1
## 8938               conditons                    pilot   1
## 8939               condtions                 crashing   1
## 8940               condtions                     fuel   1
## 8941               condtions                    icing   1
## 8942               condtions                 improved   1
## 8943               condtions                  shortly   1
## 8944               condtions                   struck   1
## 8945               conducted                     user   1
## 8946              conducting                   aerial   1
## 8947              conducting                exercises   1
## 8948              conducting                      sky   1
## 8949              conducting                 training   1
## 8950               conductor                    guido   1
## 8951                    cone                  sheared   1
## 8952          configueration                  crashed   1
## 8953          configueration                    plane   1
## 8954           configuration                  brought   1
## 8955           configuration                  causing   1
## 8956           configuration                  crashed   1
## 8957           configuration               officially   1
## 8958               configure                 aircraft   1
## 8959              configured                airplanes   1
## 8960               confirmed              established   1
## 8961                conflict                    alert   1
## 8962             conflicting                     fire   1
## 8963             conflicting                  reports   1
## 8964             conflicting                  shortly   1
## 8965             conflicting                     wind   1
## 8966                 confuse                   pilots   1
## 8967                confused                   mental   1
## 8968               confusing                exchanges   1
## 8969               confusing                 response   1
## 8970               confusing             transmission   1
## 8971                   congo                   border   1
## 8972                   congo                    river   1
## 8973               congolese                      air   1
## 8974               congolese             neighborhood   1
## 8975                congress                   leader   1
## 8976             congressman                ildefonso   1
## 8977             congressman                     nick   1
## 8978             connecticut                    river   1
## 8979              connection                      led   1
## 8980               connector                    clamp   1
## 8981                  connie              immediately   1
## 8982                  connie                  tearing   1
## 8983                 conrete                  barrier   1
## 8984             conributing                  factors   1
## 8985                  conrol                   system   1
## 8986           consciousness                      due   1
## 8987             consecutive                     days   1
## 8988             consequence                      ran   1
## 8989              consequent                 extended   1
## 8990              consequent                    shift   1
## 8991            considerable                intensity   1
## 8992            considerably                    worse   1
## 8993              consistent                 guidance   1
## 8994                constant                operation   1
## 8995              constatine                  airport   1
## 8996           constellation                     crew   1
## 8997           constellation                   killed   1
## 8998           constellation                   pilots   1
## 8999       constellation.the                 aircraft   1
## 9000            constitution                 collided   1
## 9001            construction                equipment   1
## 9002            construction                 material   1
## 9003               consuming                  alcohol   1
## 9004             consumption                  crashed   1
## 9005             consumption                 decision   1
## 9006                 contact                      due   1
## 9007                 contact                 reported   1
## 9008               contacted                      air   1
## 9009               contacted                      atc   1
## 9010               contacted                   ground   1
## 9011               contacted                mauritius   1
## 9012               contacted                  palermo   1
## 9013               container                 exceeded   1
## 9014             contaminate                  cockpit   1
## 9015            contaminated                     fuel   1
## 9016            contaminated                     wing   1
## 9017           contamination                  causing   1
## 9018           contamination                  crashed   1
## 9019           contamination                  ditched   1
## 9020           contamination                      jet   1
## 9021           contamination                      led   1
## 9022           contamination                     loss   1
## 9023           contamination                 migrated   1
## 9024           contamination                    water   1
## 9025             contentious                   matter   1
## 9026             continental                 airlines   1
## 9027             continental                 mechanic   1
## 9028             continental                   record   1
## 9029             contingency                     plan   1
## 9030                continue                  flights   1
## 9031                continue                   flying   1
## 9032                continue               instrument   1
## 9033                continue                    night   1
## 9034               continued            airworthiness   1
## 9035               continued                 directly   1
## 9036               continued                    south   1
## 9037               continued                 straight   1
## 9038               continued              unmoderated   1
## 9039               continued             unsuccessful   1
## 9040               continued                      yaw   1
## 9041              continuous                  descent   1
## 9042              continuous                     roll   1
## 9043            continuously                  monitor   1
## 9044                  contol               inadequate   1
## 9045                 contorl                  crashed   1
## 9046                  contra                   rebels   1
## 9047                contract                   flight   1
## 9048              contracted                    trees   1
## 9049            contractor's               helicopter   1
## 9050           contradictory              instruction   1
## 9051           contradictory             instructions   1
## 9052                contrast               surrounded   1
## 9053            contributing                 directly   1
## 9054                 control                 approach   1
## 9055                 control                   batten   1
## 9056                 control                   bypass   1
## 9057                 control                   caused   1
## 9058                 control                    check   1
## 9059                 control               clearances   1
## 9060                 control                 collided   1
## 9061                 control                  company   1
## 9062                 control                couplings   1
## 9063                 control                 crashing   1
## 9064                 control                 deadline   1
## 9065                 control             deficiencies   1
## 9066                 control               developing   1
## 9067                 control               difficulty   1
## 9068                 control               disconnect   1
## 9069                 control                  ditched   1
## 9070                 control                diverting   1
## 9071                 control                  failure   1
## 9072                 control                     fire   1
## 9073                 control                     flew   1
## 9074                 control                   handle   1
## 9075                 control                     horn   1
## 9076                 control                 judgment   1
## 9077                 control                     late   1
## 9078                 control                   levers   1
## 9079                 control                    lines   1
## 9080                 control                  listing   1
## 9081                 control              malfunction   1
## 9082                 control                  officer   1
## 9083                 control                 official   1
## 9084                 control                      oil   1
## 9085                 control                 operated   1
## 9086                 control                  overran   1
## 9087                 control                    pitch   1
## 9088                 control                practices   1
## 9089                 control             precipitated   1
## 9090                 control               procedures   1
## 9091                 control                    radar   1
## 9092                 control                      ran   1
## 9093                 control                remaining   1
## 9094                 control                 reported   1
## 9095                 control         responsibilities   1
## 9096                 control                   rising   1
## 9097                 control                    servo   1
## 9098                 control                  shortly   1
## 9099                 control                situation   1
## 9100                 control                    space   1
## 9101                 control                  spindle   1
## 9102                 control                 spiraled   1
## 9103                 control                  stalled   1
## 9104                 control                    stick   1
## 9105                 control                     stop   1
## 9106                 control               strategies   1
## 9107                 control                   stress   1
## 9108                 control                 surfaces   1
## 9109                 control                   switch   1
## 9110                 control                      tab   1
## 9111                 control                    tests   1
## 9112                 control                undershot   1
## 9113                 control             undetermined   1
## 9114                 control                  unknown   1
## 9115                 control                   veered   1
## 9116                 control                    worst   1
## 9117               controled                   flight   1
## 9118         controllability                      due   1
## 9119              controlled                 airspace   1
## 9120              controlled                emergency   1
## 9121              controlled                   filght   1
## 9122              controlled                   impact   1
## 9123              controlled                   manner   1
## 9124              controlled                 military   1
## 9125              controlled                  systems   1
## 9126              controller               apparently   1
## 9127              controller                  cleared   1
## 9128              controller                   failed   1
## 9129              controller               identified   1
## 9130              controller                 improper   1
## 9131              controller               instructed   1
## 9132              controller                     lack   1
## 9133              controller                   lacked   1
## 9134              controller               mistakenly   1
## 9135              controller                 observed   1
## 9136              controller                    peter   1
## 9137              controller                 reported   1
## 9138              controller                    spoke   1
## 9139            controller's                clearance   1
## 9140            controller's                  failure   1
## 9141            controller's                 improper   1
## 9142            controller's              information   1
## 9143            controller's             instructions   1
## 9144            controller's                  minimum   1
## 9145            controller's              positioning   1
## 9146            controller's                  warning   1
## 9147            controller's                 warnings   1
## 9148             controllers                   advice   1
## 9149             controllers                 cleaning   1
## 9150             controllers                  cleared   1
## 9151             controllers                   failed   1
## 9152             controllers              immediately   1
## 9153             controllers                 improper   1
## 9154             controllers                 involved   1
## 9155             controllers                     lost   1
## 9156             controllers        misidentification   1
## 9157             controllers                 received   1
## 9158             controllers               suggestion   1
## 9159             controllers                   thereã   1
## 9160             controlling                authority   1
## 9161             controlling                      vfr   1
## 9162             controllled                   flight   1
## 9163                controls                 appeared   1
## 9164                controls                 improper   1
## 9165                controls               improperly   1
## 9166                controls                   jambed   1
## 9167                controls               maintained   1
## 9168                controls                  optical   1
## 9169                controls                     poor   1
## 9170                controls                 possibly   1
## 9171                controls               preventing   1
## 9172                controls                   rudder   1
## 9173                controls                  slowing   1
## 9174                controls                  started   1
## 9175                controls                 suddenly   1
## 9176                 convair                 collided   1
## 9177                 convair                     lack   1
## 9178                 convair                   taxing   1
## 9179              convective                 activity   1
## 9180                 convent                 operated   1
## 9181               convicted              continental   1
## 9182                convicts                confessed   1
## 9183                    cook                    inlet   1
## 9184             coordinated          troubleshooting   1
## 9185             coordinates                       46   1
## 9186            coordination                   aboard   1
## 9187            coordination                 altitude   1
## 9188            coordination                     crew   1
## 9189            coordination             insufficient   1
## 9190            coordination                      led   1
## 9191            coordination               overloaded   1
## 9192            coordination                    pilot   1
## 9193                   copas                       49   1
## 9194              copenhagen                exploding   1
## 9195                 copilot                       30   1
## 9196                 copilot                       en   1
## 9197                 copilot                  escaped   1
## 9198                 copilot                   failed   1
## 9199                 copilot                  fatally   1
## 9200                 copilot                 grabbing   1
## 9201                 copilot                   lacked   1
## 9202                 copilot                   locked   1
## 9203                 copilot               mistakenly   1
## 9204                 copilot                  radioed   1
## 9205                 copilot                   raised   1
## 9206                 copilot                responded   1
## 9207                 copilot                 survived   1
## 9208                 copilot                  whipped   1
## 9209               copilot's                  actions   1
## 9210               copilot's                    calls   1
## 9211               copilot's                  failure   1
## 9212              cordillera                 mountain   1
## 9213                 cordova                  airport   1
## 9214                   cores                 rotating   1
## 9215                coronary                   artery   1
## 9216               corporate               inspection   1
## 9217             corporation                     john   1
## 9218                   corps                       rh   1
## 9219                   corps                transport   1
## 9220                  corpus                  christi   1
## 9221                 correct             deficiencies   1
## 9222                 correct                departure   1
## 9223                 correct            discrepancies   1
## 9224                 correct                      due   1
## 9225                 correct                   engine   1
## 9226                 correct              information   1
## 9227                 correct               navigation   1
## 9228                 correct                    pitch   1
## 9229                 correct                 position   1
## 9230                 correct                    route   1
## 9231                 correct                touchdown   1
## 9232               corrected                     bill   1
## 9233               corrected                  crashed   1
## 9234               corrected                      due   1
## 9235              correction                  crashed   1
## 9236               correctly                determine   1
## 9237               correctly                  failure   1
## 9238               correctly                   follow   1
## 9239               correctly                 identify   1
## 9240               correctly              interpreted   1
## 9241               correctly                     read   1
## 9242               correctly                      set   1
## 9243               correctly               understand   1
## 9244               corrector                  crashed   1
## 9245         correspondingly                incorrect   1
## 9246                corroded                  midspar   1
## 9247                corroded                     skin   1
## 9248               corrosion                   banked   1
## 9249               corrosion                   cracks   1
## 9250               corrosion                  flutter   1
## 9251               corrosion                 measures   1
## 9252               corrosion                     pits   1
## 9253               corrosion                  pitting   1
## 9254                 corsair                  airship   1
## 9255                 corsair                      hit   1
## 9256                corsican                    coast   1
## 9257                 cortese                     road   1
## 9258               cosmonaut                     yuri   1
## 9259                  costal                   cliffs   1
## 9260                 cotonou                  airport   1
## 9261                  cotter                      pin   1
## 9262                  cotton                     bowl   1
## 9263                  cotton                    field   1
## 9264              cottonwood                    trees   1
## 9265                 couldnã                        â   1
## 9266                 counted                       35   1
## 9267                 counted                spotlight   1
## 9268                 counter                     drug   1
## 9269                 counter                narcotics   1
## 9270                 counter                terrorism   1
## 9271                 counter                     type   1
## 9272                 country                   flight   1
## 9273                 country                  western   1
## 9274                 coupled                 approach   1
## 9275                 coupled                      ils   1
## 9276               couplings                resulting   1
## 9277                   court                  battles   1
## 9278                   court                    judge   1
## 9279                   court               martialled   1
## 9280                   court                 reversed   1
## 9281                   court                sentenced   1
## 9282                   court                  shortly   1
## 9283                   court                    trial   1
## 9284                   cover                  crashed   1
## 9285                   cover                  existed   1
## 9286                   cover                hazardous   1
## 9287                   cover                 material   1
## 9288                   cover               negatively   1
## 9289                   cover                    split   1
## 9290                 covered                    cerro   1
## 9291                 covered                       el   1
## 9292                 covered                  glacial   1
## 9293                 covered                   ground   1
## 9294                 covered                     hill   1
## 9295                 covered                   kolyma   1
## 9296                 covered                     lake   1
## 9297                 covered                 medicine   1
## 9298                 covered              mountainous   1
## 9299                 covered                mountains   1
## 9300                 covered             mountainside   1
## 9301                 covered                   object   1
## 9302                 covered                     peak   1
## 9303                 covered                    power   1
## 9304                 covered                    rocky   1
## 9305                 covered                  terrain   1
## 9306                 covered                  volcano   1
## 9307                     cow                  crashed   1
## 9308                  cowboy                    copas   1
## 9309                  cowboy                  killled   1
## 9310                    cowl                    flaps   1
## 9311                   cox's                    bazar   1
## 9312                   crack              originating   1
## 9313                  cracks               attributed   1
## 9314                  cracks                      due   1
## 9315                  cracks                   formed   1
## 9316                  cracks                 remained   1
## 9317                   crane                     boom   1
## 9318                   crane                    crane   1
## 9319                   crane                  crashed   1
## 9320                   crane                 operator   1
## 9321              crankshaft               inadequate   1
## 9322              crankshaft                 ruptured   1
## 9323                   crash                       10   1
## 9324                   crash                      125   1
## 9325                   crash                      300   1
## 9326                   crash                       32   1
## 9327                   crash                       50   1
## 9328                   crash                       67   1
## 9329                   crash                    break   1
## 9330                   crash                   cashed   1
## 9331                   crash             catastrophic   1
## 9332                   crash                   damage   1
## 9333                   crash                  earlier   1
## 9334                   crash                       en   1
## 9335                   crash                  failure   1
## 9336                   crash                     gene   1
## 9337                   crash                     half   1
## 9338                   crash                    icing   1
## 9339                   crash                 ignition   1
## 9340                   crash               inadequate   1
## 9341                   crash                including   1
## 9342                   crash            investigation   1
## 9343                   crash                involving   1
## 9344                   crash                     lack   1
## 9345                   crash                     land   1
## 9346                   crash                mcdonnell   1
## 9347                   crash                  putting   1
## 9348                   crash                  records   1
## 9349                   crash                 reported   1
## 9350                   crash                 resulted   1
## 9351                   crash                resulting   1
## 9352                   crash                 sakhalin   1
## 9353                   crash                      san   1
## 9354                   crash                     shot   1
## 9355                   crash                  started   1
## 9356                   crash                   strong   1
## 9357                   crash              superficial   1
## 9358                   crash                      ten   1
## 9359                   crash               unexpected   1
## 9360                   crash                    vesna   1
## 9361                   crash                 victimsã   1
## 9362                  crashd               mechanical   1
## 9363                 crashed                      0.5   1
## 9364                 crashed                      0.7   1
## 9365                 crashed                    1,000   1
## 9366                 crashed                    1,090   1
## 9367                 crashed                    1,450   1
## 9368                 crashed                    1,600   1
## 9369                 crashed                   1,600m   1
## 9370                 crashed                   1,700m   1
## 9371                 crashed                    1,875   1
## 9372                 crashed                      100   1
## 9373                 crashed                       11   1
## 9374                 crashed                     12.5   1
## 9375                 crashed                     13.6   1
## 9376                 crashed                      150   1
## 9377                 crashed                       16   1
## 9378                 crashed                       17   1
## 9379                 crashed                       19   1
## 9380                 crashed                    2,500   1
## 9381                 crashed                    2,650   1
## 9382                 crashed                    2,900   1
## 9383                 crashed                    2.5km   1
## 9384                 crashed                      2.8   1
## 9385                 crashed                       23   1
## 9386                 crashed                       25   1
## 9387                 crashed                    3,300   1
## 9388                 crashed                      3.5   1
## 9389                 crashed                    3.5km   1
## 9390                 crashed                       37   1
## 9391                 crashed                    4,000   1
## 9392                 crashed                      4.4   1
## 9393                 crashed                      4.5   1
## 9394                 crashed                       45   1
## 9395                 crashed                       70   1
## 9396                 crashed                      700   1
## 9397                 crashed                     700m   1
## 9398                 crashed                      800   1
## 9399                 crashed                     84km   1
## 9400                 crashed                       87   1
## 9401                 crashed                      8km   1
## 9402                 crashed                      9.7   1
## 9403                 crashed                      900   1
## 9404                 crashed                       92   1
## 9405                 crashed                 adjacent   1
## 9406                 crashed                 aircraft   1
## 9407                 crashed                 american   1
## 9408                 crashed             asymmetrical   1
## 9409                 crashed                      atc   1
## 9410                 crashed                attempted   1
## 9411                 crashed               attempting   1
## 9412                 crashed                     blew   1
## 9413                 crashed                bronislaw   1
## 9414                 crashed                   burned   1
## 9415                 crashed                    burst   1
## 9416                 crashed               carburetor   1
## 9417                 crashed             carelessness   1
## 9418                 crashed                    cargo   1
## 9419                 crashed                   cashed   1
## 9420                 crashed                 clipping   1
## 9421                 crashed                 collided   1
## 9422                 crashed                 complete   1
## 9423                 crashed                continued   1
## 9424                 crashed              disappeared   1
## 9425                 crashed                    dived   1
## 9426                 crashed                     east   1
## 9427                 crashed                 elevator   1
## 9428                 crashed                encounted   1
## 9429                 crashed                    error   1
## 9430                 crashed                 exploded   1
## 9431                 crashed                extremely   1
## 9432                 crashed                   floats   1
## 9433                 crashed                      fog   1
## 9434                 crashed               helicopter   1
## 9435                 crashed                      ice   1
## 9436                 crashed              immediately   1
## 9437                 crashed              inadvertent   1
## 9438                 crashed               instrument   1
## 9439                 crashed            investigation   1
## 9440                 crashed                 loosened   1
## 9441                 crashed                     lost   1
## 9442                 crashed              malfunction   1
## 9443                 crashed           malfunctioning   1
## 9444                 crashed                   midair   1
## 9445                 crashed                   midway   1
## 9446                 crashed                  minutes   1
## 9447                 crashed                  missing   1
## 9448                 crashed                  moments   1
## 9449                 crashed                northeast   1
## 9450                 crashed                     nose   1
## 9451                 crashed                 occurred   1
## 9452                 crashed                 offshore   1
## 9453                 crashed               overloaded   1
## 9454                 crashed               overturned   1
## 9455                 crashed                     past   1
## 9456                 crashed                    pilot   1
## 9457                 crashed                  pilot's   1
## 9458                 crashed                     poor   1
## 9459                 crashed                   potter   1
## 9460                 crashed                premature   1
## 9461                 crashed                   runway   1
## 9462                 crashed               separation   1
## 9463                 crashed                 shifting   1
## 9464                 crashed                  sources   1
## 9465                 crashed                splitting   1
## 9466                 crashed                      ssw   1
## 9467                 crashed                 striking   1
## 9468                 crashed                 suffered   1
## 9469                 crashed                       sw   1
## 9470                 crashed                      ten   1
## 9471                 crashed                  terrain   1
## 9472                 crashed                 trailing   1
## 9473                 crashed                   twelve   1
## 9474                 crashed                   twenty   1
## 9475                 crashed               unexpected   1
## 9476                 crashed              unexplained   1
## 9477                 crashed                     west   1
## 9478                 crashed                   wheels   1
## 9479                 crashed                   whille   1
## 9480                 crashed                windshear   1
## 9481                 crashed                 wreckage   1
## 9482             crashed.the               loadmaster   1
## 9483                crashing                       20   1
## 9484                crashing                        3   1
## 9485                crashing              cooperation   1
## 9486                crashing                  shortly   1
## 9487                  crater                       25   1
## 9488                  crater                    kauai   1
## 9489                  crater                  unknown   1
## 9490                  crater                     wall   1
## 9491                   cream                   parlor   1
## 9492                 created                   unsafe   1
## 9493                creating                excessive   1
## 9494                   creek                   coming   1
## 9495                   creek                  crashed   1
## 9496                   creek                    ridge   1
## 9497                    crew                        2   1
## 9498                    crew                        3   1
## 9499                    crew               accidently   1
## 9500                    crew             acknowledged   1
## 9501                    crew                   action   1
## 9502                    crew                  actions   1
## 9503                    crew                activated   1
## 9504                    crew                    added   1
## 9505                    crew               apparently   1
## 9506                    crew                 attended   1
## 9507                    crew                believing   1
## 9508                    crew                  british   1
## 9509                    crew                    broke   1
## 9510                    crew                  brought   1
## 9511                    crew                  climbed   1
## 9512                    crew                 complied   1
## 9513                    crew                conducted   1
## 9514                    crew                  couldnã   1
## 9515                    crew                     crew   1
## 9516                    crew             deliberately   1
## 9517                    crew                 deployed   1
## 9518                    crew                  descent   1
## 9519                    crew               descovered   1
## 9520                    crew                    didnã   1
## 9521                    crew               discharged   1
## 9522                    crew                 ditching   1
## 9523                    crew                   divert   1
## 9524                    crew                    drank   1
## 9525                    crew                  entered   1
## 9526                    crew                   errors   1
## 9527                    crew                executing   1
## 9528                    crew                exercised   1
## 9529                    crew                extending   1
## 9530                    crew                  failure   1
## 9531                    crew                  feather   1
## 9532                    crew                feathered   1
## 9533                    crew                 flighing   1
## 9534                    crew                   flight   1
## 9535                    crew                    found   1
## 9536                    crew                 guidance   1
## 9537                    crew            inadvertently   1
## 9538                    crew              inattention   1
## 9539                    crew                incapable   1
## 9540                    crew                including   1
## 9541                    crew              intercepted   1
## 9542                    crew                     lack   1
## 9543                    crew                   landed   1
## 9544                    crew                      led   1
## 9545                    crew                     loss   1
## 9546                    crew                  lowered   1
## 9547                    crew           malfunctioning   1
## 9548                    crew                  managed   1
## 9549                    crew                   midair   1
## 9550                    crew           misinterpreted   1
## 9551                    crew         misunderstanding   1
## 9552                    crew            misunderstood   1
## 9553                    crew                    moved   1
## 9554                    crew             navigational   1
## 9555                    crew                neglected   1
## 9556                    crew                operating   1
## 9557                    crew                    opted   1
## 9558                    crew                      pan   1
## 9559                    crew                performed   1
## 9560                    crew                placement   1
## 9561                    crew             precipitated   1
## 9562                    crew                   pulled   1
## 9563                    crew                   pushed   1
## 9564                    crew                  reacted   1
## 9565                    crew                  reduced   1
## 9566                    crew                 reducing   1
## 9567                    crew                 released   1
## 9568                    crew                responded   1
## 9569                    crew                 response   1
## 9570                    crew                     rest   1
## 9571                    crew                 resulted   1
## 9572                    crew                retracted   1
## 9573                    crew                   rumors   1
## 9574                    crew                 selected   1
## 9575                    crew                      set   1
## 9576                    crew                  setting   1
## 9577                    crew                  shortly   1
## 9578                    crew                    spent   1
## 9579                    crew                  spotted   1
## 9580                    crew                  stalled   1
## 9581                    crew                 suddenly   1
## 9582                    crew              supervision   1
## 9583                    crew                  swerved   1
## 9584                    crew                 switched   1
## 9585                    crew                throttled   1
## 9586                    crew                  touched   1
## 9587                    crew                   unable   1
## 9588                    crew               unconcious   1
## 9589                    crew              unconscious   1
## 9590                    crew           underestimated   1
## 9591                    crew                undershot   1
## 9592                    crew                unfamilar   1
## 9593                    crew                   waited   1
## 9594                  crew's                  ability   1
## 9595                  crew's               acceptance   1
## 9596                  crew's                  actions   1
## 9597                  crew's              application   1
## 9598                  crew's                  attempt   1
## 9599                  crew's                attention   1
## 9600                  crew's                awareness   1
## 9601                  crew's                continued   1
## 9602                  crew's                  descent   1
## 9603                  crew's                disregard   1
## 9604                  crew's                  efforts   1
## 9605                  crew's                 handling   1
## 9606                  crew's                inability   1
## 9607                  crew's              inattention   1
## 9608                  crew's                     loss   1
## 9609                  crew's                   minima   1
## 9610                  crew's             misjudgement   1
## 9611                  crew's                  neglect   1
## 9612                  crew's             nonpertinent   1
## 9613                  crew's                operation   1
## 9614                  crew's           overconfidence   1
## 9615                  crew's                   oxygen   1
## 9616                  crew's              performance   1
## 9617                  crew's                     poor   1
## 9618                  crew's                 response   1
## 9619                  crew's                   rushed   1
## 9620             crewmembers                   aboard   1
## 9621                   crews                   aboard   1
## 9622                   crews                      atc   1
## 9623                   crews                attention   1
## 9624                   crews                   eleven   1
## 9625                   crews               inadequate   1
## 9626                   crews                  karachi   1
## 9627                   crews                     lack   1
## 9628                   crews                 operated   1
## 9629                   crews                 searched   1
## 9630                 cricket                  captain   1
## 9631                  crimes                  crashed   1
## 9632                criminal                  charges   1
## 9633                criminal               negligence   1
## 9634              criminally                negligent   1
## 9635                crippled                 airliner   1
## 9636                cristais                  crashed   1
## 9637               cristobal                   twenty   1
## 9638                criteria                  crashed   1
## 9639                critical                    angle   1
## 9640                critical                  ceiling   1
## 9641                critical                 climbout   1
## 9642                critical                condition   1
## 9643                critical            deterioration   1
## 9644                critical                   flight   1
## 9645                critical                   period   1
## 9646                critical             relationship   1
## 9647                critical                   sooner   1
## 9648                critical                    speed   1
## 9649                critical                 steering   1
## 9650                critical                     time   1
## 9651                critical                  weather   1
## 9652              critically                      low   1
## 9653             criticizing                 american   1
## 9654                     crm               principles   1
## 9655                croatian                extremist   1
## 9656                   croce                       30   1
## 9657                 croce's                  company   1
## 9658               crocodile                  escaped   1
## 9659               crocodile                   hidden   1
## 9660                   croix                     peak   1
## 9661                  cronje                       32   1
## 9662                   cross                 cemetery   1
## 9663                   cross                 checking   1
## 9664                   cross                  chilean   1
## 9665                   cross                  country   1
## 9666                   cross                     feed   1
## 9667                   cross                     flow   1
## 9668                   cross                overshoot   1
## 9669                   cross                reference   1
## 9670               crossfeed                  crashed   1
## 9671               crossfeed               procedures   1
## 9672                crossing                       30   1
## 9673                crossing                   impact   1
## 9674               crossover                    speed   1
## 9675              crosswinds             contributing   1
## 9676                 crowded                   market   1
## 9677                 crowded                streetcar   1
## 9678                   crown                   prince   1
## 9679                crrashed                  moments   1
## 9680                  cruces                       de   1
## 9681                 crucial                altimeter   1
## 9682                 crucial                 altitude   1
## 9683                 crucial                   flight   1
## 9684                  cruise            configuration   1
## 9685                  cruise                     ship   1
## 9686                cruising                  altiude   1
## 9687                cruising                   height   1
## 9688                cruising                      vfr   1
## 9689                 crushed                    skull   1
## 9690                 crusing                 altitude   1
## 9691                    cruz                     peak   1
## 9692                 crystal                 mountain   1
## 9693                crystals                 produced   1
## 9694                    cuba                 collided   1
## 9695                   cuban                   rebels   1
## 9696                   cubuk                     hill   1
## 9697                     cue                        2   1
## 9698                  culata                     peak   1
## 9699                  culver                       26   1
## 9700                cumanãƒâ                  airport   1
## 9701              cumulative                    sleep   1
## 9702                  cumulo                   nimbus   1
## 9703                 cumulus                   clouds   1
## 9704                   cuneo                  crashed   1
## 9705                     cup                 champion   1
## 9706                 curacao                     port   1
## 9707                curitiba                      atc   1
## 9708                curitiba                  crashed   1
## 9709                 current                  federal   1
## 9710                 current                   ground   1
## 9711                 current                  heading   1
## 9712                 current                      vfr   1
## 9713                 current                  weather   1
## 9714                currents                 buffeted   1
## 9715                currents                   droped   1
## 9716                currents              encountered   1
## 9717                  curtis                   turner   1
## 9718               customary                      qfe   1
## 9719              customized                 aircraft   1
## 9720                     cut                    power   1
## 9721                  cutoff                    flush   1
## 9722                  cutter                 campbell   1
## 9723                  cutter            pontchartrain   1
## 9724                 cutting                       46   1
## 9725                 cutting                    grass   1
## 9726               cuyapaipe                 mountain   1
## 9727                      cv                      990   1
## 9728                     cvr                    tapes   1
## 9729                 cyanide                  capsule   1
## 9730                 cyanide                     lost   1
## 9731                  cygnus                  crashed   1
## 9732                cylinder                   barrel   1
## 9733                cylinder                     blow   1
## 9734                cylinder                  crashed   1
## 9735                cylinder                      due   1
## 9736                cylinder                  exhaust   1
## 9737                cylinder                extension   1
## 9738                cylinder                  fatigue   1
## 9739                cylinder                 fracture   1
## 9740                cylinder            precipitating   1
## 9741                cylinder                     vent   1
## 9742                 cynthia                      oti   1
## 9743                 cyprien               ntaryamira   1
## 9744                      da                 aratanha   1
## 9745                      da                      lat   1
## 9746                  dadman                       45   1
## 9747                    daet                camarines   1
## 9748                     dag             hammarskjãƒâ   1
## 9749                    dahl                   killed   1
## 9750                   daily                  highway   1
## 9751                   daily                     mail   1
## 9752                   dairy                     cows   1
## 9753                    daji                 mountain   1
## 9754                   dakar                 collided   1
## 9755                   dakka                  glacier   1
## 9756                  dakota                 governor   1
## 9757                  dakota                 possibly   1
## 9758                  dakota                   twelve   1
## 9759                  dalian                  airport   1
## 9760                  dalian                      bay   1
## 9761                  dallas                  airport   1
## 9762                  dallas                    texas   1
## 9763                     dam                  crashed   1
## 9764                     dam                  landing   1
## 9765                     dam                  stalled   1
## 9766                  damage                  fflight   1
## 9767                  damage                   veered   1
## 9768                 damaged                        5   1
## 9769                 damaged                  control   1
## 9770                 damaged                     fuel   1
## 9771                 damaged               insulation   1
## 9772                 damaged                  landing   1
## 9773                 damaged                     wing   1
## 9774                damaging                     fuel   1
## 9775                damascus            international   1
## 9776                    dame                 football   1
## 9777                    damp                   runway   1
## 9778                  damper                   caused   1
## 9779                  damrey                 mountain   1
## 9780                    dana                   viking   1
## 9781                   dance                    party   1
## 9782               dangerous               conditions   1
## 9783               dangerous                   flying   1
## 9784               dangerous                   health   1
## 9785               dangerous                    icing   1
## 9786               dangerous                proximity   1
## 9787               dangerous                situation   1
## 9788               dangerous                  weather   1
## 9789                 daniish                   soccer   1
## 9790                  danish                 football   1
## 9791                    dark                  crashed   1
## 9792                darkness               electrical   1
## 9793                darkness                      fog   1
## 9794                darkness                  killing   1
## 9795                darkness                   midair   1
## 9796                darkness                premature   1
## 9797                 darling                    range   1
## 9798                dassault                  mystãƒâ   1
## 9799                    data                    glide   1
## 9800                    data                recorders   1
## 9801                    data                    shown   1
## 9802                    date                   severe   1
## 9803                   datum                  trimmer   1
## 9804                daughter                    angel   1
## 9805                   daulo                     pass   1
## 9806                   davao                  airport   1
## 9807                   davey                  allison   1
## 9808                   david                    burke   1
## 9809                     dax                       zk   1
## 9810                     day                     died   1
## 9811                     day                grounding   1
## 9812                     day                 mountain   1
## 9813                    days                  earlier   1
## 9814                    days                  juliane   1
## 9815                    days                preceding   1
## 9816                 daytime                  landing   1
## 9817                   dazed                exhausted   1
## 9818                      dc                       7b   1
## 9819                      dc                generator   1
## 9820                    dc8s                      jet   1
## 9821                      de                   azucar   1
## 9822                      de                   buenos   1
## 9823                      de                 cachimbo   1
## 9824                      de                  caracas   1
## 9825                      de                chantilly   1
## 9826                      de                    colon   1
## 9827                      de                   cumbal   1
## 9828                      de                     daji   1
## 9829                      de                       el   1
## 9830                      de                guadalupe   1
## 9831                      de                    huila   1
## 9832                      de                     iced   1
## 9833                      de                     icer   1
## 9834                      de                  janiero   1
## 9835                      de                     kino   1
## 9836                      de                  l'obiou   1
## 9837                      de                 luquillo   1
## 9838                      de                 mallorca   1
## 9839                      de               mocambique   1
## 9840                      de                   perija   1
## 9841                      de                    rodes   1
## 9842                      de                  terraba   1
## 9843                      de                valdemeca   1
## 9844                      de                    zulia   1
## 9845             deactivated                   engine   1
## 9846                    dead               passengers   1
## 9847                    dead                   rescue   1
## 9848             deadheading                      pan   1
## 9849                deadline                  crashed   1
## 9850                    dean                  forshee   1
## 9851                    dean               kilpatrick   1
## 9852                    dean                   manuel   1
## 9853                    dean                   martin   1
## 9854                    dean                     paul   1
## 9855                   death                  crashed   1
## 9856                   death                     half   1
## 9857                  debris                       14   1
## 9858                  debris                  damaged   1
## 9859                  debris                   debris   1
## 9860                  debris                    found   1
## 9861                  debris                punctured   1
## 9862                  debris                scattered   1
## 9863             decapitated                 criminal   1
## 9864                deceived                   flight   1
## 9865                december                     1970   1
## 9866                  decent                  started   1
## 9867                decision                   faulty   1
## 9868                decision                 improper   1
## 9869                    deck                    cargo   1
## 9870               declutter                     mode   1
## 9871           decompression                   crew's   1
## 9872           decompression                   damage   1
## 9873           decompression                   pulled   1
## 9874               decreased                  rapidly   1
## 9875                    deep                   crater   1
## 9876                    deep                    ditch   1
## 9877                    deep                    stall   1
## 9878                  defect                     fire   1
## 9879                  defect                    found   1
## 9880               defective                altimeter   1
## 9881               defective               artificial   1
## 9882               defective                    cabin   1
## 9883               defective                     fuel   1
## 9884               defective                     left   1
## 9885               defective                  turbine   1
## 9886                 defence                    force   1
## 9887                 defence                 squadron   1
## 9888                 defense                  command   1
## 9889                 defense                     dept   1
## 9890                 defense                    force   1
## 9891                 defense                    radar   1
## 9892                defiance                  takeoff   1
## 9893               deficient                equipment   1
## 9894               deficient              maintenance   1
## 9895               deficient                 teamwork   1
## 9896                 defined                  minimum   1
## 9897               deflected                  causing   1
## 9898               deflected                  sharply   1
## 9899                degraded                 decision   1
## 9900                degraded              performance   1
## 9901                  degree                     dive   1
## 9902                  degree                 downward   1
## 9903                  degree                   flight   1
## 9904                  degree                     left   1
## 9905                  degree                 nosedown   1
## 9906                 degrees                       13   1
## 9907                 degrees                       14   1
## 9908                 degrees                       41   1
## 9909                 degrees                       44   1
## 9910                 degrees                       49   1
## 9911                 degrees                  crashed   1
## 9912                 degrees                descended   1
## 9913                 degrees                      due   1
## 9914                 degrees                exceeding   1
## 9915                 degrees              immediately   1
## 9916                 degrees                 outbound   1
## 9917                 degrees                 position   1
## 9918                 degrees                  shortly   1
## 9919                 degrees                    south   1
## 9920                 degrees                     west   1
## 9921                   deice                     boot   1
## 9922                   deice                    boots   1
## 9923                  deicer                   system   1
## 9924                 deicing                equipment   1
## 9925                 deicing                   system   1
## 9926                  dekalb                peachtree   1
## 9927                     del                    cabre   1
## 9928                     del                  caguãƒâ   1
## 9929                     del                    cedro   1
## 9930                     del                    cerro   1
## 9931                     del                    indio   1
## 9932                     del                    monte   1
## 9933                     del                    padre   1
## 9934                     del                    plata   1
## 9935                     del                      rey   1
## 9936                 delayed                   action   1
## 9937                 delayed              application   1
## 9938                 delayed                   arming   1
## 9939                 delayed                 decision   1
## 9940                 delayed               deployment   1
## 9941                 delayed                detection   1
## 9942                 delayed                   flight   1
## 9943                 delayed                  landing   1
## 9944                 delayed              recognition   1
## 9945                 delayed               retraction   1
## 9946                 delgada                      sao   1
## 9947                    deli                  dirfted   1
## 9948              deliberate                      low   1
## 9949              deliberate                reduction   1
## 9950            deliberately                  avoided   1
## 9951            deliberately                  causing   1
## 9952            deliberately               descending   1
## 9953            deliberately              maneuvering   1
## 9954                 deliver                 supplies   1
## 9955              delivering             humanitarian   1
## 9956              delivering                 military   1
## 9957              delivering                  workers   1
## 9958                delivery                 position   1
## 9959                delivery                    valve   1
## 9960                    dell                      oro   1
## 9961                   delta                 aircraft   1
## 9962                   delta                  convair   1
## 9963                   delta                    plane   1
## 9964                   delta                   region   1
## 9965                 deluvio                       38   1
## 9966              democratic                   forces   1
## 9967              democratic                 republic   1
## 9968                    dena                       14   1
## 9969                 denmark                   midair   1
## 9970                 denmark                  stalled   1
## 9971                  dennis                     rast   1
## 9972               denpasair                     bali   1
## 9973                denpasar                   ngurah   1
## 9974               denpassar                     bali   1
## 9975                   dense                    cloud   1
## 9976                   dense             cumulonimbus   1
## 9977                   dense                    smoke   1
## 9978                   dense                   swampy   1
## 9979                   dense                   wooded   1
## 9980                   dense                    woods   1
## 9981                 densely                populated   1
## 9982                 densely                   wooded   1
## 9983                  densly                   wooded   1
## 9984                  denver                       53   1
## 9985                  denver                   center   1
## 9986                  denver                   flying   1
## 9987                  denver                stapleton   1
## 9988                departed                    adana   1
## 9989                departed                 adelaide   1
## 9990                departed              archerfield   1
## 9991                departed                      due   1
## 9992                departed                    homer   1
## 9993                departed                     hong   1
## 9994                departed                 kinshasa   1
## 9995                departed                    paris   1
## 9996                departed                vancouver   1
## 9997                departed                  vorkuta   1
## 9998               departing                    bahia   1
## 9999               departing                  caracas   1
## 10000              departing                  holding   1
## 10001              departing                      jet   1
## 10002              departing                   kariba   1
## 10003              departing                       kc   1
## 10004              departing                   merida   1
## 10005              departing                    palma   1
## 10006              departing                    perth   1
## 10007              departing                    rhein   1
## 10008              departing                   runwal   1
## 10009             department                 aviation   1
## 10010              departure                     afer   1
## 10011              departure                  airport   1
## 10012              departure                clearance   1
## 10013              departure                    climb   1
## 10014              departure                  control   1
## 10015              departure                  crashed   1
## 10016              departure                   delays   1
## 10017              departure               inadequate   1
## 10018              departure                    route   1
## 10019              departure                   struck   1
## 10020              departure                     town   1
## 10021             dependents                  crashed   1
## 10022           deplaned.one                   minute   1
## 10023               deployed                  causing   1
## 10024             deployment                      yaw   1
## 10025          depressurized                  causing   1
## 10026            deprivation                louisiana   1
## 10027                   dept                preflight   1
## 10028                  depth               perception   1
## 10029                 deputy                  defense   1
## 10030              derendorf                  setting   1
## 10031                  derry                   pulled   1
## 10032                    des                     deux   1
## 10033                    des                  rosiers   1
## 10034                    des                  sraghna   1
## 10035                descend                 altitude   1
## 10036                descend                       en   1
## 10037                descend                impacting   1
## 10038                descend            significantly   1
## 10039                descend           uncontrollably   1
## 10040              descended                 ignoring   1
## 10041              descended                      vfr   1
## 10042             descending                     bank   1
## 10043             descending               controlled   1
## 10044             descending                  failure   1
## 10045             descending                   flight   1
## 10046             descending               navigation   1
## 10047             descending                     path   1
## 10048             descending                  quickly   1
## 10049             descending                  rapidly   1
## 10050             descending                   spiral   1
## 10051             descending                  steeply   1
## 10052                descent                atlitiude   1
## 10053                descent                 attempts   1
## 10054                descent                    butte   1
## 10055                descent                   canyon   1
## 10056                descent                  causing   1
## 10057                descent                 clipping   1
## 10058                descent           disintegrating   1
## 10059                descent                   enered   1
## 10060                descent                 existing   1
## 10061                descent                   flight   1
## 10062                descent                  heading   1
## 10063                descent                    icing   1
## 10064                descent                     idle   1
## 10065                descent                indicator   1
## 10066                descent             inexperience   1
## 10067                descent                initially   1
## 10068                descent                initiated   1
## 10069                descent                     lack   1
## 10070                descent                  leading   1
## 10071                descent                     mode   1
## 10072                descent                 moisture   1
## 10073                descent               navigation   1
## 10074                descent             navigational   1
## 10075                descent                    pilot   1
## 10076                descent              prematurely   1
## 10077                descent                  profile   1
## 10078                descent                 resulted   1
## 10079                descent                  shortly   1
## 10080                descent                     shot   1
## 10081                descent                   solely   1
## 10082                descent                  stopped   1
## 10083                descent                 thinking   1
## 10084                 descet                     shot   1
## 10085             descovered                    cabin   1
## 10086                 desert                       20   1
## 10087                 desert                      3km   1
## 10088                 desert                        6   1
## 10089                 desert                       62   1
## 10090                 desert                    crash   1
## 10091                 desert               detonation   1
## 10092                 desert                      ran   1
## 10093                 desert                  shortly   1
## 10094                 desert                    storm   1
## 10095                 design               assessment   1
## 10096                 design                 capacity   1
## 10097                 design                  crashed   1
## 10098                 design                    fault   1
## 10099                 design                    loads   1
## 10100                 design                 strength   1
## 10101                 design                   stress   1
## 10102                 design               tolerances   1
## 10103              designate                   killed   1
## 10104             designated                  descent   1
## 10105             designated                gambler's   1
## 10106               designed                 aircraft   1
## 10107               designed                  crashed   1
## 10108               designer                     juan   1
## 10109               designer                  ottavio   1
## 10110                 desnse                      fog   1
## 10111                dessert                        8   1
## 10112           destabilized                 approach   1
## 10113            destination                  adverse   1
## 10114            destination                     city   1
## 10115            destination                  crashed   1
## 10116            destination                  failure   1
## 10117            destination                 montreal   1
## 10118            destination             navigational   1
## 10119            destination                    pilot   1
## 10120            destination                     poor   1
## 10121            destination                premature   1
## 10122            destination                   severe   1
## 10123            destination                      ten   1
## 10124              destroyed                        3   1
## 10125              destroyed                   boeing   1
## 10126              destroyed                  crashed   1
## 10127              destroyed                    icing   1
## 10128              destroyed           incapacitation   1
## 10129              destroyed                  killing   1
## 10130              destroyed                    pilot   1
## 10131              destroyed                   unable   1
## 10132             destroying                       23   1
## 10133             destroying                        3   1
## 10134             destroying                buildings   1
## 10135             destroying                   eleven   1
## 10136            destruction                 severing   1
## 10137            destructive                  testing   1
## 10138                 detach                  crashed   1
## 10139                 detect                 visually   1
## 10140               detected                     crew   1
## 10141              detecting                     unit   1
## 10142              detection             capabalities   1
## 10143              detection               technology   1
## 10144              detergent                  crashed   1
## 10145          deteriorating                condtions   1
## 10146          deteriorating                     fuel   1
## 10147          deteriorating                  rapidly   1
## 10148              determine               accurately   1
## 10149              determine                   proper   1
## 10150             determined                colllided   1
## 10151             determined             contributing   1
## 10152             determined               overloaded   1
## 10153             determined                 possibly   1
## 10154             determined                 shutting   1
## 10155            determining                 attitude   1
## 10156            determining               visibility   1
## 10157              detonated                 grenades   1
## 10158                detroit                 michigan   1
## 10159            deuterating                  weather   1
## 10160                   deux                  bassins   1
## 10161                develop                  control   1
## 10162                develop                    power   1
## 10163                develop                  unequal   1
## 10164              developed                  landing   1
## 10165              developed               mechanical   1
## 10166              developed                    prior   1
## 10167             developing                     fuel   1
## 10168             developing            significantly   1
## 10169               deviated                       60   1
## 10170              deviation                      led   1
## 10171             deviations                 hindered   1
## 10172                 device                  crashed   1
## 10173                 device                 designed   1
## 10174                 device             eyewitnesses   1
## 10175                devices              immediately   1
## 10176                   dfdr                     data   1
## 10177                dhahran                  airport   1
## 10178                    dhc                        6   1
## 10179                   dhc3                    otter   1
## 10180               diabetes                  managed   1
## 10181               diameter                      due   1
## 10182              diaphragm                   failed   1
## 10183                   dick                  ebersol   1
## 10184                  didnã                        â   1
## 10185                   died                       20   1
## 10186                   died                       31   1
## 10187                   died                        5   1
## 10188                   died                      due   1
## 10189                   died                    prior   1
## 10190                   died                  stalled   1
## 10191                  diego                 chargers   1
## 10192                  diego                  clipped   1
## 10193                  diego                   county   1
## 10194           differential                  braking   1
## 10195              difficult            circumstances   1
## 10196           difficulties                  crashed   1
## 10197           difficulties                      due   1
## 10198           difficulties                   engine   1
## 10199           difficulties                     fuel   1
## 10200           difficulties                   jammed   1
## 10201             difficulty              controlling   1
## 10202             difficulty                  gaining   1
## 10203             difficulty                  keeping   1
## 10204                 digboi                 mountain   1
## 10205                   dike                    broke   1
## 10206               diligent                  lookout   1
## 10207             dillingham                  airport   1
## 10208                   dinh                       le   1
## 10209                   dino                   martin   1
## 10210                dioxide                   danger   1
## 10211                 direct                 approach   1
## 10212                 direct                  landing   1
## 10213                 direct                      vor   1
## 10214              direction                depriving   1
## 10215              direction                   ensued   1
## 10216              direction               eventually   1
## 10217              direction                    heavy   1
## 10218              direction                 opposite   1
## 10219              direction                 resulted   1
## 10220              direction                witnesses   1
## 10221            directional                   beacon   1
## 10222            directional                  heading   1
## 10223              directive                requiring   1
## 10224             directives                requiring   1
## 10225               directly                    ahead   1
## 10226               directly                  alerted   1
## 10227               directly                 observed   1
## 10228               director                    georg   1
## 10229               director                  horizon   1
## 10230               director                indicator   1
## 10231               director                 producer   1
## 10232              dirigible                    akron   1
## 10233              dirigible                 cruising   1
## 10234            dirigible's               commanding   1
## 10235                   dirt                     bank   1
## 10236                   dirt                   runway   1
## 10237                   dirt                strip.the   1
## 10238               disabled               artificial   1
## 10239               disabled                   engine   1
## 10240               disabled                 position   1
## 10241           disagreement               indication   1
## 10242            disappeared            approximately   1
## 10243            disappeared              disappeared   1
## 10244            disappeared                      mid   1
## 10245               disaster                   caused   1
## 10246               disaster                   relief   1
## 10247               disaster                   rescue   1
## 10248              discarded                cigarette   1
## 10249              discharge                    wicks   1
## 10250             discharged                batteries   1
## 10251             discharged                   carbon   1
## 10252             discharged                  setting   1
## 10253            discharging               passengers   1
## 10254             discipline                consuming   1
## 10255             discipline                  fatigue   1
## 10256             discipline                   flight   1
## 10257             discipline                 improper   1
## 10258             discipline                     poor   1
## 10259            discontinue                  descent   1
## 10260            discontinue                  takeoff   1
## 10261            discontinue                   visual   1
## 10262            discontinue                      vor   1
## 10263           discontinued                      ifr   1
## 10264           discontinued                  takeoff   1
## 10265             discovered                        8   1
## 10266          discrepancies                   logged   1
## 10267             discussion                 revealed   1
## 10268                disease                      ran   1
## 10269              disengage                  causing   1
## 10270           disintegrate                   pieces   1
## 10271          disintegrated                       10   1
## 10272          disintegrated                      atc   1
## 10273          disintegrated                  causing   1
## 10274          disintegrated                 damaging   1
## 10275          disintegrated                      due   1
## 10276          disintegrated                   losing   1
## 10277          disintegrated                  shortly   1
## 10278          disintegrated                  tearing   1
## 10279          disintegrated                 wreckage   1
## 10280         disintegrating                 aircraft   1
## 10281                   disk                   failed   1
## 10282                   disk               separation   1
## 10283              disobeyed             instructions   1
## 10284         disorientation              contributed   1
## 10285         disorientation                  crashed   1
## 10286         disorientation                  ditched   1
## 10287         disorientation                  factors   1
## 10288         disorientation                 improper   1
## 10289         disorientation                     lack   1
## 10290         disorientation                  leading   1
## 10291         disorientation                    pilot   1
## 10292         disorientation                  stalled   1
## 10293            disoriented                     crew   1
## 10294               dispatch               procedures   1
## 10295             dispatched                illegally   1
## 10296            dispatchers                  charged   1
## 10297              displaced                threshold   1
## 10298                display               manoeuvres   1
## 10299                display                 superior   1
## 10300                display                    wrong   1
## 10301            disregarded                 decision   1
## 10302            disregarded                 warnings   1
## 10303            disseminate              unambiguous   1
## 10304             dissenting                   report   1
## 10305            dissipating                    stage   1
## 10306         dissymmetrical                   flight   1
## 10307               distance                      900   1
## 10308               distance                 altitude   1
## 10309               distance             calculations   1
## 10310               distance                   flying   1
## 10311               distance                measuring   1
## 10312               distance                remaining   1
## 10313            distraction                        4   1
## 10314           distractions              experienced   1
## 10315             distribute                     food   1
## 10316               district                 bursting   1
## 10317               district                    court   1
## 10318                  ditch                     cart   1
## 10319                ditched                        1   1
## 10320                ditched                     1.25   1
## 10321                ditched                       35   1
## 10322                ditched                      700   1
## 10323                ditched                    broke   1
## 10324                ditched             successfully   1
## 10325               ditching                      1.5   1
## 10326               ditching                  crashed   1
## 10327                   dive                        8   1
## 10328                   dive               apparently   1
## 10329                   dive                    broke   1
## 10330                   dive             contributing   1
## 10331                   dive                 crashing   1
## 10332                   dive                 executed   1
## 10333                   dive                  hitting   1
## 10334                   dive                 inverted   1
## 10335                   dive                      led   1
## 10336                   dive                resulting   1
## 10337                  dived                 crashing   1
## 10338                  dived                 inverted   1
## 10339                  diver                   robert   1
## 10340              diverging                    roads   1
## 10341              diversion                    canal   1
## 10342               diverted                       en   1
## 10343              diverting                      due   1
## 10344                 diving                exercises   1
## 10345                 diving                maneuvers   1
## 10346                 diving                    plane   1
## 10347                  djall                 mountain   1
## 10348                 djebel                       ta   1
## 10349                 djerba                  tunisia   1
## 10350                    dme                      due   1
## 10351                    dme                equipment   1
## 10352                    dme                   missed   1
## 10353                    dme                    south   1
## 10354               document                  monitor   1
## 10355          documentation                        3   1
## 10356          documentation                  breakup   1
## 10357                  dolly                  sinatra   1
## 10358               dolorosa                 district   1
## 10359                   dome                northeast   1
## 10360                   dome                     ring   1
## 10361               domestic                scheduled   1
## 10362                domingo                   unable   1
## 10363             domodedovo                  airport   1
## 10364                    don                     repo   1
## 10365                 donald                     duke   1
## 10366                 dondon                       21   1
## 10367                donetsk                  ukraine   1
## 10368                   dong                       ha   1
## 10369                  donna                     reed   1
## 10370                 donner                   summit   1
## 10371                 doomed                   flight   1
## 10372                   door                       1r   1
## 10373                   door                     blew   1
## 10374                   door                  closure   1
## 10375                   door             contributing   1
## 10376                   door                  control   1
## 10377                   door                 exploded   1
## 10378                   door                 fifiteen   1
## 10379                   door                  killing   1
## 10380                   door                  latches   1
## 10381                   door                     lock   1
## 10382                   door                 openings   1
## 10383                   door                   pillow   1
## 10384                   door                 resulted   1
## 10385                   door                  shortly   1
## 10386                  doors                 breaking   1
## 10387                 dora's                     seat   1
## 10388                   dore                  shortly   1
## 10389                dormant                  volcano   1
## 10390                dorothy                     hunt   1
## 10391               dortmund                    pilot   1
## 10392                 dottie                     west   1
## 10393                   doty                 recently   1
## 10394                 douala                  airport   1
## 10395                 douala                 wreckage   1
## 10396             douangchay                  phichit   1
## 10397                 double                propeller   1
## 10398                douglas                       dc   1
## 10399                douglas                   denied   1
## 10400                douglas            international   1
## 10401                douglas                       md   1
## 10402                  dover                      afb   1
## 10403             dovestones               greenfield   1
## 10404              downdraft                 activity   1
## 10405              downdraft                   caused   1
## 10406              downdraft               conditions   1
## 10407              downdraft                 crashing   1
## 10408              downdraft              encountered   1
## 10409              downdraft              immediately   1
## 10410              downdraft                   missed   1
## 10411             downdrafts                  crashed   1
## 10412               downward                 attitude   1
## 10413               downward                 movement   1
## 10414               downward                    slope   1
## 10415               downwind                      leg   1
## 10416               downwind                 overshot   1
## 10417                  dozen                   houses   1
## 10418                  dozen                    times   1
## 10419                    dqf                   landed   1
## 10420                     dr                 jonathan   1
## 10421                     dr                     voss   1
## 10422                   drag                   caused   1
## 10423                   drag                      due   1
## 10424                   drag                     loss   1
## 10425                   drag                resulting   1
## 10426                   drag                    strip   1
## 10427               dragging                   caused   1
## 10428                  drain                     plug   1
## 10429               drainage                    canal   1
## 10430            drakensberg                mountains   1
## 10431                  drank                  alcohol   1
## 10432                 drasin                       34   1
## 10433                  drift                        3   1
## 10434                  drift               correction   1
## 10435                  drift                  crashed   1
## 10436                  drift                      due   1
## 10437                drifted                       50   1
## 10438                drifted                    north   1
## 10439                drifted                unlighted   1
## 10440               drifting                       20   1
## 10441               drifting                       30   1
## 10442               drifting                      fog   1
## 10443              drillilng                 platform   1
## 10444               drilling                      rig   1
## 10445               drilling                     site   1
## 10446                  drive                  failure   1
## 10447                  drive                     fuel   1
## 10448                  drive                     gear   1
## 10449                  drive                    quill   1
## 10450                 driven                     gyro   1
## 10451                 driver                  crossed   1
## 10452                 driver                   curtis   1
## 10453                 driver                    davey   1
## 10454                 driver                   graham   1
## 10455                driving                     rain   1
## 10456                driving                rainstorm   1
## 10457                driving                     snow   1
## 10458                drizzle                    delay   1
## 10459                drizzle                     rain   1
## 10460                   drop                  crashed   1
## 10461                   drop                  mission   1
## 10462                   drop                  sharply   1
## 10463                dropped                  heavily   1
## 10464               dropping                  ballast   1
## 10465               dropping                  mission   1
## 10466               dropping                 supplies   1
## 10467                drought                 stricken   1
## 10468                drowned                      due   1
## 10469                drowned                  failure   1
## 10470                drowned                     poor   1
## 10471                drowned                  shortly   1
## 10472                drowned                     tail   1
## 10473               drowning                  failure   1
## 10474                   drug                   cartel   1
## 10475                   drug                      jet   1
## 10476                   drug                  leaving   1
## 10477                   drug                  mission   1
## 10478                   drug                producing   1
## 10479                   drug                smuggling   1
## 10480                   drug              traffickers   1
## 10481                  drugs                  factors   1
## 10482                   drum                     roll   1
## 10483                drunken                  escaped   1
## 10484                drunken                   police   1
## 10485                    dry                     cell   1
## 10486                    dry                   flying   1
## 10487                    dry                     fuel   1
## 10488                    dry                    grass   1
## 10489                    dry                   leased   1
## 10490                 dryden                  ontario   1
## 10491                   dual                   flight   1
## 10492                  dubai                  airport   1
## 10493                  dubai                incorrect   1
## 10494                  dubai                    tower   1
## 10495                dubroff              accompanied   1
## 10496                    duc                civilians   1
## 10497                    due                    south   1
## 10498                    due                      top   1
## 10499                   duel                   engine   1
## 10500                    duh                     peak   1
## 10501                  dummy                   target   1
## 10502                 dumont                  airport   1
## 10503                   dump                    chute   1
## 10504                  dunes                 improper   1
## 10505               durining                 daylight   1
## 10506                durzana                      air   1
## 10507                   dust                  failure   1
## 10508                  dusty                      low   1
## 10509                  dutch                     army   1
## 10510                  dutch                      boy   1
## 10511                  dutch                    coast   1
## 10512                  dutch                     crew   1
## 10513                  dutch                 engineer   1
## 10514                  dutch                   soccer   1
## 10515                  dutch                     town   1
## 10516                  dutch                     word   1
## 10517                 duties                  crashed   1
## 10518                 duties                  pilot's   1
## 10519                 duties                   pilots   1
## 10520                   duty                  crashed   1
## 10521                   duty                     crew   1
## 10522                   duty                    pilot   1
## 10523                  dyess                      air   1
## 10524                dynamic                     lift   1
## 10525                 dynamo                   moscow   1
## 10526                  eagle               management   1
## 10527                  eagle                 mountain   1
## 10528                  eagle                     rock   1
## 10529                    eal                  captain   1
## 10530                    eal                    plane   1
## 10531                earhart                       40   1
## 10532                   earl                  carroll   1
## 10533                earlier                 accident   1
## 10534                earlier                  carried   1
## 10535                earlier                   midair   1
## 10536                earlier                    shift   1
## 10537                earlier                   struck   1
## 10538                  earth                      700   1
## 10539                  earth                 bursting   1
## 10540                  earth                      dam   1
## 10541                  earth               embankment   1
## 10542                  earth                    icing   1
## 10543                  earth                    mound   1
## 10544                  earth                   moving   1
## 10545                  earth                     nose   1
## 10546                  earth                  plowing   1
## 10547             earthquake                  crashed   1
## 10548             earthquake                 stricken   1
## 10549             earthquake                  victims   1
## 10550                    eas               industries   1
## 10551                   east                      leg   1
## 10552                   east                   slopes   1
## 10553                   east                     sout   1
## 10554               easterly                  heading   1
## 10555                eastern                    burma   1
## 10556                eastern                  ecuador   1
## 10557                eastern                employees   1
## 10558                eastern                outskirts   1
## 10559                eastern                  section   1
## 10560                eastern                    slope   1
## 10561                eastern                   slopes   1
## 10562              eastleigh                      air   1
## 10563                ecuador                colombian   1
## 10564                ecuador               earthquake   1
## 10565                ecuador                     flew   1
## 10566             ecuadorian                   border   1
## 10567                 edelca                president   1
## 10568                   edge                 assembly   1
## 10569                   edge                  control   1
## 10570                   edge                  heavily   1
## 10571                   edge                   lights   1
## 10572                   edge                  section   1
## 10573                eduardo                    gomes   1
## 10574                 edward             rickenbacker   1
## 10575                  eelam                   rebels   1
## 10576                 effect                 damaging   1
## 10577                 effect                     flew   1
## 10578               effected                  crashed   1
## 10579               effected                     lost   1
## 10580              effective                  control   1
## 10581              effective                   engine   1
## 10582              effective                  lookout   1
## 10583              effective               separation   1
## 10584            effectively                 excluded   1
## 10585            effectively                  limited   1
## 10586            effectively                   manage   1
## 10587            effectively                     shut   1
## 10588                effects                      hit   1
## 10589             efficiency             contributing   1
## 10590                  egypt                spiritual   1
## 10591                  egypt                   thirty   1
## 10592               egyptian                    coast   1
## 10593               egyptian                   forces   1
## 10594               egyptian                 princess   1
## 10595               eighteen                   killed   1
## 10596              eindhoven                      air   1
## 10597             eisenhower                   powers   1
## 10598                     el                     alto   1
## 10599                     el             arrastradero   1
## 10600                     el                 callejon   1
## 10601                     el                  deluvio   1
## 10602                     el                 junquito   1
## 10603                     el                   kelãƒâ   1
## 10604                     el               manzanillo   1
## 10605                     el                  ovejero   1
## 10606                     el                    rucio   1
## 10607                     el                   sabino   1
## 10608                     el                   saluda   1
## 10609                     el                 salvador   1
## 10610                     el                   sheikh   1
## 10611                     el                 silencio   1
## 10612                     el                 tabalazo   1
## 10613                     el                    tigre   1
## 10614                     el                    yopal   1
## 10615                     el                   yunque   1
## 10616                 elands                      bay   1
## 10617                elastic                   limits   1
## 10618               elavator                     gust   1
## 10619                  elbow                 mountain   1
## 10620                elderly                passenger   1
## 10621                elderly                    woman   1
## 10622               electric                 elevator   1
## 10623               electric                    lines   1
## 10624               electric             transmission   1
## 10625             electrical                actuation   1
## 10626             electrical                  arching   1
## 10627             electrical                  contact   1
## 10628             electrical                       dc   1
## 10629             electrical                     mast   1
## 10630             electrical                    panel   1
## 10631             electrical                   rudder   1
## 10632             electrical                  severed   1
## 10633            electricity                     pole   1
## 10634        electromagnetic                phenomena   1
## 10635             electronic                equipment   1
## 10636             electronic                  locator   1
## 10637            electronics                  crashed   1
## 10638             elementary                   school   1
## 10639               elephant                     pass   1
## 10640               elevated                  western   1
## 10641               elevator                 assembly   1
## 10642               elevator                    boost   1
## 10643               elevator                    cable   1
## 10644               elevator                   cables   1
## 10645               elevator              contributed   1
## 10646               elevator                 controls   1
## 10647               elevator                  crashed   1
## 10648               elevator                     crew   1
## 10649               elevator               deflection   1
## 10650               elevator            effectiveness   1
## 10651               elevator                jackscrew   1
## 10652               elevator                 operator   1
## 10653               elevator                    shaft   1
## 10654               elevator                    spars   1
## 10655               elevator                   spring   1
## 10656               elevator                   system   1
## 10657               elevator                      tab   1
## 10658               elevator                   torque   1
## 10659               elevator                   travel   1
## 10660              elevators                    broke   1
## 10661              elevators                  control   1
## 10662              elevators              immobilized   1
## 10663              elevators                   locked   1
## 10664                 eleven                    homes   1
## 10665                 eleven                  minutes   1
## 10666             eliminated             insufficient   1
## 10667                    elk                    river   1
## 10668                   elko                  airport   1
## 10669                   ella                     lake   1
## 10670                 elliot                  croce's   1
## 10671                 elliot                roosevelt   1
## 10672              ellsworth                      air   1
## 10673              elmendorf                      afb   1
## 10674              elmendorf                      air   1
## 10675                elstree                  airport   1
## 10676                    emb                      135   1
## 10677                    emb                    135bj   1
## 10678             embankment                      328   1
## 10679             embankment                 adjacent   1
## 10680             embankment                captain's   1
## 10681             embankment                   caught   1
## 10682             embankment                  crashed   1
## 10683               embedded                   cumulo   1
## 10684                embraer                      emb   1
## 10685              embraer's                   manual   1
## 10686               emeraude                  crashed   1
## 10687              emergency                 approach   1
## 10688              emergency                    belly   1
## 10689              emergency                    brake   1
## 10690              emergency                   brakes   1
## 10691              emergency                  braking   1
## 10692              emergency                 briefing   1
## 10693              emergency               conditions   1
## 10694              emergency               consisting   1
## 10695              emergency                    crews   1
## 10696              emergency                  daytime   1
## 10697              emergency                   decent   1
## 10698              emergency                developed   1
## 10699              emergency                   drills   1
## 10700              emergency                   escape   1
## 10701              emergency               evacuation   1
## 10702              emergency                 exercise   1
## 10703              emergency                   forced   1
## 10704              emergency                frequency   1
## 10705              emergency                    hatch   1
## 10706              emergency              landing.the   1
## 10707              emergency                 landings   1
## 10708              emergency                      led   1
## 10709              emergency                 maneuver   1
## 10710              emergency                 occurred   1
## 10711              emergency                operation   1
## 10712              emergency                 planning   1
## 10713              emergency                     poor   1
## 10714              emergency               procedural   1
## 10715              emergency                   pullup   1
## 10716              emergency                reporting   1
## 10717              emergency                  shortly   1
## 10718              emergency                     shot   1
## 10719              emergency                     shut   1
## 10720              emergency               situations   1
## 10721              emergency               suspension   1
## 10722              emergency                  takeoff   1
## 10723              emergency              transponder   1
## 10724              emergency                  vehicle   1
## 10725              emergency                 vehicles   1
## 10726              emergency                   wheels   1
## 10727               emitting                    smoke   1
## 10728              empennage                  crashed   1
## 10729              empennage                 surfaces   1
## 10730                emperor                 kanishka   1
## 10731               employee                    david   1
## 10732                  empty                buildings   1
## 10733                  empty                   center   1
## 10734                  empty                     tank   1
## 10735                    ems                 dispatch   1
## 10736                    ems                  mission   1
## 10737               emsemble                    choir   1
## 10738                     en                     rote   1
## 10739               enclosed                    cabin   1
## 10740              encounted                      bad   1
## 10741            encounteing                      low   1
## 10742              encounter              immediately   1
## 10743              encounter                    rough   1
## 10744            encountered                      bad   1
## 10745            encountered                    dense   1
## 10746            encountered                 drifting   1
## 10747            encountered                   engine   1
## 10748            encountered                  extreme   1
## 10749            encountered                   forced   1
## 10750            encountered               inadequate   1
## 10751            encountered                    local   1
## 10752            encountered                     lost   1
## 10753            encountered              supercooled   1
## 10754            encountered            thunderstorms   1
## 10755            encountered                  violent   1
## 10756           encountering                       60   1
## 10757           encountering                  adverse   1
## 10758           encountering                     gale   1
## 10759           encountering                     hail   1
## 10760           encountering                    icing   1
## 10761           encountering                      ifr   1
## 10762           encountering               instrument   1
## 10763           encountering                      low   1
## 10764           encountering                 marginal   1
## 10765           encountering                     snow   1
## 10766           encountering                   strong   1
## 10767           encountering            thunderstorms   1
## 10768           encountering              unfavorable   1
## 10769           encountering                windshear   1
## 10770                  enemy                 aircraft   1
## 10771                  enemy                    boats   1
## 10772                  enemy                   ground   1
## 10773                 energy               preventing   1
## 10774                enforce                adherence   1
## 10775                engaged                    climb   1
## 10776                engaged                  crashed   1
## 10777                engaged                 manually   1
## 10778                engaged                   rolled   1
## 10779                engaged                   struck   1
## 10780                 engine                        3   1
## 10781                 engine                        4   1
## 10782                 engine                accessory   1
## 10783                 engine                    afire   1
## 10784                 engine                      air   1
## 10785                 engine                 airplane   1
## 10786                 engine                     anti   1
## 10787                 engine                 appeared   1
## 10788                 engine                  appears   1
## 10789                 engine                 assembly   1
## 10790                 engine              autofeather   1
## 10791                 engine                   banked   1
## 10792                 engine                     cars   1
## 10793                 engine                  causing   1
## 10794                 engine                   cessna   1
## 10795                 engine                    climb   1
## 10796                 engine              compartment   1
## 10797                 engine                condition   1
## 10798                 engine               connecting   1
## 10799                 engine               consulting   1
## 10800                 engine                continued   1
## 10801                 engine                 contrary   1
## 10802                 engine                  control   1
## 10803                 engine                 controls   1
## 10804                 engine                     core   1
## 10805                 engine                     cowl   1
## 10806                 engine                crankcase   1
## 10807                 engine               crankshaft   1
## 10808                 engine                    crash   1
## 10809                 engine                     crew   1
## 10810                 engine                   debris   1
## 10811                 engine              destruction   1
## 10812                 engine              directional   1
## 10813                 engine                emergency   1
## 10814                 engine                  entered   1
## 10815                 engine                 evidence   1
## 10816                 engine                evidently   1
## 10817                 engine                  exhaust   1
## 10818                 engine                   exited   1
## 10819                 engine                exploding   1
## 10820                 engine                 failured   1
## 10821                 engine               feathering   1
## 10822                 engine                  fighter   1
## 10823                 engine                   flamed   1
## 10824                 engine                   forced   1
## 10825                 engine                  forcing   1
## 10826                 engine                      hit   1
## 10827                 engine                      ice   1
## 10828                 engine                 ignition   1
## 10829                 engine                      ils   1
## 10830                 engine              immediately   1
## 10831                 engine               inadequate   1
## 10832                 engine                    inlet   1
## 10833                 engine               instrument   1
## 10834                 engine                  intakes   1
## 10835                 engine                   midair   1
## 10836                 engine                  minutes   1
## 10837                 engine                   mounts   1
## 10838                 engine                 nacelles   1
## 10839                 engine            necessitating   1
## 10840                 engine                operation   1
## 10841                 engine               overloaded   1
## 10842                 engine       overpressurization   1
## 10843                 engine                 oversped   1
## 10844                 engine             overspeeding   1
## 10845                 engine               overweight   1
## 10846                 engine              performance   1
## 10847                 engine                   pieces   1
## 10848                 engine                    pilot   1
## 10849                 engine               powerplant   1
## 10850                 engine             problems.the   1
## 10851                 engine               propellers   1
## 10852                 engine                  remains   1
## 10853                 engine                 rendered   1
## 10854                 engine                restarted   1
## 10855                 engine                 resulted   1
## 10856                 engine                 reversed   1
## 10857                 engine                 reverser   1
## 10858                 engine                      rpm   1
## 10859                 engine                  running   1
## 10860                 engine                 seaplane   1
## 10861                 engine                   seized   1
## 10862                 engine               separation   1
## 10863                 engine                  service   1
## 10864                 engine                    speed   1
## 10865                 engine                  starter   1
## 10866                 engine               structural   1
## 10867                 engine                suffering   1
## 10868                 engine                throttles   1
## 10869                 engine                  touched   1
## 10870                 engine                 turbines   1
## 10871                 engine                turboprop   1
## 10872                 engine                turbulent   1
## 10873                 engine                     type   1
## 10874                 engine                vibration   1
## 10875                 engine                    yawed   1
## 10876               engine's                   blades   1
## 10877               engine's                      hot   1
## 10878               engine's                      low   1
## 10879               engine's                      oil   1
## 10880               engine's                      pt2   1
## 10881               engine's                     ring   1
## 10882               engine.ã                        â   1
## 10883             engine.the                    blade   1
## 10884               engineer                      a.g   1
## 10885               engineer             accidentally   1
## 10886               engineer                  battled   1
## 10887               engineer                  carried   1
## 10888               engineer                 disabled   1
## 10889               engineer                      don   1
## 10890               engineer                feathered   1
## 10891               engineer              immediately   1
## 10892               engineer               instructor   1
## 10893               engineer                neglected   1
## 10894               engineer                 switched   1
## 10895               engineer                  trainee   1
## 10896             engineer's                    upper   1
## 10897              engineerã                        â   1
## 10898            engineering                materials   1
## 10899                engines               accelerate   1
## 10900                engines                 attempts   1
## 10901                engines                    broke   1
## 10902                engines                    burst   1
## 10903                engines                   caught   1
## 10904                engines                  contact   1
## 10905                engines             contributing   1
## 10906                engines                     crew   1
## 10907                engines               electrical   1
## 10908                engines                   eleven   1
## 10909                engines                 exploded   1
## 10910                engines                  failure   1
## 10911                engines                   faulty   1
## 10912                engines                   flamed   1
## 10913                engines                   forced   1
## 10914                engines                   idling   1
## 10915                engines                 impaired   1
## 10916                engines                 improper   1
## 10917                engines                     lack   1
## 10918                engines            necessitating   1
## 10919                engines                operating   1
## 10920                engines                overspeed   1
## 10921                engines              prematurely   1
## 10922                engines                producing   1
## 10923                engines                     quit   1
## 10924                engines                resulting   1
## 10925                engines                  running   1
## 10926                engines                     shot   1
## 10927                engines                  stalled   1
## 10928                engines               successful   1
## 10929                engines                     torn   1
## 10930            engines.the                 aircraft   1
## 10931                england                  crashed   1
## 10932                english                    coast   1
## 10933                english             instructions   1
## 10934               enhanced                   ground   1
## 10935              enigmatic                    coded   1
## 10936             enrichment                  capsule   1
## 10937                enroute                  crashed   1
## 10938                ensuing                confusion   1
## 10939                ensuing                 critical   1
## 10940                ensuing                   forced   1
## 10941                ensuing                  outward   1
## 10942                ensuing                     roll   1
## 10943                 ensure                continued   1
## 10944                 ensure                    flaps   1
## 10945                 ensure               structural   1
## 10946                 ensure                  traffic   1
## 10947                entebbe                   uganda   1
## 10948                entered                   cruise   1
## 10949                entered                    greek   1
## 10950                entered               instrument   1
## 10951               entering                    dense   1
## 10952               entering                 overhang   1
## 10953            entertainer                     dean   1
## 10954            entertainer                    frank   1
## 10955          entertainment                   system   1
## 10956                 entire                 aircraft   1
## 10957                 entire                 eighteen   1
## 10958                 entire               evansville   1
## 10959                 entire                   flight   1
## 10960                 entire                hydraulic   1
## 10961                 entire                lokomotiv   1
## 10962                 entire                 national   1
## 10963                 entire                    shift   1
## 10964               envelope               boundaries   1
## 10965            environment                      bad   1
## 10966            environment                  limited   1
## 10967            environment                   midair   1
## 10968            environment                    pilot   1
## 10969          environmental               conditions   1
## 10970          ëœglideslopeã                        â   1
## 10971              ëœretardã                        â   1
## 10972                    epr                 readings   1
## 10973              equipment                   aboard   1
## 10974              equipment                 allowing   1
## 10975              equipment                  circled   1
## 10976              equipment                  factors   1
## 10977              equipment                   failed   1
## 10978              equipment                 failures   1
## 10979              equipment                  founder   1
## 10980              equipment                frequency   1
## 10981              equipment             navigational   1
## 10982              equipment                   parked   1
## 10983              equipment                    short   1
## 10984               equipped              sightseeing   1
## 10985                 erevan                      due   1
## 10986                   eric                  clapton   1
## 10987                 ernest                  lundeen   1
## 10988                erosion                  burning   1
## 10989                erratic                 airspeed   1
## 10990                erratic                 approach   1
## 10991                erratic                   manner   1
## 10992                erratic                  pattern   1
## 10993                erratic              performance   1
## 10994              erroneous                      air   1
## 10995              erroneous                 airspeed   1
## 10996              erroneous                     data   1
## 10997              erroneous                depiction   1
## 10998              erroneous                  heading   1
## 10999              erroneous                   height   1
## 11000              erroneous               impression   1
## 11001              erroneous               navigation   1
## 11002              erroneous                  setting   1
## 11003            erroneously                associate   1
## 11004            erroneously                  decided   1
## 11005                  error              abandonment   1
## 11006                  error                 altitude   1
## 11007                  error               attempting   1
## 11008                  error                    check   1
## 11009                  error              commander's   1
## 11010                  error               conducting   1
## 11011                  error               continuing   1
## 11012                  error                  current   1
## 11013                  error               descending   1
## 11014                  error                  descent   1
## 11015                  error                directing   1
## 11016                  error                      due   1
## 11017                  error                   errors   1
## 11018                  error                excessive   1
## 11019                  error                     flew   1
## 11020                  error                     fuel   1
## 11021                  error                   george   1
## 11022                  error                     gpsw   1
## 11023                  error                   ground   1
## 11024                  error               inadequate   1
## 11025                  error                  landing   1
## 11026                  error                      low   1
## 11027                  error                   midair   1
## 11028                  error             misalignment   1
## 11029                  error               negligence   1
## 11030                  error                   piilot   1
## 11031                  error                     poor   1
## 11032                  error                 presence   1
## 11033                  error                  quentin   1
## 11034                  error                resulting   1
## 11035                  error                  sensory   1
## 11036                  error                    short   1
## 11037                  error                     shot   1
## 11038                  error                   slowed   1
## 11039                  error                undershot   1
## 11040                  error                   united   1
## 11041                  error                   unwise   1
## 11042                  error                   visual   1
## 11043                  error                weather's   1
## 11044              error.the                    plane   1
## 11045                 errors                 combined   1
## 11046                 errors                   failed   1
## 11047                 errors                      led   1
## 11048                erupted                   debris   1
## 11049                     es                      sir   1
## 11050                 escape                      hit   1
## 11051                 escape                    slide   1
## 11052                 escape                   window   1
## 11053                escaped                  causing   1
## 11054                escaped                prisoners   1
## 11055               escobedo            international   1
## 11056              essential              instruments   1
## 11057              essential               navigation   1
## 11058            essentially                 required   1
## 11059              establish           communications   1
## 11060              establish                   runway   1
## 11061            established                  airport   1
## 11062            established                 approach   1
## 11063            established                 division   1
## 11064            established                   ground   1
## 11065            established                procedure   1
## 11066            established                    radio   1
## 11067            established                     safe   1
## 11068            established                  uniform   1
## 11069           establishing                   visual   1
## 11070                estevao                  ribeiro   1
## 11071              estimated                       10   1
## 11072              estimated                    speed   1
## 11073              estimated                     time   1
## 11074                estuary                    icing   1
## 11075                etienne               mauritania   1
## 11076              etimeagut                  airport   1
## 11077             eucalyptus                   forest   1
## 11078             eucalyptus                     tree   1
## 11079                 eugene                 lefebvre   1
## 11080               european               gymnastics   1
## 11081               european                    union   1
## 11082               evacuate                 families   1
## 11083               evacuate                     kham   1
## 11084             evacuating                      243   1
## 11085             evacuation               electrical   1
## 11086             evacuation                   flight   1
## 11087             evacuation              overheating   1
## 11088             evacuation               procedures   1
## 11089               evaluate               accurately   1
## 11090               evaluate                 existing   1
## 11091               evaluate                 properly   1
## 11092             evaluation                   flight   1
## 11093             evansville               basketball   1
## 11094                 events                 happened   1
## 11095                 events                  quickly   1
## 11096               eventual                    flame   1
## 11097             eventually                   burned   1
## 11098             eventually                    crash   1
## 11099             eventually                 crashing   1
## 11100             eventually                dismissed   1
## 11101             eventually                  ditched   1
## 11102             eventually                     flew   1
## 11103             eventually                     flow   1
## 11104             eventually                 involved   1
## 11105             eventually                     lose   1
## 11106             eventually                     lost   1
## 11107             eventually                  reached   1
## 11108             eventually                    relit   1
## 11109             eventually                resulting   1
## 11110             eventually                   rolled   1
## 11111             eventually                   spread   1
## 11112             eventually                  stalled   1
## 11113             eventually                suspended   1
## 11114             eventually                   taking   1
## 11115             eventually                 weakened   1
## 11116                everest                   struck   1
## 11117             everglades                     18.7   1
## 11118             everglades                  shortly   1
## 11119              evergreen                 airlines   1
## 11120               evidence                   cashed   1
## 11121               evidence                 revealed   1
## 11122                  exact                 altitude   1
## 11123                  exact            determination   1
## 11124                  exact                   origin   1
## 11125            exaggerated                     view   1
## 11126                 exceed                     bank   1
## 11127               exceeded                      600   1
## 11128               exceeded                 american   1
## 11129               exceeded                 collided   1
## 11130               exceeded                   design   1
## 11131               exceeded                 impacted   1
## 11132               exceeded                  maximum   1
## 11133          exceptionally                      bad   1
## 11134          exceptionally                   severe   1
## 11135              excessive             accumulation   1
## 11136              excessive                 airspeed   1
## 11137              excessive                   amount   1
## 11138              excessive                     bank   1
## 11139              excessive                    cargo   1
## 11140              excessive                    cross   1
## 11141              excessive                   flying   1
## 11142              excessive                     lead   1
## 11143              excessive                     load   1
## 11144              excessive                      low   1
## 11145              excessive                    pitch   1
## 11146              excessive                reduction   1
## 11147              excessive                     roll   1
## 11148              excessive                   stress   1
## 11149              excessive                  takeoff   1
## 11150              excessive                 vertical   1
## 11151              excessive                vibration   1
## 11152              excessive                  voltage   1
## 11153              excessive                      yaw   1
## 11154            excessively                      low   1
## 11155            excessively                     nose   1
## 11156              exchanger                     fohe   1
## 11157              execssive                 workload   1
## 11158                execute                procedure   1
## 11159               executed                 improper   1
## 11160               executed                   missed   1
## 11161               executed                    steep   1
## 11162               executed                  takeoff   1
## 11163              executing                maneuvers   1
## 11164              executive                  airport   1
## 11165              executive                      jet   1
## 11166               exercise                authority   1
## 11167               exercise                  captain   1
## 11168               exercise                    error   1
## 11169               exercise              operational   1
## 11170               exercise                 positive   1
## 11171               exercise                requisite   1
## 11172              exercises              application   1
## 11173              exercises                witnesses   1
## 11174            exeriencing                    heavy   1
## 11175               exerting               sufficient   1
## 11176                exhaust                connector   1
## 11177                exhaust                   system   1
## 11178                exhaust                  systems   1
## 11179              exhausted                     fuel   1
## 11180              exhausted                     half   1
## 11181             exhaustion                      due   1
## 11182             exhaustion               inadequate   1
## 11183             exhaustion                resulting   1
## 11184              exhibited                 evidence   1
## 11185             exhibition                   valued   1
## 11186                  exile                   killed   1
## 11187               existing               conditions   1
## 11188               existing                      faa   1
## 11189               existing                  fatigue   1
## 11190               existing              regulations   1
## 11191               existing                   runway   1
## 11192               existing                  russian   1
## 11193               existing                 terminal   1
## 11194                   exit                    doors   1
## 11195                 expect                clearance   1
## 11196                 expect                 recovery   1
## 11197                 expect               turbulence   1
## 11198               expected                      due   1
## 11199             expedition                    found   1
## 11200             experience                  ability   1
## 11201             experience                 training   1
## 11202            experienced              asymetrical   1
## 11203            experienced             asymmetrical   1
## 11204            experienced                     crew   1
## 11205            experienced               difficulty   1
## 11206            experienced                   double   1
## 11207            experienced               electrical   1
## 11208            experienced                    heavy   1
## 11209            experienced                    icing   1
## 11210            experienced                     loss   1
## 11211            experienced                    pilot   1
## 11212            experienced                    pitch   1
## 11213            experienced                propeller   1
## 11214            experienced                    rotor   1
## 11215            experienced                  shortly   1
## 11216            experienced                 superior   1
## 11217            experienced                  trouble   1
## 11218            experienced           uncontrollable   1
## 11219           experiencing             catastrophic   1
## 11220           experiencing            communication   1
## 11221           experiencing                  control   1
## 11222           experiencing               difficulty   1
## 11223           experiencing                     duel   1
## 11224           experiencing                    heavy   1
## 11225           experiencing                hydraulic   1
## 11226           experiencing                    icing   1
## 11227           experiencing                   severe   1
## 11228           experiencing                  shaking   1
## 11229           experiencing                   strong   1
## 11230           experiencing               structural   1
## 11231           experiencing               turbulence   1
## 11232           experiencing                  unknown   1
## 11233           experiencing                vibration   1
## 11234               exploded                       16   1
## 11235               exploded                        3   1
## 11236               exploded            approximately   1
## 11237               exploded                   inside   1
## 11238               exploded                  moments   1
## 11239               exploded                    north   1
## 11240               exploded                  onboard   1
## 11241               exploded               scattering   1
## 11242               exploded                     shot   1
## 11243               exploded                  sixteen   1
## 11244              exploding                      125   1
## 11245              exploding                   midair   1
## 11246               explorer                   martin   1
## 11247              explosion                     blew   1
## 11248              explosion                  crashed   1
## 11249              explosion                      led   1
## 11250              explosion                    short   1
## 11251              explosion               structural   1
## 11252              explosion                 wreckage   1
## 11253             explosions                    crash   1
## 11254             explosions                     tore   1
## 11255              explosive                   charge   1
## 11256              explosive                    laden   1
## 11257                exposed               electrical   1
## 11258                express                 airfield   1
## 11259                express                 collided   1
## 11260                express                       dc   1
## 11261                express               tupolov134   1
## 11262               extended                   crew's   1
## 11263               extended                    delay   1
## 11264               extended                 downwind   1
## 11265               extended                     lack   1
## 11266               extended                  landing   1
## 11267               extended              lubrication   1
## 11268               extended                 manually   1
## 11269               extended                nosewheel   1
## 11270               extended                 position   1
## 11271               extended                primarily   1
## 11272               extended                   runway   1
## 11273               extended                touchdown   1
## 11274               extended                   visual   1
## 11275              extension                checklist   1
## 11276              extensive                   damage   1
## 11277                 extent              established   1
## 11278                 extent               understood   1
## 11279               external                    cargo   1
## 11280               external                  control   1
## 11281               external                     fire   1
## 11282               external                    power   1
## 11283               external                    speed   1
## 11284          extinguishers                installed   1
## 11285          extinguishing                   system   1
## 11286                  extra                     fuel   1
## 11287                  extra                    radar   1
## 11288                extreme                buffeting   1
## 11289                extreme               downdrafts   1
## 11290                extreme                     heat   1
## 11291                extreme                    icing   1
## 11292                extreme                    pitch   1
## 11293                extreme                   unsafe   1
## 11294                extreme                  weather   1
## 11295              extremely                      bad   1
## 11296              extremely                difficult   1
## 11297              extremely                     hard   1
## 11298              extremely                hazardous   1
## 11299              extremely                inclement   1
## 11300              extremely                      low   1
## 11301              extremely                    rapid   1
## 11302              extremely                   severe   1
## 11303              extremely                    short   1
## 11304             extremists                  crashed   1
## 11305                    f.h                    craig   1
## 11306                     f4                     crew   1
## 11307                    faa                      ats   1
## 11308                    faa                  decided   1
## 11309                    faa                  imposed   1
## 11310                    faa              intentional   1
## 11311                    faa                     paid   1
## 11312                    faa              replacement   1
## 11313                    faa                    texas   1
## 11314                    faa                    water   1
## 11315                  faa's                 approval   1
## 11316                  faa's                  average   1
## 11317                  faa's               inadequate   1
## 11318                  faa's                     lack   1
## 11319                   faaa                  airport   1
## 11320                  faãƒâ                      ade   1
## 11321             facilities                premature   1
## 11322               facility                   cashed   1
## 11323               facility                  located   1
## 11324               facility               management   1
## 11325               facility                 managers   1
## 11326                 facing                   faulty   1
## 11327                 factor                     crew   1
## 11328                 factor                   midair   1
## 11329                 factor                  shortly   1
## 11330                 factor                     shot   1
## 11331                factors                        1   1
## 11332                factors                      atc   1
## 11333                factors                   caused   1
## 11334                factors              contributed   1
## 11335                factors                  crashed   1
## 11336                factors                 involved   1
## 11337                factors                     lost   1
## 11338                factory                  chimney   1
## 11339                factory                     crew   1
## 11340                factory                  located   1
## 11341                factory                     yard   1
## 11342                  faial                   island   1
## 11343                   fail               instructed   1
## 11344                   fail                     safe   1
## 11345                 failed               approaches   1
## 11346                 failed                  attempt   1
## 11347                 failed                 attitude   1
## 11348                 failed                  battery   1
## 11349                 failed                    broke   1
## 11350                 failed               completely   1
## 11351                 failed                 creating   1
## 11352                 failed                 cylinder   1
## 11353                 failed                   debris   1
## 11354                 failed            disconnection   1
## 11355                 failed                   engine   1
## 11356                 failed                  exhaust   1
## 11357                 failed                  failure   1
## 11358                 failed                     half   1
## 11359                 failed                  killing   1
## 11360                 failed                  leading   1
## 11361                 failed                     loss   1
## 11362                 failed               mechanical   1
## 11363                 failed               procedural   1
## 11364                 failed                refueling   1
## 11365                 failed                rendering   1
## 11366                 failed                resulting   1
## 11367                 failed                 spoilers   1
## 11368                 failed                  suicide   1
## 11369               failsafe                   design   1
## 11370                 failue                      due   1
## 11371                 failue                  minutes   1
## 11372                failure                       10   1
## 11373                failure                        5   1
## 11374                failure                    broke   1
## 11375                failure                  causing   1
## 11376                failure                checklist   1
## 11377                failure                 complete   1
## 11378                failure               consisting   1
## 11379                failure                 decision   1
## 11380                failure                 diverted   1
## 11381                failure              encountered   1
## 11382                failure                 exercise   1
## 11383                failure                extremely   1
## 11384                failure                  fatigue   1
## 11385                failure                 flameout   1
## 11386                failure                    flaps   1
## 11387                failure                      hit   1
## 11388                failure                 improper   1
## 11389                failure                 involved   1
## 11390                failure                  leading   1
## 11391                failure                      led   1
## 11392                failure                     left   1
## 11393                failure                     lift   1
## 11394                failure                     mode   1
## 11395                failure                occurring   1
## 11396                failure              overloading   1
## 11397                failure                  overran   1
## 11398                failure                 overshot   1
## 11399                failure             precipitated   1
## 11400                failure                    prior   1
## 11401                failure                   severe   1
## 11402                failure                 shrapnel   1
## 11403                failure                   single   1
## 11404                failure                    smoke   1
## 11405                failure              uncommanded   1
## 11406                failure               undersized   1
## 11407                failure               undetected   1
## 11408                failure                  weather   1
## 11409                failure                     whle   1
## 11410               failures                 baseball   1
## 11411               failures                  created   1
## 11412               failures                 occurred   1
## 11413              fairbanks                    radio   1
## 11414              fairchild                      air   1
## 11415              fairchild                  crashed   1
## 11416                fairfax                  airport   1
## 11417                   fake                passports   1
## 11418                 falcon                      dam   1
## 11419               falkland                  islands   1
## 11420                   fall                      300   1
## 11421                falling                 airspeed   1
## 11422                  falls                  crashed   1
## 11423                  falls                       mt   1
## 11424                  false                   alerts   1
## 11425                  false                     fire   1
## 11426                  false                    glide   1
## 11427                  false               impression   1
## 11428                  false               indication   1
## 11429                  false                  notions   1
## 11430                  false                 position   1
## 11431                  false                    speed   1
## 11432                  false                    stall   1
## 11433                  false                  warning   1
## 11434                falsely                 declared   1
## 11435                falsely                 perceive   1
## 11436        familiarization                   period   1
## 11437              familiies                     left   1
## 11438                 family                    house   1
## 11439                 famine                 stricken   1
## 11440                 famous               helicopter   1
## 11441                    fan                    blade   1
## 11442                    fan                      hub   1
## 11443                  fanny                     cano   1
## 11444               farewell                  crashed   1
## 11445                   farm                       40   1
## 11446                   farm                buildings   1
## 11447                   farm                    field   1
## 11448                   farm                    hedge   1
## 11449                   farm                    house   1
## 11450                   farm                     land   1
## 11451                   farm                   worker   1
## 11452               farmhand                 observed   1
## 11453              farmhouse                   struck   1
## 11454              farmlands                  killing   1
## 11455                  farms                  crashed   1
## 11456            farnborough                      air   1
## 11457              farrell's                      ice   1
## 11458                farther                    south   1
## 11459                   fast                  bounced   1
## 11460                   fast                  descent   1
## 11461                   fast              experienced   1
## 11462                   fast                  initial   1
## 11463                   fast             instructions   1
## 11464                   fast                touchdown   1
## 11465                  fat'h                  airport   1
## 11466                  fatal                 airplane   1
## 11467                  fatal                 aviation   1
## 11468                  fatal                   boeing   1
## 11469                  fatal              combination   1
## 11470                  fatal                  failure   1
## 11471                  fatal                 injuries   1
## 11472                  fatal                  mistake   1
## 11473                  fatal                  results   1
## 11474             fatalities                      225   1
## 11475             fatalities                 included   1
## 11476                  fated                 airliner   1
## 11477                fatigue                  brought   1
## 11478                fatigue                  causing   1
## 11479                fatigue              contributed   1
## 11480                fatigue                   damage   1
## 11481                fatigue                     dark   1
## 11482                fatigue           disorientation   1
## 11483                fatigue               inadequate   1
## 11484                fatigue                initiated   1
## 11485                fatigue               inoperable   1
## 11486                fatigue                     lack   1
## 11487                fatigue                      led   1
## 11488                fatigue                  moments   1
## 11489                fatigue                   origin   1
## 11490                fatigue               originated   1
## 11491                fatigue               permitting   1
## 11492                fatigue                   struck   1
## 11493            fatigue.the                    plane   1
## 11494               fatigued                   failed   1
## 11495               fatigued                    pilot   1
## 11496                faulted                        3   1
## 11497                 faulty                      air   1
## 11498                 faulty                altimeter   1
## 11499                 faulty                    cabin   1
## 11500                 faulty                execution   1
## 11501                 faulty                   flying   1
## 11502                 faulty                     fuel   1
## 11503                 faulty               indication   1
## 11504                 faulty               instrument   1
## 11505                 faulty                 judgment   1
## 11506                 faulty                 lighting   1
## 11507                 faulty                  loading   1
## 11508                 faulty                     main   1
## 11509                 faulty              maintenance   1
## 11510                 faulty                procedure   1
## 11511                 faulty                     rear   1
## 11512                 faulty               restarting   1
## 11513                 faulty                    speed   1
## 11514                 faulty                   switch   1
## 11515                 faulty              temperature   1
## 11516                 faulty                   wiring   1
## 11517                feather                   action   1
## 11518              feathered                  causing   1
## 11519              feathered                   coming   1
## 11520              feathered                  engines   1
## 11521              feathered                    flaps   1
## 11522              feathered                 manually   1
## 11523              feathered                 position   1
## 11524              feathered                positions   1
## 11525              feathered                  stalled   1
## 11526             feathering                mechanism   1
## 11527             feathering                      oil   1
## 11528             feathering                procedure   1
## 11529             feathering                  reduced   1
## 11530          featherweight                    boxer   1
## 11531                    feb                   1941at   1
## 11532               february                     1941   1
## 11533                federal                  airways   1
## 11534                  fedex                  crashed   1
## 11535                   feed                     pipe   1
## 11536                   feed                 selected   1
## 11537                   feel             malfunctions   1
## 11538                   feet                       15   1
## 11539                   feet                     16km   1
## 11540                   feet                       20   1
## 11541                   feet                      500   1
## 11542                   feet                 bursting   1
## 11543                   feet                 ceilings   1
## 11544                   feet                     crew   1
## 11545                   feet               destroying   1
## 11546                   feet              encountered   1
## 11547                   feet                   flight   1
## 11548                   feet                   flying   1
## 11549                   feet                    forty   1
## 11550                   feet                    icing   1
## 11551                   feet                 improper   1
## 11552                   feet                inclement   1
## 11553                   feet             insufficient   1
## 11554                   feet                  killing   1
## 11555                   feet                  landing   1
## 11556                   feet                     left   1
## 11557                   feet              misjudgment   1
## 11558                   feet               navigation   1
## 11559                   feet                    north   1
## 11560                   feet                 obscured   1
## 11561                   feet                precluded   1
## 11562                   feet                preparing   1
## 11563                   feet                    prior   1
## 11564                   feet                    radar   1
## 11565                   feet                    radio   1
## 11566                   feet                  resting   1
## 11567                   feet                   rolled   1
## 11568                   feet               scattering   1
## 11569                   feet                  seventy   1
## 11570                   feet                      sir   1
## 11571                   feet                 suddenly   1
## 11572                   feet               visibility   1
## 11573                   feet                     west   1
## 11574                   feet                witnesses   1
## 11575                 felipe                camiroaga   1
## 11576                  felix                     pass   1
## 11577                   fell                   33,330   1
## 11578                   fell                     38ft   1
## 11579                   fell                   asleep   1
## 11580                   fell                     free   1
## 11581                   fell                  skidded   1
## 11582                   fell                     tail   1
## 11583                 female               commercial   1
## 11584                 female                passenger   1
## 11585                 female                    pilot   1
## 11586                 female                 teenager   1
## 11587                  fence                    3,500   1
## 11588                  fence                momentary   1
## 11589                  fence                  ripping   1
## 11590                  fence                   struck   1
## 11591                 fergus                    river   1
## 11592               ferguson                 kentucky   1
## 11593               ferihegy                  airport   1
## 11594                   fern                    andra   1
## 11595                  ferry               passengers   1
## 11596                  ferry              positioning   1
## 11597                  ferry                      run   1
## 11598               ferrying                     fire   1
## 11599               ferrying                      oil   1
## 11600               ferrying                   troops   1
## 11601               ferrying                      u.s   1
## 11602                fflight                attendant   1
## 11603                     fg                       1a   1
## 11604                  field                      1.5   1
## 11605                  field                      1.7   1
## 11606                  field                       20   1
## 11607                  field                       30   1
## 11608                  field                      300   1
## 11609                  field                        4   1
## 11610                  field                       40   1
## 11611                  field                      560   1
## 11612                  field                       75   1
## 11613                  field                     800m   1
## 11614                  field            approximately   1
## 11615                  field                    badly   1
## 11616                  field                  bounced   1
## 11617                  field                    bound   1
## 11618                  field                 breaking   1
## 11619                  field                 bursting   1
## 11620                  field                  causing   1
## 11621                  field                      due   1
## 11622                  field                     flap   1
## 11623                  field                   fueled   1
## 11624                  field                      hit   1
## 11625                  field                 hospital   1
## 11626                  field                hydraulic   1
## 11627                  field                 inverted   1
## 11628                  field            investigators   1
## 11629                  field                  killing   1
## 11630                  field                  landing   1
## 11631                  field                     lead   1
## 11632                  field                   losing   1
## 11633                  field              malfunction   1
## 11634                  field                  moments   1
## 11635                  field                municipal   1
## 11636                  field                  pilot's   1
## 11637                  field                     poor   1
## 11638                  field              preparatory   1
## 11639                  field                prevented   1
## 11640                  field                 reported   1
## 11641                  field                 reversal   1
## 11642                  field               shattering   1
## 11643                  field                   whille   1
## 11644                  field                     wing   1
## 11645                 fields                     shot   1
## 11646                 fierce                     fire   1
## 11647               fifiteen              journalists   1
## 11648                fifteen                     feet   1
## 11649                fifteen                   killed   1
## 11650                fifteen                    times   1
## 11651                  fight                 controls   1
## 11652                  fight                  fatigue   1
## 11653                fighter                 aircraft   1
## 11654                fighter                 collided   1
## 11655                fighter                   firing   1
## 11656                fighter                initiated   1
## 11657                fighter                     jets   1
## 11658                fighter                  leaving   1
## 11659                fighter                    rocky   1
## 11660                fighter                   thirty   1
## 11661              fighter's                    pilot   1
## 11662               fighters                       30   1
## 11663               fighters                    broke   1
## 11664                 figure                  skating   1
## 11665                figures            participating   1
## 11666                figures                  suggest   1
## 11667                   fiji               inadequate   1
## 11668                   file                  shortly   1
## 11669                filight                     plan   1
## 11670                   film                 director   1
## 11671                 filter                     bowl   1
## 11672                    fin                    broke   1
## 11673                    fin                      due   1
## 11674                    fin                separated   1
## 11675                  final                        4   1
## 11676                  final             approach.the   1
## 11677                  final                   bounce   1
## 11678                  final               controller   1
## 11679                  final                  crashed   1
## 11680                  final              destination   1
## 11681                  final                  glimpse   1
## 11682                  final                   impact   1
## 11683                  final                  landing   1
## 11684                  final                  minutes   1
## 11685                  final                  portion   1
## 11686                  final                     shot   1
## 11687                  final                   visual   1
## 11688                finally               discovered   1
## 11689                finally                    found   1
## 11690                finally                 involved   1
## 11691                finally                   landed   1
## 11692                finally                     left   1
## 11693                finally               recognized   1
## 11694                finally                  stopped   1
## 11695                finally                   struck   1
## 11696              financial                     talk   1
## 11697              financial                  trouble   1
## 11698                 findel                  airport   1
## 11699                 finder                      due   1
## 11700                finding                   debris   1
## 11701                   fine                     airs   1
## 11702               finished                   flying   1
## 11703               finished                   giving   1
## 11704               finished               performing   1
## 11705             finisterre                mountains   1
## 11706                finland                        5   1
## 11707                finland                  shortly   1
## 11708                   fire                        1   1
## 11709                   fire                       35   1
## 11710                   fire                       50   1
## 11711                   fire                      500   1
## 11712                   fire                    alarm   1
## 11713                   fire               attributed   1
## 11714                   fire                 blocking   1
## 11715                   fire                    cabin   1
## 11716                   fire                   coming   1
## 11717                   fire                descended   1
## 11718                   fire                destroyed   1
## 11719                   fire                detecting   1
## 11720                   fire                detection   1
## 11721                   fire               detonation   1
## 11722                   fire                 deviated   1
## 11723                   fire                      due   1
## 11724                   fire                emergency   1
## 11725                   fire                   engine   1
## 11726                   fire                equipment   1
## 11727                   fire               eventually   1
## 11728                   fire                 exploded   1
## 11729                   fire                explosion   1
## 11730                   fire            extinguishing   1
## 11731                   fire                  factors   1
## 11732                   fire                  fighter   1
## 11733                   fire                 fighting   1
## 11734                   fire                    flaps   1
## 11735                   fire                   forced   1
## 11736                   fire                     half   1
## 11737                   fire                   handle   1
## 11738                   fire                    house   1
## 11739                   fire                illusions   1
## 11740                   fire                 improper   1
## 11741                   fire              inadvertent   1
## 11742                   fire              indications   1
## 11743                   fire                initiated   1
## 11744                   fire                   jammed   1
## 11745                   fire                     lack   1
## 11746                   fire                      led   1
## 11747                   fire                     lost   1
## 11748                   fire                   midair   1
## 11749                   fire                 multiple   1
## 11750                   fire                  onboard   1
## 11751                   fire                     poor   1
## 11752                   fire                    power   1
## 11753                   fire                 probable   1
## 11754                   fire               procedural   1
## 11755                   fire                 progress   1
## 11756                   fire                 resulted   1
## 11757                   fire                 severity   1
## 11758                   fire                  shutoff   1
## 11759                   fire                     slid   1
## 11760                   fire                 soldiers   1
## 11761                   fire                  stalled   1
## 11762                   fire                   struck   1
## 11763                   fire             subsequently   1
## 11764                   fire              suppression   1
## 11765                   fire                      ten   1
## 11766                   fire                  testing   1
## 11767                   fire                   thirty   1
## 11768                   fire            thunderstorms   1
## 11769                   fire                  trailed   1
## 11770                   fire               undetected   1
## 11771                   fire                   upwind   1
## 11772                   fire                   visual   1
## 11773                   fire                     wake   1
## 11774                   fire                 weakened   1
## 11775               fire.the                 accident   1
## 11776               fire.the               passengers   1
## 11777               fireball                  failure   1
## 11778                  fired               destroying   1
## 11779                  fired                    usair   1
## 11780               firewall                  shutoff   1
## 11781                 firing                 missiles   1
## 11782              first.the                     crew   1
## 11783                   fish                  crashed   1
## 11784                   fish                     pond   1
## 11785              fishermen                    major   1
## 11786                fishing                     boat   1
## 11787                    fit                    bolts   1
## 11788                fitting                    bolts   1
## 11789                fitting                    pilot   1
## 11790                fitting                    press   1
## 11791                    fix                 hijacked   1
## 11792                    fix                  passage   1
## 11793                  fjord                  shortly   1
## 11794                     fl                      100   1
## 11795                     fl                      115   1
## 11796                     fl                      130   1
## 11797                     fl                      173   1
## 11798                     fl                      190   1
## 11799                     fl                      197   1
## 11800                     fl                      199   1
## 11801                     fl                      210   1
## 11802                     fl                      260   1
## 11803                     fl                      280   1
## 11804                     fl                      370   1
## 11805                     fl                      390   1
## 11806                  fl150                  crashed   1
## 11807                  fl187                      atc   1
## 11808                  fl230                    water   1
## 11809                  fl270                  crashed   1
## 11810                  fl330                 allowing   1
## 11811                   flag                     pole   1
## 11812              flagstaff                  medical   1
## 11813                 flakes                  blocked   1
## 11814               flameout                       30   1
## 11815               flameout                     loss   1
## 11816                 flames                    2,000   1
## 11817                 flames                       27   1
## 11818                 flames                        9   1
## 11819                 flames                   aboard   1
## 11820                 flames               attachment   1
## 11821                 flames                    broke   1
## 11822                 flames                    cairo   1
## 11823                 flames                   caused   1
## 11824                 flames                  causing   1
## 11825                 flames                   coming   1
## 11826                 flames                   crew's   1
## 11827                 flames                     dfdr   1
## 11828                 flames                  ditched   1
## 11829                 flames                      due   1
## 11830                 flames                   eighty   1
## 11831                 flames                   engine   1
## 11832                 flames                    error   1
## 11833                 flames                  erupted   1
## 11834                 flames                  failure   1
## 11835                 flames                  fatigue   1
## 11836                 flames                   flight   1
## 11837                 flames                    heavy   1
## 11838                 flames                      hit   1
## 11839                 flames                 improper   1
## 11840                 flames                   julian   1
## 11841                 flames                  killing   1
## 11842                 flames                      klm   1
## 11843                 flames                     lost   1
## 11844                 flames              malfunction   1
## 11845                 flames           malfunctioning   1
## 11846                 flames                microbust   1
## 11847                 flames             navigational   1
## 11848                 flames                    power   1
## 11849                 flames                      pre   1
## 11850                 flames                 probable   1
## 11851                 flames               procedural   1
## 11852                 flames                   severe   1
## 11853                 flames                    short   1
## 11854                 flames                   shortl   1
## 11855                 flames                     shot   1
## 11856                 flames                    smoke   1
## 11857                 flames                    total   1
## 11858                 flames                  weather   1
## 11859                 flames                windshear   1
## 11860                 flames                 wreckage   1
## 11861             flames.the                  failure   1
## 11862                flaming                 wreckage   1
## 11863              flammable                    fluid   1
## 11864              flammable                     fuel   1
## 11865              flammable                hydraulic   1
## 11866              flammable                   liquid   1
## 11867                 flange               aggravated   1
## 11868                 flange                splitting   1
## 11869                   flap                   angles   1
## 11870                   flap                  anomaly   1
## 11871                   flap                asymmetry   1
## 11872                   flap               attachment   1
## 11873                   flap           configueration   1
## 11874                   flap           configurations   1
## 11875                   flap                  control   1
## 11876                   flap                 controls   1
## 11877                   flap                      due   1
## 11878                   flap                operating   1
## 11879                   flap                 position   1
## 11880                   flap               retraction   1
## 11881                   flap                     slat   1
## 11882                   flap                   system   1
## 11883                  flaps                        1   1
## 11884                  flaps                       15   1
## 11885                  flaps                  crashed   1
## 11886                  flaps                descended   1
## 11887                  flaps             flightcrew's   1
## 11888                  flaps                     gust   1
## 11889                  flaps              incorrectly   1
## 11890                  flaps              inoperative   1
## 11891                  flaps                partially   1
## 11892                  flaps                    prior   1
## 11893                  flaps                 produced   1
## 11894                  flaps                      set   1
## 11895                  flare                resulting   1
## 11896                  flare                  started   1
## 11897                 flares                  strored   1
## 11898                flaring                 distance   1
## 11899                  flash                     fire   1
## 11900                  flash                preceding   1
## 11901                   flat                   barley   1
## 11902                   flat                   glassy   1
## 11903                   flat                grassland   1
## 11904                   flat                     land   1
## 11905                   flat                 lighting   1
## 11906                   flaw                  allowed   1
## 11907                   flaw                      led   1
## 11908             flecheiras                    beach   1
## 11909                   flew                       20   1
## 11910                   flew                 directly   1
## 11911                   flew                  hangars   1
## 11912                   flew                   inside   1
## 11913                   flew                 inverted   1
## 11914                   flew                    north   1
## 11915                   flew                 opposite   1
## 11916                   flew                     past   1
## 11917                   flew                 straight   1
## 11918                flew100                    miles   1
## 11919                  fligh              encountered   1
## 11920               flighing                      vfr   1
## 11921                 flight                      055   1
## 11922                 flight                       10   1
## 11923                 flight                     15.5   1
## 11924                 flight                       17   1
## 11925                 flight                      174   1
## 11926                 flight                       18   1
## 11927                 flight                      182   1
## 11928                 flight                        2   1
## 11929                 flight                       20   1
## 11930                 flight                      212   1
## 11931                 flight                      232   1
## 11932                 flight                      387   1
## 11933                 flight                       40   1
## 11934                 flight                      420   1
## 11935                 flight                     5191   1
## 11936                 flight                      523   1
## 11937                 flight                      8.5   1
## 11938                 flight                      870   1
## 11939                 flight                   action   1
## 11940                 flight            approximately   1
## 11941                 flight                attempted   1
## 11942                 flight                  beneath   1
## 11943                 flight                    blame   1
## 11944                 flight                  breakup   1
## 11945                 flight                    cargo   1
## 11946                 flight                   cashed   1
## 11947                 flight             catastrophic   1
## 11948                 flight                   caused   1
## 11949                 flight                  changed   1
## 11950                 flight                    check   1
## 11951                 flight                 collided   1
## 11952                 flight               conditions   1
## 11953                 flight            configuration   1
## 11954                 flight               continuing   1
## 11955                 flight              controllers   1
## 11956                 flight              corrections   1
## 11957                 flight              crewmembers   1
## 11958                 flight               designated   1
## 11959                 flight                 deviated   1
## 11960                 flight               discipline   1
## 11961                 flight              dispatchers   1
## 11962                 flight                  ditched   1
## 11963                 flight                     door   1
## 11964                 flight                emergency   1
## 11965                 flight                   engine   1
## 11966                 flight                engineerã   1
## 11967                 flight                  entered   1
## 11968                 flight                 envelope   1
## 11969                 flight              experienced   1
## 11970                 flight                explosion   1
## 11971                 flight                  fatigue   1
## 11972                 flight                  finally   1
## 11973                 flight                    flown   1
## 11974                 flight                    heavy   1
## 11975                 flight                    hours   1
## 11976                 flight                      i.e   1
## 11977                 flight                      ice   1
## 11978                 flight                 ignition   1
## 11979                 flight                    iinto   1
## 11980                 flight              immediately   1
## 11981                 flight               impossible   1
## 11982                 flight               inadequate   1
## 11983                 flight              inattention   1
## 11984                 flight              information   1
## 11985                 flight                initiated   1
## 11986                 flight               inspection   1
## 11987                 flight          instrumentation   1
## 11988                 flight instruments.contributing   1
## 11989                 flight            investigation   1
## 11990                 flight                   landed   1
## 11991                 flight                    leaks   1
## 11992                 flight                    level   1
## 11993                 flight                    loads   1
## 11994                 flight                louisiana   1
## 11995                 flight                 maneuver   1
## 11996                 flight                  manuals   1
## 11997                 flight                  medical   1
## 11998                 flight                  officer   1
## 11999                 flight                 omission   1
## 12000                 flight              originating   1
## 12001                 flight               overloaded   1
## 12002                 flight                 overshot   1
## 12003                 flight                  pattern   1
## 12004                 flight                  pitched   1
## 12005                 flight                    plans   1
## 12006                 flight                     poor   1
## 12007                 flight             preparations   1
## 12008                 flight                    prior   1
## 12009                 flight                procedure   1
## 12010                 flight              proficiency   1
## 12011                 flight                  profile   1
## 12012                 flight                  program   1
## 12013                 flight                 progress   1
## 12014                 flight               progressed   1
## 12015                 flight                     prop   1
## 12016                 flight                 properly   1
## 12017                 flight                  radioed   1
## 12018                 flight                      ran   1
## 12019                 flight                   record   1
## 12020                 flight                 recovery   1
## 12021                 flight                  replied   1
## 12022                 flight                 returned   1
## 12023                 flight                    route   1
## 12024                 flight                   rudder   1
## 12025                 flight                   safely   1
## 12026                 flight                  service   1
## 12027                 flight               simulation   1
## 12028                 flight                  soldier   1
## 12029                 flight                  stalled   1
## 12030                 flight                 suffered   1
## 12031                 flight              supervision   1
## 12032                 flight                 symmetry   1
## 12033                 flight                  systems   1
## 12034                 flight                  tearing   1
## 12035                 flight                technique   1
## 12036                 flight                     time   1
## 12037                 flight                    track   1
## 12038                 flight                  tracker   1
## 12039                 flight                    tweny   1
## 12040                 flight               undetected   1
## 12041                 flight             verification   1
## 12042                 flight               vibrations   1
## 12043                 flight                     wing   1
## 12044               flight's                deviation   1
## 12045              flight447                   passed   1
## 12046            flightcraft                  company   1
## 12047             flightcrew                  allowed   1
## 12048           flightcrew's                  delayed   1
## 12049           flightcrew's                excessive   1
## 12050           flightcrew's             inexperience   1
## 12051           flightcrew's                 judgment   1
## 12052           flightcrew's                     lack   1
## 12053           flightcrew's            preoccupation   1
## 12054           flightcrew's               subsequent   1
## 12055            flightcrews                  failure   1
## 12056             flightpath               deviations   1
## 12057                flights             contributing   1
## 12058                flights              destination   1
## 12059                 fligth                   caused   1
## 12060                flilght                personnel   1
## 12061                fllight                 deviated   1
## 12062                fllight                      hit   1
## 12063                  float                contacted   1
## 12064                  float                      dug   1
## 12065                  float                 equipped   1
## 12066                  float                    level   1
## 12067             floatation                 cushions   1
## 12068             floatplane                 carrying   1
## 12069                 floats               demolished   1
## 12070                 floats                   struck   1
## 12071                 floats                  visible   1
## 12072                  flood                   relief   1
## 12073               flooding                  crashed   1
## 12074                  floor                 damaging   1
## 12075                  floor                 function   1
## 12076                 floors                   ablaze   1
## 12077               florence                   struck   1
## 12078                 flores                   island   1
## 12079                florida                  refugee   1
## 12080          floridablanca                  climbed   1
## 12081              flotation                 cushions   1
## 12082              flotation                equipment   1
## 12083                   flow                resulting   1
## 12084                  flown                   safely   1
## 12085                    flu                   talked   1
## 12086                  fluid                   caught   1
## 12087                  fluid                 exlpoded   1
## 12088                  fluid                     loss   1
## 12089            fluorescent                    light   1
## 12090               flushing                      bay   1
## 12091                flutter                  brought   1
## 12092                flutter                  natural   1
## 12093                flutter                vibration   1
## 12094                   flux                    gauge   1
## 12095                    fly                    blood   1
## 12096                    fly                      bys   1
## 12097                    fly                  crashed   1
## 12098                    fly                   killed   1
## 12099                    fly                prisoners   1
## 12100                    fly                 visually   1
## 12101                  flyby                  crashed   1
## 12102                  flyer                   donald   1
## 12103                  flyer                    flown   1
## 12104                  flyer                   killed   1
## 12105                 flying                    1,000   1
## 12106                 flying                       15   1
## 12107                 flying                       50   1
## 12108                 flying                    8,640   1
## 12109                 flying                 aircraft   1
## 12110                 flying                   barely   1
## 12111                 flying                     blew   1
## 12112                 flying                    blind   1
## 12113                 flying                    close   1
## 12114                 flying                  closely   1
## 12115                 flying                     club   1
## 12116                 flying                  country   1
## 12117                 flying                    crash   1
## 12118                 flying                  crashed   1
## 12119                 flying               discipline   1
## 12120                 flying              erratically   1
## 12121                 flying               experience   1
## 12122                 flying                     fast   1
## 12123                 flying                   german   1
## 12124                 flying                    hours   1
## 12125                 flying              instruments   1
## 12126                 flying                    lower   1
## 12127                 flying                 manually   1
## 12128                 flying                  mission   1
## 12129                 flying                  pattern   1
## 12130                 flying                 raindeer   1
## 12131                 flying                   school   1
## 12132                 flying                   taking   1
## 12133                 flying                technique   1
## 12134                 flying               techniques   1
## 12135                 flying                 tourists   1
## 12136                 flying                windshear   1
## 12137                   foce                transport   1
## 12138                focused                   lights   1
## 12139                    fog                       10   1
## 12140                    fog                       12   1
## 12141                    fog                    blues   1
## 12142                    fog                   caused   1
## 12143                    fog                 clearing   1
## 12144                    fog               concealing   1
## 12145                    fog                 covering   1
## 12146                    fog           disorientation   1
## 12147                    fog                   engine   1
## 12148                    fog                    error   1
## 12149                    fog                 exploded   1
## 12150                    fog                     flew   1
## 12151                    fog             flightcrew's   1
## 12152                    fog                      fog   1
## 12153                    fog                     haze   1
## 12154                    fog                      hit   1
## 12155                    fog                  hitting   1
## 12156                    fog                    icing   1
## 12157                    fog                   killed   1
## 12158                    fog                  landing   1
## 12159                    fog                 limiting   1
## 12160                    fog                     lost   1
## 12161                    fog                      low   1
## 12162                    fog                       lt   1
## 12163                    fog             misjudgement   1
## 12164                    fog                 nightime   1
## 12165                    fog                 obscured   1
## 12166                    fog                     poor   1
## 12167                    fog                    prior   1
## 12168                    fog                  reduced   1
## 12169                    fog                resulting   1
## 12170                    fog                 searched   1
## 12171                    fog               separation   1
## 12172                    fog                    short   1
## 12173                    fog                     slid   1
## 12174                    fog                   struck   1
## 12175                    fog                   thirty   1
## 12176                    fog              turbulences   1
## 12177                    fog                undershot   1
## 12178                    fog            unfamiliarity   1
## 12179                    fog               visibility   1
## 12180                    fog                  weather   1
## 12181                    fog                     wind   1
## 12182                    fog                windshear   1
## 12183                    fog                 wreckage   1
## 12184               fogbound                   15,721   1
## 12185                  foggy                condition   1
## 12186                  foggy                conditons   1
## 12187                 fokker                       50   1
## 12188                 fokker                 collided   1
## 12189                   folk                 festival   1
## 12190                   folk                   singer   1
## 12191                 follow                 approach   1
## 12192                 follow                  arrival   1
## 12193                 follow                 assigned   1
## 12194                 follow                checklist   1
## 12195                 follow           communications   1
## 12196                 follow                departure   1
## 12197                 follow              established   1
## 12198                 follow               procedural   1
## 12199                 follow                published   1
## 12200                 follow                   safety   1
## 12201                 follow                      vfr   1
## 12202                   food                     lack   1
## 12203                   foot                 altitude   1
## 12204                   foot                    grand   1
## 12205                   foot                    mount   1
## 12206                   foot                       mt   1
## 12207                   foot                    ridge   1
## 12208                   foot                   runway   1
## 12209                   foot                     snow   1
## 12210                   foot                     tall   1
## 12211               football              association   1
## 12212               football                     fans   1
## 12213               football                   soccer   1
## 12214              foothills                  crashed   1
## 12215              forbidden                maneuvers   1
## 12216                forcast                       en   1
## 12217                forcast                     lack   1
## 12218                forcast                 provided   1
## 12219                  force                 aircraft   1
## 12220                  force                     avro   1
## 12221                  force                   boeing   1
## 12222                  force                    chief   1
## 12223                  force                 dassault   1
## 12224                  force                 fighters   1
## 12225                  force                   fokker   1
## 12226                  force                     fuel   1
## 12227                  force               helicopter   1
## 12228                  force                      hit   1
## 12229                  force            investigation   1
## 12230                  force                     land   1
## 12231                  force                observers   1
## 12232                  force                 spitfire   1
## 12233                  force                  stopped   1
## 12234                  force                       tu   1
## 12235                  force                 yakovlev   1
## 12236                 forced                    crash   1
## 12237                 forced              unscheduled   1
## 12238                 forces                       25   1
## 12239                 forces                       50   1
## 12240                 forces                  leading   1
## 12241                 forces                   rebels   1
## 12242                 forces                  shortly   1
## 12243                 forces                    south   1
## 12244                   fore                      aft   1
## 12245               forecast                    icing   1
## 12246               forecast                      low   1
## 12247               forecast                    prior   1
## 12248               forecast                   severe   1
## 12249             forecasted                  adverse   1
## 12250            forecasters                 reported   1
## 12251                foreign                  affairs   1
## 12252                foreign                 material   1
## 12253                foreign                   object   1
## 12254                foreign                  objects   1
## 12255               forensic                     team   1
## 12256                 forest                       10   1
## 12257                 forest                     10km   1
## 12258                 forest                        2   1
## 12259                 forest                       20   1
## 12260                 forest                        3   1
## 12261                 forest                        6   1
## 12262                 forest                        9   1
## 12263                 forest                  crashed   1
## 12264                 forest               detonation   1
## 12265                 forest                    fires   1
## 12266                 forest                     home   1
## 12267                 forest                 illinois   1
## 12268                 forest                mountains   1
## 12269                 forest                    pilot   1
## 12270                 forest                   rescue   1
## 12271                 forest                 wreckage   1
## 12272               forested                foothills   1
## 12273               foreward                     door   1
## 12274                 forged                  license   1
## 12275                   fork                 mountain   1
## 12276                 formal               functional   1
## 12277              formation                  crashed   1
## 12278              formation                   eleven   1
## 12279              formation                   engine   1
## 12280              formation                   flight   1
## 12281              formation                   twelve   1
## 12282                formosa                   strait   1
## 12283                fornebu                  airport   1
## 12284                forshee                guitarist   1
## 12285                   fort                  bridger   1
## 12286                   fort                 franklin   1
## 12287                   fort                     lamy   1
## 12288                fortune                   harold   1
## 12289                  forty                    miles   1
## 12290                forward                  bearing   1
## 12291                forward                   canopy   1
## 12292                forward                   centre   1
## 12293                forward                     dual   1
## 12294                forward                 elevator   1
## 12295                forward                emergency   1
## 12296                forward                   engine   1
## 12297                forward                  fitting   1
## 12298                forward                  gasbags   1
## 12299                forward                 lavatory   1
## 12300                forward                     left   1
## 12301                forward                    lower   1
## 12302                forward                 movement   1
## 12303                forward                  portion   1
## 12304                forward                  service   1
## 12305                forward             transmission   1
## 12306                  found                       06   1
## 12307                  found                       10   1
## 12308                  found                       11   1
## 12309                  found                       12   1
## 12310                  found                       16   1
## 12311                  found                       28   1
## 12312                  found                        3   1
## 12313                  found                       39   1
## 12314                  found                       54   1
## 12315                  found                        7   1
## 12316                  found                        8   1
## 12317                  found                      940   1
## 12318                  found                     atop   1
## 12319                  found                  aviator   1
## 12320                  found                   broken   1
## 12321                  found               completely   1
## 12322                  found                 covering   1
## 12323                  found               criminally   1
## 12324                  found                   debris   1
## 12325                  found                destroyed   1
## 12326                  found              disappeared   1
## 12327                  found                  ditched   1
## 12328                  found                      due   1
## 12329                  found                      feb   1
## 12330                  found                   guilty   1
## 12331                  found                 lockheed   1
## 12332                  found                     lost   1
## 12333                  found                   midair   1
## 12334                  found                   pieces   1
## 12335                  found                    pilot   1
## 12336                  found                   rumors   1
## 12337                  found                     shot   1
## 12338                  found                  stalled   1
## 12339                  found                   struck   1
## 12340               fourteen                   bodies   1
## 12341               fourteen                   killed   1
## 12342               fourteen                  players   1
## 12343                 fourth                 approach   1
## 12344                 fourth                    fault   1
## 12345                 fourth                     time   1
## 12346                  fouta                    djall   1
## 12347                foveaux                   strait   1
## 12348                    fpm                  descent   1
## 12349               fracture                  crashed   1
## 12350               fracture               inadequate   1
## 12351              fractured               connecting   1
## 12352              fractured                   rubber   1
## 12353              fractured                    skull   1
## 12354              fractures                 improper   1
## 12355                  frame                  causing   1
## 12356                 france                     band   1
## 12357                 france                    cargo   1
## 12358                 france                 climbing   1
## 12359                 france               martinique   1
## 12360                 france                   robert   1
## 12361               france's                 brittany   1
## 12362               france's                  nuclear   1
## 12363              francisco                    blake   1
## 12364              francisco                   forces   1
## 12365              francisco                   giants   1
## 12366              francisco                 gonzales   1
## 12367              francisco           internatiional   1
## 12368              francisco                    radio   1
## 12369                  frank                  sinatra   1
## 12370                  frank                    yegar   1
## 12371              frankfurt                  airport   1
## 12372               franklin              roosevelt's   1
## 12373               franklin                    smith   1
## 12374                frantic                  message   1
## 12375                  franz                    josef   1
## 12376                   fred                   noonan   1
## 12377                   free                  balloon   1
## 12378                   free                 carrying   1
## 12379                   free                  falling   1
## 12380               freeport                     blvd   1
## 12381               freezing                  drizzle   1
## 12382               freezing                      fog   1
## 12383                freight                      car   1
## 12384                freight                     flew   1
## 12385                freight                     lost   1
## 12386                 french                      air   1
## 12387                 french                 aircraft   1
## 12388                 french                     army   1
## 12389                 french              authorities   1
## 12390                 french                    coast   1
## 12391                 french              directorate   1
## 12392                 french               government   1
## 12393                 french                  italian   1
## 12394                 french                  medical   1
## 12395                 french             middleweight   1
## 12396                 french                 military   1
## 12397                 french                 ministry   1
## 12398                 french                passenger   1
## 12399                 french                  patient   1
## 12400                 french                   postal   1
## 12401                 french                 soldiers   1
## 12402                 french                   sports   1
## 12403                 french                 tourists   1
## 12404              frequency                addressed   1
## 12405              frequency                    radio   1
## 12406              frequency                receivers   1
## 12407              frequency                whistling   1
## 12408                  fresh                      air   1
## 12409                  fresh                  landing   1
## 12410                friar's                     peak   1
## 12411                 friend                   aboard   1
## 12412                 friend                   dottie   1
## 12413                friends                     shot   1
## 12414             frightened               passengers   1
## 12415                 frigid                    water   1
## 12416                  front                  bearing   1
## 12417                  front                  claimed   1
## 12418                  front              disappeared   1
## 12419                  front                  fighter   1
## 12420                  front                    lower   1
## 12421                  front                   pallet   1
## 12422                  front                  portion   1
## 12423                  front                starboard   1
## 12424                  front                    strut   1
## 12425                  front                    wheel   1
## 12426                frontal                    winds   1
## 12427                  frost                  covered   1
## 12428                  frost                    prior   1
## 12429                frosted                  windows   1
## 12430                  froze                  causing   1
## 12431                 frozen                   arctic   1
## 12432                 frozen                     fish   1
## 12433                 frozen                   ground   1
## 12434             frozen.the                   reason   1
## 12435                  fruit                     flew   1
## 12436                  fruka                     gora   1
## 12437                     ft                        2   1
## 12438                     ft                     21nm   1
## 12439                     ft                        3   1
## 12440                     ft                       32   1
## 12441                     ft                       50   1
## 12442                     ft                        6   1
## 12443                     ft                       63   1
## 12444                     ft                        7   1
## 12445                     ft                      agl   1
## 12446                     ft            approximately   1
## 12447                     ft                   banked   1
## 12448                     ft                  bullets   1
## 12449                     ft                  carpish   1
## 12450                     ft                   caught   1
## 12451                     ft             chachacomani   1
## 12452                     ft                  chaperi   1
## 12453                     ft                  coloque   1
## 12454                     ft              combination   1
## 12455                     ft               controlled   1
## 12456                     ft                 crashing   1
## 12457                     ft                   debris   1
## 12458                     ft               electrical   1
## 12459                     ft                elevation   1
## 12460                     ft                      elk   1
## 12461                     ft                 entering   1
## 12462                     ft                 exploded   1
## 12463                     ft                   failed   1
## 12464                     ft                  failure   1
## 12465                     ft                  fatigue   1
## 12466                     ft                     feet   1
## 12467                     ft                   flying   1
## 12468                     ft                  galeaoa   1
## 12469                     ft                   giving   1
## 12470                     ft                  killing   1
## 12471                     ft                     left   1
## 12472                     ft                    light   1
## 12473                     ft                    mount   1
## 12474                     ft                      msl   1
## 12475                     ft               navigation   1
## 12476                     ft                   nevado   1
## 12477                     ft                     peak   1
## 12478                     ft                     pico   1
## 12479                     ft               prescribed   1
## 12480                     ft                    prior   1
## 12481                     ft               procedural   1
## 12482                     ft                   rescue   1
## 12483                     ft                     roll   1
## 12484                     ft               separation   1
## 12485                     ft                   sharhi   1
## 12486                     ft                     shot   1
## 12487                     ft                     snow   1
## 12488                     ft                 spiraled   1
## 12489                     ft                   struck   1
## 12490                     ft                    tabor   1
## 12491                     ft                      ten   1
## 12492                     ft                     tree   1
## 12493                     ft                  weather   1
## 12494                     ft                windshear   1
## 12495                   fuel                   aboard   1
## 12496                   fuel                 actuator   1
## 12497                   fuel                      air   1
## 12498                   fuel                asymmetry   1
## 12499                   fuel                     blew   1
## 12500                   fuel                    cells   1
## 12501                   fuel                condition   1
## 12502                   fuel             contaminated   1
## 12503                   fuel                continued   1
## 12504                   fuel                 controls   1
## 12505                   fuel                    costs   1
## 12506                   fuel                 crashing   1
## 12507                   fuel                    datum   1
## 12508                   fuel                     drum   1
## 12509                   fuel                   filter   1
## 12510                   fuel                     fuel   1
## 12511                   fuel                    gauge   1
## 12512                   fuel                   gauges   1
## 12513                   fuel                   gushed   1
## 12514                   fuel                injection   1
## 12515                   fuel                   intake   1
## 12516                   fuel                  leaking   1
## 12517                   fuel                     loss   1
## 12518                   fuel                     lost   1
## 12519                   fuel               management   1
## 12520                   fuel                  minutes   1
## 12521                   fuel             necessitated   1
## 12522                   fuel                 numerous   1
## 12523                   fuel                  offical   1
## 12524                   fuel                      oil   1
## 12525                   fuel               overloaded   1
## 12526                   fuel                  pouring   1
## 12527                   fuel                      pro   1
## 12528                   fuel                 pump.the   1
## 12529                   fuel                    pumps   1
## 12530                   fuel                  quality   1
## 12531                   fuel                 remained   1
## 12532                   fuel                 required   1
## 12533                   fuel                resulting   1
## 12534                   fuel                   return   1
## 12535                   fuel                selection   1
## 12536                   fuel                servicing   1
## 12537                   fuel                 shortage   1
## 12538                   fuel                    spill   1
## 12539                   fuel                 spilling   1
## 12540                   fuel                  stalled   1
## 12541                   fuel                  started   1
## 12542                   fuel                 starting   1
## 12543                   fuel                     stop   1
## 12544                   fuel                  storage   1
## 12545                   fuel                  strayed   1
## 12546                   fuel                   twelve   1
## 12547                fueling                  crashed   1
## 12548              fullblown                     left   1
## 12549                fullest                   extent   1
## 12550                  fumes               difficulty   1
## 12551                  fumes                 rendered   1
## 12552               function               electrical   1
## 12553             functional                    check   1
## 12554             functional               evaluation   1
## 12555            functioning                 attitude   1
## 12556            functioning                   engine   1
## 12557            functioning                    garbi   1
## 12558            functioning                     lock   1
## 12559            functioning                 properly   1
## 12560                funeral                    party   1
## 12561                   fuse                      pin   1
## 12562                   fuse                     pins   1
## 12563               fuselage               attachment   1
## 12564               fuselage                 binstock   1
## 12565               fuselage                 breaking   1
## 12566               fuselage                    carry   1
## 12567               fuselage                   caused   1
## 12568               fuselage                     fell   1
## 12569               fuselage                      hit   1
## 12570               fuselage               insulation   1
## 12571               fuselage                 inverted   1
## 12572               fuselage                    makng   1
## 12573               fuselage              malfunction   1
## 12574               fuselage                    prior   1
## 12575               fuselage                resulting   1
## 12576               fuselage                     sank   1
## 12577               fuselage                 severing   1
## 12578               fuselage                    split   1
## 12579               fuselage                  stalled   1
## 12580               fuselage               structural   1
## 12581               fuselage                structure   1
## 12582               fuselage                 trailing   1
## 12583               fuselage                    upper   1
## 12584                 future                accidents   1
## 12585                    g's            investigators   1
## 12586                gablenz                   killed   1
## 12587                gabriel                mountains   1
## 12588               gabrielã                        â   1
## 12589                gagarin                       34   1
## 12590                   gain                    speed   1
## 12591                 gained                 altitude   1
## 12592                 gained                  crashed   1
## 12593                 galawa                    beach   1
## 12594                 galeao            international   1
## 12595                galeaoa                 approach   1
## 12596                galeras                  volcano   1
## 12597                 galley                    loads   1
## 12598                 galley                 switches   1
## 12599                gambell                  airport   1
## 12600                 gambia                  airways   1
## 12601                gambier                  airport   1
## 12602              gambler's                  special   1
## 12603               gamsberg                mountains   1
## 12604                 gander                 improper   1
## 12605                 gander             newfoundland   1
## 12606            gandesberry                columnist   1
## 12607                    gap                    north   1
## 12608                  garbi                   failed   1
## 12609                garbled             transmission   1
## 12610            gardanibagh                 district   1
## 12611                 gardel                       44   1
## 12612                 garden                     city   1
## 12613                 garden                    short   1
## 12614                gardner                   knight   1
## 12615                gardner                  sitting   1
## 12616               garrison                    cargo   1
## 12617                 garuda                 aircraft   1
## 12618                    gas                      hit   1
## 12619                    gas                     main   1
## 12620                    gas                      rig   1
## 12621                    gas                    tanks   1
## 12622                    gas                      u.s   1
## 12623                gasbags                  crashed   1
## 12624                gasbags                 ruptured   1
## 12625               gasoline                    cross   1
## 12626               gasoline                   vapors   1
## 12627                   gate                  shortly   1
## 12628                   gate                   thirty   1
## 12629                  gauge                  compass   1
## 12630                  gauge                  crashed   1
## 12631                gauhati                   struck   1
## 12632                    gca                 guidance   1
## 12633                    gca                   runway   1
## 12634                   gear                alternate   1
## 12635                   gear                  awkward   1
## 12636                   gear                   brakes   1
## 12637                   gear                    broke   1
## 12638                   gear                   caused   1
## 12639                   gear                    chain   1
## 12640                   gear               compressor   1
## 12641                   gear                   damage   1
## 12642                   gear                   engine   1
## 12643                   gear                 extended   1
## 12644                   gear                    found   1
## 12645                   gear                   handle   1
## 12646                   gear                  hitting   1
## 12647                   gear                  housing   1
## 12648                   gear              immediately   1
## 12649                   gear                indicator   1
## 12650                   gear                    latch   1
## 12651                   gear                     left   1
## 12652                   gear                      leg   1
## 12653                   gear                     legs   1
## 12654                   gear                  locking   1
## 12655                   gear                  lowered   1
## 12656                   gear                resulting   1
## 12657                   gear               retraction   1
## 12658                   gear                  sheared   1
## 12659                   gear                     slid   1
## 12660                   gear                     tube   1
## 12661                   gear                   unsafe   1
## 12662                   gear                   veered   1
## 12663                   gear                  warning   1
## 12664                gearbox                   filter   1
## 12665                gearbox                      oil   1
## 12666                  gears                collapsed   1
## 12667                  gears                  snagged   1
## 12668                   gene                 hershe's   1
## 12669                   gene              roddenberry   1
## 12670               generate                     heat   1
## 12671              generator                    buses   1
## 12672              generator                  control   1
## 12673              generator                   failed   1
## 12674              generator              inoperative   1
## 12675              generator                     lead   1
## 12676              generator                  passing   1
## 12677              generator                    power   1
## 12678              generator                resulting   1
## 12679              generator                 suffered   1
## 12680              generator                   system   1
## 12681             generators                  failure   1
## 12682                 geneva               controller   1
## 12683                 geneva              switzerland   1
## 12684                  genoa                     peak   1
## 12685                genuine                    bolts   1
## 12686                geogian                  airways   1
## 12687             geographic                 location   1
## 12688           geographical           disorientation   1
## 12689           geographical                 features   1
## 12690                  georg                    bluen   1
## 12691                 george                  airport   1
## 12692                 george                    bates   1
## 12693                 george                     bush   1
## 12694                 george                  collins   1
## 12695                 george                     duke   1
## 12696                 george                    evans   1
## 12697                 george                mickelson   1
## 12698                 george                 sherlock   1
## 12699                 george                  stevens   1
## 12700                 george                   thomas   1
## 12701               george's                  channel   1
## 12702                georgel                    cogar   1
## 12703             georgetown                  airport   1
## 12704                georgia                 lawrence   1
## 12705                georgia                 regional   1
## 12706               georgian                    rebel   1
## 12707                 german                      air   1
## 12708                 german                   border   1
## 12709                 german                   cessna   1
## 12710                 german                  fighter   1
## 12711                 german                 fighters   1
## 12712                 german                  inquiry   1
## 12713                 german              limitations   1
## 12714                 german                     mail   1
## 12715                 german                passenger   1
## 12716                 german                   patrol   1
## 12717                 german                      sky   1
## 12718                 german                   sopena   1
## 12719                 german                submarine   1
## 12720                 german                 tourists   1
## 12721                germans                 believed   1
## 12722                germany                   border   1
## 12723              ghatkopar                     hill   1
## 12724                 giants                  pitcher   1
## 12725                gilbert                   graham   1
## 12726                  gimli                   glider   1
## 12727                ginette                    neveu   1
## 12728                   girl                        6   1
## 12729                   girl                  cecilia   1
## 12730                   girl                     died   1
## 12731                   girl                      ran   1
## 12732                 giving               directions   1
## 12733                 giving                    false   1
## 12734                    gjz                  crashed   1
## 12735                glacial                 crevasse   1
## 12736                glacial                  terrain   1
## 12737                glacier                 airstrip   1
## 12738            glacier.the                  pilot's   1
## 12739                  glade                 mountain   1
## 12740                glasgow                  killing   1
## 12741                  glass                  cockpit   1
## 12742                 glassy                    water   1
## 12743                  glenn                   miller   1
## 12744              glidepath                alignment   1
## 12745             glideslope             contributing   1
## 12746             glideslope                 improper   1
## 12747             glideslope               increasing   1
## 12748                 global              positioning   1
## 12749                  globe                  gazette   1
## 12750                 gloria                located10   1
## 12751                   gnss                 approach   1
## 12752                   godo                      olo   1
## 12753                  gogol                    river   1
## 12754                   gohu                 airstrip   1
## 12755                goigira                  indians   1
## 12756                 golath                 mountain   1
## 12757                   gold                     mine   1
## 12758                   gold                   miners   1
## 12759                   gold                 platinum   1
## 12760                 golden                     gate   1
## 12761                 golfer                 clarence   1
## 12762                 golfer                    payne   1
## 12763                 golfer                     tony   1
## 12764                   goma                  airport   1
## 12765               goma.the                 accident   1
## 12766                  gomes            international   1
## 12767                gondola                  causing   1
## 12768               gonzales                       27   1
## 12769                goodbye                  message   1
## 12770               goodyear                       fg   1
## 12771                  goose                      bay   1
## 12772                   gora                 improper   1
## 12773                   gora                mountains   1
## 12774                 gorgan                  shortly   1
## 12775                  gorge                       10   1
## 12776                  gorge                 decision   1
## 12777                  gorky                    pilot   1
## 12778                 gotera                     hill   1
## 12779             gothenburg                      due   1
## 12780             government                 agencies   1
## 12781             government                  charter   1
## 12782             government                  claimed   1
## 12783             government                convicted   1
## 12784             government                   forces   1
## 12785             government                  mission   1
## 12786             government                officials   1
## 12787             government                    plane   1
## 12788             government                regretted   1
## 12789             government                    riots   1
## 12790             government                     test   1
## 12791               governor                  control   1
## 12792               governor               detachment   1
## 12793               governor                      due   1
## 12794               governor                   george   1
## 12795               governor                     igor   1
## 12796               governor                  spindle   1
## 12797                    gps                installed   1
## 12798                   gpws                    alarm   1
## 12799                   gpws                   warned   1
## 12800                   grab                     hold   1
## 12801                  grace                    moore   1
## 12802                  grada                     zuma   1
## 12803                gradual                     loss   1
## 12804              gradually               increasing   1
## 12805                 graham                       60   1
## 12806                 graham                     hill   1
## 12807                   gran                   canana   1
## 12808                granada                 deviated   1
## 12809                  grand                  comoros   1
## 12810                  grand                     duke   1
## 12811                  grand                   island   1
## 12812                  grand                     wash   1
## 12813                 grande                       de   1
## 12814                 grande                guatemala   1
## 12815                 grande                 mountain   1
## 12816                 grande                    range   1
## 12817            grandstands                  killing   1
## 12818                granite                     rock   1
## 12819                  grant                     park   1
## 12820                  grass                   caught   1
## 12821                  grass          nonavailability   1
## 12822                 grassy                     farm   1
## 12823                 grassy                    field   1
## 12824                 grassy                     spot   1
## 12825            gravational                   forces   1
## 12826                 gravel                 airstrip   1
## 12827                gravity                condition   1
## 12828                gravity                  crashed   1
## 12829                gravity                   factor   1
## 12830                gravity               improperly   1
## 12831                gravity                    limit   1
## 12832                gravity                     load   1
## 12833                gravity                resulting   1
## 12834                gravity                  shifted   1
## 12835                gravity                  takeoff   1
## 12836                   gray                 mountain   1
## 12837                 gredos                 mountain   1
## 12838                  greek                 airspace   1
## 12839                  greek                hungarian   1
## 12840                  greek               insurgents   1
## 12841                  green                    cross   1
## 12842                  green                     hell   1
## 12843                grenade                  brought   1
## 12844                grenade                  crashed   1
## 12845                grenade               explosions   1
## 12846                   grey                     nuns   1
## 12847                greyout               conditions   1
## 12848                grooves                installed   1
## 12849                  gross                deviation   1
## 12850                  gross                    error   1
## 12851                grossly               overweight   1
## 12852                 ground                    1,000   1
## 12853                 ground                    1,360   1
## 12854                 ground                      1.5   1
## 12855                 ground                      100   1
## 12856                 ground                     12nm   1
## 12857                 ground                    2,300   1
## 12858                 ground                    2,380   1
## 12859                 ground                      2.5   1
## 12860                 ground                       22   1
## 12861                 ground                      300   1
## 12862                 ground                      400   1
## 12863                 ground                        5   1
## 12864                 ground                    5,000   1
## 12865                 ground                    5,500   1
## 12866                 ground                        6   1
## 12867                 ground                      600   1
## 12868                 ground                       65   1
## 12869                 ground                      700   1
## 12870                 ground                      75m   1
## 12871                 ground                       94   1
## 12872                 ground                   banked   1
## 12873                 ground                    based   1
## 12874                 ground                    belly   1
## 12875                 ground                    broke   1
## 12876                 ground                    cargo   1
## 12877                 ground                   caught   1
## 12878                 ground                  causing   1
## 12879                 ground           communications   1
## 12880                 ground                    crash   1
## 12881                 ground                 crashing   1
## 12882                 ground                  cutting   1
## 12883                 ground                   effect   1
## 12884                 ground               eventually   1
## 12885                 ground                exploding   1
## 12886                 ground             facililities   1
## 12887                 ground                first.the   1
## 12888                 ground                 guidance   1
## 12889                 ground                  handler   1
## 12890                 ground                      hit   1
## 12891                 ground              immediately   1
## 12892                 ground           incapacitation   1
## 12893                 ground                including   1
## 12894                 ground                 inverted   1
## 12895                 ground                  killing   1
## 12896                 ground                     lack   1
## 12897                 ground                   lights   1
## 12898                 ground                    locks   1
## 12899                 ground                     loop   1
## 12900                 ground                   looped   1
## 12901                 ground                  looping   1
## 12902                 ground                     loss   1
## 12903                 ground              malfunction   1
## 12904                 ground           malfunctioning   1
## 12905                 ground               mechanical   1
## 12906                 ground             misconstrued   1
## 12907                 ground              observation   1
## 12908                 ground                 occurred   1
## 12909                 ground               officially   1
## 12910                 ground                     poor   1
## 12911                 ground              prematurely   1
## 12912                 ground               references   1
## 12913                 ground                 reported   1
## 12914                 ground                   rolled   1
## 12915                 ground                  rolling   1
## 12916                 ground                      run   1
## 12917                 ground                 shearing   1
## 12918                 ground                     shot   1
## 12919                 ground                 sideways   1
## 12920                 ground                   singer   1
## 12921                 ground                     slid   1
## 12922                 ground                    slide   1
## 12923                 ground                    speed   1
## 12924                 ground                    split   1
## 12925                 ground                  spoiler   1
## 12926                 ground                   strong   1
## 12927                 ground                  taesa's   1
## 12928                 ground                     tail   1
## 12929                 ground                      ten   1
## 12930                 ground                   thirty   1
## 12931                 ground                  touched   1
## 12932                 ground                traveling   1
## 12933                 ground               turbulence   1
## 12934                 ground                      u.s   1
## 12935                 ground              uncommanded   1
## 12936                 ground            unintentional   1
## 12937                 ground                 unwanted   1
## 12938                 ground                   varies   1
## 12939                 ground                 vehicles   1
## 12940                 ground                  warning   1
## 12941                 ground                     wire   1
## 12942                 ground                witnesses   1
## 12943                group's                    plane   1
## 12944                  grove                       35   1
## 12945                 grozny                reporting   1
## 12946                    gua                   musang   1
## 12947              guadalupe            international   1
## 12948                guajara                      bay   1
## 12949                   guam                descended   1
## 12950                   guam            international   1
## 12951              guangzhou                  hitting   1
## 12952                  guape                mountains   1
## 12953                  guard                    block   1
## 12954                  guard                  crashed   1
## 12955                  guard            demonstration   1
## 12956                  guard                   lights   1
## 12957                  guard                    plane   1
## 12958                  guard                     ship   1
## 12959                 guards                including   1
## 12960              guarulhos                  airport   1
## 12961            guatemala's                   aurora   1
## 12962              guatiquia                    river   1
## 12963                guayana                  crashed   1
## 12964              guayaquil               procedural   1
## 12965                gudgeon                      pin   1
## 12966              guerrilla                   forces   1
## 12967              guerrilla                   mortar   1
## 12968                 guiaba                    smoke   1
## 12969               guidance                  segment   1
## 12970                  guide                    found   1
## 12971             guidelines             requirements   1
## 12972                  guido                 cantelli   1
## 12973              guildford                  airport   1
## 12974              guildford                  shortly   1
## 12975                 guinea                    birds   1
## 12976               guipavas                  airport   1
## 12977             guitangola             neighborhood   1
## 12978              guitarist                     jean   1
## 12979                guizhou                 province   1
## 12980                   gulf                        8   1
## 12981                   gulf            approximately   1
## 12982                    gun                 barrells   1
## 12983                    gun                   battle   1
## 12984                    gun                    boats   1
## 12985                gunfire                   aboard   1
## 12986                   guns                 hijacked   1
## 12987                 gunung                     pike   1
## 12988                   gust                    locks   1
## 12989                 gustav                    adolf   1
## 12990                  gusts              encountered   1
## 12991                guthrie                     song   1
## 12992               guyana's                   jungle   1
## 12993               gwammaja            approximately   1
## 12994             gymnastics                 champion   1
## 12995                   gyro                   caused   1
## 12996                   gyro                compasses   1
## 12997                   gyro                  crashed   1
## 12998                   gyro              instruments   1
## 12999                   gyro                   system   1
## 13000                     ha                 airfield   1
## 13001                hachijo               navigation   1
## 13002                   hãƒâ                      ãƒâ   1
## 13003                 hahaya                  airport   1
## 13004                   hail                  clogged   1
## 13005                   hail               penetrated   1
## 13006                 hainan                   island   1
## 13007               hairline                 fracture   1
## 13008                haitien                  airport   1
## 13009                    haj                  pilgrim   1
## 13010                 halawa                      bay   1
## 13011                   hale                    boggs   1
## 13012                   half                  circuit   1
## 13013                   half                  crashed   1
## 13014                   half                    crazy   1
## 13015                   half                     hour   1
## 13016                   half                    hours   1
## 13017                   half                    miles   1
## 13018                   half                   minute   1
## 13019                   half                     moon   1
## 13020                   half                     time   1
## 13021              halkidiki                peninsula   1
## 13022                  hambi                   bhabha   1
## 13023           hammarskjãƒâ                       ld   1
## 13024                    han                    river   1
## 13025                   hand                       ac   1
## 13026                   hand                     ball   1
## 13027                   hand                  circles   1
## 13028                   hand                     flap   1
## 13029                   hand                     held   1
## 13030                   hand               horizontal   1
## 13031                   hand                  inboard   1
## 13032                   hand                  luggage   1
## 13033                   hand                 outboard   1
## 13034                   hand                  pattern   1
## 13035                   hand                propeller   1
## 13036                   hand                     seat   1
## 13037                   hand                   spiral   1
## 13038                handler                   forgot   1
## 13039               handling                 building   1
## 13040               handling          characteristics   1
## 13041                 hangar                  spacial   1
## 13042                 hanger                  crashed   1
## 13043                hangers                     loss   1
## 13044               hanjiang                    river   1
## 13045                  hanoi                       15   1
## 13046                  hanoi                  airport   1
## 13047                  hanoi                    north   1
## 13048                hanover               visibility   1
## 13049                 hansie                   cronje   1
## 13050               happened                        1   1
## 13051               happened                 durining   1
## 13052                    haq                       64   1
## 13053                 harbor              immediately   1
## 13054                 harbor               improperly   1
## 13055               harcourt                  airport   1
## 13056                   hard                  bounced   1
## 13057                   hard                  causing   1
## 13058                   hard                 clipping   1
## 13059                   hard               collapsing   1
## 13060                   hard                     left   1
## 13061                   hard                    pilot   1
## 13062                   hard                   pulled   1
## 13063                   hard                    shell   1
## 13064                   hard                  skidded   1
## 13065                 harder                     lost   1
## 13066               hardover                  crashed   1
## 13067                  haren                  airport   1
## 13068           haringvreter                   island   1
## 13069                 hariri            international   1
## 13070                 harold                   whitey   1
## 13071                harrier                      jet   1
## 13072                harvard                 aircraft   1
## 13073                harvard                  failure   1
## 13074                harvard                     mark   1
## 13075                harvard                   planes   1
## 13076                 hasaba              marketplace   1
## 13077                hassani                  airport   1
## 13078                hastily                 mustered   1
## 13079                   hato                    nuevo   1
## 13080                  hatta            international   1
## 13081                 havana                   josãƒâ   1
## 13082              havilland                 aircraft   1
## 13083              havilland                     dhc3   1
## 13084                 hawaii            approximately   1
## 13085                 hawaii                  clipper   1
## 13086                   hawk              helicopters   1
## 13087                hawkins                       39   1
## 13088               hawkshaw                  hawkins   1
## 13089                  hayti                 mountain   1
## 13090                 hazard                  crashed   1
## 13091                 hazard                  existed   1
## 13092                 hazard              information   1
## 13093              hazardous                 behavior   1
## 13094              hazardous               conditions   1
## 13095              hazardous                   rudder   1
## 13096              hazardous                    worse   1
## 13097                   haze                   rising   1
## 13098                   haze                    smoke   1
## 13099                   head                   caused   1
## 13100                   head                     heat   1
## 13101                   head                  heaters   1
## 13102                   head                standpipe   1
## 13103                 headed                    north   1
## 13104                 headed                     west   1
## 13105                heading                 airspeed   1
## 13106                heading                     flew   1
## 13107                heading                   flying   1
## 13108                heading                     home   1
## 13109                heading               indication   1
## 13110                heading                 opposite   1
## 13111                heading                 sikorsky   1
## 13112                heading                     west   1
## 13113               headwind                component   1
## 13114                 health                   center   1
## 13115                 health                condition   1
## 13116                  heard                 shouting   1
## 13117                  heard                  unusual   1
## 13118                  heart                condition   1
## 13119                  heart                  trouble   1
## 13120                   heat                 controls   1
## 13121                   heat                      due   1
## 13122                   heat                exchanger   1
## 13123                   heat                  seeking   1
## 13124                   heat                   system   1
## 13125                 heater                      air   1
## 13126                 heater              compartment   1
## 13127                 heater                   shroud   1
## 13128                 heater                   system   1
## 13129             heathfield                 airfield   1
## 13130                heating                   system   1
## 13131                heavier                touchdown   1
## 13132                heavily               customized   1
## 13133                heavily                     iced   1
## 13134                heavily                  insured   1
## 13135                heavily                populated   1
## 13136                heavily                    short   1
## 13137                heavily                 timbered   1
## 13138                heavily                     wood   1
## 13139                heavily                   wooded   1
## 13140                  heavy             accumulation   1
## 13141                  heavy                 aircraft   1
## 13142                  heavy                    cargo   1
## 13143                  heavy                   clouds   1
## 13144                  heavy            concentration   1
## 13145                  heavy                  control   1
## 13146                  heavy                    cross   1
## 13147                  heavy                crosswind   1
## 13148                  heavy                  deposit   1
## 13149                  heavy                    earth   1
## 13150                  heavy                 fighting   1
## 13151                  heavy                 freezing   1
## 13152                  heavy                   ground   1
## 13153                  heavy                      jet   1
## 13154                  heavy                    layer   1
## 13155                  heavy                  machine   1
## 13156                  heavy                    metal   1
## 13157                  heavy                  monsoon   1
## 13158                  heavy            precipitation   1
## 13159                  heavy                    rains   1
## 13160                  heavy                    smoke   1
## 13161                  heavy                 snowfall   1
## 13162                  heavy                    storm   1
## 13163                  heavy                   timber   1
## 13164                  heavy                     user   1
## 13165                  heavy                vibration   1
## 13166                  heavy                    water   1
## 13167                  heavy                  weather   1
## 13168                  heavy                    winds   1
## 13169                  heavy                 workload   1
## 13170                   heed                      air   1
## 13171                   heed                     gpws   1
## 13172                   heed                 warnings   1
## 13173                   heho                  airport   1
## 13174                   heho                      due   1
## 13175                 height               assessment   1
## 13176                 height                    broke   1
## 13177                 height                  clipped   1
## 13178                 height                  crashed   1
## 13179                 height              disregarded   1
## 13180                 height                      hit   1
## 13181                 height              immediately   1
## 13182                 height                 improper   1
## 13183                 height               prescribed   1
## 13184                 height                  quickly   1
## 13185                 height                  shortly   1
## 13186                 height                  touched   1
## 13187                 height                   whilst   1
## 13188                  heinz                      iii   1
## 13189                   held                  surface   1
## 13190                  helen                    blair   1
## 13191                  helen                 hokinson   1
## 13192              helgoland                   island   1
## 13193           helicocopter                  seventy   1
## 13194            helicopoter                  crashed   1
## 13195             helicopter               apparently   1
## 13196             helicopter              autorotated   1
## 13197             helicopter                 belonged   1
## 13198             helicopter                    bound   1
## 13199             helicopter                  carried   1
## 13200             helicopter                   cashed   1
## 13201             helicopter                   caught   1
## 13202             helicopter                     cccp   1
## 13203             helicopter                certified   1
## 13204             helicopter                  clipped   1
## 13205             helicopter                 collided   1
## 13206             helicopter             contributing   1
## 13207             helicopter                  control   1
## 13208             helicopter                developed   1
## 13209             helicopter              disappeared   1
## 13210             helicopter                 disaster   1
## 13211             helicopter                      due   1
## 13212             helicopter              encountered   1
## 13213             helicopter                 exceeded   1
## 13214             helicopter             experiencing   1
## 13215             helicopter                 exploded   1
## 13216             helicopter                     fell   1
## 13217             helicopter                   flying   1
## 13218             helicopter                   headed   1
## 13219             helicopter                      hit   1
## 13220             helicopter                including   1
## 13221             helicopter                     lost   1
## 13222             helicopter                   n124nh   1
## 13223             helicopter                   nascar   1
## 13224             helicopter          photojournalist   1
## 13225             helicopter                    pilot   1
## 13226             helicopter                  piloted   1
## 13227             helicopter                   pilots   1
## 13228             helicopter                  pioneer   1
## 13229             helicopter                  pitched   1
## 13230             helicopter                   rolled   1
## 13231             helicopter                  sending   1
## 13232             helicopter                separated   1
## 13233             helicopter           uncontrollable   1
## 13234             helicopter              windshields   1
## 13235             helicopter                 wreckage   1
## 13236           helicopter's                   blades   1
## 13237           helicopter's                  descent   1
## 13238           helicopter's              performance   1
## 13239           helicopter's                proximity   1
## 13240           helicopter's                    rotor   1
## 13241           helicopter's                    skids   1
## 13242            helicopterã                        â   1
## 13243            helicopters                     cart   1
## 13244            helicopters                  filming   1
## 13245            helicopters                   flying   1
## 13246            helicopters                     shot   1
## 13247            helicopters                   struck   1
## 13248            helicopters             transporting   1
## 13249               helideck                  located   1
## 13250            helilcopter                 collided   1
## 13251                helipad             contributing   1
## 13252               heliport                  fatigue   1
## 13253                 heller                    field   1
## 13254                 helmos                  located   1
## 13255                 helped                   rescue   1
## 13256          henderson.say                 critical   1
## 13257               hendrick                  failure   1
## 13258               hendrick              motorsports   1
## 13259                 herman                 mountain   1
## 13260                 heroic                  rescues   1
## 13261                herrera                 airfield   1
## 13262              hestfjall                  located   1
## 13263                    het                     ende   1
## 13264                 hickam                 airfield   1
## 13265              highlands                  shortly   1
## 13266                 highly                unbalance   1
## 13267                highway                 parallel   1
## 13268                highway                  shortly   1
## 13269                highway                  traffic   1
## 13270                 hijack                   flight   1
## 13271               hijacked               detonation   1
## 13272               hijacker                  crashed   1
## 13273               hijacker                  entered   1
## 13274               hijacker                   killed   1
## 13275               hijacker                   robbed   1
## 13276               hijacker                     shot   1
## 13277              hijackers                continued   1
## 13278              hijackers                 exploded   1
## 13279              hijackers                   fought   1
## 13280              hijackers                 survived   1
## 13281              hijackers                     told   1
## 13282              hijacking                  crashed   1
## 13283              hijacking                   lasted   1
## 13284                  hilal                 mountain   1
## 13285                   hill                    1,500   1
## 13286                   hill                       15   1
## 13287                   hill                       20   1
## 13288                   hill                       22   1
## 13289                   hill                     25km   1
## 13290                   hill                      3.8   1
## 13291                   hill                        4   1
## 13292                   hill                      450   1
## 13293                   hill                       46   1
## 13294                   hill                        5   1
## 13295                   hill                      600   1
## 13296                   hill                       70   1
## 13297                   hill                 believed   1
## 13298                   hill                 decision   1
## 13299                   hill                descended   1
## 13300                   hill                 exploded   1
## 13301                   hill                     flew   1
## 13302                   hill                    icing   1
## 13303                   hill                 improper   1
## 13304                   hill                  loosing   1
## 13305                   hill                 mountain   1
## 13306                   hill                northwest   1
## 13307                   hill                 obscured   1
## 13308                   hill               overloaded   1
## 13309                   hill                  pulling   1
## 13310                   hill               separation   1
## 13311                   hill                 suffered   1
## 13312                   hill                 wreckage   1
## 13313                  hills                    pilot   1
## 13314               hillside                       24   1
## 13315               hillside                        3   1
## 13316               hillside                       32   1
## 13317               hillside                        4   1
## 13318               hillside                      500   1
## 13319               hillside                        7   1
## 13320               hillside             insufficient   1
## 13321               hillside                     road   1
## 13322               hillside                  shortly   1
## 13323               hillside                 suffered   1
## 13324               hillside                    woods   1
## 13325                  hilly                   wooded   1
## 13326                 hilton            international   1
## 13327               himalaya                mountains   1
## 13328             hindenburg                   caught   1
## 13329           hindenburg's                    outer   1
## 13330                  hinge                     bolt   1
## 13331                  hinge                    bolts   1
## 13332                  hinge                   moment   1
## 13333                  hinge                 movement   1
## 13334              hirsthals                  denmark   1
## 13335                history             asymmetrical   1
## 13336                history                      kyu   1
## 13337                    hit                   15,500   1
## 13338                    hit                 apporach   1
## 13339                    hit                 approach   1
## 13340                    hit                    avala   1
## 13341                    hit                  caparao   1
## 13342                    hit                    cloud   1
## 13343                    hit               concepcion   1
## 13344                    hit             construction   1
## 13345                    hit                  crystal   1
## 13346                    hit                   debris   1
## 13347                    hit                       el   1
## 13348                    hit                     hong   1
## 13349                    hit               navigation   1
## 13350                    hit                   nearby   1
## 13351                    hit                     pico   1
## 13352                    hit                   rising   1
## 13353                    hit                   severe   1
## 13354                    hit                       st   1
## 13355                    hit                 surveyor   1
## 13356                    hit                     tail   1
## 13357                    hit               turbulence   1
## 13358                hitting                 electric   1
## 13359                hitting                      pas   1
## 13360                   hiva                       ou   1
## 13361                     hk                      107   1
## 13362                     hk                      134   1
## 13363                     ho                      chi   1
## 13364                 hobart              inadvertent   1
## 13365                 hockey                     club   1
## 13366                 hoikow                   hainan   1
## 13367               hokinson                       56   1
## 13368                   hold               consisting   1
## 13369                   hold                  crashed   1
## 13370                   hold                      led   1
## 13371                   hold                    short   1
## 13372                   hold                terrorist   1
## 13373                holding                clearance   1
## 13374                holding                 patterns   1
## 13375                holding               procedures   1
## 13376                   hole                  airport   1
## 13377                   hole                 illusion   1
## 13378                   hole                     lost   1
## 13379                  holes                 directly   1
## 13380               holidays                 possibly   1
## 13381                  holly                       22   1
## 13382                  holly                chartered   1
## 13383              hollywood                  jeweler   1
## 13384                holston                  located   1
## 13385                   holy                    cross   1
## 13386                   holy                   island   1
## 13387                   home                     base   1
## 13388                   home                 cemetery   1
## 13389                   home                  defence   1
## 13390                   home                  factors   1
## 13391                   home                      ill   1
## 13392              homebuilt                    plane   1
## 13393               homeless                  shortly   1
## 13394               homemade                explosive   1
## 13395               homemade                parachute   1
## 13396                  homer                  airport   1
## 13397                  homes                  killing   1
## 13398                  homes                     lost   1
## 13399                 homing                   beacon   1
## 13400            hommelfjell                 mountain   1
## 13401             hommelvika                      bay   1
## 13402            homogeneous                      fog   1
## 13403               honolulu                        5   1
## 13404               honolulu                   hawaii   1
## 13405               honolulu             navigational   1
## 13406               honolulu                 wreckage   1
## 13407                  honor                       en   1
## 13408               honorãƒâ                  airport   1
## 13409                hooghly                    river   1
## 13410                hooters               restaurant   1
## 13411                 hoover                      dam   1
## 13412                   hope                     lost   1
## 13413                   hora                 mountain   1
## 13414                horizon                 airspeed   1
## 13415                horizon                  failure   1
## 13416                horizon                    radar   1
## 13417               horizons            malfunctioned   1
## 13418             horizontal                 distance   1
## 13419             horizontal                     spar   1
## 13420             horizontal              stabilizers   1
## 13421             horizontal                  surface   1
## 13422                   horn                 assembly   1
## 13423                   horn                  sounded   1
## 13424               horqueta                 mountain   1
## 13425                  horse                     farm   1
## 13426                  horta                  control   1
## 13427                  horta                    faial   1
## 13428                  horus                     shot   1
## 13429                   hose                  crashed   1
## 13430                hoskins                       en   1
## 13431               hospital                  contact   1
## 13432               hospital                      due   1
## 13433                   host                     dean   1
## 13434                hostage                   rescue   1
## 13435               hostages                   caught   1
## 13436               hostages                   killed   1
## 13437                hostile                   action   1
## 13438                    hot                    brake   1
## 13439                    hot                    metal   1
## 13440                    hot                 tailpipe   1
## 13441                  hotel                  complex   1
## 13442                  hotel                 impacted   1
## 13443                  hotel                   lights   1
## 13444                  hotel                  parking   1
## 13445                  hotel                  shortly   1
## 13446                  hotel                   worker   1
## 13447                hotel's                    lobby   1
## 13448                   hour               destroying   1
## 13449                   hour                  earlier   1
## 13450                   hour                     gale   1
## 13451                   hour                  journey   1
## 13452                   hour                scheduled   1
## 13453                   hour                   unable   1
## 13454                   hour                     wait   1
## 13455                  hours                  crashed   1
## 13456                  hours                   flying   1
## 13457                  hours              intentional   1
## 13458                  hours                      sas   1
## 13459                  hours                    sleep   1
## 13460                  hours                  waiting   1
## 13461                  house                 bursting   1
## 13462                  house                   failed   1
## 13463                  house                 improper   1
## 13464                  house                   kenyan   1
## 13465                  house                    lodge   1
## 13466                  house                 majority   1
## 13467                  house                  weather   1
## 13468                 houses                    4,980   1
## 13469                 houses                        8   1
## 13470                 houses                    burnt   1
## 13471                 houses                 bursting   1
## 13472                 houses                   coming   1
## 13473                 houses              disappeared   1
## 13474                 houses                  failure   1
## 13475                 houses                 fracture   1
## 13476                 houses                  located   1
## 13477                 houses                    pilot   1
## 13478                 houses                  remains   1
## 13479                 houses                     shot   1
## 13480                 houses                  skidded   1
## 13481                housing                     camp   1
## 13482                housing                   colony   1
## 13483                housing                  complex   1
## 13484                housing                      due   1
## 13485                housing              electronics   1
## 13486                housing                   offset   1
## 13487                housing                  project   1
## 13488                houston                 hospital   1
## 13489                houston                 national   1
## 13490                houston                   tracon   1
## 13491               hovering                      low   1
## 13492                 howard                       42   1
## 13493                 howard                     hunt   1
## 13494                 howard                   keefer   1
## 13495                  hoyos                mountains   1
## 13496                     hp                  turbine   1
## 13497                hsinchu               instrument   1
## 13498                hsinchu                  shortly   1
## 13499                 huambo                  airport   1
## 13500                 huambo                    heavy   1
## 13501                huanuco                   midair   1
## 13502             huaricanga                  crashed   1
## 13503                 huayna                     hill   1
## 13504                 huayna                     pass   1
## 13505                    hub                 resulted   1
## 13506              hubermann               celibrated   1
## 13507                 hudbay                      oil   1
## 13508                 hughes                       35   1
## 13509              huirotico                     hill   1
## 13510                   hull                  rupture   1
## 13511                   hull                 ruptured   1
## 13512                   hull                structure   1
## 13513                  human                    error   1
## 13514                  human              fallibility   1
## 13515                  human                     life   1
## 13516                  human                 response   1
## 13517                  human                   vision   1
## 13518           humanitarian                      aid   1
## 13519           humanitarian                  mission   1
## 13520           humanitarian                   relief   1
## 13521                  humid                     salt   1
## 13522              humilikon                     died   1
## 13523                  humpy                    ridge   1
## 13524                hundred                    forty   1
## 13525                hundred                   meters   1
## 13526                hundred                    miles   1
## 13527                hundred                    sixty   1
## 13528                hundred                 thirteen   1
## 13529                hundred                   twelve   1
## 13530                hundred                   twenty   1
## 13531                hundred                    yards   1
## 13532              hungarian                   border   1
## 13533              hungarian              journalists   1
## 13534                   hunt                  dorothy   1
## 13535                hunting                  charter   1
## 13536             huntington                     west   1
## 13537                   huon                     gulf   1
## 13538              hurricane                  crashed   1
## 13539              hurricane                     emmy   1
## 13540              hurricane                    matmo   1
## 13541              hurricane                     nari   1
## 13542                hurried                departure   1
## 13543                  hurry               electrical   1
## 13544                   hurt                   eleven   1
## 13545                husband                 remained   1
## 13546                hussain                     abad   1
## 13547                 hutska                     hora   1
## 13548                  hyatt                       46   1
## 13549              hydraulic                 actuator   1
## 13550              hydraulic                  circuit   1
## 13551              hydraulic                  control   1
## 13552              hydraulic             difficulties   1
## 13553              hydraulic                     gust   1
## 13554              hydraulic                     line   1
## 13555              hydraulic                    pitch   1
## 13556              hydraulic                    power   1
## 13557              hydraulic                 pressure   1
## 13558              hydraulic                    pumps   1
## 13559              hydraulic                     unit   1
## 13560             hydraulics                  systems   1
## 13561          hydroelectric                  project   1
## 13562               hydrogen                  airbags   1
## 13563           hydroplaning                      due   1
## 13564              hypobaric                  hypoxia   1
## 13565                hypoxia                      due   1
## 13566                hypoxia                    prior   1
## 13567                    i.e                 inverted   1
## 13568              ibicarãƒâ                       25   1
## 13569                    ice                        4   1
## 13570                    ice                 accreted   1
## 13571                    ice              accumulated   1
## 13572                    ice             accumulation   1
## 13573                    ice                 additive   1
## 13574                    ice                 breaking   1
## 13575                    ice                    build   1
## 13576                    ice                      cap   1
## 13577                    ice               capability   1
## 13578                    ice                    cream   1
## 13579                    ice                 crystals   1
## 13580                    ice                  failure   1
## 13581                    ice                     fall   1
## 13582                    ice                     floe   1
## 13583                    ice                     haze   1
## 13584                    ice                   inside   1
## 13585                    ice                      jam   1
## 13586                    ice              observation   1
## 13587                    ice                pollution   1
## 13588                    ice                propeller   1
## 13589                    ice               protection   1
## 13590                    ice                 remained   1
## 13591                    ice                  stalled   1
## 13592                    ice                    storm   1
## 13593                    ice                    strip   1
## 13594                    ice                   struck   1
## 13595                    ice                    valve   1
## 13596                   iced                 airframe   1
## 13597                   icer                    boots   1
## 13598                  icing                 agostino   1
## 13599                  icing                     boot   1
## 13600                  icing                   cashed   1
## 13601                  icing          certificication   1
## 13602                  icing                 contrary   1
## 13603                  icing                  descent   1
## 13604                  icing                      due   1
## 13605                  icing                equipment   1
## 13606                  icing                     flew   1
## 13607                  icing                    fluid   1
## 13608                  icing                    frost   1
## 13609                  icing                 fuselage   1
## 13610                  icing                 improper   1
## 13611                  icing                incorrect   1
## 13612                  icing                     lost   1
## 13613                  icing                   midair   1
## 13614                  icing                 multiple   1
## 13615                  icing                  occured   1
## 13616                  icing                    pilot   1
## 13617                  icing                  pitched   1
## 13618                  icing                resulting   1
## 13619                  icing                     shot   1
## 13620                  icing                   struck   1
## 13621                  icing                suspected   1
## 13622                  icing                   unable   1
## 13623                    icy                  regions   1
## 13624                    icy                    river   1
## 13625                    icy                     road   1
## 13626                    icy                   waters   1
## 13627             identified                 samantha   1
## 13628               identify                 document   1
## 13629               identify                 position   1
## 13630               identify                    santa   1
## 13631                   idle                    blade   1
## 13632                   idle                  causing   1
## 13633                   idle                   detent   1
## 13634                   idle                  leaving   1
## 13635                   idle                     mode   1
## 13636                   idle                    power   1
## 13637                    ifr               approaches   1
## 13638                    ifr                  landing   1
## 13639                    ifr                qualified   1
## 13640                    ifr                  traffic   1
## 13641                 igarka                  airport   1
## 13642                 ignite                  causing   1
## 13643                 ignite                hydraulic   1
## 13644                 ignite                  stalled   1
## 13645                ignited              accumulated   1
## 13646                ignited                  causing   1
## 13647                ignited                flammable   1
## 13648                ignited                  killing   1
## 13649               ignition                   energy   1
## 13650               ignition                    light   1
## 13651               ignition                   system   1
## 13652               ignition                  systems   1
## 13653               ignoring                mountains   1
## 13654                   igor             farkhutdinov   1
## 13655                     ii                 business   1
## 13656                     ii                     hero   1
## 13657                     ii                  kennedy   1
## 13658                     ii                  vintage   1
## 13659                  iiaga                     pass   1
## 13660                    iii                    radar   1
## 13661                  iinto                  terrain   1
## 13662                    iju                   ishaga   1
## 13663                  ikeja              disappeared   1
## 13664                ikustsk                        2   1
## 13665                     il                       62   1
## 13666                   il76                 believed   1
## 13667                   il76                     crew   1
## 13668                  ilaga                  airport   1
## 13669              ildefonso                 cordeiro   1
## 13670                   iles                       de   1
## 13671                   ilha                       de   1
## 13672                iliamna                  glacier   1
## 13673                iliniza                  volcano   1
## 13674                    ill                  captain   1
## 13675                    ill                    fated   1
## 13676                illegal                   flight   1
## 13677              illegally                    steal   1
## 13678                illicit              trafficking   1
## 13679               illinois                   george   1
## 13680               illinois                    trust   1
## 13681               illusion                      due   1
## 13682               illusion              experienced   1
## 13683               illusion                 produced   1
## 13684            illusionary                    sense   1
## 13685              illusions                  created   1
## 13686              illusions                 produced   1
## 13687               illusive                      fog   1
## 13688               illusory               inadequate   1
## 13689               ilopango                       el   1
## 13690                    ils               approaches   1
## 13691                    ils                  attempt   1
## 13692                    ils               glideslope   1
## 13693                    ils                  landing   1
## 13694                    ils                    pilot   1
## 13695                    ils                procedure   1
## 13696                    ils                 sidebeam   1
## 13697                    ils                   signal   1
## 13698                    ils                touchdown   1
## 13699                    ils                    track   1
## 13700                   imam                 khomeini   1
## 13701              imbalance                      air   1
## 13702              imbalance                checklist   1
## 13703              imbalance                prompting   1
## 13704              imbalance                 ruptured   1
## 13705             imbalanced                condition   1
## 13706                    imc                  causing   1
## 13707                    imc                conditons   1
## 13708                    imc                 improper   1
## 13709                    imc           overconfidence   1
## 13710                    imc                resulting   1
## 13711                    imc                  weather   1
## 13712            immediately                    ahead   1
## 13713            immediately                commenced   1
## 13714            immediately                 initiate   1
## 13715            immediately                   notify   1
## 13716            immediately                    prior   1
## 13717            immediately                  respond   1
## 13718            immediately                     sank   1
## 13719            immediately               subsequent   1
## 13720            immediately                 switched   1
## 13721               imminent                    stall   1
## 13722                 impact              approximate   1
## 13723                 impact                 controls   1
## 13724                 impact                   damage   1
## 13725                 impact                      due   1
## 13726                 impact                  failure   1
## 13727                 impact                inability   1
## 13728                 impact            investigators   1
## 13729                 impact               passengers   1
## 13730                 impact                     poor   1
## 13731                 impact               separation   1
## 13732                 impact                    short   1
## 13733                 impact                    split   1
## 13734                 impact                    trees   1
## 13735                 impact                  weather   1
## 13736             impact.two               passengers   1
## 13737               impacted                    franz   1
## 13738               impacted                   hutska   1
## 13739               impacted              mountainous   1
## 13740               impacted                   rising   1
## 13741               impacted                     snow   1
## 13742               impacted                upsloping   1
## 13743              impacting                  terrain   1
## 13744               impaired                 judgment   1
## 13745               impaired              performance   1
## 13746               impaired               visibility   1
## 13747             impairment                      due   1
## 13748             impairment          inattentiveness   1
## 13749                impared               visibility   1
## 13750              impending                    stall   1
## 13751               imperial                  airways   1
## 13752              implement               procedures   1
## 13753           implementing                    stall   1
## 13754                imposed              aerodynamic   1
## 13755             impossible              maintenance   1
## 13756             impossible                   midair   1
## 13757              imprecise                adherence   1
## 13758              imprecise            communication   1
## 13759              imprecise                 language   1
## 13760             impresario                   killed   1
## 13761               improper                   action   1
## 13762               improper               alteration   1
## 13763               improper              application   1
## 13764               improper               assumption   1
## 13765               improper             asymmetrical   1
## 13766               improper                    bolts   1
## 13767               improper              calculation   1
## 13768               improper                   center   1
## 13769               improper                    climb   1
## 13770               improper                  control   1
## 13771               improper              correlation   1
## 13772               improper                 decision   1
## 13773               improper                  deicing   1
## 13774               improper              dispatching   1
## 13775               improper               evaluation   1
## 13776               improper               feathering   1
## 13777               improper                     flap   1
## 13778               improper                    flare   1
## 13779               improper              installtion   1
## 13780               improper                 judgment   1
## 13781               improper                  landing   1
## 13782               improper               management   1
## 13783               improper                  minimum   1
## 13784               improper                   missed   1
## 13785               improper               monitoring   1
## 13786               improper             navigational   1
## 13787               improper              observation   1
## 13788               improper                operation   1
## 13789               improper                 piloting   1
## 13790               improper                  planned   1
## 13791               improper                 reaction   1
## 13792               improper                  removal   1
## 13793               improper                   repair   1
## 13794               improper                    reuse   1
## 13795               improper                  reverse   1
## 13796               improper                  rigging   1
## 13797               improper                 securing   1
## 13798               improper                     snow   1
## 13799               improper               techniques   1
## 13800               improper              terminology   1
## 13801               improper                     tool   1
## 13802               improper                 tracking   1
## 13803               improper                  turbine   1
## 13804               improper                  vectors   1
## 13805               improper                  weather   1
## 13806             improperly                 balanced   1
## 13807             improperly              distributed   1
## 13808             improperly                  indexed   1
## 13809             improperly                installed   1
## 13810             improperly                  labeled   1
## 13811             improperly                  trimmed   1
## 13812                improve                 improper   1
## 13813               improved                clearance   1
## 13814               improved                  contact   1
## 13815              improving                  weather   1
## 13816             improvised                   device   1
## 13817             impurities                  subject   1
## 13818             inaccurate                altimeter   1
## 13819             inaccurate                  weather   1
## 13820             inadequate                      air   1
## 13821             inadequate             arrangements   1
## 13822             inadequate                      atc   1
## 13823             inadequate                   charts   1
## 13824             inadequate                  cockpit   1
## 13825             inadequate                  conduct   1
## 13826             inadequate             coordination   1
## 13827             inadequate                depiction   1
## 13828             inadequate                       dr   1
## 13829             inadequate                emergency   1
## 13830             inadequate              enforcement   1
## 13831             inadequate                equipment   1
## 13832             inadequate                 external   1
## 13833             inadequate                 failsafe   1
## 13834             inadequate                 fidelity   1
## 13835             inadequate               functional   1
## 13836             inadequate                 handling   1
## 13837             inadequate             illumination   1
## 13838             inadequate              information   1
## 13839             inadequate               inspection   1
## 13840             inadequate              inspections   1
## 13841             inadequate              lubrication   1
## 13842             inadequate                     maps   1
## 13843             inadequate                 measures   1
## 13844             inadequate                  quality   1
## 13845             inadequate                 remedial   1
## 13846             inadequate                   repair   1
## 13847             inadequate                     risk   1
## 13848             inadequate                 security   1
## 13849             inadequate                     shot   1
## 13850             inadequate                    signs   1
## 13851             inadequate                  spacing   1
## 13852             inadequate                    stall   1
## 13853             inadequate                      vfr   1
## 13854             inadequate                   visual   1
## 13855             inadequate                  warning   1
## 13856             inadequate                  weather   1
## 13857           inadequately               evaluating   1
## 13858           inadequately               lubricated   1
## 13859           inadequately                   marked   1
## 13860           inadequately                 prepared   1
## 13861            inadvertent                actuation   1
## 13862            inadvertent               aerobatics   1
## 13863            inadvertent              application   1
## 13864            inadvertent               assumption   1
## 13865            inadvertent                  contact   1
## 13866            inadvertent               engagement   1
## 13867            inadvertent                    entry   1
## 13868            inadvertent               feathering   1
## 13869            inadvertent                  landing   1
## 13870            inadvertent                placement   1
## 13871            inadvertent               retraction   1
## 13872            inadvertent                selection   1
## 13873          inadvertently                 allowing   1
## 13874          inadvertently                   caused   1
## 13875          inadvertently                   closed   1
## 13876          inadvertently               disengaged   1
## 13877          inadvertently                dislodged   1
## 13878          inadvertently               dislodging   1
## 13879          inadvertently                  dropped   1
## 13880          inadvertently                  entered   1
## 13881          inadvertently                   filled   1
## 13882          inadvertently                     lost   1
## 13883          inadvertently                permitted   1
## 13884          inadvertently                  pressed   1
## 13885          inadvertently                   pushed   1
## 13886          inadvertently                  reduced   1
## 13887          inadvertently                     shot   1
## 13888          inadvertently                     shut   1
## 13889          inadvertently                triggered   1
## 13890          inadvertently                 wandered   1
## 13891          inappropriate                   action   1
## 13892          inappropriate                 altitude   1
## 13893          inappropriate              application   1
## 13894          inappropriate               clearances   1
## 13895          inappropriate                 decision   1
## 13896          inappropriate                emergency   1
## 13897          inappropriate               instrument   1
## 13898          inappropriate              medications   1
## 13899          inappropriate                 messages   1
## 13900          inappropriate                 presence   1
## 13901        inappropriately                  raising   1
## 13902              inaugural                westbound   1
## 13903                inboard                  engines   1
## 13904                inboard                     flap   1
## 13905                inboard                  midspar   1
## 13906                inboard                  spoiler   1
## 13907                inboard                 spoilers   1
## 13908                inbound                  traffic   1
## 13909         incapacitating                      gas   1
## 13910             incendiary                   device   1
## 13911                   inch                    crack   1
## 13912                   inch                    steel   1
## 13913                   inch                    thick   1
## 13914                 inches                    thick   1
## 13915               incirlik                      air   1
## 13916                include                   engine   1
## 13917                include                  falling   1
## 13918                include                   flight   1
## 13919                include              ineffective   1
## 13920                include                   narrow   1
## 13921                include                passenger   1
## 13922               included                      153   1
## 13923               included                       22   1
## 13924               included                 adequate   1
## 13925               included                   edelca   1
## 13926               included                   iran's   1
## 13927               included                 military   1
## 13928               included               overloaded   1
## 13929               included                     poor   1
## 13930               included                     weak   1
## 13931               included                  weather   1
## 13932              including                       12   1
## 13933              including                        2   1
## 13934              including                       31   1
## 13935              including                   chafed   1
## 13936              including                  charges   1
## 13937              including                civilians   1
## 13938              including            communicating   1
## 13939              including                 conflict   1
## 13940              including                  failure   1
## 13941              including                   howard   1
## 13942              including                     lack   1
## 13943              including                  lithium   1
## 13944              including                     loss   1
## 13945              including                     rain   1
## 13946              including                  weather   1
## 13947              including                windshear   1
## 13948               incoming                      fog   1
## 13949             incomplete               instrument   1
## 13950             incomplete              performance   1
## 13951           inconsistent                   flight   1
## 13952              incorrect                 airspeed   1
## 13953              incorrect                altimeter   1
## 13954              incorrect                 analysis   1
## 13955              incorrect                 computer   1
## 13956              incorrect                departure   1
## 13957              incorrect                 distance   1
## 13958              incorrect                  forcast   1
## 13959              incorrect                     fuel   1
## 13960              incorrect                    glide   1
## 13961              incorrect                 handling   1
## 13962              incorrect                   height   1
## 13963              incorrect              indications   1
## 13964              incorrect             installation   1
## 13965              incorrect                procedure   1
## 13966              incorrect               procedures   1
## 13967              incorrect                    radio   1
## 13968              incorrect                     read   1
## 13969              incorrect               reassembly   1
## 13970              incorrect                  service   1
## 13971              incorrect                    spark   1
## 13972            incorrectly               calculated   1
## 13973            incorrectly                connected   1
## 13974            incorrectly             contributing   1
## 13975            incorrectly               identified   1
## 13976            incorrectly                installed   1
## 13977            incorrectly               positioned   1
## 13978            incorrectly               processing   1
## 13979            incorrectly                 reported   1
## 13980            incorrectly                 selected   1
## 13981            incorrectly                  steered   1
## 13982               increase                 altitude   1
## 13983              increased                  causing   1
## 13984              increased                     drag   1
## 13985              increased                 maneuver   1
## 13986              increased                    power   1
## 13987              increased                     rate   1
## 13988              increased                    speed   1
## 13989             increasing                amplitude   1
## 13990             increasing                     bank   1
## 13991             increasing                deviation   1
## 13992             increasing                     drag   1
## 13993             increasing                     left   1
## 13994             increasing                     rate   1
## 13995             increasing                   thrust   1
## 13996             indefinite                      200   1
## 13997                indexed                propeller   1
## 13998                  india                   flight   1
## 13999                  india                   lahore   1
## 14000                india's                  nuclear   1
## 14001                 indian                 accident   1
## 14002                 indian                   border   1
## 14003                 indian                   mounds   1
## 14004                 indian                officials   1
## 14005                 indian                 soldiers   1
## 14006           indianapolis            international   1
## 14007             indicating                    alarm   1
## 14008             indicating                   engine   1
## 14009             indicating                   thrust   1
## 14010             indication                captain's   1
## 14011             indication                   caused   1
## 14012             indication                      due   1
## 14013             indication                      low   1
## 14014             indication                   system   1
## 14015             indication                  systems   1
## 14016            indications                 properly   1
## 14017            indications                resulting   1
## 14018              indicator                    light   1
## 14019              indicator                   lights   1
## 14020              indicator            malfunctioned   1
## 14021              indicator                    pilot   1
## 14022             indicators                     crew   1
## 14023                  indio                 national   1
## 14024             indirectly              contributed   1
## 14025             indonesian                 national   1
## 14026             indonesian                   police   1
## 14027             indonesian                 province   1
## 14028                induced                corrosion   1
## 14029                induced                 ignition   1
## 14030                induced             oscillations   1
## 14031                induced                 pressure   1
## 14032                induced                  scratch   1
## 14033          industrialist                  georgel   1
## 14034            ineffective                  control   1
## 14035            ineffective                corporate   1
## 14036            ineffective                    crash   1
## 14037            ineffective               management   1
## 14038                inertia                    force   1
## 14039               inertial                reference   1
## 14040          inexperienced                     crew   1
## 14041          inexperienced                    pilot   1
## 14042                 infant                    child   1
## 14043                 infant                     fell   1
## 14044               infantry                   troops   1
## 14045               inferior                  quality   1
## 14046               inflated                   inside   1
## 14047               inflated                     tire   1
## 14048               inflight                collision   1
## 14049               inflight                 decision   1
## 14050               inflight                departure   1
## 14051               inflight                encounter   1
## 14052               inflight                explosive   1
## 14053               inflight                     loss   1
## 14054               inflight                 planning   1
## 14055               inflight               structural   1
## 14056            information                   center   1
## 14057            information                  crashed   1
## 14058            information                developed   1
## 14059            information            dissemination   1
## 14060            information                   faulty   1
## 14061            information                 provided   1
## 14062            information                   system   1
## 14063            information              transmitted   1
## 14064               informed                    dubai   1
## 14065               informed                 valencia   1
## 14066             infrequent                operation   1
## 14067               ingested            inappropriate   1
## 14068               ingested                 numerous   1
## 14069              ingestion            certification   1
## 14070              ingestion                  crashed   1
## 14071              ingestion                      due   1
## 14072               inherent              assumptions   1
## 14073               inherent              limitations   1
## 14074               initally                 survived   1
## 14075                initial                  contact   1
## 14076                initial                     door   1
## 14077                initial                  failure   1
## 14078                initial                     fire   1
## 14079                initial                   ground   1
## 14080                initial                   impact   1
## 14081                initial                     lift   1
## 14082                initial               mechanical   1
## 14083                initial                 stoppage   1
## 14084                initial               structural   1
## 14085              initially                  blaming   1
## 14086              initially               distracted   1
## 14087              initially                  entered   1
## 14088              initially                 striking   1
## 14089              initially                 survived   1
## 14090               initiate                 remedial   1
## 14091              initiated                    crack   1
## 14092              initiated                     lack   1
## 14093             initiating                  element   1
## 14094             initiating                   flight   1
## 14095             initiating                     late   1
## 14096              injection                 assisted   1
## 14097              injection                   nozzle   1
## 14098                injured                  burning   1
## 14099                injured                   engine   1
## 14100                injured                     fuel   1
## 14101                injured               inadequacy   1
## 14102                injured                passenger   1
## 14103                injured               passengers   1
## 14104                injured                    rough   1
## 14105               injuries                      air   1
## 14106               injuries                  crashed   1
## 14107               injuries                   debris   1
## 14108               injuries                execution   1
## 14109               injuries              experienced   1
## 14110               injuries           pressurization   1
## 14111               injuries                   struck   1
## 14112               injuries                 suffered   1
## 14113 injuries.investigators                 believed   1
## 14114               injuring                       60   1
## 14115                  inlet                     anti   1
## 14116                  inlet                    icing   1
## 14117             inoperable                     gpws   1
## 14118             inoperable              transponder   1
## 14119            inoperative                  causing   1
## 14120            inoperative                  compass   1
## 14121            inoperative                generator   1
## 14122            inoperative                   ground   1
## 14123            inoperative                      ils   1
## 14124            inoperative                 improper   1
## 14125            inoperative                  newhall   1
## 14126            inoperative                    stick   1
## 14127             inordinate               management   1
## 14128                  input                 contrary   1
## 14129                  input                resulting   1
## 14130                  input                      rod   1
## 14131                  input                  rolling   1
## 14132                 inputs                  applied   1
## 14133                 inputs                      due   1
## 14134                 inputs                      led   1
## 14135                 inputs                resulting   1
## 14136                inquiry                 computer   1
## 14137                inquiry                concluded   1
## 14138                 insane                   asylum   1
## 14139                 insect                   smears   1
## 14140               insecure                 latching   1
## 14141               insfjãƒâ                     rãƒâ   1
## 14142                 inside                   crater   1
## 14143                 inside                   double   1
## 14144                 inside                  iranian   1
## 14145                 inside                reference   1
## 14146                 inside                     wing   1
## 14147             inspection                   failed   1
## 14148             inspection                   period   1
## 14149             inspection                    pilot   1
## 14150             inspection               procedures   1
## 14151             inspection                  program   1
## 14152             inspection              requirement   1
## 14153             inspection                 revealed   1
## 14154            inspections                  crashed   1
## 14155            inspector's                  failure   1
## 14156              installed                backwards   1
## 14157              installed                  crashed   1
## 14158              installed              disappeared   1
## 14159              installed                     earl   1
## 14160              installed                   flight   1
## 14161              installed                 viewport   1
## 14162             installing                 stronger   1
## 14163          instantaneous              oscillation   1
## 14164              institute                    inpec   1
## 14165             instructed                     crew   1
## 14166           instructions              approaching   1
## 14167           instructions                  crashed   1
## 14168           instructions               exercising   1
## 14169           instructions                  natalie   1
## 14170           instructions              transmitted   1
## 14171             instructor                   aboard   1
## 14172             instrument               approaches   1
## 14173             instrument                   caused   1
## 14174             instrument                 displays   1
## 14175             instrument                    final   1
## 14176             instrument              indications   1
## 14177             instrument                  letdown   1
## 14178             instrument                 lighting   1
## 14179             instrument                    panel   1
## 14180             instrument               procedures   1
## 14181             instrument              proficiency   1
## 14182             instrument               references   1
## 14183             instrument                     scan   1
## 14184             instrument                 training   1
## 14185        instrumentation                anomalies   1
## 14186        instrumentation             contributing   1
## 14187        instrumentation                     data   1
## 14188            instruments                 diverted   1
## 14189            instruments                  drifted   1
## 14190            instruments                      due   1
## 14191            instruments              incorrectly   1
## 14192            instruments                 magnetic   1
## 14193            instruments             sufficiently   1
## 14194             insturment                 landings   1
## 14195            insufficent                     fuel   1
## 14196           insufficient                 airspeed   1
## 14197           insufficient                  battery   1
## 14198           insufficient                  braking   1
## 14199           insufficient             deceleration   1
## 14200           insufficient                 emphasis   1
## 14201           insufficient                   engine   1
## 14202           insufficient               evaluation   1
## 14203           insufficient                 evidence   1
## 14204           insufficient                     fuel   1
## 14205           insufficient                 guidance   1
## 14206           insufficient                   height   1
## 14207           insufficient                knowledge   1
## 14208           insufficient              lubrication   1
## 14209           insufficient           meteorological   1
## 14210           insufficient               monitoring   1
## 14211           insufficient                    pitch   1
## 14212           insufficient              preparation   1
## 14213           insufficient                    speed   1
## 14214           insufficient                     time   1
## 14215           insufficient                 training   1
## 14216           insufficient            understanding   1
## 14217         insufficiently                  fatigue   1
## 14218         insufficiently                  trained   1
## 14219             insulation                 blankets   1
## 14220             insulation                  ignited   1
## 14221              insurance                   policy   1
## 14222              insurance                   scheme   1
## 14223             insurgents                  crashed   1
## 14224         insurmountable                     drag   1
## 14225                    int                   flames   1
## 14226                 intake                   system   1
## 14227                intakes             attributable   1
## 14228               intended              destination   1
## 14229               intended                  landing   1
## 14230               intended                 position   1
## 14231               intended                    route   1
## 14232               intended                   runway   1
## 14233               intended                    track   1
## 14234                intense                  frontal   1
## 14235                intense                     heat   1
## 14236                intense                     rain   1
## 14237                intense                rainstorm   1
## 14238                intense                vibration   1
## 14239              intensity                  crashed   1
## 14240              intensity                developed   1
## 14241              intensity            thunderstorms   1
## 14242              intensive                    climb   1
## 14243            intentional                   flight   1
## 14244            intentional               inhibition   1
## 14245            intentional                operation   1
## 14246            intentional                 shutdown   1
## 14247            intentional                      vfr   1
## 14248          intentionally               attempting   1
## 14249          intentionally             disconnected   1
## 14250          intentionally                   flying   1
## 14251          intentionally                   ground   1
## 14252              intercept                  heading   1
## 14253               intercom                   switch   1
## 14254           interference                  causing   1
## 14255          intergranular                fractures   1
## 14256               interior                   josãƒâ   1
## 14257               interior                weakening   1
## 14258           intermediate                     flap   1
## 14259           intermediate                 position   1
## 14260           intermediate                    stops   1
## 14261           intermittent              compartment   1
## 14262           intermittent                  failure   1
## 14263           intermittent             overspeeding   1
## 14264           intermittent                 stoppage   1
## 14265         intermittently              encountered   1
## 14266               internal                 decision   1
## 14267               internal                   engine   1
## 14268               internal                  failure   1
## 14269               internal                  gouging   1
## 14270               internal                 injuries   1
## 14271               internal             interference   1
## 14272         internatiional                  airport   1
## 14273          international                 airlines   1
## 14274          international              airport.the   1
## 14275          international                   haneda   1
## 14276          international            organizations   1
## 14277          international              regulations   1
## 14278          international                 security   1
## 14279        internationally                scheduled   1
## 14280              interpret                clearance   1
## 14281            interpreted                  crashed   1
## 14282           intersecting                   valley   1
## 14283           intersection                  killing   1
## 14284           intersection                 properly   1
## 14285           intersection                  takeoff   1
## 14286             interstate                   bridge   1
## 14287            intervening                   clouds   1
## 14288           intervention                 worsened   1
## 14289                intveld                       22   1
## 14290               inverted                       10   1
## 14291               inverted                     crew   1
## 14292               inverted                  failure   1
## 14293               inverted                 improper   1
## 14294               inverted                   landed   1
## 14295               inverted                     spin   1
## 14296               inverted                   struck   1
## 14297          investigation                   failed   1
## 14298          investigation                  showned   1
## 14299          investigation                    tools   1
## 14300           investigator                   stated   1
## 14301          investigators                   blamed   1
## 14302          investigators                  claimed   1
## 14303          investigators               determined   1
## 14304          investigators                 reported   1
## 14305          investigators                  sifting   1
## 14306          investigators               speculated   1
## 14307                invicta                  piloted   1
## 14308            involuntary                 homicide   1
## 14309            involuntary                     loss   1
## 14310            involuntary             manslaughter   1
## 14311               involved               abnormally   1
## 14312              involving                    6,660   1
## 14313              involving                  capital   1
## 14314                 ionian                      sea   1
## 14315                   iowa                      due   1
## 14316                   iowa                    globe   1
## 14317                   iowa                      j.p   1
## 14318                   iran                   aseman   1
## 14319                   iran                   rahman   1
## 14320                 iran's                    civil   1
## 14321                 iran's                  defense   1
## 14322                 iran's            revolutionary   1
## 14323                iranian                 airliner   1
## 14324                iranian                  fighter   1
## 14325                iranian                      gun   1
## 14326                iranian                 gunboats   1
## 14327                iranian              territorial   1
## 14328                  iraqi                 aircraft   1
## 14329                  iraqi                   desert   1
## 14330                ireland                  failure   1
## 14331                  irish                    coast   1
## 14332                irkutsk            international   1
## 14333                irkutsk                    magan   1
## 14334             irrational                  control   1
## 14335              irrawaddy                    river   1
## 14336              irregular                 approach   1
## 14337              irregular               ocillation   1
## 14338              irregular                operation   1
## 14339              irregular                    speed   1
## 14340              irregular                  terrain   1
## 14341          irresponsible                  conduct   1
## 14342             irrigation                equipment   1
## 14343                    irs               navigation   1
## 14344                 ischia                   island   1
## 14345                  isiro                   matari   1
## 14346            islamabad's                   runway   1
## 14347                 island                    1,000   1
## 14348                 island                       19   1
## 14349                 island                      air   1
## 14350                 island                   amelia   1
## 14351                 island             appoximately   1
## 14352                 island                    bound   1
## 14353                 island                     crew   1
## 14354                 island                  failure   1
## 14355                 island                  located   1
## 14356                 island                      n.y   1
## 14357                 island                   prison   1
## 14358                 island                 situated   1
## 14359                 island                    sound   1
## 14360                 island                   strong   1
## 14361                 island                  unknown   1
## 14362                 island                     whle   1
## 14363               island's                  airport   1
## 14364                islands                  crashed   1
## 14365                islands                  shortly   1
## 14366                islands                      war   1
## 14367                   isle                   grande   1
## 14368                   isln                 advisory   1
## 14369               isolated                  showers   1
## 14370              isolation                    valve   1
## 14371              isopropyl                  alcohol   1
## 14372                isparta                  airport   1
## 14373                israeli                  address   1
## 14374                israeli                      air   1
## 14375                israeli                    armed   1
## 14376                israeli                 occupied   1
## 14377                israeli                  phantom   1
## 14378                israeli                territory   1
## 14379                  issue                  terrain   1
## 14380                 issued                   flight   1
## 14381                 issued                requiring   1
## 14382               istanbul                      due   1
## 14383                italian                      air   1
## 14384                italian                 aircraft   1
## 14385                italian                 airspace   1
## 14386                italian                   border   1
## 14387                italian                    court   1
## 14388                italian                 designer   1
## 14389                italian                      oil   1
## 14390                  italy                  crashed   1
## 14391                  italy                     shot   1
## 14392                  itami                      air   1
## 14393                 itavia                   flight   1
## 14394                   itek                      air   1
## 14395                  items                  crashed   1
## 14396                     iv                  airport   1
## 14397                  ivato                  airport   1
## 14398           ixtaccihuatl                 mountain   1
## 14399                    izu                   island   1
## 14400                   jack                  gilbert   1
## 14401                   jack                mechanism   1
## 14402                   jack                      pad   1
## 14403               jackpole                     mast   1
## 14404              jackscrew                 assembly   1
## 14405              jackscrew               assembly's   1
## 14406              jackscrew                  leaving   1
## 14407                jackson                     hole   1
## 14408               jacksons            international   1
## 14409           jacksonville                    naval   1
## 14410           jacksonville                sheriff's   1
## 14411                jacques                  tribaud   1
## 14412                 jagged                shoreline   1
## 14413                   jail                  crashed   1
## 14414                   jail                 sentence   1
## 14415                jakarta                    coast   1
## 14416                jakarta                      sea   1
## 14417                   jake                  lamotta   1
## 14418            jakobkondre                   double   1
## 14419              jalalabad                  airport   1
## 14420                 jalapa                     flew   1
## 14421                  jamba               overloaded   1
## 14422                  james                   killed   1
## 14423                  james                  montijo   1
## 14424                  jamia                  weather   1
## 14425                 jammed                 elevator   1
## 14426                 jammed                   rudder   1
## 14427                 jammed               stabilizer   1
## 14428                 jammed                tailplane   1
## 14429               jamnagar                  railway   1
## 14430                    jan                    smuts   1
## 14431                   jane                dornacker   1
## 14432                   jane                   froman   1
## 14433                janeiro                   galeao   1
## 14434                janeiro                    radar   1
## 14435                janerio               separation   1
## 14436                janiero                     shot   1
## 14437                january                       19   1
## 14438                january                     1989   1
## 14439                january                       27   1
## 14440                january                        6   1
## 14441                  japan             accumulation   1
## 14442                  japan                      u.s   1
## 14443               japanese                 aircraft   1
## 14444               japanese                  fighter   1
## 14445               japanese            investigators   1
## 14446               japanese                     song   1
## 14447                   java                      sea   1
## 14448                   java                     shot   1
## 14449                   jaya                southwest   1
## 14450                   jean                  airport   1
## 14451                   jean              gandesberry   1
## 14452                   jean                 lapierre   1
## 14453                   jean                   lesage   1
## 14454                   jean                   mermoz   1
## 14455                  jebel                    hilal   1
## 14456              jefferson                   county   1
## 14457               jeffreys                   killed   1
## 14458               jeppesen                 approach   1
## 14459               jeppesen                    chart   1
## 14460                jerache                    river   1
## 14461                  jerry                      lee   1
## 14462                 jersey                   midair   1
## 14463                 jersey                      sar   1
## 14464                 jersey                   strong   1
## 14465                 jersey              subdivision   1
## 14466                jessica                  dubroff   1
## 14467                    jet                 aircraft   1
## 14468                    jet                airliners   1
## 14469                    jet                     blew   1
## 14470                    jet                   caught   1
## 14471                    jet                 commuter   1
## 14472                    jet                 declared   1
## 14473                    jet                  engines   1
## 14474                    jet                   failed   1
## 14475                    jet                     flew   1
## 14476                    jet                     fuel   1
## 14477                    jet                      lag   1
## 14478                    jet                   landed   1
## 14479                    jet                     lost   1
## 14480                    jet                    nosed   1
## 14481                    jet                 overshot   1
## 14482                    jet            photographing   1
## 14483                    jet                   pilots   1
## 14484                    jet                      pod   1
## 14485                    jet                   rested   1
## 14486                  jet's                  cockpit   1
## 14487                  jet's                     left   1
## 14488               jetliner                 collided   1
## 14489               jetliner                  scraped   1
## 14490               jetliner                    shook   1
## 14491               jetliner                     slid   1
## 14492            jettisoning                  luggage   1
## 14493            jeune.tower                personnel   1
## 14494                jeweler                   intent   1
## 14495                    jfk                  airport   1
## 14496                    jim                    croce   1
## 14497                    jim                   reeves   1
## 14498                   jima              malfunction   1
## 14499                   jima                   struck   1
## 14500                   jipe                     lake   1
## 14501                joaquin                    blume   1
## 14502               johannes                       iv   1
## 14503                   john                   denver   1
## 14504                   john                    derry   1
## 14505                   john                  douglas   1
## 14506                   john                    heinz   1
## 14507                   john                     hill   1
## 14508                   john                     jack   1
## 14509                   john                   morgan   1
## 14510                   john                  salmond   1
## 14511                   john                    tower   1
## 14512                 john's                    river   1
## 14513                johnson                       52   1
## 14514                johnson                 suffered   1
## 14515                  joint                  failure   1
## 14516                   jomo                 kenyatta   1
## 14517                 jomsom                      due   1
## 14518               jonathan                     mann   1
## 14519              jordanian                terrorist   1
## 14520                  jorge                 newberry   1
## 14521                 josãƒâ                francisco   1
## 14522                 josãƒâ                 martãƒâ­   1
## 14523                   jose                alejandro   1
## 14524                   jose                   iturbi   1
## 14525                  josef                  glacier   1
## 14526                 joseph                  karrafa   1
## 14527                 joseph                  lamotta   1
## 14528                 joshua                  nkomo's   1
## 14529            journalists                   aboard   1
## 14530            journalists                 covering   1
## 14531            journalists                    crash   1
## 14532            journalists                  crashed   1
## 14533                    joy                     ride   1
## 14534                     jr                       29   1
## 14535                     jr                       38   1
## 14536                   ju88                   german   1
## 14537                   juan                       de   1
## 14538                   juan                mountains   1
## 14539                   juan                    porto   1
## 14540                   juba                  airport   1
## 14541                  judge                 advocate   1
## 14542                  judge                concluded   1
## 14543               judgment                 evidence   1
## 14544               judgment                     poor   1
## 14545               judgment              unwarranted   1
## 14546                 julian                    frank   1
## 14547                juliana                  airport   1
## 14548                juliana                  crashed   1
## 14549                juliane                  koepcke   1
## 14550                   july                       15   1
## 14551                   july                     2004   1
## 14552                   july                        3   1
## 14553                   jump                       en   1
## 14554                   june                     1958   1
## 14555                   june                     1980   1
## 14556                   june                 thorburn   1
## 14557                 juneau                municipal   1
## 14558                 juneau             undetermined   1
## 14559                 jungle                       10   1
## 14560                 jungle                       15   1
## 14561                 jungle                      170   1
## 14562                 jungle                       25   1
## 14563                 jungle                        4   1
## 14564                 jungle                        5   1
## 14565                 jungle                       70   1
## 14566                 jungle                  airport   1
## 14567                 jungle            approximately   1
## 14568                 jungle                   canopy   1
## 14569                 jungle                  covered   1
## 14570                 jungle                  crashed   1
## 14571                 jungle                       en   1
## 14572                 jungle                 mountain   1
## 14573                 jungle             mountainside   1
## 14574                 jungle                   region   1
## 14575                jungled                    hills   1
## 14576                junkers                        1   1
## 14577               junquito                     hill   1
## 14578                   jury                    found   1
## 14579            justifiable                   reason   1
## 14580             juurusvesi                     lost   1
## 14581                juvenal              habyarimana   1
## 14582                 juwata                  airport   1
## 14583                  kabul                  airport   1
## 14584                  kabul                  weather   1
## 14585              kabupaten                   lingga   1
## 14586                kahalui                  airport   1
## 14587             kahlenberg                     hill   1
## 14588                kahuiui                  airport   1
## 14589                    kai                     shek   1
## 14590                    kai                      tak   1
## 14591                 kaimai                    range   1
## 14592                kaimana                  airport   1
## 14593                 kalãƒâ                    vryta   1
## 14594                 kaleva            inadvertently   1
## 14595                kalikot                 district   1
## 14596                   kalu                  village   1
## 14597                    kan                    river   1
## 14598           kanchenjunga                  remains   1
## 14599               kandahar              afghanistan   1
## 14600                   kano                  claimed   1
## 14601                   kano            international   1
## 14602               kantakan                     shot   1
## 14603                 kapell                       31   1
## 14604                  kapur                     67nm   1
## 14605                karachi                  airport   1
## 14606                karachi                 pakistan   1
## 14607                karachi                   sydney   1
## 14608                karaoke                    house   1
## 14609                 kardla                  airport   1
## 14610                 kariba                  airport   1
## 14611                karmwal                     pass   1
## 14612                kashmir                 princess   1
## 14613                kastrup                  airport   1
## 14614                 kataib                       al   1
## 14615              katherine                    river   1
## 14616               kathleen                  kennedy   1
## 14617              kathmandu                  contact   1
## 14618              kathmandu                 straight   1
## 14619              kathmandu                tribhuvan   1
## 14620                 katmai                 national   1
## 14621                  kauai                   hawaii   1
## 14622                  kauai                  shortly   1
## 14623             kaunakakai                  airport   1
## 14624                   kays                     band   1
## 14625              kazakstan                 airlines   1
## 14626                  kazan                      hit   1
## 14627                     kc                      135   1
## 14628                    kea                     peak   1
## 14629                keelung                    river   1
## 14630                  keene                      due   1
## 14631                kelowna              flightcraft   1
## 14632                kennedy                cavendish   1
## 14633                kennedy                   killed   1
## 14634                kennedy                      u.s   1
## 14635                kennedy              volunteered   1
## 14636              kennedy's                  failure   1
## 14637                  kenny                  cortese   1
## 14638                  kenya                 tanzania   1
## 14639                 kenyan                    labor   1
## 14640               kenyatta            international   1
## 14641                   keri               lighthouse   1
## 14642               kerosene                    stove   1
## 14643              kerrville                     folk   1
## 14644                 kesugi                    ridge   1
## 14645                    key                     west   1
## 14646             khabarovsk              airport.the   1
## 14647                   kham                      duc   1
## 14648                kharkov                  airport   1
## 14649                  khasi                    hills   1
## 14650                    khe                 airfield   1
## 14651                   khli                      air   1
## 14652               khmeimim                      air   1
## 14653                 khojak                     pass   1
## 14654               khomeini                  airport   1
## 14655                  khoul                  claimed   1
## 14656               kiangwan                  airport   1
## 14657                   kiev                generator   1
## 14658                  kiled                   aboard   1
## 14659            kilimanjaro                  failure   1
## 14660                   kill                president   1
## 14661                   kill              presidental   1
## 14662                 killed                       10   1
## 14663                 killed                  actress   1
## 14664                 killed                    blame   1
## 14665                 killed                 clemente   1
## 14666                 killed                 collided   1
## 14667                 killed                     crew   1
## 14668                 killed                   denver   1
## 14669                 killed                deviation   1
## 14670                 killed              disappeared   1
## 14671                 killed                  douglas   1
## 14672                 killed                   eleven   1
## 14673                 killed                elizabeth   1
## 14674                 killed                     eric   1
## 14675                 killed                 fuselage   1
## 14676                 killed                    helen   1
## 14677                 killed                      hit   1
## 14678                 killed               inadequate   1
## 14679                 killed           incapacitation   1
## 14680                 killed                instantly   1
## 14681                 killed                  johnson   1
## 14682                 killed                     king   1
## 14683                 killed                     lost   1
## 14684                 killed                    maria   1
## 14685                 killed                  mexican   1
## 14686                 killed              misjudgment   1
## 14687                 killed                   munson   1
## 14688                 killed             navigational   1
## 14689                 killed                 operator   1
## 14690                 killed                     poor   1
## 14691                 killed                    power   1
## 14692                 killed                premature   1
## 14693                 killed               procedural   1
## 14694                 killed                       pt   1
## 14695                 killed                  ranging   1
## 14696                 killed                   reeves   1
## 14697                 killed                       st   1
## 14698                 killed                  stalled   1
## 14699                 killed              unfavorable   1
## 14700                 killed                     wife   1
## 14701                 killed                 wreckage   1
## 14702             killed.the                     ntsb   1
## 14703                killing                       10   1
## 14704                killing                       17   1
## 14705                killing                       18   1
## 14706                killing                       19   1
## 14707                killing                        2   1
## 14708                killing                       20   1
## 14709                killing                       22   1
## 14710                killing                       23   1
## 14711                killing                       24   1
## 14712                killing                        5   1
## 14713                killing                       50   1
## 14714                killing                        6   1
## 14715                killing                        8   1
## 14716                killing                    actor   1
## 14717                killing                       lt   1
## 14718                killing               passengers   1
## 14719                killing                  sudan's   1
## 14720                   kilo                     lima   1
## 14721              kilograms                    liter   1
## 14722              kilometer                    short   1
## 14723             kilometers                    short   1
## 14724              kilometre                    1,100   1
## 14725                   kilp                     yavr   1
## 14726                 kimhae                  airport   1
## 14727                  kimpo                      air   1
## 14728                    kin                  jamaica   1
## 14729           kindergarten                  killing   1
## 14730                  kindu                  airport   1
## 14731            kinesthetic                     cues   1
## 14732                   king                    tuner   1
## 14733                 king's                 mountain   1
## 14734               kingston                  jamaica   1
## 14735               kingston                      kin   1
## 14736               kinshasa                  airport   1
## 14737             kirksville                municipal   1
## 14738                 kiroli                    hills   1
## 14739             kirovograd                     shot   1
## 14740               kirtland                      afb   1
## 14741              kisangani                  airport   1
## 14742                klamath                    falls   1
## 14743                    klm                      234   1
## 14744                    klm                 aircraft   1
## 14745                    klm                  captain   1
## 14746                klyuchi                      air   1
## 14747                     km              authorities   1
## 14748                     km                      ese   1
## 14749                     km                       ne   1
## 14750                     km                 northwes   1
## 14751                     km                       se   1
## 14752                    kms                    short   1
## 14753                    kms                southeast   1
## 14754                  knife                   forced   1
## 14755                 knight                       56   1
## 14756                   knob                 mountain   1
## 14757                  knoll                       10   1
## 14758                  knoll                 mountain   1
## 14759                  knoll                  tearing   1
## 14760                   knot                 tailwind   1
## 14761                  knots                    2,150   1
## 14762                  knots                    befoe   1
## 14763                  knots             contributing   1
## 14764                  knots                       en   1
## 14765                  knots               stipulated   1
## 14766              knowledge                    crash   1
## 14767                  knuku                mountains   1
## 14768                  knute                   rockne   1
## 14769              kobenhavn                  kastrup   1
## 14770                koepcke                    found   1
## 14771                 kokoda                  airport   1
## 14772                 kokoda                      gap   1
## 14773               koltsovo                  airport   1
## 14774                 kolyma                    river   1
## 14775                   kong                  airport   1
## 14776                   kong                  clipper   1
## 14777                   kong                 mountain   1
## 14778                   kong                   runway   1
## 14779               koningin                  juliana   1
## 14780               kopernik                  crashed   1
## 14781                  korea                   strait   1
## 14782                 korean                    agent   1
## 14783                 korean                      air   1
## 14784                 korean                    air's   1
## 14785                 korean                      mig   1
## 14786                 korean                      war   1
## 14787                 korean                    woman   1
## 14788                 kosice                    pilot   1
## 14789                  kosti                aerodrome   1
## 14790                 kotika            international   1
## 14791                   kouh                 mountain   1
## 14792                koupãƒâ                  located   1
## 14793                kowloon                      bay   1
## 14794                 kozani                      due   1
## 14795            krasnoyarsk                        4   1
## 14796            krasnoyarsk                territory   1
## 14797                     kt                    cross   1
## 14798                     kt                     loss   1
## 14799                  kuala                   lumpur   1
## 14800                kulbach                  crashed   1
## 14801               kulwicki                       38   1
## 14802              kumaraden                     hill   1
## 14803                kunming                  airdome   1
## 14804                   kura                  airport   1
## 14805                kutaisa                     crew   1
## 14806                 kuwait                     city   1
## 14807                kwazulu                    natal   1
## 14808                  kxndb                 waypoint   1
## 14809                kyrenia                mountains   1
## 14810                kyrenia                   turkey   1
## 14811                    kyu                 sakamoto   1
## 14812                     la                        7   1
## 14813                     la                 aguadita   1
## 14814                     la                    artcc   1
## 14815                     la                    caida   1
## 14816                     la                   cierva   1
## 14817                     la                    cinta   1
## 14818                     la                     cruz   1
## 14819                     la                   culata   1
## 14820                     la                esperanza   1
## 14821                     la                   gloria   1
## 14822                     la                   gotera   1
## 14823                     la                   harvre   1
## 14824                     la                  latilla   1
## 14825                     la                 libertad   1
## 14826                     la                 magdelen   1
## 14827                     la                   marina   1
## 14828                     la                  melosas   1
## 14829                     la                    motte   1
## 14830                     la                    mujer   1
## 14831                     la                   nacion   1
## 14832                     la                  orchila   1
## 14833                     la                  pedrera   1
## 14834                     la                  rodilla   1
## 14835                     la                 roquette   1
## 14836                     la                 trinidad   1
## 14837                     la                    union   1
## 14838                     la               vanguardia   1
## 14839                labeled                   lacked   1
## 14840                  labor                 minister   1
## 14841             laboratory                 analysis   1
## 14842                 labuan                   island   1
## 14843              lachovlin                       la   1
## 14844                 lacked                    guard   1
## 14845                 lacked                   safety   1
## 14846                lacking             navigational   1
## 14847                  laden                     pb4y   1
## 14848                   lage                   viking   1
## 14849                 lagens                      due   1
## 14850                 lagoon                      400   1
## 14851                 lagoon                      500   1
## 14852                 lagoon                  crashed   1
## 14853                 lagoon                  killing   1
## 14854                lagoons                 mountain   1
## 14855                  lagos                        1   1
## 14856                  lagos                  airport   1
## 14857                  lagos                  landing   1
## 14858                  lagos                      vor   1
## 14859                 laguna                huanacota   1
## 14860                 laguna                 mountain   1
## 14861                 lahore                 pakistan   1
## 14862                  lajes                      afb   1
## 14863                  lajes                      air   1
## 14864                  lajes                  airport   1
## 14865                   lake                        3   1
## 14866                   lake                    7.7nm   1
## 14867                   lake            approximately   1
## 14868                   lake                   batuco   1
## 14869                   lake                  bolomon   1
## 14870                   lake                   chelan   1
## 14871                   lake                constance   1
## 14872                   lake                  control   1
## 14873                   lake                  crashed   1
## 14874                   lake                   forest   1
## 14875                   lake                     fuel   1
## 14876                   lake                inability   1
## 14877                   lake                     iowa   1
## 14878                   lake               juurusvesi   1
## 14879                   lake                     kilp   1
## 14880                   lake                  located   1
## 14881                   lake                     mead   1
## 14882                   lake                   monona   1
## 14883                   lake            pontchartrain   1
## 14884                   lake                    radio   1
## 14885                   lake                   ramadi   1
## 14886                   lake                     seul   1
## 14887                   lake                  shortly   1
## 14888                   lake                winnebago   1
## 14889              lakehurst                    naval   1
## 14890               lakhurst                    field   1
## 14891                lambert                    field   1
## 14892                 lambir                     hill   1
## 14893                lamjura                     hill   1
## 14894                lamotta                   killed   1
## 14895                lamotta                      son   1
## 14896                   lamy                     chad   1
## 14897              lancaster                  crashed   1
## 14898            lancaster's                   sortie   1
## 14899                   land                       10   1
## 14900                   land                      120   1
## 14901                   land                        9   1
## 14902                   land                     atop   1
## 14903                   land                  causing   1
## 14904                   land              conflicting   1
## 14905                   land                   crew's   1
## 14906                   land               detonation   1
## 14907                   land                 directly   1
## 14908                   land              disappeared   1
## 14909                   land                 downwind   1
## 14910                   land                   eighty   1
## 14911                   land                   engine   1
## 14912                   land                    error   1
## 14913                   land                 executed   1
## 14914                   land                   flying   1
## 14915                   land                   forced   1
## 14916                   land                    icing   1
## 14917                   land              immediately   1
## 14918                   land              inadvertent   1
## 14919                   land                   killed   1
## 14920                   land                  killing   1
## 14921                   land                     loss   1
## 14922                   land                   misuse   1
## 14923                   land               navigation   1
## 14924                   land                     poor   1
## 14925                   land                    power   1
## 14926                   land              preliminary   1
## 14927                   land                premature   1
## 14928                   land               procedural   1
## 14929                   land                  reports   1
## 14930                   land                   series   1
## 14931                   land                 shifting   1
## 14932                   land                   struck   1
## 14933                   land                 vanished   1
## 14934                   land                      vfr   1
## 14935                   land                   visual   1
## 14936                   land                windshear   1
## 14937               land.the             continuation   1
## 14938                 landed                    1,000   1
## 14939                 landed                    1,725   1
## 14940                 landed                       17   1
## 14941                 landed                      200   1
## 14942                 landed                      500   1
## 14943                 landed                      due   1
## 14944                 landed                 exploded   1
## 14945                 landed                extremely   1
## 14946                 landed                     hard   1
## 14947                 landed                      mid   1
## 14948                 landed                     past   1
## 14949                 landed                  skidded   1
## 14950                 landed                 striking   1
## 14951                 landed                  upright   1
## 14952                 landed                   upside   1
## 14953                landing                        1   1
## 14954                landing                   1,450m   1
## 14955                landing                       21   1
## 14956                landing                    5,800   1
## 14957                landing                 allowing   1
## 14958                landing                  appoach   1
## 14959                landing            approximately   1
## 14960                landing               attempting   1
## 14961                landing                    broke   1
## 14962                landing                 building   1
## 14963                landing                 canadian   1
## 14964                landing                  carried   1
## 14965                landing                   charts   1
## 14966                landing                clearance   1
## 14967                landing            configuration   1
## 14968                landing             coordination   1
## 14969                landing                 crrashed   1
## 14970                landing                   curfew   1
## 14971                landing                 delaying   1
## 14972                landing               detonation   1
## 14973                landing                equipment   1
## 14974                landing               eventually   1
## 14975                landing               facilities   1
## 14976                landing                  fatigue   1
## 14977                landing                    field   1
## 14978                landing                     fire   1
## 14979                landing                    flaps   1
## 14980                landing                   flying   1
## 14981                landing                     fuel   1
## 14982                landing                 gear.the   1
## 14983                landing                    geart   1
## 14984                landing               inadequate   1
## 14985                landing                     lack   1
## 14986                landing                      led   1
## 14987                landing                    light   1
## 14988                landing                  limited   1
## 14989                landing                 maneuver   1
## 14990                landing                 material   1
## 14991                landing                   midair   1
## 14992                landing               operations   1
## 14993                landing                      pad   1
## 14994                landing                     path   1
## 14995                landing                  pattern   1
## 14996                landing                    phase   1
## 14997                landing                    plane   1
## 14998                landing                     poor   1
## 14999                landing                      ran   1
## 15000                landing                  reached   1
## 15001                landing                 resulted   1
## 15002                landing                      run   1
## 15003                landing                   runway   1
## 15004                landing                   safely   1
## 15005                landing               sideswiped   1
## 15006                landing                    sites   1
## 15007                landing                    south   1
## 15008                landing                     spot   1
## 15009                landing                   struck   1
## 15010                landing                survivors   1
## 15011                landing                technique   1
## 15012                landing                  touched   1
## 15013                landing               trajectory   1
## 15014                landing                undershot   1
## 15015                landing                  weather   1
## 15016                landing                     zone   1
## 15017               landings                  allowed   1
## 15018               landings                    error   1
## 15019                  laned                   safely   1
## 15020                  lanes                 improper   1
## 15021               langeoog                   island   1
## 15022                  lanka                   muslim   1
## 15023                    lap                    joint   1
## 15024             lapierre's                   father   1
## 15025                larache                  morocco   1
## 15026                laramie                  weather   1
## 15027                larissa               controlled   1
## 15028           larkenhealth                      afb   1
## 15029                 larkin                    smith   1
## 15030                    las                    cayee   1
## 15031                    las                  lomitas   1
## 15032                    las                   torres   1
## 15033                    las                    tunas   1
## 15034                   lash                   golath   1
## 15035                lashkar                      gah   1
## 15036                 lasted                        7   1
## 15037                latakia                 khmeimim   1
## 15038                  latch                  engaged   1
## 15039                latched                    cargo   1
## 15040                latched                  forward   1
## 15041                latched                 properly   1
## 15042               latching                mechanism   1
## 15043                   late                  crashed   1
## 15044                   late                 decision   1
## 15045                   late               initiation   1
## 15046                   late                    night   1
## 15047                   late                 rotation   1
## 15048                lateral                 aircraft   1
## 15049                lateral                     fuel   1
## 15050                lateral                 movement   1
## 15051                lateral                    winds   1
## 15052                latilla                 mountain   1
## 15053             lauderdale                       fl   1
## 15054               launched                     heat   1
## 15055                 lauren                 bessette   1
## 15056                   lava                    field   1
## 15057                   lava                     flow   1
## 15058               lavatory                   caused   1
## 15059               lavatory                  causing   1
## 15060               lavatory                  shortly   1
## 15061               lavatory                    waste   1
## 15062             lavoratory                  blowing   1
## 15063                  lawes                        7   1
## 15064               lawrence                 mcdonald   1
## 15065               lawrence                    river   1
## 15066                    lax                 terminal   1
## 15067                    lbs                     flew   1
## 15068                    lbs               inadequate   1
## 15069                     ld                       56   1
## 15070                     le                        7   1
## 15071                     le                   france   1
## 15072                     le                   galawa   1
## 15073                     le              jeune.tower   1
## 15074                     le                     pera   1
## 15075                   lead                guitarist   1
## 15076                   lead                 hijacker   1
## 15077                   lead                 mechanic   1
## 15078                   lead                   singer   1
## 15079                 leader                     hale   1
## 15080                 leader                     yuri   1
## 15081                leading                    edges   1
## 15082                leading                 peruvian   1
## 15083                   leak                   eleven   1
## 15084                   leak                  leading   1
## 15085                   leak                     lost   1
## 15086                leaking                  exhaust   1
## 15087                leaking                 hydrogen   1
## 15088                leaking                 kerosene   1
## 15089                  leaks                  crashed   1
## 15090                 leased                 aircraft   1
## 15091                  leave                     late   1
## 15092                  leave            noninstrument   1
## 15093                leaving                   bandar   1
## 15094                leaving                   bogota   1
## 15095                leaving                  bolling   1
## 15096                leaving                 chiclayo   1
## 15097                leaving                   dorval   1
## 15098                leaving                     fort   1
## 15099                leaving                guayaquil   1
## 15100                leaving                     heho   1
## 15101                leaving                 honolulu   1
## 15102                leaving                  lanzhou   1
## 15103                leaving                    libya   1
## 15104                leaving                  londina   1
## 15105                leaving                   magdan   1
## 15106                leaving                   manaus   1
## 15107                leaving                  mendoza   1
## 15108                leaving                 missoula   1
## 15109                leaving                mogadishu   1
## 15110                leaving                   panama   1
## 15111                leaving                   pickle   1
## 15112                leaving                    playa   1
## 15113                leaving                    ponta   1
## 15114                leaving                      san   1
## 15115                leaving                 santiago   1
## 15116               lebanese                    court   1
## 15117               lebanese                 passport   1
## 15118                  lebed                       52   1
## 15119                   lech                kaczynski   1
## 15120                    led             peacekeeping   1
## 15121                  ledge              cartwheeled   1
## 15122                    lee                  airport   1
## 15123                    lee                    lewis   1
## 15124                   left                        4   1
## 15125                   left                    agana   1
## 15126                   left                  aileron   1
## 15127                   left                   brakes   1
## 15128                   left                bucharest   1
## 15129                   left                    cabin   1
## 15130                   left                  captain   1
## 15131                   left                  causing   1
## 15132                   left                 cindacta   1
## 15133                   left                  cowling   1
## 15134                   left                  crashed   1
## 15135                   left                 downwind   1
## 15136                   left                     edge   1
## 15137                   left                 engine's   1
## 15138                   left             engine.after   1
## 15139                   left               engine.the   1
## 15140                   left                  engines   1
## 15141                   left                  entered   1
## 15142                   left               feathering   1
## 15143                   left                 foreward   1
## 15144                   left                generator   1
## 15145                   left                   helena   1
## 15146                   left                      hit   1
## 15147                   left                  initial   1
## 15148                   left                 kingston   1
## 15149                   left                  leading   1
## 15150                   left                    milne   1
## 15151                   left               montevideo   1
## 15152                   left                    myeik   1
## 15153                   left                  nacelle   1
## 15154                   left                   normal   1
## 15155                   left                 outboard   1
## 15156                   left                  pitched   1
## 15157                   left                 position   1
## 15158                   left            progressively   1
## 15159                   left                     rear   1
## 15160                   left                   rolled   1
## 15161                   left                  shortly   1
## 15162                   left                 shoulder   1
## 15163                   left               stabilizer   1
## 15164                   left                    stall   1
## 15165                   left                  stalled   1
## 15166                   left                tailplane   1
## 15167                   left                  turbine   1
## 15168                   left                    wings   1
## 15169               leftward                    swing   1
## 15170                    leg                selfridge   1
## 15171                legaacy                      600   1
## 15172                  legal                    court   1
## 15173                legally                 released   1
## 15174                 legend                  crashed   1
## 15175                   legs                    broke   1
## 15176                  leigh                  cottage   1
## 15177                 leland                       45   1
## 15178               lembombo                mountains   1
## 15179                lenakel                  airport   1
## 15180                 lenana                     peak   1
## 15181              leningrad                  crashed   1
## 15182                 lenzen              supertanker   1
## 15183                   leon                      mba   1
## 15184                   leon                   public   1
## 15185                  leone                  capital   1
## 15186                leone's                  coastal   1
## 15187                 lesage            international   1
## 15188                 leslie                   howard   1
## 15189                 lesser                   degree   1
## 15190                 lethal                  amounts   1
## 15191             lethbridge                  alberta   1
## 15192                  level                        4   1
## 15193                  level                 altitude   1
## 15194                  level                continued   1
## 15195                  level                  crashed   1
## 15196                  level               descending   1
## 15197                  level                  drifted   1
## 15198                  level                explosive   1
## 15199                  level                generated   1
## 15200                  level                laterally   1
## 15201                  level                refueling   1
## 15202                  level                   switch   1
## 15203                  level                 training   1
## 15204                  level                windshear   1
## 15205                leveled                  briefly   1
## 15206                  lever                      aft   1
## 15207                 levers               preventing   1
## 15208                     li                        2   1
## 15209                     li                       2t   1
## 15210             liberation                     shot   1
## 15211               libertad                  section   1
## 15212                liberty                     ship   1
## 15213             libreville                  airport   1
## 15214                  libya                   border   1
## 15215                  libya                 ferrying   1
## 15216                 libyan                      air   1
## 15217                 libyan                      mig   1
## 15218                license                  invalid   1
## 15219             lieutenant                  accused   1
## 15220             lieutenant                   howard   1
## 15221             lieutenant                   joseph   1
## 15222                   life                    boats   1
## 15223                   life                   failed   1
## 15224                   life                insurance   1
## 15225                   life               preservers   1
## 15226                   life                     raft   1
## 15227                   life               recordings   1
## 15228                   life                 sentence   1
## 15229                   life                    vests   1
## 15230             lifesaving                equipment   1
## 15231                   lift                  crashed   1
## 15232                   lift                      due   1
## 15233                   lift                     dump   1
## 15234                   lift                  mission   1
## 15235                lifting                 capacity   1
## 15236                lifting                  surface   1
## 15237                lifting                 surfaces   1
## 15238                liftoff                  crashed   1
## 15239                liftoff                resulting   1
## 15240                liftoff                     shot   1
## 15241                  light                     bulb   1
## 15242                  light               indicating   1
## 15243                  light                     left   1
## 15244                  light                     load   1
## 15245                  light                  marking   1
## 15246                  light                    poles   1
## 15247                  light                    posts   1
## 15248                  light               stanchions   1
## 15249                  light                 thinking   1
## 15250                  light                    touch   1
## 15251                  light                    tower   1
## 15252                  light               towers.the   1
## 15253                lighted                irregular   1
## 15254               lighting                  circuit   1
## 15255               lighting               conditions   1
## 15256               lighting                  leading   1
## 15257               lighting                     pier   1
## 15258              lightning                 attacked   1
## 15259              lightning                   caused   1
## 15260              lightning                  causing   1
## 15261              lightning                confusion   1
## 15262              lightning                 dazzling   1
## 15263              lightning                    flash   1
## 15264              lightning                     flew   1
## 15265              lightning                  ignited   1
## 15266              lightning                  induced   1
## 15267              lightning                     lack   1
## 15268              lightning                     poor   1
## 15269              lightning                      rod   1
## 15270              lightning                   twelve   1
## 15271              lightning                undershot   1
## 15272                 lights                    1,170   1
## 15273                 lights                      335   1
## 15274                 lights               aggravated   1
## 15275                 lights             concentrated   1
## 15276                 lights                      due   1
## 15277                 lights                  failure   1
## 15278                 lights            malfunctioned   1
## 15279                 lights            perpendicular   1
## 15280                 lights                    pilot   1
## 15281                 lights             unrecognized   1
## 15282               ligurian                      sea   1
## 15283                   lima                  crashed   1
## 15284                   lima                     peru   1
## 15285                   lima                   soccer   1
## 15286               limerick                  ireland   1
## 15287                  limit             contributing   1
## 15288                  limit                  pilot's   1
## 15289            limitations                      due   1
## 15290            limitations                 resulted   1
## 15291                limited                 accident   1
## 15292                limited               capability   1
## 15293                limited                      due   1
## 15294                limited                knowledge   1
## 15295                limited                 remedial   1
## 15296                limited                   runway   1
## 15297                limiter                  faulted   1
## 15298               limiting               visibility   1
## 15299                 limits                  leading   1
## 15300                 limits                resulting   1
## 15301                 linate                  airport   1
## 15302                  linda                  medical   1
## 15303              lindbergh                    field   1
## 15304              linderman                       45   1
## 15305                   line                    broke   1
## 15306                   line                  chile's   1
## 15307                   line               connection   1
## 15308                   line                continued   1
## 15309                   line                 crossing   1
## 15310                   line                     lack   1
## 15311                   line                      led   1
## 15312                   line                    power   1
## 15313                   line                     road   1
## 15314                   line                 shrouded   1
## 15315                   line                   struck   1
## 15316                   line                    tower   1
## 15317                   line                    wrong   1
## 15318                  liner                       le   1
## 15319                  liner                   norway   1
## 15320                  lines                      150   1
## 15321                  lines                   2,000m   1
## 15322                  lines            approximately   1
## 15323                  lines                  changed   1
## 15324                  lines                  crashed   1
## 15325                  lines                 facility   1
## 15326                  lines                 survived   1
## 15327                 lingga                     riau   1
## 15328                 linhas                     aãƒâ   1
## 15329                   link                 assembly   1
## 15330                   link                   failed   1
## 15331                   link                    fence   1
## 15332                 lisbon                 portugal   1
## 15333                 lisbon                 training   1
## 15334              literally               pulverized   1
## 15335              liverpool                  crashed   1
## 15336                  lives                     lost   1
## 15337                    liz                    icing   1
## 15338              ljubljana                  airport   1
## 15339                llandow                  airport   1
## 15340               llaveria                mountains   1
## 15341                   llyn                  gwynant   1
## 15342                     ln                      rna   1
## 15343                   load                  control   1
## 15344                   load             distribution   1
## 15345                   load                   limits   1
## 15346                 loaded                  alcohol   1
## 15347                 loaded                  baggage   1
## 15348                 loaded                    cargo   1
## 15349                 loaded                  causing   1
## 15350                 loaded            inexperienced   1
## 15351                 loaded                  luggage   1
## 15352                loading                   aboard   1
## 15353                loading                   limits   1
## 15354                loading               operations   1
## 15355                loading              preparation   1
## 15356                loading               procedures   1
## 15357                loading                  process   1
## 15358                loading                     ramp   1
## 15359                  loads                  created   1
## 15360                  loads                exceeding   1
## 15361                  loads                  thereon   1
## 15362                   lobe                    cargo   1
## 15363                   lobe             contributing   1
## 15364                  local                       30   1
## 15365                  local                  airport   1
## 15366                  local                      fog   1
## 15367                  local                lumbermen   1
## 15368                  local                   mobile   1
## 15369                  local                     post   1
## 15370                  local                   soccer   1
## 15371                  local                   static   1
## 15372                  local                   suburb   1
## 15373                  local             thunderstorm   1
## 15374                  local                     time   1
## 15375              localized                     fire   1
## 15376              localized            thundrestorms   1
## 15377              localizer                 approach   1
## 15378              localizer                 receiver   1
## 15379              localizer                  support   1
## 15380              localizer                    track   1
## 15381                located                    1,200   1
## 15382                located                      1.5   1
## 15383                located                      1.8   1
## 15384                located                       15   1
## 15385                located                       16   1
## 15386                located                        2   1
## 15387                located                       24   1
## 15388                located                       25   1
## 15389                located                       28   1
## 15390                located                       30   1
## 15391                located                       32   1
## 15392                located                       35   1
## 15393                located                       39   1
## 15394                located                        4   1
## 15395                located                       42   1
## 15396                located                       67   1
## 15397                located                        7   1
## 15398                located                        8   1
## 15399                located                  astride   1
## 15400                located                 exploded   1
## 15401                located                     poor   1
## 15402              located10                       km   1
## 15403               location                       13   1
## 15404                locator                   beacon   1
## 15405                   lock                condition   1
## 15406                   lock                  engaged   1
## 15407                   lock                   engine   1
## 15408                   lock                inability   1
## 15409                   lock                      pin   1
## 15410                   lock                    prior   1
## 15411                   lock                  service   1
## 15412                   lock                   system   1
## 15413                   lock                   washer   1
## 15414                 locked                condition   1
## 15415                 locked                 exploded   1
## 15416                 locked                   switch   1
## 15417                 locked                terrorist   1
## 15418              lockerbie               detonation   1
## 15419               lockhart                    river   1
## 15420               lockheed                      14s   1
## 15421               lockheed                      air   1
## 15422                locking                     pins   1
## 15423                locking                   sector   1
## 15424                  locks                  crashed   1
## 15425                  locks                  failure   1
## 15426                  locks                installed   1
## 15427                    log                     book   1
## 15428                    log                   twenty   1
## 15429                  logan                     utah   1
## 15430                    lok                fasteners   1
## 15431              lokomotiv                yaroslavl   1
## 15432                   loma                    linda   1
## 15433                lombard                       33   1
## 15434                 london                  crashed   1
## 15435                 london                    daily   1
## 15436                 london                  england   1
## 15437                 london                  karachi   1
## 15438                 london                    metal   1
## 15439                 london                 services   1
## 15440                   lone                      oak   1
## 15441                   lone                 occupant   1
## 15442                   lone                     peak   1
## 15443                   lone                     pine   1
## 15444           longitudinal                stability   1
## 15445               longmont               detonation   1
## 15446              longreach                     fire   1
## 15447                lookout                     rock   1
## 15448                   loon                 collided   1
## 15449                  loose                 altitude   1
## 15450                  loose                  control   1
## 15451               loosened                    bolts   1
## 15452               loosened                   plasma   1
## 15453                loosing                    power   1
## 15454                   lord                 burghley   1
## 15455                lorient              approaching   1
## 15456                    los                farllones   1
## 15457                    los                    hoyos   1
## 15458                    los                   mochis   1
## 15459                    los                   negros   1
## 15460                    los                    track   1
## 15461                   lose              directional   1
## 15462                 losing                       25   1
## 15463                 losing            consciousness   1
## 15464                 losing                  contact   1
## 15465                 losing             longitudinal   1
## 15466                 losing                      oil   1
## 15467                 losing                    radio   1
## 15468                 losing                    sight   1
## 15469                 losing              situational   1
## 15470                 losing                   visual   1
## 15471                   loss                     crew   1
## 15472                   loss                  cynthia   1
## 15473                   loss                emergency   1
## 15474                   lost                       10   1
## 15475                   lost                       15   1
## 15476                   lost                       20   1
## 15477                   lost                       29   1
## 15478                   lost                        3   1
## 15479                   lost                       30   1
## 15480                   lost                        5   1
## 15481                   lost                    5,000   1
## 15482                   lost                       50   1
## 15483                   lost                        9   1
## 15484                   lost                      air   1
## 15485                   lost                 airspeed   1
## 15486                   lost                      ane   1
## 15487                   lost                    cabin   1
## 15488                   lost                    cargo   1
## 15489                   lost            consciousness   1
## 15490                   lost                  contorl   1
## 15491                   lost                     main   1
## 15492                   lost                   midair   1
## 15493                   lost             navigational   1
## 15494                   lost                    radar   1
## 15495                   lost                    radio   1
## 15496                   lost                      ran   1
## 15497                   lost                reference   1
## 15498                   lost                 rotation   1
## 15499                   lost                  shortly   1
## 15500                   lost                situation   1
## 15501                   lost                    speed   1
## 15502                   lost                  tension   1
## 15503                   lost                    track   1
## 15504                   lost             transparency   1
## 15505                   lost               visibility   1
## 15506                    lot                   facing   1
## 15507                    lot                     slid   1
## 15508                 lothar                      von   1
## 15509                  lotru                mountains   1
## 15510                   loud                explosion   1
## 15511                  louis                       25   1
## 15512                  louis                 cardinal   1
## 15513              louisiana              congressman   1
## 15514              louisiana                municipal   1
## 15515               loveland                 colorado   1
## 15516                    low                      air   1
## 15517                    low                 airspeed   1
## 15518                    low                    angle   1
## 15519                    low                 approach   1
## 15520                    low              cartwheeled   1
## 15521                    low                  circuit   1
## 15522                    low                 contrast   1
## 15523                    low                      due   1
## 15524                    low                  failure   1
## 15525                    low                      fly   1
## 15526                    low                      fog   1
## 15527                    low                frequency   1
## 15528                    low                      hit   1
## 15529                    low                  hitting   1
## 15530                    low                     left   1
## 15531                    low                     nose   1
## 15532                    low                   passes   1
## 15533                    low                    prior   1
## 15534                    low                     rate   1
## 15535                    low                resulting   1
## 15536                    low                    rotor   1
## 15537                    low                      run   1
## 15538                    low                   struck   1
## 15539                    low                   thrust   1
## 15540                    low                     tire   1
## 15541                    low                visiblity   1
## 15542                    low                   visual   1
## 15543                 lowari                     pass   1
## 15544                   lowe                   clouds   1
## 15545                  lower                altitiude   1
## 15546                  lower                   attach   1
## 15547                  lower               attachment   1
## 15548                  lower                  baggage   1
## 15549                  lower                cylinders   1
## 15550                  lower                   engine   1
## 15551                  lower                  forward   1
## 15552                  lower                     lobe   1
## 15553                  lower                   margin   1
## 15554                  lower                starboard   1
## 15555                  lower                     wing   1
## 15556               lowering                 ceilings   1
## 15557                 lowest                     safe   1
## 15558                     lp               compressor   1
## 15559                     lt                    bound   1
## 15560                     lt                      col   1
## 15561                     lt                  colonel   1
## 15562                     lt                    smith   1
## 15563                     lt                   thomas   1
## 15564                   ltta                    rebel   1
## 15565                   ltte               liberation   1
## 15566                 luanda                      atc   1
## 15567                 luanda                    bound   1
## 15568                 luanda               destroying   1
## 15569                 luanda                      due   1
## 15570            lubricating                   system   1
## 15571            lubricating                     unit   1
## 15572            lubrication                 interval   1
## 15573            lubrication                   system   1
## 15574                  lucky                      liz   1
## 15575                  luena                  airport   1
## 15576              lufthansa                 chairman   1
## 15577                lugansk                  airport   1
## 15578                luggage                   caused   1
## 15579                luggage              compartment   1
## 15580                  lukla                  airport   1
## 15581                  lukla                  tenzing   1
## 15582                 lumber                  station   1
## 15583              lumbermen                 returned   1
## 15584                 lumpur                      atc   1
## 15585                lunghwa                    field   1
## 15586                  lungi                  airport   1
## 15587                  luqua                  airport   1
## 15588               luquillo                mountains   1
## 15589                  lyall                  harbour   1
## 15590                  lying                      fog   1
## 15591                 lympne                     poor   1
## 15592                 lynyrd                  skynyrd   1
## 15593                   lyon                 approach   1
## 15594                   lyon                  satolas   1
## 15595                  lyons                  crashed   1
## 15596               lyricist                  alfredo   1
## 15597                    m.t                    cheam   1
## 15598                     m2                 detached   1
## 15599                   mabe                returning   1
## 15600                  macao                   prison   1
## 15601                macedon                   hidden   1
## 15602             macedonian                president   1
## 15603                   mach              indications   1
## 15604                 machel                president   1
## 15605                machine                   gunned   1
## 15606                 mackay                  crashed   1
## 15607                 mactan                   island   1
## 15608                 maddux                 aircraft   1
## 15609                 madrid                    chief   1
## 15610                 madrid                     loss   1
## 15611                 maersk                resilient   1
## 15612                   mãƒâ                     laga   1
## 15613                  magan                  airport   1
## 15614              magdalena                    river   1
## 15615              magdalena                      ten   1
## 15616               magdelen                  airport   1
## 15617              magnesium                   flares   1
## 15618                 magnum                   pistol   1
## 15619                 magnus                   viking   1
## 15620              magsaysay                       50   1
## 15621                 maiden                   flight   1
## 15622                   mail                      bag   1
## 15623                   mail                     bags   1
## 15624                   mail                    fligh   1
## 15625                   mail                passenger   1
## 15626                   mail                  plane's   1
## 15627                   main                      air   1
## 15628                   main                     body   1
## 15629                   main                    cabin   1
## 15630                   main                 fuselage   1
## 15631                   main                  gearbox   1
## 15632                   main                     gyro   1
## 15633                   main                hydraulic   1
## 15634                   main                     port   1
## 15635                   main                   reason   1
## 15636                   main                     road   1
## 15637                   main                 sections   1
## 15638                   main            undercarriage   1
## 15639                   main                    wheel   1
## 15640               mainland                    china   1
## 15641              mainliner                     lake   1
## 15642              mainliner                     utah   1
## 15643               maintain                    9,000   1
## 15644               maintain                 assigned   1
## 15645               maintain                awareness   1
## 15646               maintain                  contact   1
## 15647               maintain                   cruise   1
## 15648               maintain                    exact   1
## 15649               maintain                      ifr   1
## 15650               maintain                 obstacle   1
## 15651               maintain                 position   1
## 15652               maintain                 positive   1
## 15653               maintain                reference   1
## 15654               maintain                   runway   1
## 15655               maintain              situational   1
## 15656             maintained              disappeared   1
## 15657             maintained                 improper   1
## 15658             maintained                      u.s   1
## 15659            maintaining                   flight   1
## 15660            maintaining                    level   1
## 15661            maintaining                   visual   1
## 15662            maintenance               adjustment   1
## 15663            maintenance                  causing   1
## 15664            maintenance                   checks   1
## 15665            maintenance             contributing   1
## 15666            maintenance                  crashed   1
## 15667            maintenance                    crews   1
## 15668            maintenance             deficiencies   1
## 15669            maintenance                 facility   1
## 15670            maintenance                incorrect   1
## 15671            maintenance              inspections   1
## 15672            maintenance                      led   1
## 15673            maintenance                   manual   1
## 15674            maintenance                personell   1
## 15675            maintenance                preflight   1
## 15676            maintenance                procedure   1
## 15677            maintenance                  records   1
## 15678            maintenance                    staff   1
## 15679            maintenance                standards   1
## 15680            maintenance                  station   1
## 15681            maintenance               violations   1
## 15682            maintenance                   worker   1
## 15683              maiquetia                  airport   1
## 15684              maiquetia               navigation   1
## 15685                  major                    blame   1
## 15686                  major               electrical   1
## 15687                  major                     gash   1
## 15688                  major                political   1
## 15689                  major                  roadway   1
## 15690                  major                 sections   1
## 15691                  major                    storm   1
## 15692                  major               structural   1
## 15693                  major                      u.s   1
## 15694               majority                   leader   1
## 15695               majority                  opinion   1
## 15696                malabar                 princess   1
## 15697               malaysia                 airlines   1
## 15698          malfuncioning                propeller   1
## 15699            malfunction                   alerts   1
## 15700            malfunction                  allowed   1
## 15701            malfunction                   doomed   1
## 15702            malfunction                   flying   1
## 15703            malfunction                   forced   1
## 15704            malfunction                   midair   1
## 15705            malfunction                 occurred   1
## 15706            malfunction                  shortly   1
## 15707          malfunctioned                  causing   1
## 15708          malfunctioned                  leading   1
## 15709         malfunctioning                automatic   1
## 15710         malfunctioning                 controls   1
## 15711         malfunctioning                  crashed   1
## 15712         malfunctioning                      due   1
## 15713         malfunctioning                 elevator   1
## 15714         malfunctioning                     left   1
## 15715         malfunctioning               navigation   1
## 15716         malfunctioning                    pitch   1
## 15717         malfunctioning                    pitot   1
## 15718         malfunctioning                 reverser   1
## 15719         malfunctioning                  spoiler   1
## 15720         malfunctioning                   switch   1
## 15721         malfunctioning                  voltage   1
## 15722           malfunctions               overriding   1
## 15723                   mali                  dessert   1
## 15724                  malta                    bound   1
## 15725                  malta                   flight   1
## 15726              mamberamo                  crashed   1
## 15727                   mana                    river   1
## 15728                 manabu                     mabe   1
## 15729             management                 computer   1
## 15730             management                  crashed   1
## 15731             management               inadequate   1
## 15732             management                pressures   1
## 15733             management                  reduced   1
## 15734             management                     shot   1
## 15735             management                   system   1
## 15736             management                 training   1
## 15737                manager                   dennis   1
## 15738                manager                    randy   1
## 15739               managing                   editor   1
## 15740                  manas            international   1
## 15741                 manaus                  airport   1
## 15742                 manaus                  eduardo   1
## 15743             manchester                  failure   1
## 15744             manchester                   united   1
## 15745                  manco                    capac   1
## 15746                mandate             modification   1
## 15747               mandated                   safety   1
## 15748               maneuver                  carried   1
## 15749               maneuver                  crashed   1
## 15750               maneuver             difficulties   1
## 15751               maneuver                  failure   1
## 15752               maneuver                   midair   1
## 15753               maneuver                   severe   1
## 15754               maneuver                  shortly   1
## 15755            maneuvering             contributing   1
## 15756            maneuvering                  crashed   1
## 15757            maneuvering                  descent   1
## 15758            maneuvering                    error   1
## 15759            maneuvering                  program   1
## 15760            maneuvering                resulting   1
## 15761              maneuvers                  crashed   1
## 15762              maneuvers                descended   1
## 15763              maneuvers                including   1
## 15764              maneuvers                 involved   1
## 15765                manfred                      von   1
## 15766              mangalore                  airport   1
## 15767                mangled                 fuselage   1
## 15768               mangrove                    swamp   1
## 15769            manhattan's                     west   1
## 15770                 manila                      bay   1
## 15771                 manila                   caused   1
## 15772                 manila                   runway   1
## 15773                 manila                      vor   1
## 15774                 manley                    sonny   1
## 15775                   mann               researcher   1
## 15776                 manner                including   1
## 15777                 manner               increasing   1
## 15778             mannheim's                      375   1
## 15779              manoeuvre                      due   1
## 15780               manohara                    river   1
## 15781           manslaughter              prosecutors   1
## 15782             mantenance                    error   1
## 15783                 manual                 aircraft   1
## 15784                 manual             calculations   1
## 15785                 manual                     fuel   1
## 15786                 manual                      ils   1
## 15787               manually                  control   1
## 15788               manually                   deploy   1
## 15789               manually                 extended   1
## 15790           manufactured                 aircraft   1
## 15791         manufacturer's                erroneous   1
## 15792         manufacturer's               inspection   1
## 15793         manufacturer's               previously   1
## 15794         manufacturer's                  service   1
## 15795          manufacturing                  induced   1
## 15796          manufacturing                    plant   1
## 15797          manufacturing                  process   1
## 15798                manukau                   harbor   1
## 15799              manunggal                magsaysay   1
## 15800                manuver                      atc   1
## 15801             manzanillo                 mountain   1
## 15802                manzano                    range   1
## 15803                   maps                 briefing   1
## 15804                   maps                  crashed   1
## 15805                 maputo                  airport   1
## 15806                    mar                 chiquita   1
## 15807                    mar                      del   1
## 15808                   mara                 national   1
## 15809               marãƒâ­a                    fanny   1
## 15810               maranola                  stalled   1
## 15811              marashall                    texas   1
## 15812                 marcel                   cerdan   1
## 15813                  march                     2009   1
## 15814                  march                       22   1
## 15815                  march                      air   1
## 15816          marchekanskoy                     hill   1
## 15817               marciano                       45   1
## 15818               margalla                    hills   1
## 15819                 margin                 provided   1
## 15820               marginal               instrument   1
## 15821             marginally                     poor   1
## 15822             marguerite                    pitre   1
## 15823                  maria                  cordova   1
## 15824                  maria                 cristina   1
## 15825                  maria                      del   1
## 15826                  maria                     flew   1
## 15827                  maria                  koepcke   1
## 15828                  maria                   serano   1
## 15829                  maria                    vieja   1
## 15830                mariano                 escobedo   1
## 15831                 marina                  control   1
## 15832                 marina               controller   1
## 15833                 marina                      del   1
## 15834             marinduque                   island   1
## 15835                 marine                    cargo   1
## 15836               mariscal                    sucre   1
## 15837                   mark                       ii   1
## 15838                 marked                  airport   1
## 15839                 marked                    speed   1
## 15840                 marker                  weather   1
## 15841                 market                  crashed   1
## 15842                 market                   garden   1
## 15843                markham                    river   1
## 15844               markings                     crew   1
## 15845                marmara                      sea   1
## 15846                  marra               navigation   1
## 15847             marseilles                   france   1
## 15848                  marsh                     fuel   1
## 15849               marshall               university   1
## 15850                 marshy                 forested   1
## 15851               martãƒâ­                  airport   1
## 15852                 martin                       35   1
## 15853                 martin                      404   1
## 15854                 martin                  johnson   1
## 15855               maryland                   engine   1
## 15856                   marz                 mountain   1
## 15857                  masai                     mara   1
## 15858                masbate                  airport   1
## 15859                masbate                   island   1
## 15860                  masks                     fell   1
## 15861                  mason                     city   1
## 15862                   mass               descending   1
## 15863          massachusetts                   killed   1
## 15864          massachusetts                 turnpike   1
## 15865                massive                       50   1
## 15866                massive                  amounts   1
## 15867                massive                 external   1
## 15868                massive                ingestion   1
## 15869                   mast                        5   1
## 15870                   mast                  crashed   1
## 15871                 master               connecting   1
## 15872                 master                  warning   1
## 15873                 matari                  airport   1
## 15874               material                  failure   1
## 15875               material             flammability   1
## 15876               material                     snow   1
## 15877              materials                        8   1
## 15878              materials                arresting   1
## 15879              materials                      hit   1
## 15880                   mato                   grosso   1
## 15881                  matto                  located   1
## 15882                maturin                  airport   1
## 15883                   maui                  failure   1
## 15884                 maures                tribesmen   1
## 15885                maurice               muehleisen   1
## 15886              mauritius                 approach   1
## 15887                    max                        8   1
## 15888                    max                 aircraft   1
## 15889                  maxim                    gorky   1
## 15890                maximum                allowable   1
## 15891                maximum                 altitude   1
## 15892                maximum                    angle   1
## 15893                maximum                     duty   1
## 15894                maximum                 elevator   1
## 15895                maximum                    gross   1
## 15896                maximum                      low   1
## 15897                maximum                     nose   1
## 15898                maximum                operating   1
## 15899                maximum              permissable   1
## 15900                maximum                    power   1
## 15901                maximum                      rpm   1
## 15902                maximum                     stop   1
## 15903                maximum               structural   1
## 15904                 mayday                    calls   1
## 15905                 mayday                 received   1
## 15906                    mba            international   1
## 15907                     mc                   carran   1
## 15908                     mc                     comb   1
## 15909               mccarran                    field   1
## 15910               mccarran            international   1
## 15911              mcconnell                      air   1
## 15912               mcdonald                   killed   1
## 15913               mcentire                     band   1
## 15914                mcgrath                  crashed   1
## 15915             mcnaughton                     navy   1
## 15916                     md                       11   1
## 15917                     md                       80   1
## 15918                     md                       82   1
## 15919                     md                       83   1
## 15920                    mda                     crew   1
## 15921                    mda                    pilot   1
## 15922                 meadow                        5   1
## 15923               measures                     poor   1
## 15924              measuring                equipment   1
## 15925             mechanical                  defects   1
## 15926             mechanical             difficulties   1
## 15927             mechanical                 failures   1
## 15928             mechanical               inspection   1
## 15929             mechanical                    issue   1
## 15930             mechanical              malfunction   1
## 15931             mechanical                  repairs   1
## 15932             mechanical                  trouble   1
## 15933              mechanism                   called   1
## 15934              mechanism                  crashed   1
## 15935              mechanism                      due   1
## 15936              mechanism                   failed   1
## 15937              mechanism                    forty   1
## 15938              mechanism           uncontrollable   1
## 15939                  medan                 wreckage   1
## 15940               medellin                  airport   1
## 15941                medical                   clinic   1
## 15942                medical                     crew   1
## 15943                medical                examiners   1
## 15944                medical              information   1
## 15945                medical                  records   1
## 15946                medical                  student   1
## 15947                medical                treatment   1
## 15948               medicine                      bow   1
## 15949                 medina                    saudi   1
## 15950          mediterranean                      due   1
## 15951          mediterranean                  shortly   1
## 15952          mediterranian                      sea   1
## 15953                 medium                    sized   1
## 15954            meduxnekeag                    river   1
## 15955                meeting           specifications   1
## 15956                 meking                    river   1
## 15957                 mekong                    delta   1
## 15958                    mel                 carnahan   1
## 15959                melanie                 thornton   1
## 15960              melbourne                  florida   1
## 15961                melilla               controlled   1
## 15962              mellaline                       20   1
## 15963                 melted               insulation   1
## 15964                melting                      ice   1
## 15965                melting               insulation   1
## 15966               memorial                  crashed   1
## 15967               memorial                 services   1
## 15968                mendoza                argentina   1
## 15969                 mental                   stress   1
## 15970               mentally                      ill   1
## 15971                mentaya                    river   1
## 15972               menzalah                     lake   1
## 15973             mercantour                       50   1
## 15974             mercedario                  crashed   1
## 15975                  mercy                  mission   1
## 15976                   mere                 l'eglise   1
## 15977                  mered             neighborhood   1
## 15978                 merida                  aileron   1
## 15979                 mermoz                   killed   1
## 15980                 meshed                  airport   1
## 15981                message                  contact   1
## 15982                message                   engine   1
## 15983                message              positioning   1
## 15984                message                    prior   1
## 15985                message                 received   1
## 15986                message                 reported   1
## 15987                message               requesting   1
## 15988                message                   stated   1
## 15989                message                  stendec   1
## 15990                message              transmitted   1
## 15991               messages                  crashed   1
## 15992               messages                 reported   1
## 15993                    met             contributing   1
## 15994                   meta                  crashed   1
## 15995                  metal                    blast   1
## 15996                  metal                     star   1
## 15997          metallurgical                    fault   1
## 15998          metallurgical                   issues   1
## 15999         meteorological                condition   1
## 16000         meteorological              information   1
## 16001         meteorological                   minima   1
## 16002         meteorological                phenomena   1
## 16003                  meter                   height   1
## 16004         meteriological               conditions   1
## 16005                 meters                  crashed   1
## 16006                 meters                 offshore   1
## 16007                 meters               visibility   1
## 16008               meters.ã                        â   1
## 16009           metropolitan                  airport   1
## 16010                mexican                  actress   1
## 16011                mexican                 american   1
## 16012                mexican              journalists   1
## 16013                mexican             presidential   1
## 16014                mexican                       tv   1
## 16015                 mexico                      fog   1
## 16016                 mexico                    forty   1
## 16017                 mexico                  senator   1
## 16018                     mi                       8t   1
## 16019                     mi                       sw   1
## 16020                  miami                        9   1
## 16021                  miami                  airport   1
## 16022                  miami                    beach   1
## 16023                  miami                departure   1
## 16024                  miami                       fl   1
## 16025                  miami                  florida   1
## 16026                  miami                    river   1
## 16027                michael                  kennedy   1
## 16028               michigan                     19.5   1
## 16029               michigan                  crashed   1
## 16030               michigan                undershot   1
## 16031              mickelson                       52   1
## 16032                 mickey                   leland   1
## 16033             microburst               conditions   1
## 16034              microbust                  induced   1
## 16035             microphone            transmissions   1
## 16036            microscopic                   cracks   1
## 16037                    mid                      aid   1
## 16038                    mid                   runway   1
## 16039                 midair                 breaking   1
## 16040                 midair                explosion   1
## 16041                 midair                  killing   1
## 16042                 midair                   midair   1
## 16043           middleweight                   boxing   1
## 16044                 midway                   headed   1
## 16045                midwest                 national   1
## 16046              midwest's                     lack   1
## 16047              midwest's                   weight   1
## 16048                    mig                       15   1
## 16049                    mig                 aircraft   1
## 16050                    mig                  fighter   1
## 16051                    mig                 fighters   1
## 16052                    mig                      jet   1
## 16053                    mig                    pilot   1
## 16054                   migs             accidentally   1
## 16055                 miguel                   aleman   1
## 16056                 mihara                  volcano   1
## 16057                   mike                     todd   1
## 16058                mikhail                   glinka   1
## 16059                mikolaj                 kopernik   1
## 16060                   mild                stimulant   1
## 16061                   mile                 adjacent   1
## 16062                   mile                   radius   1
## 16063                   mile                southeast   1
## 16064                   mile                 striking   1
## 16065                  miles                     city   1
## 16066                  miles                    found   1
## 16067                  miles                      ssw   1
## 16068                  miles                      wnw   1
## 16069                  miles                      wsw   1
## 16070               military                 airstrip   1
## 16071               military                     army   1
## 16072               military                      atc   1
## 16073               military                     atcs   1
## 16074               military                 aviation   1
## 16075               military                      bus   1
## 16076               military                    cargo   1
## 16077               military                  charter   1
## 16078               military                  command   1
## 16079               military              controllers   1
## 16080               military                    corps   1
## 16081               military                 exercise   1
## 16082               military                exercises   1
## 16083               military                    flyby   1
## 16084               military                   flying   1
## 16085               military              frequencies   1
## 16086               military              headquarter   1
## 16087               military              helicopters   1
## 16088               military            investigation   1
## 16089               military                     jets   1
## 16090               military                  leaders   1
## 16091               military                   midair   1
## 16092               military                 officals   1
## 16093               military                  officer   1
## 16094               military                 officers   1
## 16095               military                officials   1
## 16096               military                    radar   1
## 16097               military                 supplies   1
## 16098               military                  traffic   1
## 16099                   mill                     hill   1
## 16100                   mill                 regional   1
## 16101                 miller                       40   1
## 16102                 miller                     army   1
## 16103              milwaukee               requesting   1
## 16104                mimimum                  descent   1
## 16105                mimimum                     safe   1
## 16106                    min                  crashed   1
## 16107                  minam                    river   1
## 16108                   mine                 airstrip   1
## 16109                mineral                   waters   1
## 16110                 miners                     fuel   1
## 16111                 miners                   headed   1
## 16112                   minh                     city   1
## 16113                 minhar                      air   1
## 16114                 minima                      700   1
## 16115                 minima                    cargo   1
## 16116                 minima                  descent   1
## 16117                 minima                     flew   1
## 16118                 minima                     shot   1
## 16119                 minima               subsequent   1
## 16120                minimal                  braking   1
## 16121                minimum                altitiude   1
## 16122                minimum                altitutde   1
## 16123                minimum                 approach   1
## 16124                minimum               authorized   1
## 16125                minimum                aviodance   1
## 16126                minimum                avoidance   1
## 16127                minimum                  ceiling   1
## 16128                minimum                  descend   1
## 16129                minimum                       en   1
## 16130                minimum               instrument   1
## 16131                minimum           meteorological   1
## 16132                minimum                     mode   1
## 16133                minimum           qualifications   1
## 16134                minimum                    radar   1
## 16135                minimum             requirements   1
## 16136                minimum                    speed   1
## 16137                minimum                  warning   1
## 16138              minimumns                 improper   1
## 16139               minimums                execution   1
## 16140               minimums               inadequate   1
## 16141                 mining                  company   1
## 16142               minister                    ahmed   1
## 16143               minister               douangchay   1
## 16144               minister                     jean   1
## 16145               minister                  winston   1
## 16146              ministers                  crashed   1
## 16147               ministry                officials   1
## 16148            minneapolis                 billings   1
## 16149            minneapolis                    world   1
## 16150              minnesota                   killed   1
## 16151                  minor                    royal   1
## 16152               minority                  opinion   1
## 16153           minsk.double                   engine   1
## 16154                   mint                   canyon   1
## 16155                minuets                      due   1
## 16156                 minute                   amount   1
## 16157                 minute                   change   1
## 16158                 minute                    fight   1
## 16159                 minute                  holding   1
## 16160                 minute                    route   1
## 16161                minutes                       23   1
## 16162                minutes                 collided   1
## 16163                minutes               descending   1
## 16164                minutes                  earlier   1
## 16165                minutes                  elapsed   1
## 16166                minutes                     flew   1
## 16167                minutes                   flying   1
## 16168                minutes                     loss   1
## 16169                minutes                    prior   1
## 16170                minutes                 revealed   1
## 16171                    mir                    pilot   1
## 16172                mirabel            international   1
## 16173           miraculously                 survived   1
## 16174                 mirage                      jet   1
## 16175           misconstrued             instructions   1
## 16176         misinformation                 supplied   1
## 16177         misinterpreted                  crucial   1
## 16178              misjudged            deteriorating   1
## 16179              misjudged                 distance   1
## 16180              misjudged                    speed   1
## 16181              misjudged               strategies   1
## 16182             misjudging                clearance   1
## 16183             misleading                  forcast   1
## 16184             misleading               navigation   1
## 16185                   miss                 approach   1
## 16186                   miss                   france   1
## 16187                   miss                    miami   1
## 16188                 missed                        3   1
## 16189                 missed                 apporach   1
## 16190                 missed                  attempt   1
## 16191                 missed                checklist   1
## 16192                 missed                      ifr   1
## 16193                missile                destroyed   1
## 16194                missile                 exploded   1
## 16195                missile                  launced   1
## 16196                missile                  overran   1
## 16197                missile                president   1
## 16198                missile                  shortly   1
## 16199                missile                   unable   1
## 16200               missiles                  shortly   1
## 16201                missing                  landing   1
## 16202                missing                  minutes   1
## 16203                missing                    plane   1
## 16204                missing                    spark   1
## 16205                missing                 wreckage   1
## 16206                mission                  airport   1
## 16207                mission                  induced   1
## 16208                mission                  killing   1
## 16209            mississippi                   larkin   1
## 16210                   mist                      due   1
## 16211                   mist                 reported   1
## 16212             mistakenly                continued   1
## 16213             mistakenly               identified   1
## 16214             mistakenly                installed   1
## 16215             mistakenly                    lined   1
## 16216             mistakenly                shortened   1
## 16217             mistakenly                throttled   1
## 16218             mistakenly                    tuned   1
## 16219             mistberget                 mountain   1
## 16220                mistook                laphroaig   1
## 16221                mistook                   lights   1
## 16222                mistook                  nanaimo   1
## 16223             mistrimmed                condition   1
## 16224             mistrimmed               horizontal   1
## 16225             mistrimmed                   rudder   1
## 16226             mistrimmed               stabilizer   1
## 16227                  misty                conditons   1
## 16228                  misty                   fiords   1
## 16229                  misty                     rain   1
## 16230          misunderstood                  aileron   1
## 16231                misused                    flaps   1
## 16232               mitchell            international   1
## 16233                  mixed                      vfr   1
## 16234                mixture                  causing   1
## 16235               miyamori                  primary   1
## 16236                 mobile                  alabama   1
## 16237                 mobile                    homes   1
## 16238                 mobile                     shop   1
## 16239                 mobile                  traffic   1
## 16240             mocambique                   island   1
## 16241                   mode                   direct   1
## 16242                   mode                      due   1
## 16243                   mode                 selector   1
## 16244                   mode               transition   1
## 16245                  model                sustained   1
## 16246               moderate                    bumps   1
## 16247               moderate                 injuries   1
## 16248                 modern                  terrain   1
## 16249               mofadisu            international   1
## 16250                moffett                    naval   1
## 16251              mogadishu                  crashed   1
## 16252                moganik                 mountain   1
## 16253               mohammed                   rashed   1
## 16254                 mohawk                   valley   1
## 16255                 moines                 marciano   1
## 16256               moisture                  leaking   1
## 16257                 mojave                   desert   1
## 16258               moldovan                     crew   1
## 16259                 mollet                     lake   1
## 16260                   molo                   strait   1
## 16261                molokai                   hawaii   1
## 16262                molokai                  slammed   1
## 16263                 moment                 reversal   1
## 16264            momentarily              disappeared   1
## 16265              momentary           disorientation   1
## 16266              momentary             intermittent   1
## 16267                 monica                  airport   1
## 16268                monitor                 airspeed   1
## 16269                monitor                altimeter   1
## 16270                monitor                essential   1
## 16271                monitor                     fine   1
## 16272                monitor                   flight   1
## 16273                monitor                     fuel   1
## 16274                monitor              instruments   1
## 16275                monitor                 properly   1
## 16276             monitoring              instruments   1
## 16277            monongahela                    river   1
## 16278               monoxide                emanating   1
## 16279               monoxide                    fumes   1
## 16280               monoxide                      gas   1
## 16281                monseny                    pilot   1
## 16282                monsoon               conditions   1
## 16283                monsoon                rainstorm   1
## 16284                   mont                    apica   1
## 16285                montãƒâ                    limar   1
## 16286                  monte                  pilot's   1
## 16287                  monte                     vale   1
## 16288               monterey                   mexico   1
## 16289               monterey                peninsula   1
## 16290              monterrey                   mexico   1
## 16291             montevideo                    bound   1
## 16292              montezuma                  shortly   1
## 16293                  month                  crashed   1
## 16294                 months                  crashed   1
## 16295                 months                   nelson   1
## 16296                 months                preceding   1
## 16297                montijo                       40   1
## 16298               montreal                    bound   1
## 16299               montreal                   canada   1
## 16300               montreal                 cruising   1
## 16301               montreal                    icing   1
## 16302             montreal's                   dorval   1
## 16303               montseny                 mountain   1
## 16304                   moon                      bay   1
## 16305                 mooney                 airplane   1
## 16306                 mooney                  airport   1
## 16307                 mooney               instructor   1
## 16308                 mooney                    pilot   1
## 16309                 mooney               procedures   1
## 16310                  moore                       48   1
## 16311                mooring                    ropes   1
## 16312                  moose                 mountain   1
## 16313                   mora                     kalu   1
## 16314                moresby                 jacksons   1
## 16315                morning                   flight   1
## 16316                morning              malfunction   1
## 16317               moroccan                  pilot's   1
## 16318                  moron                   island   1
## 16319                 morrow                       53   1
## 16320                 mortar                     fire   1
## 16321                 moscow                       11   1
## 16322                 moscow                  crashed   1
## 16323                 moscow                   hockey   1
## 16324                 moscow                  shortly   1
## 16325                 moscow                   visual   1
## 16326                 moscow                  vnukovo   1
## 16327                 moscow                witnesses   1
## 16328               mosquito                 fighters   1
## 16329                 mostar               macedonian   1
## 16330                  motel                  complex   1
## 16331                 mother                    maria   1
## 16332                 mother                    threw   1
## 16333               mother's                  luggage   1
## 16334                 motion                  sensors   1
## 16335                  motor                    drive   1
## 16336            motorsports                   racing   1
## 16337                  motte                     peak   1
## 16338           moucherolles                       25   1
## 16339              mouintian                      8km   1
## 16340                  mound                 adjacent   1
## 16341                 mounds                     park   1
## 16342                  mount                anjimalai   1
## 16343                  mount                  apshara   1
## 16344                  mount                     arey   1
## 16345                  mount                    basso   1
## 16346                  mount                chaiopeng   1
## 16347                  mount               charleston   1
## 16348                  mount                   djebel   1
## 16349                  mount                esperanca   1
## 16350                  mount                  gambier   1
## 16351                  mount                  gannett   1
## 16352                  mount                    healy   1
## 16353                  mount                 hymittus   1
## 16354                  mount                  kamunay   1
## 16355                  mount                    kenya   1
## 16356                  mount               latimojong   1
## 16357                  mount                 maranola   1
## 16358                  mount                 marsabit   1
## 16359                  mount                  massive   1
## 16360                  mount                  ostraya   1
## 16361                  mount                    oyama   1
## 16362                  mount                   parker   1
## 16363                  mount                   poktoy   1
## 16364                  mount                     popa   1
## 16365                  mount                 porretta   1
## 16366                  mount                    salak   1
## 16367                  mount                      san   1
## 16368                  mount                    santa   1
## 16369                  mount                   slesse   1
## 16370                  mount                   vernon   1
## 16371                  mount                    vumba   1
## 16372               mountain                        1   1
## 16373               mountain                      100   1
## 16374               mountain                       12   1
## 16375               mountain                       14   1
## 16376               mountain                    2,310   1
## 16377               mountain                       27   1
## 16378               mountain                        3   1
## 16379               mountain                      3.4   1
## 16380               mountain                      300   1
## 16381               mountain                     300m   1
## 16382               mountain                       32   1
## 16383               mountain                       40   1
## 16384               mountain                       43   1
## 16385               mountain                      450   1
## 16386               mountain                    5,500   1
## 16387               mountain                       50   1
## 16388               mountain                       52   1
## 16389               mountain                        6   1
## 16390               mountain                    6,100   1
## 16391               mountain                      600   1
## 16392               mountain                        7   1
## 16393               mountain                       70   1
## 16394               mountain                       80   1
## 16395               mountain                      atc   1
## 16396               mountain                  bending   1
## 16397               mountain                  blocked   1
## 16398               mountain                 bursting   1
## 16399               mountain                disabling   1
## 16400               mountain                downdraft   1
## 16401               mountain                      due   1
## 16402               mountain                     east   1
## 16403               mountain                    error   1
## 16404               mountain                 exploded   1
## 16405               mountain                   flight   1
## 16406               mountain                   flying   1
## 16407               mountain                      fog   1
## 16408               mountain                    guide   1
## 16409               mountain                    humpy   1
## 16410               mountain                 improper   1
## 16411               mountain               inadequate   1
## 16412               mountain                 judgment   1
## 16413               mountain                  killing   1
## 16414               mountain                 location   1
## 16415               mountain                  minutes   1
## 16416               mountain                       mt   1
## 16417               mountain             navigational   1
## 16418               mountain                   olcott   1
## 16419               mountain               overloaded   1
## 16420               mountain                premature   1
## 16421               mountain                   rising   1
## 16422               mountain                    serra   1
## 16423               mountain                   severe   1
## 16424               mountain                     shot   1
## 16425               mountain                    south   1
## 16426               mountain                   summit   1
## 16427               mountain               surrounded   1
## 16428               mountain                turbulent   1
## 16429               mountain             undetermined   1
## 16430               mountain                unusually   1
## 16431               mountain                     wall   1
## 16432               mountain                     west   1
## 16433               mountain                    world   1
## 16434             mountain18                       nm   1
## 16435            mountainous                  country   1
## 16436            mountainous                 forested   1
## 16437            mountainous                   jungle   1
## 16438            mountainous                 northern   1
## 16439            mountainous                    samal   1
## 16440            mountainous             southeastern   1
## 16441            mountainous                territory   1
## 16442              mountains                      100   1
## 16443              mountains                      120   1
## 16444              mountains                       22   1
## 16445              mountains                       26   1
## 16446              mountains                       32   1
## 16447              mountains                        8   1
## 16448              mountains             accidentally   1
## 16449              mountains                continued   1
## 16450              mountains                  crashed   1
## 16451              mountains                  fflying   1
## 16452              mountains                    found   1
## 16453              mountains                      hit   1
## 16454              mountains                  located   1
## 16455              mountains                     lost   1
## 16456              mountains          nizhnesvanetsky   1
## 16457              mountains                    north   1
## 16458              mountains                 obscured   1
## 16459              mountains               permission   1
## 16460              mountains                 probable   1
## 16461              mountains                    south   1
## 16462              mountains                 wreckage   1
## 16463          mountains.the                 airplane   1
## 16464           mountainside                       15   1
## 16465           mountainside                        2   1
## 16466           mountainside                       20   1
## 16467           mountainside                       30   1
## 16468           mountainside                       50   1
## 16469           mountainside                    icing   1
## 16470           mountainside                navigator   1
## 16471           mountainside                    north   1
## 16472             mountanous                   region   1
## 16473               mountian                       34   1
## 16474               mountian                     peak   1
## 16475               mounting                    studs   1
## 16476                 mounts                  leading   1
## 16477                  moved            automatically   1
## 16478               movement                 reversal   1
## 16479               movement                  stalled   1
## 16480                  movie                  airport   1
## 16481                  movie                    alive   1
## 16482                  movie                    crash   1
## 16483                  movie                     crew   1
## 16484                  movie                  falling   1
## 16485                  movie                     star   1
## 16486                 moving                equipment   1
## 16487                 moving                 sideways   1
## 16488             mozambique                   killed   1
## 16489                    mpã                        â   1
## 16490                    mph                 bursting   1
## 16491                    mph                  mexican   1
## 16492                    mph               officially   1
## 16493                     ms                  pitre's   1
## 16494                   msaw                   system   1
## 16495                 mselou                 district   1
## 16496                    msl                  crashed   1
## 16497                     mt                 alcazaba   1
## 16498                     mt                arbetello   1
## 16499                     mt                     baco   1
## 16500                     mt                 banahaur   1
## 16501                     mt                barrigada   1
## 16502                     mt                   belaya   1
## 16503                     mt                   benson   1
## 16504                     mt                    blanc   1
## 16505                     mt                     boca   1
## 16506                     mt               burangrang   1
## 16507                     mt                  canigou   1
## 16508                     mt                  capanne   1
## 16509                     mt                    cemet   1
## 16510                     mt                   chambe   1
## 16511                     mt                 chaparra   1
## 16512                     mt             chichontepec   1
## 16513                     mt               chimborazo   1
## 16514                     mt              choquetanga   1
## 16515                     mt                   cipãƒâ   1
## 16516                     mt                 colorado   1
## 16517                     mt                constance   1
## 16518                     mt                     cook   1
## 16519                     mt                daodenong   1
## 16520                     mt                     dena   1
## 16521                     mt                   dora's   1
## 16522                     mt                   epomeo   1
## 16523                     mt                  everest   1
## 16524                     mt                    fruka   1
## 16525                     mt                     fuji   1
## 16526                     mt                 gabinete   1
## 16527                     mt                    gaina   1
## 16528                     mt                  gilbert   1
## 16529                     mt                   giluwe   1
## 16530                     mt                glungezer   1
## 16531                     mt                    halla   1
## 16532                     mt                   helmos   1
## 16533                     mt                hestfjall   1
## 16534                     mt                  holston   1
## 16535                     mt                 hymettus   1
## 16536                     mt                  iliamna   1
## 16537                     mt                 illimani   1
## 16538                     mt                   ingeli   1
## 16539                     mt                     ipao   1
## 16540                     mt                jaiskibel   1
## 16541                     mt                 kalangan   1
## 16542                     mt                   kalora   1
## 16543                     mt                 kantakan   1
## 16544                     mt                kaolokung   1
## 16545                     mt                    kapur   1
## 16546                     mt                 karatepa   1
## 16547                     mt                    kenya   1
## 16548                     mt                   kerkis   1
## 16549                     mt              kilimanjaro   1
## 16550                     mt               kinnekulle   1
## 16551                     mt                   klabat   1
## 16552                     mt                    knuku   1
## 16553                     mt                   komawa   1
## 16554                     mt                  koupãƒâ   1
## 16555                     mt              lamentation   1
## 16556                     mt                  lataboy   1
## 16557                     mt                    lawes   1
## 16558                     mt                      los   1
## 16559                     mt                    lozan   1
## 16560                     mt                    lunga   1
## 16561                     mt                 lyhesten   1
## 16562                     mt                  macedon   1
## 16563                     mt                   madiac   1
## 16564                     mt                   manase   1
## 16565                     mt                manunggal   1
## 16566                     mt                    marra   1
## 16567                     mt                    matto   1
## 16568                     mt                 mckinley   1
## 16569                     mt                mellaline   1
## 16570                     mt               mercedario   1
## 16571                     mt                   mesehe   1
## 16572                     mt                     meta   1
## 16573                     mt                  monseny   1
## 16574                     mt                montezuma   1
## 16575                     mt                    moran   1
## 16576                     mt             moucherolles   1
## 16577                     mt                  mulbong   1
## 16578                     mt                    munay   1
## 16579                     mt                   musaka   1
## 16580                     mt                   nashua   1
## 16581                     mt                  nittany   1
## 16582                     mt                    north   1
## 16583                     mt                     nova   1
## 16584                     mt                      oiz   1
## 16585                     mt                 okanagan   1
## 16586                     mt                  olympus   1
## 16587                     mt                     otay   1
## 16588                     mt                   othrys   1
## 16589                     mt                     pãƒâ   1
## 16590                     mt                      pan   1
## 16591                     mt               papandayan   1
## 16592                     mt                   paramo   1
## 16593                     mt                   parker   1
## 16594                     mt                   parnon   1
## 16595                     mt                     paso   1
## 16596                     mt                     pena   1
## 16597                     mt                pichincha   1
## 16598                     mt                  pindaya   1
## 16599                     mt                  pintado   1
## 16600                     mt                planchãƒâ   1
## 16601                     mt             popocatepetl   1
## 16602                     mt                   potosi   1
## 16603                     mt                  ptolemy   1
## 16604                     mt                   puncak   1
## 16605                     mt                   rainer   1
## 16606                     mt                  rainier   1
## 16607                     mt                   renoso   1
## 16608                     mt                     rigi   1
## 16609                     mt                  ringani   1
## 16610                     mt                  ruapehu   1
## 16611                     mt                    santa   1
## 16612                     mt                    saran   1
## 16613                     mt                  sebayak   1
## 16614                     mt                    serra   1
## 16615                     mt                  seymour   1
## 16616                     mt                  sibayak   1
## 16617                     mt                  sivukha   1
## 16618                     mt                skalafell   1
## 16619                     mt              skorvefjell   1
## 16620                     mt               somosierra   1
## 16621                     mt                   suphan   1
## 16622                     mt                  tabayoc   1
## 16623                     mt                  talsula   1
## 16624                     mt                 tanazawa   1
## 16625                     mt                 tangcong   1
## 16626                     mt                  tanzawa   1
## 16627                     mt                   taylor   1
## 16628                     mt                     tete   1
## 16629                     mt                   tirina   1
## 16630                     mt                    tobin   1
## 16631                     mt                      tom   1
## 16632                     mt                 trelease   1
## 16633                     mt                      ugu   1
## 16634                     mt                    ungeo   1
## 16635                     mt                   velino   1
## 16636                     mt                 vesuvius   1
## 16637                     mt                  whitney   1
## 16638                     mt                    wuzhi   1
## 16639                     mt                  yasirua   1
## 16640                     mt                   zamuro   1
## 16641                 mucuti                 mountain   1
## 16642                    mud                     flat   1
## 16643                  muddy                   ground   1
## 16644                  muddy                    water   1
## 16645             mueggenaes                   island   1
## 16646             muehleisen                publicist   1
## 16647               muhammad                      zia   1
## 16648                  mujer                   muerta   1
## 16649                mulbong            approximately   1
## 16650                  mulia                      100   1
## 16651          multinational                    force   1
## 16652                multipe                   engine   1
## 16653               multiple                 attempts   1
## 16654               multiple                     bird   1
## 16655               multiple                corrosion   1
## 16656               multiple                   engine   1
## 16657               multiple                   errors   1
## 16658               multiple              inspections   1
## 16659               multiple                insurance   1
## 16660               multiple                     tire   1
## 16661                 muncho                     lake   1
## 16662                 munich                     shot   1
## 16663                 munich                   unable   1
## 16664                 munson                       32   1
## 16665             murchinson                    river   1
## 16666               murdered                   aboard   1
## 16667                 murphy                       46   1
## 16668                 musaka                     lost   1
## 16669                 musang                 district   1
## 16670                 mushaf                      ali   1
## 16671                   musi                    river   1
## 16672                  music                     trio   1
## 16673               musician                    glenn   1
## 16674               musician                     paul   1
## 16675                 musick                   killed   1
## 16676                 muslim                 congress   1
## 16677                 muslim                   rebels   1
## 16678               mustered                     crew   1
## 16679                 mutual                  support   1
## 16680                   mvou                     mvou   1
## 16681                   mvou              residential   1
## 16682                  mw248                   twenty   1
## 16683                   myca                     dinh   1
## 16684                 n'dolo                  airport   1
## 16685                 n124nh             subsequently   1
## 16686               n407ga's                    pilot   1
## 16687               n407mj's                    pilot   1
## 16688                  n464m                  decided   1
## 16689                     nã                        â   1
## 16690                na'ameh                  lebanon   1
## 16691                 nabire                  crashed   1
## 16692                nacelle                  causing   1
## 16693                nacelle                  leading   1
## 16694                nacelle                     wing   1
## 16695                   nadi            international   1
## 16696                   nãƒâ                   rnberg   1
## 16697                 nagoya                  airport   1
## 16698                   naha                      air   1
## 16699                  named                 amalthea   1
## 16700                  named                    amana   1
## 16701                  named                  antonio   1
## 16702                  named                    cairo   1
## 16703                  named                 canberra   1
## 16704                  named                 cavalier   1
## 16705                  named                  chateau   1
## 16706                  named                 chekiang   1
## 16707                  named                    china   1
## 16708                  named              christopher   1
## 16709                  named                      cit   1
## 16710                  named                   cygnus   1
## 16711                  named                     dana   1
## 16712                  named                 emeraude   1
## 16713                  named                  emperor   1
## 16714                  named                  empress   1
## 16715                  named                  estevao   1
## 16716                  named                 flagship   1
## 16717                  named             gaurishankar   1
## 16718                  named                   glinka   1
## 16719                  named                 hannibal   1
## 16720                  named                   hawaii   1
## 16721                  named                     hong   1
## 16722                  named                    horus   1
## 16723                  named                     isle   1
## 16724                  named                   kaleva   1
## 16725                  named             kanchenjunga   1
## 16726                  named                  kashmir   1
## 16727                  named                 koningin   1
## 16728                  named                  kulbach   1
## 16729                  named                  kweilin   1
## 16730                  named                     lage   1
## 16731                  named                leeuwerik   1
## 16732                  named                     lord   1
## 16733                  named                   magnus   1
## 16734                  named                  malabar   1
## 16735                  named                mamberamo   1
## 16736                  named                  mikolaj   1
## 16737                  named                 nijmegen   1
## 16738                  named                      orm   1
## 16739                  named               philippine   1
## 16740                  named                   prince   1
## 16741                  named                     puma   1
## 16742                  named                    queen   1
## 16743                  named                    rhine   1
## 16744                  named                    river   1
## 16745                  named                  rostock   1
## 16746                  named                   rudolf   1
## 16747                  named                     ruta   1
## 16748                  named                    saint   1
## 16749                  named                   samoan   1
## 16750                  named                      san   1
## 16751                  named                 shanghai   1
## 16752                  named                   shiraz   1
## 16753                  named                   sunnan   1
## 16754                  named                   sverre   1
## 16755                  named                  tadeusz   1
## 16756                  named                thutmosis   1
## 16757                  named                  trabzon   1
## 16758                  named                    uiver   1
## 16759                  named                 vigalant   1
## 16760                  named                    ville   1
## 16761                  named                 wolfgang   1
## 16762                namibia                   border   1
## 16763                 naming               convention   1
## 16764                   nang                  airport   1
## 16765                 nanhai                     park   1
## 16766                 nantes                      vor   1
## 16767              nantucket                  airport   1
## 16768              nantucket                   island   1
## 16769              nantucket                    sound   1
## 16770                nanyman                    field   1
## 16771              narcotics                  mission   1
## 16772              narcotics                officials   1
## 16773                   nari                affecting   1
## 16774                 narita              airport.the   1
## 16775                 narrow                   flight   1
## 16776                 narrow                   runway   1
## 16777              narrowing                   valley   1
## 16778               narrowly                  avoided   1
## 16779                   nasa                    plane   1
## 16780                   nasa                 research   1
## 16781                 nascar                   driver   1
## 16782                 nascar                     race   1
## 16783                 nascar                  winston   1
## 16784              nashville                  airport   1
## 16785              nashville                     west   1
## 16786                  nasty                  buggers   1
## 16787                  natal                 province   1
## 16788                natalie                    dolly   1
## 16789           natchitoches                louisiana   1
## 16790                nathaly                      van   1
## 16791               nation's                   border   1
## 16792              nationair                     lead   1
## 16793              nationair                  project   1
## 16794               national                      air   1
## 16795               national                      ice   1
## 16796               national                institute   1
## 16797               national              operational   1
## 16798               national                   police   1
## 16799               national                  reserve   1
## 16800               national                   soccer   1
## 16801               national               volleyball   1
## 16802               national                  weather   1
## 16803            nationalist                   planes   1
## 16804                nations                chartered   1
## 16805                nations             organization   1
## 16806                nations                personnel   1
## 16807                nations                 released   1
## 16808                nations                   troops   1
## 16809                   nato                  harrier   1
## 16810                   nato               supporting   1
## 16811                natural                resonance   1
## 16812                nausori                  airport   1
## 16813                    nav                        1   1
## 16814                    nav                        2   1
## 16815                    nav                equipment   1
## 16816             navagation                    error   1
## 16817           navagational                   errors   1
## 16818                 navajo                  crashed   1
## 16819                  naval                  academy   1
## 16820                  naval                  housing   1
## 16821              naviation                    error   1
## 16822            naviational                    error   1
## 16823             navigation                     aids   1
## 16824             navigation                   charts   1
## 16825             navigation                  crashed   1
## 16826             navigation                  failure   1
## 16827             navigation              information   1
## 16828             navigation                 overshot   1
## 16829             navigation                    poles   1
## 16830             navigation                  signals   1
## 16831           navigational                      aid   1
## 16832           navigational                   charts   1
## 16833           navigational             difficulties   1
## 16834           navigational                equipment   1
## 16835           navigational               facilities   1
## 16836           navigational              instruments   1
## 16837           navigational                   issues   1
## 16838           navigational               procedures   1
## 16839           navigational                  setting   1
## 16840           navigational                   towers   1
## 16841           navigational                vigilance   1
## 16842              navigator                  absence   1
## 16843              navigator                    error   1
## 16844              navigator                     fred   1
## 16845            navigator's                    table   1
## 16846               navolato                  highway   1
## 16847                   navy                 aircraft   1
## 16848                   navy                     band   1
## 16849                   navy               beechcraft   1
## 16850                   navy               conducting   1
## 16851                   navy                disagreed   1
## 16852                   navy                    diver   1
## 16853                   navy                 goodyear   1
## 16854                   navy                      jet   1
## 16855                   navy               lieutenant   1
## 16856                   navy                secretary   1
## 16857                   navy                   vessel   1
## 16858                    nbc                    radio   1
## 16859                    nbc                   sports   1
## 16860                    ndb                   beacon   1
## 16861                    ndb                  causing   1
## 16862                     ne                   runway   1
## 16863                    nea                anghialos   1
## 16864                   neal                       38   1
## 16865                 nearby                 building   1
## 16866                 nearby                  fairfax   1
## 16867                 nearby                   fields   1
## 16868                 nearby             intersection   1
## 16869                 nearby                  support   1
## 16870                 nearby             thunderstorm   1
## 16871                 nearby                    trees   1
## 16872                 nearby                      van   1
## 16873                 nearby                villagers   1
## 16874                 nearby                     wing   1
## 16875                nearest                   summit   1
## 16876                nearing                       10   1
## 16877           necessitated                 ditching   1
## 16878           necessitated                operating   1
## 16879          necessitating                  landing   1
## 16880               negative                   affect   1
## 16881             negatively                 affected   1
## 16882              negligent                 homicide   1
## 16883                 negros                   island   1
## 16884           neighborhood                        1   1
## 16885           neighborhood                      500   1
## 16886           neighborhood                    broke   1
## 16887           neighborhood                 bursting   1
## 16888           neighborhood               destroying   1
## 16889           neighborhood                  killing   1
## 16890           neighborhood                  ripping   1
## 16891           neighborhood                    south   1
## 16892           neighborhood                   twenty   1
## 16893           neighborhood                     west   1
## 16894                 nellis                      air   1
## 16895                 nelson                       45   1
## 16896                   neon              obstruction   1
## 16897                  nepal                     half   1
## 16898                 nestor                   chavez   1
## 16899                   neua           communications   1
## 16900                   neua                   flying   1
## 16901                neuwerk                   island   1
## 16902                   neva                  shortly   1
## 16903                  neveu                   killed   1
## 16904                 newark                 aircraft   1
## 16905                 newark                    error   1
## 16906                 newark                impatient   1
## 16907                 newark            international   1
## 16908               newberry                  airport   1
## 16909                newhall                     pass   1
## 16910                newhall                    radio   1
## 16911                  newly                 assigned   1
## 16912                  newly               resurfaced   1
## 16913                   news               helicopter   1
## 16914                   news                    story   1
## 16915              newspaper                       la   1
## 16916                 newton                     iowa   1
## 16917                 ngurah                      rai   1
## 16918                    nha                    trang   1
## 16919                   nhut                  airbase   1
## 16920                niagara            international   1
## 16921              nicaragua                  landing   1
## 16922             nicaraguan                      air   1
## 16923             nicaraguan                   rebels   1
## 16924                   nice                  airport   1
## 16925                   nice                     cote   1
## 16926                   nice                   engine   1
## 16927                   nick                   begich   1
## 16928              nicknamed                    maxim   1
## 16929              nicknamed                     york   1
## 16930              nigeria's               liberation   1
## 16931               nigerian                   pilots   1
## 16932                  night                 approach   1
## 16933                  night                  claimed   1
## 16934                  night                     crew   1
## 16935                  night                 diverted   1
## 16936                  night                      due   1
## 16937                  night            environmental   1
## 16938                  night                  failure   1
## 16939                  night                  fighter   1
## 16940                  night                   flying   1
## 16941                  night                hampering   1
## 16942                  night                      hit   1
## 16943                  night                     lack   1
## 16944                  night                 landings   1
## 16945                  night                 lighting   1
## 16946                  night                      low   1
## 16947                  night                     mail   1
## 16948                  night                   midair   1
## 16949                  night                  mission   1
## 16950                  night                momentary   1
## 16951                  night                    party   1
## 16952                  night                 partying   1
## 16953                  night                     rain   1
## 16954                  night            repositioning   1
## 16955                  night                      sky   1
## 16956                  night                   struck   1
## 16957                  night                 training   1
## 16958                  night                transport   1
## 16959                  night             undetermined   1
## 16960                  night                      vfr   1
## 16961                  night                      vor   1
## 16962                  night                   winter   1
## 16963               nightime               conditions   1
## 16964              nighttime                 approach   1
## 16965              nighttime               conditions   1
## 16966              nighttime                  landing   1
## 16967                 nimbus                   clouds   1
## 16968                 nimitz                     hill   1
## 16969               nineteen                   killed   1
## 16970               nineteen                  minutes   1
## 16971               nineteen               passengers   1
## 16972                 ninety                  degrees   1
## 16973                  ninoy                   aquino   1
## 16974                  ninth                      day   1
## 16975                 nitric                     acid   1
## 16976              nitriding                  process   1
## 16977                  nitro                 glycerin   1
## 16978                  nitro                glycerine   1
## 16979         nitrocellulose                     bomb   1
## 16980        nizhnesvanetsky                    range   1
## 16981                nkomo's                 zimbabwe   1
## 16982                     nm                       ne   1
## 16983                     nm                      nnw   1
## 16984                     nm                northwest   1
## 16985                     nm                 offshore   1
## 16986                     nm                       sw   1
## 16987                    no2                   engine   1
## 16988                   node                      bar   1
## 16989               nogougou                  spatial   1
## 16990                  noire                  airport   1
## 16991                 noises                     bank   1
## 16992                nominal                    climb   1
## 16993          nonconforming                 elevator   1
## 16994              nonflying                   pilots   1
## 16995         nonfunctioning                      vor   1
## 16996          noninstrument                    pilot   1
## 16997           nonpertinent             conversation   1
## 16998           nonprecision                 approach   1
## 16999             nonrevenue                    ferry   1
## 17000             nonroutine                   flight   1
## 17001            nonstandard                     flap   1
## 17002                nonstop                    prior   1
## 17003                nonstop            transatlantic   1
## 17004                 noonan                   killed   1
## 17005                 normal                       20   1
## 17006                 normal                    angle   1
## 17007                 normal                  cockpit   1
## 17008                 normal                  crashed   1
## 17009                 normal                    final   1
## 17010                 normal                   flying   1
## 17011                 normal                     fuel   1
## 17012                 normal                    glide   1
## 17013                 normal              maintenance   1
## 17014                 normal                  minimum   1
## 17015                 normal                  pattern   1
## 17016                 normal                 position   1
## 17017                 normal                     rate   1
## 17018                 normal                    route   1
## 17019                 normal                 slightly   1
## 17020                 normal             temperatures   1
## 17021                 normal                    track   1
## 17022                 norman                 baessell   1
## 17023                  north                  barrule   1
## 17024                  north                  central   1
## 17025                  north                    coast   1
## 17026                  north                hollywood   1
## 17027                  north                 ossetian   1
## 17028                  north                    sinai   1
## 17029                  north                    tower   1
## 17030                  north                  vietnam   1
## 17031                  north               vietnamese   1
## 17032                  north                     west   1
## 17033              northeast             philadelphia   1
## 17034           northeastern                   angola   1
## 17035           northeastern                venezuela   1
## 17036              northerly                direction   1
## 17037               northern             california's   1
## 17038               northern                     mali   1
## 17039               northern                  portion   1
## 17040               northern                   region   1
## 17041               northern                   slopes   1
## 17042              northwest                   runway   1
## 17043           northwestern                   inside   1
## 17044           northwestern                    slope   1
## 17045              norwegian                  islands   1
## 17046                    nos                        1   1
## 17047                   nose                 attitude   1
## 17048                   nose                  baggage   1
## 17049                   nose                    broke   1
## 17050                   nose                  dropped   1
## 17051                   nose                heaviness   1
## 17052                   nose                    heavy   1
## 17053                   nose                      hit   1
## 17054                   nose                  landing   1
## 17055                   nose                     rose   1
## 17056                   nose                  sliding   1
## 17057                   nose                  slipped   1
## 17058                   nose                  steeply   1
## 17059                   nose                    yawed   1
## 17060              nosedived                  leveled   1
## 17061               nosedown                 vertical   1
## 17062              nosewheel                   struck   1
## 17063                  notam                 improper   1
## 17064                  notam                   issued   1
## 17065                  noted               mechanical   1
## 17066                 notice                  warning   1
## 17067                noticed                    smoke   1
## 17068                 notify                      atc   1
## 17069                  notre                     dame   1
## 17070                    nov                       22   1
## 17071                   nova                 deviated   1
## 17072               novelist                      ben   1
## 17073               november                       16   1
## 17074                 nozzle                   caused   1
## 17075                   ntsb               determined   1
## 17076                   ntsb                    found   1
## 17077                   ntsb            investigators   1
## 17078                   ntsb                  isssued   1
## 17079                   ntsb                  stopped   1
## 17080                   nuba                mountains   1
## 17081                nuclear                  program   1
## 17082                nuclear                      war   1
## 17083                nuclear                  weapons   1
## 17084                  nuevo                   berlin   1
## 17085               nuisance           alarms.cecelia   1
## 17086               numerous                 building   1
## 17087               numerous                    close   1
## 17088               numerous               government   1
## 17089               numerous                  pigeons   1
## 17090               numerous               procedural   1
## 17091               numerous                     taws   1
## 17092               numerous                 thatched   1
## 17093              nuremberg                  airport   1
## 17094                  nursa                    front   1
## 17095                  nurse                paramedic   1
## 17096                    nut                  screwed   1
## 17097                   nuts                     fire   1
## 17098                   nuys                  airport   1
## 17099                     nv                       15   1
## 17100                     ny            industrialist   1
## 17101                 o'hare                  airport   1
## 17102                oakland                  airport   1
## 17103                oakland                    radio   1
## 17104                oakland                  station   1
## 17105                     ob                     1450   1
## 17106                 obispo                  airport   1
## 17107                 obispo                 football   1
## 17108                 object                  causing   1
## 17109                objects                 entering   1
## 17110                objects             obstructions   1
## 17111               obscured                    jebel   1
## 17112               obscured                 montseny   1
## 17113               obscured                    mount   1
## 17114               obscured              mountainous   1
## 17115               obscured                       mt   1
## 17116               obscured                   rising   1
## 17117              obscuring                   clouds   1
## 17118            observation                   flight   1
## 17119            observation                  methods   1
## 17120                observe                 altitude   1
## 17121                observe                   safety   1
## 17122               observed                   coming   1
## 17123               observed                  falling   1
## 17124               observed                   flight   1
## 17125               observed                  sinking   1
## 17126               observed                    smoke   1
## 17127               observer                     tony   1
## 17128               obstacle               protection   1
## 17129              obstacles                     crew   1
## 17130              obstacles               overloaded   1
## 17131             obsticales                northeast   1
## 17132            obstruction                clearance   1
## 17133            obstruction                   lights   1
## 17134            obstruction                  stalled   1
## 17135           obstructions                      due   1
## 17136           obstructions                partially   1
## 17137           obstructions                    pilot   1
## 17138                 obtain                    level   1
## 17139                 obtain                 maintain   1
## 17140                 obtain                  maximum   1
## 17141                 obtain                     taxi   1
## 17142                 obtain               transplant   1
## 17143               obtained                   visual   1
## 17144              obtaining                 bearings   1
## 17145              obtaining                   visual   1
## 17146              occasions                      led   1
## 17147             occidental                petroleum   1
## 17148              occupants                     died   1
## 17149              occupants                  drowned   1
## 17150              occupants                 hydrogen   1
## 17151              occupants                     lost   1
## 17152               occupied                    sinai   1
## 17153                  occur                procuring   1
## 17154                  occur                  stalled   1
## 17155               occurred                        5   1
## 17156               occurred                   aboard   1
## 17157               occurred            approximately   1
## 17158               occurred                   caused   1
## 17159               occurred                  causing   1
## 17160               occurred                  crashed   1
## 17161               occurred               descending   1
## 17162               occurred                naturally   1
## 17163               occurred                  shortly   1
## 17164             occurrence                     blew   1
## 17165            occurrences                   errors   1
## 17166                  ocean                     11.3   1
## 17167                  ocean                       15   1
## 17168                  ocean                        2   1
## 17169                  ocean                       20   1
## 17170                  ocean                       21   1
## 17171                  ocean                      231   1
## 17172                  ocean                       28   1
## 17173                  ocean                      285   1
## 17174                  ocean                       30   1
## 17175                  ocean                     30.5   1
## 17176                  ocean                      340   1
## 17177                  ocean                        4   1
## 17178                  ocean                       60   1
## 17179                  ocean                       80   1
## 17180                  ocean                 aircraft   1
## 17181                  ocean                  airways   1
## 17182                  ocean               attempting   1
## 17183                  ocean                     city   1
## 17184                  ocean                 decision   1
## 17185                  ocean               detonation   1
## 17186                  ocean                      due   1
## 17187                  ocean                  failure   1
## 17188                  ocean                    front   1
## 17189                  ocean                incorrect   1
## 17190                  ocean                   island   1
## 17191                  ocean                     loss   1
## 17192                  ocean                   mayday   1
## 17193                  ocean                    pilot   1
## 17194                  ocean                     poor   1
## 17195                  ocean                  shortly   1
## 17196                  ocean                    south   1
## 17197                  ocean                  station   1
## 17198                  ocean                vibration   1
## 17199             ocean.nine               passengers   1
## 17200                 oceana                    naval   1
## 17201                october                       30   1
## 17202                 office                 building   1
## 17203                officer                      atc   1
## 17204                officer              disappeared   1
## 17205                officer                expressed   1
## 17206                officer                  holding   1
## 17207                officer            inadvertently   1
## 17208                officer                 initiate   1
## 17209                officer                     john   1
## 17210                officer               mistakenly   1
## 17211                officer              overrotated   1
## 17212                officer                  quickly   1
## 17213                officer                 received   1
## 17214                officer                     told   1
## 17215              officer's                  actions   1
## 17216              officer's                  attempt   1
## 17217              officer's                   belief   1
## 17218              officer's                  failure   1
## 17219              officer's                   flight   1
## 17220              officer's                  housing   1
## 17221              officer's               impairment   1
## 17222              officer's            inappropriate   1
## 17223              officer's                 marginal   1
## 17224               official                 business   1
## 17225               official                       pc   1
## 17226               official                   report   1
## 17227              officials             acknowledged   1
## 17228              officials                announced   1
## 17229              officials                  claimed   1
## 17230              officials                  crashed   1
## 17231              officials                 shifting   1
## 17232               offshore                 drilling   1
## 17233               offshore                  failure   1
## 17234               offshore                     fuel   1
## 17235               offshore                      oil   1
## 17236               offshore                   singer   1
## 17237               offshore                   struck   1
## 17238                   ohio                    river   1
## 17239                  ohrid                  airport   1
## 17240                    oil                   caused   1
## 17241                    oil                  company   1
## 17242                    oil            contamination   1
## 17243                    oil                drillilng   1
## 17244                    oil                    field   1
## 17245                    oil                   fields   1
## 17246                    oil                     fire   1
## 17247                    oil                    fires   1
## 17248                    oil                     heat   1
## 17249                    oil                     hose   1
## 17250                    oil                     leak   1
## 17251                    oil                    leaks   1
## 17252                    oil                     line   1
## 17253                    oil                    lines   1
## 17254                    oil              lubricating   1
## 17255                    oil               mantenance   1
## 17256                    oil                 overshot   1
## 17257                    oil                     palm   1
## 17258                    oil                     poor   1
## 17259                    oil               projection   1
## 17260                    oil                     pump   1
## 17261                    oil                  pumping   1
## 17262                    oil               radiatiors   1
## 17263                    oil                   system   1
## 17264                    oiz                incorrect   1
## 17265               oklahoma                    radio   1
## 17266                  olaya                  herrera   1
## 17267                 olcott                 mountain   1
## 17268                 oldham                   becaon   1
## 17269                    olo                      air   1
## 17270                olympic                 national   1
## 17271                  omaha                hydraulic   1
## 17272               omission                  crashed   1
## 17273               omission                resulting   1
## 17274            omniflightã                        â   1
## 17275              omsukchan                      190   1
## 17276                onboard               electronic   1
## 17277                onboard                 exploded   1
## 17278                onboard              performance   1
## 17279                 oneida                   county   1
## 17280                ontario                  airport   1
## 17281                ontario                  crashed   1
## 17282               openings                  crashed   1
## 17283                  opera                conductor   1
## 17284           operafjellet                 mountain   1
## 17285                operate            automatically   1
## 17286                operate                      vfr   1
## 17287               operated                 aircraft   1
## 17288               operated                   london   1
## 17289              operating                 airspeed   1
## 17290              operating               conditions   1
## 17291              operating            configuration   1
## 17292              operating                  crashed   1
## 17293              operating                      cvr   1
## 17294              operating                 language   1
## 17295              operating                   limits   1
## 17296              operating                   manual   1
## 17297              operating                procedure   1
## 17298              operating                 reverser   1
## 17299              operating                      rod   1
## 17300              operating                    speed   1
## 17301              operation                aphrodite   1
## 17302              operation                  crashed   1
## 17303              operation                   desert   1
## 17304              operation                  license   1
## 17305              operation                   manual   1
## 17306              operation                misjudged   1
## 17307              operation                  misread   1
## 17308              operation         misunderstanding   1
## 17309              operation                  misused   1
## 17310              operation                premature   1
## 17311            operational                  ceiling   1
## 17312            operational                 decision   1
## 17313            operational                 dispatch   1
## 17314            operational            documentation   1
## 17315            operational                 envelope   1
## 17316            operational                   errors   1
## 17317            operational                oversight   1
## 17318            operational                 position   1
## 17319            operational                standards   1
## 17320            operational            uncertainties   1
## 17321             operations                  captain   1
## 17322             operations                 improper   1
## 17323             operations                 required   1
## 17324               operator                    1,000   1
## 17325               operator              certificate   1
## 17326               operator                    error   1
## 17327               operator                   failed   1
## 17328               operator               management   1
## 17329               operator                  refused   1
## 17330               operator                 survived   1
## 17331               operator              transmitted   1
## 17332             operator's                     lack   1
## 17333             operator's              maintenance   1
## 17334             operator's               procedures   1
## 17335              operators                   failed   1
## 17336                optical               phenomenon   1
## 17337               optimize                avoidance   1
## 17338                optimum                   single   1
## 17339                 oradea                  airport   1
## 17340                   oran                  algeria   1
## 17341                 orange               descending   1
## 17342                 orange                    grove   1
## 17343                    orb                    river   1
## 17344                orchard                   engine   1
## 17345                    ord                mountains   1
## 17346                  ordaz                  airport   1
## 17347                    ore                     lost   1
## 17348                 oregon                    coast   1
## 17349                 orfeon            universitario   1
## 17350                  organ               transplant   1
## 17351           organization                  claimed   1
## 17352           organization                      hit   1
## 17353           organization            stabilization   1
## 17354           organization                   stated   1
## 17355            orientation                   caused   1
## 17356            orientation               procedures   1
## 17357                 origin                  erupted   1
## 17358                 origin                   forced   1
## 17359                 origin                 possibly   1
## 17360               original              destination   1
## 17361               original                   flight   1
## 17362               original                    route   1
## 17363             originally                 departed   1
## 17364             originally                    filed   1
## 17365             originally                     lost   1
## 17366                orlando                  florida   1
## 17367                orleans                 sabotage   1
## 17368                orleans                  shortly   1
## 17369                   orly               electrical   1
## 17370                    orm                   viking   1
## 17371                    oro                  airport   1
## 17372             orographic                 currents   1
## 17373                orphans                 pressure   1
## 17374               orthodox               christians   1
## 17375               orumiyeh                  airport   1
## 17376             osbourne's                     tour   1
## 17377            oscillating                    pitch   1
## 17378           oscillations                   caused   1
## 17379           oscillations                coincided   1
## 17380           oscillations                initiated   1
## 17381                  oskar                stronorov   1
## 17382                   oslo                    fjord   1
## 17383                   oslo                    pilot   1
## 17384               ossetian                 militant   1
## 17385                 ostend                    stene   1
## 17386                 ostend                  weather   1
## 17387                   otay                        8   1
## 17388                   otay                     peak   1
## 17389                other's                 aircraft   1
## 17390              other.the                      klm   1
## 17391                    oti                    radio   1
## 17392                   otis                  redding   1
## 17393                ottavio                  missoni   1
## 17394                  otter                   struck   1
## 17395                otter's                   flight   1
## 17396               outboard                 ailerons   1
## 17397               outboard                     bolt   1
## 17398               outboard                   engine   1
## 17399               outboard                  engines   1
## 17400               outboard                     flap   1
## 17401               outboard                    hinge   1
## 17402               outboard                  leading   1
## 17403               outboard                  portion   1
## 17404               outboard                     wing   1
## 17405               outdated                   flight   1
## 17406               outdated               improperly   1
## 17407              outeniqua                mountains   1
## 17408              outeniqua                     pass   1
## 17409                  outer                    cover   1
## 17410                  outer                    panel   1
## 17411                  outer                     port   1
## 17412                  outer                propeller   1
## 17413                  outer                     skin   1
## 17414             outfielder                  charlie   1
## 17415                   outs                 suddenly   1
## 17416                outward                     rush   1
## 17417                ovejero                 mountain   1
## 17418               overcast                 contrary   1
## 17419               overcast                  crashed   1
## 17420               overcast                   flying   1
## 17421               overcast              mountainous   1
## 17422               overcast                     shot   1
## 17423               overcast                 thinking   1
## 17424               overcast                 trailing   1
## 17425               overcast                  weather   1
## 17426               overflow                    boxes   1
## 17427               overhang                    anvil   1
## 17428             overhauled                   clutch   1
## 17429            overhauling              maintenance   1
## 17430              overhauls               inadequate   1
## 17431               overhead                   locker   1
## 17432               overhead                  luggage   1
## 17433             overheated                      apu   1
## 17434             overheated                  bearing   1
## 17435             overheated                     fuel   1
## 17436             overheated                resulting   1
## 17437             overheated                     tire   1
## 17438               overload                    badly   1
## 17439               overload                      due   1
## 17440             overloaded                    cargo   1
## 17441             overloaded                   center   1
## 17442             overloaded                condition   1
## 17443             overloaded               conditions   1
## 17444             overloaded              disappeared   1
## 17445             overloaded                   flight   1
## 17446             overloaded                  hurried   1
## 17447             overloaded                 improper   1
## 17448             overloaded                     lack   1
## 17449             overloaded                   midair   1
## 17450             overloaded                    plane   1
## 17451             overloaded                 resulted   1
## 17452             overloaded                     snow   1
## 17453            overloading                 sabotage   1
## 17454              overnight               operations   1
## 17455            overreacted                  causing   1
## 17456               overseas                  airways   1
## 17457               overshot                    belem   1
## 17458               oversize                     bush   1
## 17459              overspeed                reduction   1
## 17460             overstress                  failure   1
## 17461           overstressed                amidships   1
## 17462             overturned             contributing   1
## 17463             overweight                 aircraft   1
## 17464             overweight                   planes   1
## 17465             overweight                resulting   1
## 17466                   ovht                    light   1
## 17467                   owen                  stanley   1
## 17468                  owner                      air   1
## 17469                  owner                     rick   1
## 17470                 oxygen                  bottles   1
## 17471                 oxygen                 cylinder   1
## 17472                 oxygen              deprivation   1
## 17473                 oxygen               generators   1
## 17474                 oxygen               inadequate   1
## 17475                 oxygen                   system   1
## 17476                 oxygen                     tank   1
## 17477                  oyama                       15   1
## 17478                   ozzy                 osbourne   1
## 17479                     pa                       28   1
## 17480                     pa                       31   1
## 17481                  pablo                  airport   1
## 17482                  pablo                  escobar   1
## 17483                package                   mailed   1
## 17484                packing                    house   1
## 17485                 padang                  unknown   1
## 17486                  paddy                      1.5   1
## 17487                  padre                    amaya   1
## 17488                   pãƒâ                      rez   1
## 17489             pagalungan                       ne   1
## 17490                   page                       75   1
## 17491                   pago            international   1
## 17492                   paid                       40   1
## 17493                   paid             insufficient   1
## 17494              pakhtakor                 tashkent   1
## 17495               pakistan                       al   1
## 17496               pakistan                   arnold   1
## 17497              pakistani                     anti   1
## 17498              pakistani                   border   1
## 17499              pakistani                      jet   1
## 17500              pakistani                 military   1
## 17501                 palana                  airport   1
## 17502                  palay                      air   1
## 17503              palembang                seventeen   1
## 17504                palermo                      atc   1
## 17505                palermo                    punta   1
## 17506            palestinian               extremists   1
## 17507            palestinian             organization   1
## 17508            palestinian               terrorists   1
## 17509                   pali                      kea   1
## 17510                   palm                    grove   1
## 17511                   palm                      oil   1
## 17512                   palm               plantation   1
## 17513                   palm                     tree   1
## 17514                   palm                    trees   1
## 17515                  palma                       de   1
## 17516                 palmas                  airport   1
## 17517               palmdale                  airport   1
## 17518                palunge                     hill   1
## 17519                  pampa                  hermosa   1
## 17520                  pampa                mountains   1
## 17521                    pan                       25   1
## 17522                    pan                     am's   1
## 17523                    pan                 american   1
## 17524                    pan               american's   1
## 17525                    pan                       de   1
## 17526                 panama                     city   1
## 17527                  panay                   island   1
## 17528               pancaked                      400   1
## 17529                pandols                 mountain   1
## 17530                  panel                      led   1
## 17531                pangkal                   pinang   1
## 17532              panicking               passengers   1
## 17533                 panjal                    hills   1
## 17534                panther                     peak   1
## 17535             papandayan                  crashed   1
## 17536                papua's                  eastern   1
## 17537                    par               controller   1
## 17538              parachute                     drop   1
## 17539              parachute                 exercise   1
## 17540              parachute                  jumpers   1
## 17541              parachute                  jumping   1
## 17542              parachute                  tangled   1
## 17543              parachute                 trainees   1
## 17544              parachute                 training   1
## 17545             parachutes                  escaped   1
## 17546            parachuting                 training   1
## 17547           parachutists                     lost   1
## 17548               parallel                  taxiway   1
## 17549             parameters                resulting   1
## 17550           paramilitary                   forces   1
## 17551                 paramo                 frontino   1
## 17552                 paramo                   mucuti   1
## 17553              paratroop                     drop   1
## 17554           paratroopers                  climbed   1
## 17555           paratroopers                 collided   1
## 17556                  paris                  crashed   1
## 17557                  paris                  entered   1
## 17558                  paris                 improper   1
## 17559                  paris                    pilot   1
## 17560                   park                        1   1
## 17561                   park                       10   1
## 17562                   park                    crane   1
## 17563                   park                   faulty   1
## 17564                   park                      ten   1
## 17565                   park                  volcano   1
## 17566                 parked            approximately   1
## 17567                 parked                     cars   1
## 17568                 parked               helicopter   1
## 17569                 parker                  shortly   1
## 17570                parking                    apron   1
## 17571                  parks                  airport   1
## 17572               parley's                   canyon   1
## 17573                partial               detachment   1
## 17574                partial                premature   1
## 17575              partially                collapsed   1
## 17576              partially                 extended   1
## 17577              partially                   failed   1
## 17578              partially                  lighted   1
## 17579              partially                 obscured   1
## 17580              partially                recovered   1
## 17581              partially                   sucked   1
## 17582              partially                     torn   1
## 17583              partially            unpressurised   1
## 17584                 partly                  stalled   1
## 17585                  party                    pilot   1
## 17586                  party                  reached   1
## 17587                  party                     tour   1
## 17588                    pas                       de   1
## 17589              pasengers                 survived   1
## 17590                   paso                  macunaa   1
## 17591                   pass                     10km   1
## 17592                   pass                       12   1
## 17593                   pass                       60   1
## 17594                   pass                     army   1
## 17595                   pass                       en   1
## 17596                   pass                  stalled   1
## 17597                 passed                 florence   1
## 17598                 passed                       mt   1
## 17599                 passed                 multiple   1
## 17600                 passed                 overhead   1
## 17601                 passed                       v1   1
## 17602              passenger                   aboard   1
## 17603              passenger                 activity   1
## 17604              passenger                  baggage   1
## 17605              passenger                   banked   1
## 17606              passenger                 briefing   1
## 17607              passenger                  brought   1
## 17608              passenger                committed   1
## 17609              passenger                  control   1
## 17610              passenger                  crashed   1
## 17611              passenger               discarding   1
## 17612              passenger               disengaged   1
## 17613              passenger                       dr   1
## 17614              passenger                    float   1
## 17615              passenger                    floor   1
## 17616              passenger           inadvertentlly   1
## 17617              passenger             interference   1
## 17618              passenger                     jane   1
## 17619              passenger                   killed   1
## 17620              passenger                      lit   1
## 17621              passenger                     load   1
## 17622              passenger                     mail   1
## 17623              passenger                 possibly   1
## 17624              passenger                 received   1
## 17625              passenger                  refused   1
## 17626              passenger                     saul   1
## 17627              passenger                     shut   1
## 17628              passenger                  sitting   1
## 17629              passenger                transport   1
## 17630            passenger's                cigarette   1
## 17631            passenger's                 families   1
## 17632            passenger's                   infant   1
## 17633            passenger's                     seat   1
## 17634             passengers                  crashed   1
## 17635             passengers                 departed   1
## 17636             passengers             deplaned.one   1
## 17637             passengers                     died   1
## 17638             passengers                      due   1
## 17639             passengers                 exploded   1
## 17640             passengers                     fell   1
## 17641             passengers                    flaps   1
## 17642             passengers                  grabbed   1
## 17643             passengers                     hung   1
## 17644             passengers                including   1
## 17645             passengers                   jumped   1
## 17646             passengers                   killed   1
## 17647             passengers                   polish   1
## 17648             passengers                 received   1
## 17649             passengers                  rescued   1
## 17650             passengers                   rushed   1
## 17651             passengers             subsequently   1
## 17652             passengers                sustained   1
## 17653                passing                     cape   1
## 17654                passion                    fruit   1
## 17655               passport                     lost   1
## 17656                   past                       90   1
## 17657                   past                incidents   1
## 17658                 pastra                 mountain   1
## 17659                 pastra                mountains   1
## 17660               patascoy                 mountain   1
## 17661                 patchy                   clouds   1
## 17662                   path             contributing   1
## 17663                   path                  control   1
## 17664                   path                     crew   1
## 17665                   path                 directly   1
## 17666                   path                     loss   1
## 17667                   path                 relative   1
## 17668                   path                resulting   1
## 17669                   path                   signal   1
## 17670                   path                  strayed   1
## 17671                   path                   thirty   1
## 17672                patient                  crashed   1
## 17673              patriarch                   petros   1
## 17674                patrick                 woodward   1
## 17675                 patrol                     boat   1
## 17676                  patsy                    cline   1
## 17677                pattern                      due   1
## 17678                pattern              encountered   1
## 17679                pattern               inadequate   1
## 17680                pattern                 obstacle   1
## 17681                pattern                   severe   1
## 17682                pattern                   soviet   1
## 17683                pattern                  waiting   1
## 17684                   paul                     dino   1
## 17685                   paul                 jeffreys   1
## 17686                 paul's                cathedral   1
## 17687                  paulo                  airport   1
## 17688                  paulo                    error   1
## 17689                  paulo                guarulhos   1
## 17690                  paved                  highway   1
## 17691                  paved                   runway   1
## 17692                payakha                 mountain   1
## 17693                 payham                  airport   1
## 17694                 paying                    close   1
## 17695                  payne                  stewart   1
## 17696                    paz                       el   1
## 17697                    paz                 wreckage   1
## 17698                    pcu                    valve   1
## 17699           peacekeeping                    force   1
## 17700           peacekeeping                   forces   1
## 17701           peacekeeping               operations   1
## 17702           peacekeeping                 soldiers   1
## 17703              peachtree                  airport   1
## 17704                   peak                       15   1
## 17705                   peak                       23   1
## 17706                   peak                       35   1
## 17707                   peak                        4   1
## 17708                   peak                       91   1
## 17709                   peak             acceleration   1
## 17710                   peak                 altitude   1
## 17711                   peak                exploding   1
## 17712                   peak                   flight   1
## 17713                   peak                   flying   1
## 17714                   peak                       la   1
## 17715                   peak                  located   1
## 17716                   peak                 mountain   1
## 17717                   peak                  patches   1
## 17718                   peak                    table   1
## 17719                   peat                      bog   1
## 17720                  pecan                     tree   1
## 17721                  pedal                  causing   1
## 17722                  pedal                   inputs   1
## 17723             pedestrian                      800   1
## 17724                pedrera                  airport   1
## 17725                  pedro                  weather   1
## 17726                peering                  forward   1
## 17727                  peete                       27   1
## 17728                   pena                   blanca   1
## 17729                  penas                  blancas   1
## 17730                  penay                   island   1
## 17731             penetrated                      2nm   1
## 17732             penetrated                   soviet   1
## 17733            penetrating                   severe   1
## 17734                 penghu                pescadore   1
## 17735              peninsula                  airport   1
## 17736              peninsula                patriarch   1
## 17737              peninsula                     race   1
## 17738           pennsylvania              countryside   1
## 17739           pennsylvania                 salesman   1
## 17740           pennsylvania                  senator   1
## 17741              penshurst                 airfield   1
## 17742              penticton                  drifted   1
## 17743                 people                  crashed   1
## 17744                 people                  failure   1
## 17745                 people                   killed   1
## 17746                 people                     loss   1
## 17747                 people                  waiting   1
## 17748                peoples               revolution   1
## 17749                   pera                       35   1
## 17750              perceived                    fault   1
## 17751                   pere                       de   1
## 17752                perform                  correct   1
## 17753                perform                   engine   1
## 17754            performance                     call   1
## 17755            performance             capabilities   1
## 17756            performance                 computer   1
## 17757            performance                     data   1
## 17758            performance                published   1
## 17759              performed                 decision   1
## 17760              performed                forbidden   1
## 17761              performed                  untried   1
## 17762             performing                        3   1
## 17763             performing                aerobatic   1
## 17764             performing                   flight   1
## 17765             performing                      low   1
## 17766             performing                    touch   1
## 17767                 perija                mountains   1
## 17768               periodic               inspection   1
## 17769             peripheral                   vision   1
## 17770            permissable                   weight   1
## 17771            permissible                  crashed   1
## 17772            permissible                    limit   1
## 17773            permissible                   limits   1
## 17774                 permit                 complete   1
## 17775                 permit               insturment   1
## 17776              permitted               electrical   1
## 17777              permitted               stabilized   1
## 17778              permitted                      vfr   1
## 17779              perpignan                   france   1
## 17780              perpignan             navigational   1
## 17781             persistent                   action   1
## 17782             persistent                  mistake   1
## 17783                 person                  crashed   1
## 17784                 person                 survived   1
## 17785               personal                  ability   1
## 17786               personal                  worries   1
## 17787              personell                 replaced   1
## 17788              personnel                    board   1
## 17789              personnel                   failed   1
## 17790              personnel                  suicide   1
## 17791              personnel                  weather   1
## 17792                persons                       28   1
## 17793                persons                   aboard   1
## 17794                persons                 survived   1
## 17795               persuade                    cline   1
## 17796                  perth                australia   1
## 17797                   peru                       40   1
## 17798                   peru                    cargo   1
## 17799                   peru                   pieces   1
## 17800               peruvian                      air   1
## 17801               peruvian            ornithologist   1
## 17802              pescadore                  islands   1
## 17803               peshawar                 pakistan   1
## 17804                  peter                  nielsen   1
## 17805                peteroa                  located   1
## 17806              petrified                     lava   1
## 17807              petroleum              corporation   1
## 17808              petroleum                 facility   1
## 17809                 petros                      vii   1
## 17810                    pha                      bon   1
## 17811               phaleron                      bay   1
## 17812                phantom                 fighters   1
## 17813                phantom                      jet   1
## 17814                  phase                 airspeed   1
## 17815                  phase                      due   1
## 17816              phenomena              encountered   1
## 17817              phenomena                   struck   1
## 17818             phenomenon                   caused   1
## 17819             philippine                  clipper   1
## 17820             philippine                 yachting   1
## 17821            philippines                     died   1
## 17822                  phnom                   damrey   1
## 17823                  phnom                     penh   1
## 17824            phongsavanh                  airport   1
## 17825             phosphorus                    bombs   1
## 17826             phosphorus                   mortar   1
## 17827           photographic                    chase   1
## 17828        photojournalist                     bill   1
## 17829                   phou                      pha   1
## 17830               physical                 capacity   1
## 17831               physical                 evidence   1
## 17832               physical               impairment   1
## 17833               physical               imparement   1
## 17834               physical           incapacitation   1
## 17835               physical                 reaction   1
## 17836          physiological                  factors   1
## 17837                pianist                  crashed   1
## 17838                pianist                  william   1
## 17839                    pic                       de   1
## 17840                    pic                     lost   1
## 17841                picasso                  airport   1
## 17842                 pickle                     lake   1
## 17843                   pico                     alto   1
## 17844                   pico                   blanco   1
## 17845                 pieces                    north   1
## 17846                 pieces                   struck   1
## 17847                 pieces            unintentional   1
## 17848               pieces.ã                        â   1
## 17849             pieces.the                     crew   1
## 17850                   pier                  crashed   1
## 17851                 piesky                     lake   1
## 17852              pigafetta                   struck   1
## 17853                   pike                 mountain   1
## 17854                pilgrim                passenger   1
## 17855                  pilot                       12   1
## 17856                  pilot                       78   1
## 17857                  pilot                abandoned   1
## 17858                  pilot                   aboard   1
## 17859                  pilot                   acting   1
## 17860                  pilot                  actress   1
## 17861                  pilot                    added   1
## 17862                  pilot                  advised   1
## 17863                  pilot                       al   1
## 17864                  pilot                   andrew   1
## 17865                  pilot                announced   1
## 17866                  pilot                 appeared   1
## 17867                  pilot                 attempts   1
## 17868                  pilot                   bailed   1
## 17869                  pilot                   banked   1
## 17870                  pilot                    blood   1
## 17871                  pilot                    broke   1
## 17872                  pilot                  captain   1
## 17873                  pilot                   caught   1
## 17874                  pilot                 clarence   1
## 17875                  pilot                commanded   1
## 17876                  pilot                committed   1
## 17877                  pilot                confirmed   1
## 17878                  pilot                confusing   1
## 17879                  pilot                  copilot   1
## 17880                  pilot                correctly   1
## 17881                  pilot                 decision   1
## 17882                  pilot                declaired   1
## 17883                  pilot                 declined   1
## 17884                  pilot                  delayed   1
## 17885                  pilot               descending   1
## 17886                  pilot                 diameter   1
## 17887                  pilot                 directed   1
## 17888                  pilot             discontinued   1
## 17889                  pilot               discovered   1
## 17890                  pilot                displayed   1
## 17891                  pilot              disregarded   1
## 17892                  pilot               distracted   1
## 17893                  pilot                  ditched   1
## 17894                  pilot                  drowned   1
## 17895                  pilot              effectively   1
## 17896                  pilot                encounter   1
## 17897                  pilot                  entered   1
## 17898                  pilot              erroneously   1
## 17899                  pilot                error.the   1
## 17900                  pilot                executing   1
## 17901                  pilot               experience   1
## 17902                  pilot                  exposed   1
## 17903                  pilot                  failing   1
## 17904                  pilot                  failure   1
## 17905                  pilot                    filed   1
## 17906                  pilot                   flight   1
## 17907                  pilot                      fly   1
## 17908                  pilot                   forgot   1
## 17909                  pilot                    found   1
## 17910                  pilot                    frank   1
## 17911                  pilot                     gene   1
## 17912                  pilot                 gonzales   1
## 17913                  pilot                    idled   1
## 17914                  pilot               impairment   1
## 17915                  pilot               improperly   1
## 17916                  pilot               inactivity   1
## 17917                  pilot             inadequately   1
## 17918                  pilot            inadvertently   1
## 17919                  pilot                  induced   1
## 17920                  pilot                 informed   1
## 17921                  pilot                 initally   1
## 17922                  pilot               instructor   1
## 17923                  pilot            intentionally   1
## 17924                  pilot                   issued   1
## 17925                  pilot                  jessica   1
## 17926                  pilot                     knob   1
## 17927                  pilot                  leading   1
## 17928                  pilot                   leaped   1
## 17929                  pilot                     left   1
## 17930                  pilot               lieutenant   1
## 17931                  pilot                     loss   1
## 17932                  pilot                   lothar   1
## 17933                  pilot               maintained   1
## 17934                  pilot                  managed   1
## 17935                  pilot                 maneuver   1
## 17936                  pilot                    medic   1
## 17937                  pilot               mishandled   1
## 17938                  pilot                   missed   1
## 17939                  pilot                  mistook   1
## 17940                  pilot                 mountain   1
## 17941                  pilot                navigator   1
## 17942                  pilot                  noticed   1
## 17943                  pilot                    nurse   1
## 17944                  pilot                 operated   1
## 17945                  pilot           overconfidence   1
## 17946                  pilot              performance   1
## 17947                  pilot                persisted   1
## 17948                  pilot                 prepared   1
## 17949                  pilot            progressively   1
## 17950                  pilot                   raised   1
## 17951                  pilot                    randy   1
## 17952                  pilot                 received   1
## 17953                  pilot                 released   1
## 17954                  pilot                   relied   1
## 17955                  pilot                 response   1
## 17956                  pilot                resulting   1
## 17957                  pilot                 returned   1
## 17958                  pilot                 reversed   1
## 17959                  pilot                   robert   1
## 17960                  pilot                    roger   1
## 17961                  pilot                  rotated   1
## 17962                  pilot                  russian   1
## 17963                  pilot                  sensory   1
## 17964                  pilot                  sixteen   1
## 17965                  pilot                     slid   1
## 17966                  pilot                   stated   1
## 17967                  pilot                   static   1
## 17968                  pilot                   steers   1
## 17969                  pilot                     stop   1
## 17970                  pilot                   struck   1
## 17971                  pilot            subordinating   1
## 17972                  pilot                  swerved   1
## 17973                  pilot                   taking   1
## 17974                  pilot               techniques   1
## 17975                  pilot                  telling   1
## 17976                  pilot                    thick   1
## 17977                  pilot                     time   1
## 17978                  pilot                  touched   1
## 17979                  pilot                   twenty   1
## 17980                  pilot                   unable   1
## 17981                  pilot            understanding   1
## 17982                  pilot                   valves   1
## 17983                  pilot                 violated   1
## 17984                  pilot              voluntarily   1
## 17985                  pilot                    water   1
## 17986                  pilot                  wearing   1
## 17987                  pilot                willfully   1
## 17988                  pilot                  william   1
## 17989                  pilot                   wished   1
## 17990                  pilot                    wrong   1
## 17991                pilot's                       11   1
## 17992                pilot's                 approach   1
## 17993                pilot's                attention   1
## 17994                pilot's                  control   1
## 17995                pilot's                disabling   1
## 17996                pilot's                    error   1
## 17997                pilot's                excessive   1
## 17998                pilot's              inattention   1
## 17999                pilot's             inexperience   1
## 18000                pilot's                 inflight   1
## 18001                pilot's                     left   1
## 18002                pilot's                  license   1
## 18003                pilot's                     loss   1
## 18004                pilot's               microphone   1
## 18005                pilot's        misinterpretation   1
## 18006                pilot's                misjudged   1
## 18007                pilot's              misjudgment   1
## 18008                pilot's            mismanagement   1
## 18009                pilot's                   misuse   1
## 18010                pilot's                premature   1
## 18011                pilot's                 response   1
## 18012                pilot's              temporarily   1
## 18013                pilot's                    union   1
## 18014                pilot's             unstabilized   1
## 18015                pilot's                   vacuum   1
## 18016                pilot's                   visual   1
## 18017                pilot's                  warning   1
## 18018               piloting                  crashed   1
## 18019               piloting               procedures   1
## 18020                 pilots                        3   1
## 18021                 pilots                  ability   1
## 18022                 pilots                   aboard   1
## 18023                 pilots                    acted   1
## 18024                 pilots                  allowed   1
## 18025                 pilots                 charging   1
## 18026                 pilots                commanded   1
## 18027                 pilots             contributing   1
## 18028                 pilots                    error   1
## 18029                 pilots                evidently   1
## 18030                 pilots                 exceeded   1
## 18031                 pilots              experienced   1
## 18032                 pilots                  fatigue   1
## 18033                 pilots                   george   1
## 18034                 pilots                     held   1
## 18035                 pilots                ignorance   1
## 18036                 pilots               inadequate   1
## 18037                 pilots                 insisted   1
## 18038                 pilots              instruments   1
## 18039                 pilots                  license   1
## 18040                 pilots                   losing   1
## 18041                 pilots                     lost   1
## 18042                 pilots                 navigate   1
## 18043                 pilots               parachuted   1
## 18044                 pilots              performance   1
## 18045                 pilots                     poor   1
## 18046                 pilots                 realized   1
## 18047                 pilots                realizing   1
## 18048                 pilots                 reported   1
## 18049                 pilots              spontaneous   1
## 18050                 pilots                struggled   1
## 18051                 pilots                 survived   1
## 18052                 pilots                   tested   1
## 18053                 pilots                 trailing   1
## 18054                 pilots             unfamilarity   1
## 18055                 pilots           unprofessional   1
## 18056                 pilots                   yelled   1
## 18057            pilots.were                   flying   1
## 18058                pilotsã                        â   1
## 18059                    pin                  bearing   1
## 18060                    pin                   manual   1
## 18061                    pin                    prior   1
## 18062                   pine                 deviated   1
## 18063                   pine                     tree   1
## 18064                   pine                    trees   1
## 18065                   pine                    woods   1
## 18066                pinetos                     peak   1
## 18067                 pinion                    drive   1
## 18068                   pins                    prior   1
## 18069                pintado                  located   1
## 18070                  piper                 collided   1
## 18071                  piper                     fell   1
## 18072                  piper               inadequate   1
## 18073                  piper            inadvertently   1
## 18074                  piper                   killed   1
## 18075                  piper                 saratoga   1
## 18076                  piper                   seneca   1
## 18077                  piper                     shot   1
## 18078                  piper                   struck   1
## 18079                    pir                   panjal   1
## 18080                 pirate                    radio   1
## 18081                   pisa                  shortly   1
## 18082                 piston                      lug   1
## 18083                 piston                nitriding   1
## 18084                 piston                    seals   1
## 18085                  pitch                    angle   1
## 18086                  pitch                  channel   1
## 18087                  pitch                    close   1
## 18088                  pitch               coarsening   1
## 18089                  pitch                  crashed   1
## 18090                  pitch                decreased   1
## 18091                  pitch                     feel   1
## 18092                  pitch                  handles   1
## 18093                  pitch                   inputs   1
## 18094                  pitch                     loss   1
## 18095                  pitch                     nose   1
## 18096                  pitch                  pointer   1
## 18097                  pitch                  setting   1
## 18098                pitched                   upward   1
## 18099                pitched                   wildly   1
## 18100                pitcher                   nestor   1
## 18101               pitching                   motion   1
## 18102               pitching                  steeply   1
## 18103                  pitot                     anti   1
## 18104                  pitot                    heads   1
## 18105                  pitot                   system   1
## 18106                  pitre                      air   1
## 18107                pitre's                  brother   1
## 18108                pitting             subsequently   1
## 18109             pittsburgh            international   1
## 18110                  piura                  airport   1
## 18111                    piz                   segnas   1
## 18112                  pizzo                  cengalo   1
## 18113                     pl                      ane   1
## 18114              placentia                      bay   1
## 18115                  plain                     view   1
## 18116                   plan                  crashed   1
## 18117                   plan                       de   1
## 18118                   plan                 overshot   1
## 18119                   plan                 resulted   1
## 18120                  plane                        3   1
## 18121                  plane                        8   1
## 18122                  plane                abandoned   1
## 18123                  plane                  aborted   1
## 18124                  plane                 abruptly   1
## 18125                  plane              accelerated   1
## 18126                  plane                 acquired   1
## 18127                  plane                activated   1
## 18128                  plane                 aircraft   1
## 18129                  plane                  anymore   1
## 18130                  plane                 ascended   1
## 18131                  plane                   barely   1
## 18132                  plane                 belonged   1
## 18133                  plane                belonging   1
## 18134                  plane                    close   1
## 18135                  plane                   coming   1
## 18136                  plane                commander   1
## 18137                  plane               completely   1
## 18138                  plane                contacted   1
## 18139                  plane               contracted   1
## 18140                  plane                   crashd   1
## 18141                  plane             crashed.this   1
## 18142                  plane                     crew   1
## 18143                  plane                  crossed   1
## 18144                  plane                    death   1
## 18145                  plane                 designed   1
## 18146                  plane                     died   1
## 18147                  plane                 disaster   1
## 18148                  plane           discintigrated   1
## 18149                  plane             disconnected   1
## 18150                  plane                disobeyed   1
## 18151                  plane                      due   1
## 18152                  plane                 executed   1
## 18153                  plane                  explode   1
## 18154                  plane                explosion   1
## 18155                  plane                     feet   1
## 18156                  plane                  finally   1
## 18157                  plane                   flared   1
## 18158                  plane                   gashed   1
## 18159                  plane                  gliding   1
## 18160                  plane                   grazed   1
## 18161                  plane                     guay   1
## 18162                  plane                     held   1
## 18163                  plane                  hitting   1
## 18164                  plane                including   1
## 18165                  plane            inexperienced   1
## 18166                  plane                   lacked   1
## 18167                  plane                  leveled   1
## 18168                  plane                   loaded   1
## 18169                  plane                     lose   1
## 18170                  plane                     loss   1
## 18171                  plane                  lowered   1
## 18172                  plane                   midair   1
## 18173                  plane                   missed   1
## 18174                  plane                    named   1
## 18175                  plane                    nosed   1
## 18176                  plane                nosedived   1
## 18177                  plane                 obtained   1
## 18178                  plane                  overfew   1
## 18179                  plane               overloaded   1
## 18180                  plane               overturned   1
## 18181                  plane                   parked   1
## 18182                  plane              penetrating   1
## 18183                  plane                permitted   1
## 18184                  plane                 pitching   1
## 18185                  plane                porpoised   1
## 18186                  plane                 properly   1
## 18187                  plane                  rapidly   1
## 18188                  plane                 received   1
## 18189                  plane                   safely   1
## 18190                  plane                scheduled   1
## 18191                  plane                  sending   1
## 18192                  plane                  settled   1
## 18193                  plane                  shortly   1
## 18194                  plane                  smashed   1
## 18195                  plane                    sruck   1
## 18196                  plane                  strayed   1
## 18197                  plane                struggled   1
## 18198                  plane                    stuck   1
## 18199                  plane                  swerved   1
## 18200                  plane             transporting   1
## 18201                  plane               ultimately   1
## 18202                  plane              unbalancing   1
## 18203                  plane                 unlocked   1
## 18204                  plane                 unstable   1
## 18205                  plane                      vfr   1
## 18206                  plane                  weather   1
## 18207                plane's                 airspeed   1
## 18208                plane's                 altitude   1
## 18209                plane's                  antenna   1
## 18210                plane's                autopilot   1
## 18211                plane's                  battery   1
## 18212                plane's                     body   1
## 18213                plane's                    climb   1
## 18214                plane's                 computer   1
## 18215                plane's                     crew   1
## 18216                plane's                 distance   1
## 18217                plane's                emergency   1
## 18218                plane's                   engine   1
## 18219                plane's                  engines   1
## 18220                plane's                     fuel   1
## 18221                plane's                    gross   1
## 18222                plane's                   impact   1
## 18223                plane's                 mechanic   1
## 18224                plane's               navigation   1
## 18225                plane's                navigator   1
## 18226                plane's                    pilot   1
## 18227                plane's                   pilots   1
## 18228                plane's                structure   1
## 18229                plane's                  unusual   1
## 18230                plane's                    voice   1
## 18231                plane's                   wheels   1
## 18232                 planel                  assumed   1
## 18233                 planes                 altitude   1
## 18234                 planes              apparitions   1
## 18235                 planes               approached   1
## 18236                 planes                   caught   1
## 18237                 planes                   chased   1
## 18238                 planes                destroyed   1
## 18239                 planes            disintegrated   1
## 18240                 planes                excessive   1
## 18241                 planes                     flew   1
## 18242                 planes                   landed   1
## 18243                 planes               permission   1
## 18244                 planes                 position   1
## 18245                 planes                   pulled   1
## 18246                 planes                     slid   1
## 18247                planned              destination   1
## 18248                planned                   graham   1
## 18249                planned                paratroop   1
## 18250                planned                      vfr   1
## 18251               planning                 approach   1
## 18252               planning             contributing   1
## 18253               planning                     crew   1
## 18254               planning                emergency   1
## 18255               planning                erroneous   1
## 18256               planning                   errors   1
## 18257               planning                 improper   1
## 18258               planning               inadequate   1
## 18259               planning                     lack   1
## 18260               planning            mismanagement   1
## 18261               planning                    pilot   1
## 18262               planning               procedures   1
## 18263               planning                   struck   1
## 18264               planning           unsatisfactory   1
## 18265                  plant              appromately   1
## 18266                  plant                     fire   1
## 18267                  plant                 improper   1
## 18268                  plant              malfunction   1
## 18269                 plasma                  coating   1
## 18270                plastic                explosive   1
## 18271                  plata                    broke   1
## 18272                  plata               controlled   1
## 18273                  plata                  shortly   1
## 18274               platform                  crashed   1
## 18275               platform                 gullflex   1
## 18276               platinum                  company   1
## 18277               platinum                 shipment   1
## 18278                   play                    check   1
## 18279                  playa                 vincente   1
## 18280                 player                      ben   1
## 18281                 player                  roberto   1
## 18282                 player                  thurman   1
## 18283                 plenum                  chamber   1
## 18284               ploughed                      300   1
## 18285                plovdiv                      due   1
## 18286                   plow                  overran   1
## 18287                 plowed                    field   1
## 18288                plowing                     past   1
## 18289                  plugs            inappropriate   1
## 18290                  plugs                installed   1
## 18291              plummeted                    600ft   1
## 18292                plunged                 straight   1
## 18293                plywood                    panel   1
## 18294             pochentong            international   1
## 18295            pockets.the                    plane   1
## 18296                 pointe                    noire   1
## 18297                pokhara                  airport   1
## 18298                 poktoy                       30   1
## 18299                   pole                      jet   1
## 18300                   pole                  located   1
## 18301                 poleta                    ridge   1
## 18302                 police                 aircraft   1
## 18303                 police                 believed   1
## 18304                 police                    chief   1
## 18305                 police               helicopter   1
## 18306                 police               inspectors   1
## 18307                 police               lieutenant   1
## 18308                 police                 officers   1
## 18309                 policy                direction   1
## 18310              polisario                     shot   1
## 18311                 polish               government   1
## 18312                 polish                president   1
## 18313                 polish                   singer   1
## 18314                 polish                violinist   1
## 18315              political                   crisis   1
## 18316              political                terrorism   1
## 18317            polytechnic                  college   1
## 18318                  ponta                  delgada   1
## 18319          pontchartrain                       19   1
## 18320                pontoon                     boat   1
## 18321                   poor                      air   1
## 18322                   poor              atmospheric   1
## 18323                   poor             coordination   1
## 18324                   poor                 drainage   1
## 18325                   poor                      due   1
## 18326                   poor                   engine   1
## 18327                   poor               evacuation   1
## 18328                   poor                   flying   1
## 18329                   poor                   ground   1
## 18330                   poor                  landing   1
## 18331                   poor               management   1
## 18332                   poor               monitoring   1
## 18333                   poor             navigational   1
## 18334                   poor             organization   1
## 18335                   poor              positioning   1
## 18336                   poor                reception   1
## 18337                   poor                 regional   1
## 18338                   poor                technique   1
## 18339                   poor                 training   1
## 18340                   poor              visiblility   1
## 18341                   poor                    water   1
## 18342                   poor                   weater   1
## 18343                 poorly              coordinated   1
## 18344                 poorly                 designed   1
## 18345                 poorly               maintained   1
## 18346                 poorly                  planned   1
## 18347                    pop                    music   1
## 18348                    pop                   singer   1
## 18349                   popa                  located   1
## 18350           popocatepetl                   flying   1
## 18351                popping                   noises   1
## 18352              populated             neighborhood   1
## 18353               porlamar                  airport   1
## 18354              porpoised                 attained   1
## 18355                   port                       au   1
## 18356                   port                  carried   1
## 18357                   port                    ellen   1
## 18358                   port                  engines   1
## 18359                   port                     erin   1
## 18360                   port                  etienne   1
## 18361                   port                     flap   1
## 18362                   port                    flaps   1
## 18363                   port                 francqui   1
## 18364                   port                     fuel   1
## 18365                   port                     main   1
## 18366                   port                  morseby   1
## 18367                   port                    tanks   1
## 18368                   port                 townsend   1
## 18369                   port                underwood   1
## 18370                   port                     vila   1
## 18371               portable                 bungalow   1
## 18372               portable                   oxygen   1
## 18373               portland                    canal   1
## 18374                  porto                   alegre   1
## 18375                  ports                    froze   1
## 18376               position                       15   1
## 18377               position                       65   1
## 18378               position                  african   1
## 18379               position              cartwheeled   1
## 18380               position                  causing   1
## 18381               position                 creating   1
## 18382               position                  delayed   1
## 18383               position                    error   1
## 18384               position                   flying   1
## 18385               position              gravational   1
## 18386               position                    hambi   1
## 18387               position                 improper   1
## 18388               position                     loss   1
## 18389               position                   midair   1
## 18390               position                     poor   1
## 18391               position                 relative   1
## 18392               position                   report   1
## 18393               position                  reports   1
## 18394               position                     shot   1
## 18395               position                standards   1
## 18396               position                 training   1
## 18397               position              transmitted   1
## 18398               position                  unknown   1
## 18399             positional                awareness   1
## 18400             positional              uncertainty   1
## 18401            positioning              information   1
## 18402            positioning                   system   1
## 18403           positionning                   flight   1
## 18404              positions               continuing   1
## 18405              positions           malfunctioning   1
## 18406               positive                   action   1
## 18407               positive              aerodynamic   1
## 18408               positive                assurance   1
## 18409               positive                   flight   1
## 18410               positive                knowledge   1
## 18411               positive                   manual   1
## 18412               positive                    radio   1
## 18413             positively               determined   1
## 18414          possibilities                  include   1
## 18415            possibility                  crashed   1
## 18416            possibility                    frank   1
## 18417               possibly                        1   1
## 18418               possibly                      bad   1
## 18419               possibly               carburetor   1
## 18420               possibly                   caught   1
## 18421               possibly                      due   1
## 18422               possibly                  extreme   1
## 18423               possibly                      hit   1
## 18424               possibly                    icing   1
## 18425               possibly                incorrect   1
## 18426               possibly             insufficient   1
## 18427               possibly                  jamming   1
## 18428               possibly                  leading   1
## 18429               possibly        misinterpretation   1
## 18430               possibly                 overcome   1
## 18431               possibly                  started   1
## 18432               possibly                 startled   1
## 18433               possibly                   struck   1
## 18434               possilbe                    cabin   1
## 18435                   post                       37   1
## 18436                   post                   impact   1
## 18437                   post                   office   1
## 18438                 postal                  service   1
## 18439              potential                collision   1
## 18440            potentially                hazardous   1
## 18441            potentially               surprising   1
## 18442               potokari                    radio   1
## 18443                 potosi                   double   1
## 18444                 potter                   flying   1
## 18445                 potter                   stated   1
## 18446                 pounds                    broke   1
## 18447                 pounds                  heavier   1
## 18448                 pounds                    liter   1
## 18449                 pounds                   struck   1
## 18450                 poured                 gasoline   1
## 18451                  power                   caused   1
## 18452                  power                 climbing   1
## 18453                  power                 controls   1
## 18454                  power                  crashed   1
## 18455                  power                  created   1
## 18456                  power            disintegrated   1
## 18457                  power                emergency   1
## 18458                  power                  factors   1
## 18459                  power                   glided   1
## 18460                  power                    james   1
## 18461                  power                      led   1
## 18462                  power                   levels   1
## 18463                  power                   levers   1
## 18464                  power              malfunction   1
## 18465                  power                 occurred   1
## 18466                  power                  package   1
## 18467                  power                     pole   1
## 18468                  power                premature   1
## 18469                  power                 required   1
## 18470                  power              restoration   1
## 18471                  power                 resulted   1
## 18472                  power                  setting   1
## 18473                  power                    stall   1
## 18474                  power                 steering   1
## 18475                  power                   system   1
## 18476                  power             transmission   1
## 18477                  power                  turbine   1
## 18478                  power            unfamiliarity   1
## 18479                  power                    units   1
## 18480                  power                    water   1
## 18481                power's                cameraman   1
## 18482               powerful                      air   1
## 18483             powerlines                  crashed   1
## 18484             powerplant                  failure   1
## 18485                 powers                       48   1
## 18486                   poza                     rica   1
## 18487                prabang                  airport   1
## 18488               practice                 approach   1
## 18489               practice                   diving   1
## 18490               practice                  landing   1
## 18491               practice                    touch   1
## 18492             practicing                    night   1
## 18493             practicing                 takeoffs   1
## 18494             practicing                    touch   1
## 18495                 prague                  airport   1
## 18496                prairie                    lands   1
## 18497                prangli                   island   1
## 18498                    pre                    crash   1
## 18499                    pre                 existing   1
## 18500                    pre                 ignition   1
## 18501                    pre               occupation   1
## 18502                    pre                  planned   1
## 18503             precarious                 attitude   1
## 18504             precarious                situation   1
## 18505          precautionary                    steps   1
## 18506              preceding                    heavy   1
## 18507              preceding                   korean   1
## 18508            precipitous                  terrain   1
## 18509                precise                 position   1
## 18510                precise                   reason   1
## 18511              precision               approached   1
## 18512              precision                    radar   1
## 18513              precluded               feathering   1
## 18514           predeparture                    check   1
## 18515              predicted                      bad   1
## 18516             predictive                windshear   1
## 18517            preexisting                  fatigue   1
## 18518              preflight                    check   1
## 18519            preliminary                 evidence   1
## 18520            preliminary              indications   1
## 18521              premature                advancing   1
## 18522              premature              application   1
## 18523              premature                   change   1
## 18524              premature                    chute   1
## 18525              premature                departure   1
## 18526              premature                   descet   1
## 18527              premature                execution   1
## 18528              premature                  liftoff   1
## 18529              premature                     loss   1
## 18530              premature                 lowering   1
## 18531              premature                    raise   1
## 18532            prematurely               controlled   1
## 18533            prematurely                   failed   1
## 18534            prematurely                   pilots   1
## 18535            prematurely                   struck   1
## 18536            prematurely                      ten   1
## 18537              prescribe                    route   1
## 18538             prescribed                   airway   1
## 18539             prescribed                altitudes   1
## 18540             prescribed                     anti   1
## 18541             prescribed                  company   1
## 18542             prescribed                  holding   1
## 18543             prescribed                      ifr   1
## 18544             prescribed                      ils   1
## 18545             prescribed               impairment   1
## 18546             prescribed              limitations   1
## 18547             prescribed                   minima   1
## 18548             prescribed                 minimums   1
## 18549             prescribed              regulations   1
## 18550             prescribed                  setting   1
## 18551             prescribed                    speed   1
## 18552             prescribed                  takeoff   1
## 18553             prescribed                      vfr   1
## 18554            prescribled                    route   1
## 18555           prescription                     drug   1
## 18556               presence               underlying   1
## 18557             preservers                  crashed   1
## 18558              president                    boris   1
## 18559              president               eisenhower   1
## 18560              president                 franklin   1
## 18561              president                     lech   1
## 18562              president                    ramon   1
## 18563              president                  richard   1
## 18564              president                   samora   1
## 18565              president                   walter   1
## 18566            presidental                candidate   1
## 18567           presidential                 campaign   1
## 18568           presidential               helicopter   1
## 18569                  press                    agent   1
## 18570                  press                      fit   1
## 18571               pressure                      air   1
## 18572               pressure                altimeter   1
## 18573               pressure              compressors   1
## 18574               pressure                  control   1
## 18575               pressure                      due   1
## 18576               pressure                  failure   1
## 18577               pressure                     fuel   1
## 18578               pressure                   height   1
## 18579               pressure                     hull   1
## 18580               pressure                     line   1
## 18581               pressure                      oil   1
## 18582               pressure                   probes   1
## 18583               pressure                 resulted   1
## 18584               pressure                  sensors   1
## 18585               pressure                   system   1
## 18586               pressure                  turbine   1
## 18587               pressure                  warning   1
## 18588         pressurization                  failure   1
## 18589        pressurizations        depressurizations   1
## 18590                preston                  airport   1
## 18591              prestwick                 scotland   1
## 18592               presumed                including   1
## 18593             pretakeoff                checklist   1
## 18594             prevailing                    gusty   1
## 18595             prevailing              unfavorable   1
## 18596             prevailing                    winds   1
## 18597                prevent                  captain   1
## 18598                prevent                   impact   1
## 18599                prevent                  terrain   1
## 18600              prevented                  adquate   1
## 18601              prevented               perception   1
## 18602             preventive                     anti   1
## 18603               previous                      atr   1
## 18604               previous                 attempts   1
## 18605               previous                   damage   1
## 18606               previous                    false   1
## 18607               previous                  landing   1
## 18608               previous                    night   1
## 18609               previous                occasions   1
## 18610               previous                    rough   1
## 18611               previous            understanding   1
## 18612             previously                descended   1
## 18613             previously             establishing   1
## 18614             previously                   issued   1
## 18615                primary                  airport   1
## 18616                primary                   factor   1
## 18617                primary                      nav   1
## 18618                primary               navigation   1
## 18619                primary             navigational   1
## 18620                primary                   school   1
## 18621                primary                    slide   1
## 18622                primary                     task   1
## 18623                 prince                   george   1
## 18624                 prince                   gustav   1
## 18625                 prince                    henry   1
## 18626                prinses                  juliana   1
## 18627                  prior                 airplane   1
## 18628             prioritize                  control   1
## 18629               priority                     pass   1
## 18630                 prison                 national   1
## 18631               pristina                   kosovo   1
## 18632                private                  company   1
## 18633                private                    field   1
## 18634                private                   postal   1
## 18635                private                residence   1
## 18636            probability                bordering   1
## 18637               probable               accidental   1
## 18638               probable             contributing   1
## 18639               probable               electrical   1
## 18640               probable              explanation   1
## 18641               probable                  failure   1
## 18642               probable                   habits   1
## 18643               probable                    icing   1
## 18644               probable                 shifting   1
## 18645               probable                     slow   1
## 18646               probable               variations   1
## 18647                 probes                 resulted   1
## 18648           problems.the                 aircraft   1
## 18649             procedural                checklist   1
## 18650             procedural             instructions   1
## 18651             procedural            uncertainties   1
## 18652              procedure                 airspeed   1
## 18653              procedure                   called   1
## 18654              procedure                  carried   1
## 18655              procedure                correctly   1
## 18656              procedure                  delayed   1
## 18657              procedure                descended   1
## 18658              procedure              disregarded   1
## 18659              procedure              established   1
## 18660              procedure                  failure   1
## 18661              procedure               inadequate   1
## 18662              procedure                     lack   1
## 18663              procedure               overheated   1
## 18664              procedure                    pilot   1
## 18665              procedure              recommended   1
## 18666              procedure           specifications   1
## 18667              procedure                   struck   1
## 18668             procedures                        3   1
## 18669             procedures                  adopted   1
## 18670             procedures                  alcohol   1
## 18671             procedures               compatible   1
## 18672             procedures             contributing   1
## 18673             procedures                  coupled   1
## 18674             procedures                     crew   1
## 18675             procedures                 detailed   1
## 18676             procedures                developed   1
## 18677             procedures                  ditched   1
## 18678             procedures                 executed   1
## 18679             procedures                 improper   1
## 18680             procedures               improperly   1
## 18681             procedures                incorrect   1
## 18682             procedures             insufficient   1
## 18683             procedures                     lack   1
## 18684             procedures                      led   1
## 18685             procedures                  limited   1
## 18686             procedures                performed   1
## 18687             procedures                    pilot   1
## 18688             procedures                premature   1
## 18689             procedures                    radar   1
## 18690             procedures                  related   1
## 18691             procedures                  shortly   1
## 18692             procedures                     sops   1
## 18693             procedures                       st   1
## 18694             procedures                technique   1
## 18695             procedures                    total   1
## 18696             procedures                 undamped   1
## 18697                process                   veered   1
## 18698             processing                     data   1
## 18699               produced                irregular   1
## 18700               produced               sufficient   1
## 18701               producer                     mike   1
## 18702             production                  company   1
## 18703           professional                 demeanor   1
## 18704           professional                   skills   1
## 18705            proficiency                    check   1
## 18706            proficiency                     test   1
## 18707                profile                 approach   1
## 18708                profile                     view   1
## 18709                program                 critical   1
## 18710                program                 guidance   1
## 18711                program               guidelines   1
## 18712                program                   killed   1
## 18713                program           underestimated   1
## 18714             programmed                    route   1
## 18715               progress                  reports   1
## 18716               progress                    strip   1
## 18717            progressive            deterioration   1
## 18718            progressive                     loss   1
## 18719          progressively            disintegrated   1
## 18720          progressively                     lost   1
## 18721          progressively               unbalanced   1
## 18722               prohibit                parachute   1
## 18723                project                  manager   1
## 18724               promoter                     bill   1
## 18725            promotional                     tour   1
## 18726               prompted                inquiries   1
## 18727               promptly                     lost   1
## 18728                  proof                  cockpit   1
## 18729                   prop                    broke   1
## 18730                   prop                   failed   1
## 18731                   prop                  failure   1
## 18732                   prop                feathered   1
## 18733                   prop                    pitch   1
## 18734                   prop                    plane   1
## 18735                   prop                  remains   1
## 18736                   prop                separated   1
## 18737                   prop               separation   1
## 18738                   prop                  started   1
## 18739              propelled                  grenade   1
## 18740              propeller               accidently   1
## 18741              propeller                 assembly   1
## 18742              propeller            autofeathered   1
## 18743              propeller                  crashed   1
## 18744              propeller                   cruise   1
## 18745              propeller                  deicing   1
## 18746              propeller                   flight   1
## 18747              propeller                      hit   1
## 18748              propeller                      hub   1
## 18749              propeller                      ice   1
## 18750              propeller                  leading   1
## 18751              propeller                operation   1
## 18752              propeller                 pressure   1
## 18753              propeller                 reverser   1
## 18754              propeller                      rpm   1
## 18755              propeller                separated   1
## 18756              propeller                    shaft   1
## 18757              propeller              windmilling   1
## 18758             propellers                  adverse   1
## 18759             propellers                 detached   1
## 18760             propellers                exhibited   1
## 18761             propellers                feathered   1
## 18762             propellers                  touched   1
## 18763                 proper                 aircraft   1
## 18764                 proper                 airplane   1
## 18765                 proper                 airspace   1
## 18766                 proper                 altitude   1
## 18767                 proper                 attitude   1
## 18768                 proper                clearance   1
## 18769                 proper           communications   1
## 18770                 proper                 crossing   1
## 18771                 proper                 decision   1
## 18772                 proper                   degree   1
## 18773                 proper                direction   1
## 18774                 proper                emergency   1
## 18775                 proper                    flaps   1
## 18776                 proper                     fuel   1
## 18777                 proper                glidepath   1
## 18778                 proper                  landing   1
## 18779                 proper                  lookout   1
## 18780                 proper              maintenance   1
## 18781                 proper               monitoring   1
## 18782                 proper             navigational   1
## 18783                 proper                 position   1
## 18784                 proper                 practice   1
## 18785                 proper                      pre   1
## 18786                 proper              preparation   1
## 18787                 proper                procedure   1
## 18788                 proper                    radio   1
## 18789                 proper                 reaction   1
## 18790                 proper                  setting   1
## 18791                 proper                touchdown   1
## 18792                 proper                    track   1
## 18793                 proper                 training   1
## 18794                 proper                   travel   1
## 18795                 proper                  weather   1
## 18796               properly                  aligned   1
## 18797               properly              communicate   1
## 18798               properly               compensate   1
## 18799               properly                  conduct   1
## 18800               properly                connected   1
## 18801               properly                  control   1
## 18802               properly                  correct   1
## 18803               properly                  crashed   1
## 18804               properly                 evaluate   1
## 18805               properly                   follow   1
## 18806               properly              functioning   1
## 18807               properly               initialize   1
## 18808               properly                     load   1
## 18809               properly                   loaded   1
## 18810               properly                   locked   1
## 18811               properly                   midair   1
## 18812               properly                  perform   1
## 18813               properly                     plan   1
## 18814               properly                 prepared   1
## 18815               properly                recognize   1
## 18816               properly                   repair   1
## 18817               properly                 repaired   1
## 18818               properly                  respond   1
## 18819               properly                resulting   1
## 18820               properly                safeguard   1
## 18821               properly                   secure   1
## 18822               properly                 selected   1
## 18823               properly                   stowed   1
## 18824               properly                  tighten   1
## 18825               properly                  trained   1
## 18826            prospective                customers   1
## 18827             protection                    alpha   1
## 18828             protection                  leading   1
## 18829             protection                  service   1
## 18830             protection                  systems   1
## 18831                 proven                  crashed   1
## 18832                 proven                      due   1
## 18833                provide                 accurate   1
## 18834                provide                collision   1
## 18835                provide                     crew   1
## 18836                provide               sufficient   1
## 18837               provided                    extra   1
## 18838               provided             insufficient   1
## 18839               provided               redundancy   1
## 18840              providing               sufficient   1
## 18841              proximity                 warnings   1
## 18842                    psa                     crew   1
## 18843                    psa            transmissions   1
## 18844                 psycho                 physical   1
## 18845        psychoemotional                   stress   1
## 18846          psychological                  factors   1
## 18847             psychology                   degree   1
## 18848                    pt2                    probe   1
## 18849                 public                     road   1
## 18850                 public                   square   1
## 18851                 public               statements   1
## 18852            publication                   weekly   1
## 18853              publicist                    kenny   1
## 18854             publicized                    trial   1
## 18855              published                 decision   1
## 18856              published                departure   1
## 18857              published                   minima   1
## 18858              published                 minimums   1
## 18859              published                operating   1
## 18860              published              operational   1
## 18861              published                procedure   1
## 18862              published                 standard   1
## 18863                    puc                    servo   1
## 18864                 puente                    hills   1
## 18865                 puerto                    montt   1
## 18866                 puerto                    ordaz   1
## 18867                 puerto                    rican   1
## 18868                 puerto                 vallarta   1
## 18869                 pulama                     pali   1
## 18870                pulaski                   county   1
## 18871                   pull                      ups   1
## 18872                 pulled                       45   1
## 18873                 pulled                 disabled   1
## 18874                pulling                  circuit   1
## 18875                   pump                    drive   1
## 18876                   pump                     fuel   1
## 18877                   pump                      led   1
## 18878                   pump                mechanics   1
## 18879                   pump                  seizure   1
## 18880                   pump                    shaft   1
## 18881               pump.the                    crash   1
## 18882                 pumped                     free   1
## 18883                pumping                  station   1
## 18884                  pumps                supplying   1
## 18885                 puncak                     jaya   1
## 18886                  punta                   islita   1
## 18887                  punta                    raisi   1
## 18888              purchased                        1   1
## 18889              purchased                     life   1
## 18890           purification                equipment   1
## 18891             purser.the                  failure   1
## 18892               pursuing                suspected   1
## 18893                   push                    force   1
## 18894                   push                     pull   1
## 18895                 pushed                  forward   1
## 18896                 pusher               activation   1
## 18897                  putre                 mountain   1
## 18898                putting                   strain   1
## 18899                putting                survivors   1
## 18900                     pw                       9d   1
## 18901                  pyanj                    river   1
## 18902                  pylon                 improper   1
## 18903                  pylon                  support   1
## 18904               pyrenees                        5   1
## 18905               pyrenees                  crashed   1
## 18906               pyrenees                mountains   1
## 18907                  qaeda                terrorist   1
## 18908                 qantas                    crews   1
## 18909                    qfe                  contact   1
## 18910                    qnh                  setting   1
## 18911                quality                assurance   1
## 18912               quantity               indication   1
## 18913               quantity              information   1
## 18914               quantity                    sight   1
## 18915                 quebec               detonation   1
## 18916                  queen            lili'uokalani   1
## 18917                quentin                roosevelt   1
## 18918               question                 remained   1
## 18919           questionable              information   1
## 18920                quetame                     hill   1
## 18921                    qui                     nhon   1
## 18922                  quick                reference   1
## 18923                  quick                   rudder   1
## 18924                quicker                emergency   1
## 18925                quickly                corrected   1
## 18926                quickly                 engulfed   1
## 18927                quickly             extinguished   1
## 18928                quickly               identified   1
## 18929                quickly                  leading   1
## 18930                quickly                  moments   1
## 18931                quickly               overturned   1
## 18932                quickly                undershot   1
## 18933                  quill                    shaft   1
## 18934                  quito                 mariscal   1
## 18935                  quito                    pilot   1
## 18936                     r4                       d6   1
## 18937                    r4q                    plane   1
## 18938                     ra             contributory   1
## 18939                   race                     lost   1
## 18940                 rachel               youngblood   1
## 18941                 racing                     drag   1
## 18942                 racing                     team   1
## 18943                  radar                        3   1
## 18944                  radar                       35   1
## 18945                  radar                 advisory   1
## 18946                  radar               assistance   1
## 18947                  radar                  control   1
## 18948                  radar               controller   1
## 18949                  radar                     crew   1
## 18950                  radar                     data   1
## 18951                  radar              disappeared   1
## 18952                  radar              environment   1
## 18953                  radar               facilities   1
## 18954                  radar                    fifty   1
## 18955                  radar              inoperative   1
## 18956                  radar                     john   1
## 18957                  radar                     lack   1
## 18958                  radar                 reported   1
## 18959                  radar                  returns   1
## 18960                  radar                 revealed   1
## 18961                  radar                   runway   1
## 18962                  radar                    tower   1
## 18963                  radar                  tracker   1
## 18964                  radar                  traffic   1
## 18965                  radar                  vectors   1
## 18966                  radar                     view   1
## 18967                 radars                  relying   1
## 18968                 radial                   midair   1
## 18969             radiatiors                    power   1
## 18970                  radio                      aid   1
## 18971                  radio                     aids   1
## 18972                  radio                 altitude   1
## 18973                  radio                  antenna   1
## 18974                  radio               assistance   1
## 18975                  radio                  beacons   1
## 18976                  radio                    calls   1
## 18977                  radio               challenges   1
## 18978                  radio             conversation   1
## 18979                  radio                  crashed   1
## 18980                  radio                equipment   1
## 18981                  radio                  failure   1
## 18982                  radio                financial   1
## 18983                  radio                      fix   1
## 18984                  radio               navigation   1
## 18985                  radio                  officer   1
## 18986                  radio                  signals   1
## 18987                  radio             surveillance   1
## 18988                  radio                technical   1
## 18989                  radio                  traffic   1
## 18990                  radio            transmissions   1
## 18991                  radio             transmitters   1
## 18992                radioed             experiencing   1
## 18993             radiosonde                  weather   1
## 18994                 radius                    fifty   1
## 18995                    raf                     avro   1
## 18996                    raf                  bombers   1
## 18997                   rãƒâ                       ur   1
## 18998                 rãƒâ­o                   grande   1
## 18999                  rafik                   hariri   1
## 19000                 rahman                   dadman   1
## 19001                    rai                     bali   1
## 19002                   raid                 wreckage   1
## 19003                   rail                     yard   1
## 19004               railroad                  freight   1
## 19005               railroad                   tracks   1
## 19006                railway               embankment   1
## 19007                railway                    track   1
## 19008                   rain                      100   1
## 19009                   rain                       44   1
## 19010                   rain                    bound   1
## 19011                   rain                captain's   1
## 19012                   rain                 collided   1
## 19013                   rain                continued   1
## 19014                   rain                  control   1
## 19015                   rain                     crew   1
## 19016                   rain                divergent   1
## 19017                   rain                    drops   1
## 19018                   rain                 fluxgate   1
## 19019                   rain                   forest   1
## 19020                   rain                lightning   1
## 19021                   rain                      low   1
## 19022                   rain               navigation   1
## 19023                   rain                  overran   1
## 19024                   rain                 overshot   1
## 19025                   rain                repellant   1
## 19026                   rain                    slick   1
## 19027                   rain                     snow   1
## 19028                   rain                    storm   1
## 19029                   rain                     wind   1
## 19030                rainand                      fog   1
## 19031               raindeer                  hunters   1
## 19032                 rainer                  crashed   1
## 19033             rainforest                  terrain   1
## 19034                rainger                       41   1
## 19035                  rains                     poor   1
## 19036              rainstorm                        6   1
## 19037              rainstorm                continued   1
## 19038              rainstorm                  failure   1
## 19039    rainstorm.premature                  descent   1
## 19040                  rainy               conditions   1
## 19041                  raisi                  airport   1
## 19042               rajawali                  housing   1
## 19043                  ralph                  rainger   1
## 19044                    ram                      air   1
## 19045                 ramada                      inn   1
## 19046                  ramon                magsaysay   1
## 19047                  ramon               overloaded   1
## 19048                 ramone                mountains   1
## 19049                  ramos                  failure   1
## 19050                   ramp             accidentally   1
## 19051                   ramp                   caused   1
## 19052                   ramp                     door   1
## 19053                   ramp                personnel   1
## 19054                 ramsey                     lost   1
## 19055                  ramzi                   yousef   1
## 19056                    ran                        3   1
## 19057                    ran                     343m   1
## 19058                    ran                      low   1
## 19059              rancheria                  pilot's   1
## 19060               randolph                   hearst   1
## 19061                  randy                   rhoads   1
## 19062                  range                       10   1
## 19063                  range                 aircraft   1
## 19064                  range                  crashed   1
## 19065                  range                    drops   1
## 19066                  range                      due   1
## 19067                  range                   flying   1
## 19068                  range                resulting   1
## 19069                  range                technique   1
## 19070                  range                 wreckage   1
## 19071                ranking               australian   1
## 19072                ranking                 generals   1
## 19073                ranking                 officers   1
## 19074                ranking                officials   1
## 19075                 raphel                       45   1
## 19076                  rapid            decompression   1
## 19077                  rapid                explosive   1
## 19078                  rapid                  pitchup   1
## 19079                  rapid                     pull   1
## 19080                  rapid                     rate   1
## 19081                  rapid                 rearward   1
## 19082                  rapid                reduction   1
## 19083                  rapid               structural   1
## 19084                rapidly              accompanied   1
## 19085                rapidly                 changing   1
## 19086                rapidly                descended   1
## 19087                rapidly               descending   1
## 19088                rapidly            deteriorating   1
## 19089                rapidly                   losing   1
## 19090                rapidly                    nosed   1
## 19091                rapidly                    pilot   1
## 19092                rapidly                   struck   1
## 19093                rapidly                  veering   1
## 19094                rapidly                 wreckage   1
## 19095                   rast                 comedian   1
## 19096                   rate                 attitude   1
## 19097                   rate                   crew's   1
## 19098                   rate               incredibly   1
## 19099                   rate                   spiral   1
## 19100                  rated               commercial   1
## 19101                  rated                     lost   1
## 19102                  ratio                      epr   1
## 19103                  ratio                     read   1
## 19104              ratmalana                  airport   1
## 19105            rattlesnake                    butte   1
## 19106                 ravine                        6   1
## 19107                 ravine                  actress   1
## 19108                 ravine                 adjacent   1
## 19109                 ravine                 bursting   1
## 19110                 ravine                   coming   1
## 19111                 ravine                     crew   1
## 19112                    raw                     data   1
## 19113                    ray                  vaughan   1
## 19114               raytheon                aerospace   1
## 19115                   rcaf                       cf   1
## 19116                   rcaf                  harvard   1
## 19117                  reach                cleveland   1
## 19118                  reach                    lajes   1
## 19119                  reach                 palmdale   1
## 19120                  reach               passengers   1
## 19121                  reach                 peshawar   1
## 19122                  reach                  takeoff   1
## 19123                  reach                  whyalla   1
## 19124                reached                   23,000   1
## 19125                reached                       90   1
## 19126                reached                   caused   1
## 19127                reached                 cruising   1
## 19128                reached                      due   1
## 19129                reached                    fl230   1
## 19130                reached                  forward   1
## 19131                reached              livingstone   1
## 19132                reached                mountains   1
## 19133                reached                     poor   1
## 19134                reached                   runway   1
## 19135                reached                       v2   1
## 19136               reaching                    1,500   1
## 19137               reaching                       fl   1
## 19138               reaching                    fl200   1
## 19139               reaching                  forward   1
## 19140               reaching                    kxndb   1
## 19141               reaching                  mimimum   1
## 19142               reaching                    rabat   1
## 19143               reaching                  uruapan   1
## 19144                  react              immediately   1
## 19145                reacted             inadequately   1
## 19146                reacted          inappropriately   1
## 19147                reacted              incorrectly   1
## 19148               reaction                     time   1
## 19149                   read              instruments   1
## 19150                reading             calculations   1
## 19151                reading                   caused   1
## 19152               readings                  leading   1
## 19153                   real                emergency   1
## 19154                   real                    plane   1
## 19155                   real                     time   1
## 19156              realizing                   sooner   1
## 19157                   rear                auxillary   1
## 19158                   rear                     exit   1
## 19159                   rear               lavoratory   1
## 19160                   rear                  loading   1
## 19161                   rear                   master   1
## 19162                   rear                 pressure   1
## 19163                   rear                    rotor   1
## 19164                   rear                   toilet   1
## 19165               rearmost                  vehicle   1
## 19166               rearward                migration   1
## 19167               rearward                 movement   1
## 19168                 reason                  appears   1
## 19169                 reason                     crew   1
## 19170                 reason                  shortly   1
## 19171                 reason             undetermined   1
## 19172                 reason                  unknown   1
## 19173                 reason                    water   1
## 19174             reasonable                   notice   1
## 19175             reasonable                     time   1
## 19176                reasons                     crew   1
## 19177                reasons                 deviated   1
## 19178                reasons                  ditched   1
## 19179                reasons                   engine   1
## 19180                reasons                  failure   1
## 19181                reasons                      led   1
## 19182                reasons                    pilot   1
## 19183                reasons                     shot   1
## 19184                reasons                   twenty   1
## 19185                   reba                 mcentire   1
## 19186                  rebel                 movement   1
## 19187                 rebels                       20   1
## 19188                 rebels                       30   1
## 19189                 rebels                  brought   1
## 19190                 rebels                  claimed   1
## 19191                 rebels                  control   1
## 19192                 rebels               inadequate   1
## 19193                 rebels                  shortly   1
## 19194                 rebels                   struck   1
## 19195               received                        2   1
## 19196               received                        5   1
## 19197               received            contradictory   1
## 19198               received                    fatal   1
## 19199               received               indicating   1
## 19200               received                    prior   1
## 19201               received                   recent   1
## 19202               receiver              instruments   1
## 19203               receiver                  leaving   1
## 19204              receivers           unintelligible   1
## 19205              receiving            contradictory   1
## 19206              receiving                including   1
## 19207              receiving             supplemental   1
## 19208                 recent                   engine   1
## 19209                 recent             malfunctions   1
## 19210                 recent                 training   1
## 19211               recently                 arrested   1
## 19212               recently                departing   1
## 19213               recently                installed   1
## 19214               recently                undergone   1
## 19215               reckless                  conduct   1
## 19216              recognize                  address   1
## 19217              recognize                  crashed   1
## 19218              recognize                  passage   1
## 19219              recognize                windshear   1
## 19220            recommended                       25   1
## 19221            recommended                 altitude   1
## 19222            recommended           communications   1
## 19223            recommended                departure   1
## 19224            recommended                  descent   1
## 19225            recommended                procedure   1
## 19226            recommended                    route   1
## 19227                 record                  attempt   1
## 19228                 record                  heavily   1
## 19229               recorded                 airplane   1
## 19230               recorder               transcript   1
## 19231                recover                  control   1
## 19232                recover                  stalled   1
## 19233              recovered                       03   1
## 19234              recovered                        8   1
## 19235              recovered                  crashed   1
## 19236              recovered                  failure   1
## 19237              recovered                  shortly   1
## 19238               recovery                  attempt   1
## 19239               recovery                  crashed   1
## 19240               recovery                 maneuver   1
## 19241               recovery                 nineteen   1
## 19242               recovery                    pilot   1
## 19243               recovery                procedure   1
## 19244               recovery               procedures   1
## 19245               recovery                   struck   1
## 19246               recovery               techniques   1
## 19247              recurrent                 training   1
## 19248                    red                   airway   1
## 19249                    red                    baron   1
## 19250                    red                     neon   1
## 19251                    red                    river   1
## 19252                    red                   tailed   1
## 19253                redbank                  trailer   1
## 19254                redding                       26   1
## 19255                redondo                 mountain   1
## 19256                 reduce                     bird   1
## 19257                 reduce                     drag   1
## 19258                 reduce                    speed   1
## 19259                reduced              directional   1
## 19260                reduced                   flight   1
## 19261                reduced                  lateral   1
## 19262                reduced                stiffness   1
## 19263                reduced                  takeoff   1
## 19264               reducing                      air   1
## 19265               reducing                 airspeed   1
## 19266               reducing                    power   1
## 19267               reducing                     time   1
## 19268              reduction                     gear   1
## 19269             redundancy               comparable   1
## 19270                redwood                   forest   1
## 19271             reelection                    metal   1
## 19272                 reeves                       40   1
## 19273              reference                   caused   1
## 19274              reference                      due   1
## 19275              reference                 handbook   1
## 19276              reference                     lack   1
## 19277              reference                    speed   1
## 19278              reference               stabilizer   1
## 19279              reference                     unit   1
## 19280             references                 required   1
## 19281                 refuel                  crashed   1
## 19282              refueling                 collided   1
## 19283              refueling                 directly   1
## 19284              refueling                  mission   1
## 19285              refueling                 practice   1
## 19286                refugee                   flight   1
## 19287                refused                      due   1
## 19288                refused                  insects   1
## 19289                refused                  weather   1
## 19290                 regain                 altitude   1
## 19291                 regain                   contol   1
## 19292                 regain                     lift   1
## 19293                 region             approximaely   1
## 19294                 region                  killing   1
## 19295                 region                  shortly   1
## 19296               regional                   ground   1
## 19297               regional                   health   1
## 19298               regional                     park   1
## 19299             registered                   n13067   1
## 19300              regularly                scheduled   1
## 19301            regulations                   caused   1
## 19302            regulations                  require   1
## 19303            regulations                  strayed   1
## 19304              regulator                  crashed   1
## 19305                   rein                       34   1
## 19306                related                    cloud   1
## 19307                related             deficiencies   1
## 19308                related                  factors   1
## 19309               relative             inexperience   1
## 19310               relative                     lack   1
## 19311               relative                 position   1
## 19312                  relay                 provided   1
## 19313               released                    fumes   1
## 19314               reliable                   visual   1
## 19315                 relief                 diverted   1
## 19316                 relief                  efforts   1
## 19317                 relief                    items   1
## 19318                 relief               operations   1
## 19319               remained                     half   1
## 19320               remained                   locked   1
## 19321               remained                     lost   1
## 19322               remained               undetected   1
## 19323              remaining             contributing   1
## 19324              remaining                 distance   1
## 19325              remaining                  gasbags   1
## 19326              remaining                   locked   1
## 19327              remaining                survivors   1
## 19328              remaining                     wing   1
## 19329                remains                    found   1
## 19330               remedial                  options   1
## 19331                 remedy             deficiencies   1
## 19332                 remote               aboriginal   1
## 19333                 remote                   andean   1
## 19334                 remote                  control   1
## 19335                 remote                    field   1
## 19336                 remote                  fishing   1
## 19337                 remote               indonesian   1
## 19338                 remote                  jungles   1
## 19339                 remote                  landing   1
## 19340                 remote                 mountain   1
## 19341                 remote               mountanous   1
## 19342                 remote                      oil   1
## 19343                 remote                  outback   1
## 19344                 remote                   region   1
## 19345                 remote                     town   1
## 19346                 remove                   galley   1
## 19347                 remove                      ice   1
## 19348                 remove                      u.s   1
## 19349                removed                    prior   1
## 19350                renamed                   travis   1
## 19351               rendered                difficult   1
## 19352               rendered                reception   1
## 19353                   rene                     chen   1
## 19354                   reno                 hospital   1
## 19355                 rental                 airplane   1
## 19356                 rental                      car   1
## 19357                 repair                  fatigue   1
## 19358                 repair               techniques   1
## 19359               repeated                    alarm   1
## 19360               repeated                automatic   1
## 19361             repeatedly                 reported   1
## 19362              repellant                   caused   1
## 19363             repetitive              malfunction   1
## 19364            replacement                     crew   1
## 19365            replacement                     time   1
## 19366                 report               attributed   1
## 19367                 report                concludes   1
## 19368                 report                 confirms   1
## 19369                 report                correctly   1
## 19370                 report                 released   1
## 19371                 report                 revealed   1
## 19372               reported                       37   1
## 19373               reported                      500   1
## 19374               reported                      bad   1
## 19375               reported                  crashed   1
## 19376               reported                       en   1
## 19377               reported                  failure   1
## 19378               reported                  finding   1
## 19379               reported                   flying   1
## 19380               reported                     fuel   1
## 19381               reported                    heavy   1
## 19382               reported                      ice   1
## 19383               reported               indefinite   1
## 19384               reported                      low   1
## 19385               reported           malfunctioning   1
## 19386               reported                  missing   1
## 19387               reported                  passing   1
## 19388               reported                  picking   1
## 19389               reported                positions   1
## 19390               reported                  positon   1
## 19391               reported                 reaching   1
## 19392               reported                   strong   1
## 19393               reported            thunderstorms   1
## 19394               reported                  traffic   1
## 19395               reported                  trouble   1
## 19396               reported                  weather   1
## 19397             reportedly                   failed   1
## 19398              reporting                       15   1
## 19399              reporting               facilities   1
## 19400              reporting                     fire   1
## 19401              reporting                    ready   1
## 19402              reporting                   severe   1
## 19403                reports                  suggest   1
## 19404         representative                   george   1
## 19405        requalification                     exam   1
## 19406                request                 bearings   1
## 19407                request            clarification   1
## 19408                request                 informed   1
## 19409                request               permission   1
## 19410                request                    radar   1
## 19411              requested                      atc   1
## 19412              requested                   lights   1
## 19413                require                     crew   1
## 19414               required                 altitude   1
## 19415               required                     anti   1
## 19416               required                    climb   1
## 19417               required                  crashed   1
## 19418               required                equipment   1
## 19419               required                  failure   1
## 19420               required                   flight   1
## 19421               required                   flying   1
## 19422               required                      ifr   1
## 19423               required                    level   1
## 19424               required                     post   1
## 19425               required                 removing   1
## 19426               required                   strict   1
## 19427               required                   taking   1
## 19428           requirements                contained   1
## 19429              requiring               helicopter   1
## 19430              requisite                  caution   1
## 19431                 rescue                operation   1
## 19432                 rescue               operations   1
## 19433                 rescue                    party   1
## 19434                 rescue               passengers   1
## 19435                 rescue                     shot   1
## 19436                 rescue                     team   1
## 19437                 rescue                    teams   1
## 19438                rescued                        6   1
## 19439               rescuing                  russian   1
## 19440               research                      jet   1
## 19441              reservoir                  shortly   1
## 19442             reservoirs               microburst   1
## 19443             residental             neighborhood   1
## 19444            residential                 building   1
## 19445            residential                compounds   1
## 19446            residential                 district   1
## 19447            residential                     home   1
## 19448            residential                   houses   1
## 19449            residential               structures   1
## 19450              residents                   flying   1
## 19451              residents                    heard   1
## 19452               residual                     fire   1
## 19453               residual                      ice   1
## 19454              resilient                      oil   1
## 19455             respective                     jobs   1
## 19456                respond            appropriately   1
## 19457                respond              erroneously   1
## 19458                respond              immediately   1
## 19459              responded              incorrectly   1
## 19460              responded                  rapidly   1
## 19461               response                      hit   1
## 19462       responsibilities                     crew   1
## 19463                   rest                    1,380   1
## 19464                   rest                    2,050   1
## 19465                   rest                       40   1
## 19466                   rest                    break   1
## 19467                   rest                    error   1
## 19468                   rest                  fatigue   1
## 19469                   rest                partially   1
## 19470                   rest                   period   1
## 19471                restart                  engines   1
## 19472                restart              information   1
## 19473             restarting                  methods   1
## 19474             restaurant                  private   1
## 19475                restore                   engine   1
## 19476                restore                     lift   1
## 19477               restored            approximately   1
## 19478             restricted                  medical   1
## 19479            restrictive               conditions   1
## 19480                 result                    japan   1
## 19481                 result                     lost   1
## 19482              resultant                  failure   1
## 19483              resultant              inadvertent   1
## 19484              resulting                  control   1
## 19485              resulting                     dive   1
## 19486              resulting                     drag   1
## 19487              resulting                imbalance   1
## 19488              resulting              inadvertent   1
## 19489              resulting                     loss   1
## 19490              resulting                reduction   1
## 19491               resuming                   normal   1
## 19492             resurfaced                   runway   1
## 19493                    ret                 position   1
## 19494                 retain             autothrottle   1
## 19495               retained                imprecise   1
## 19496                retaken                  control   1
## 19497              retention                    posts   1
## 19498                retired                    north   1
## 19499               retiring                   midair   1
## 19500              retracted                       20   1
## 19501              retracted                  causing   1
## 19502              retracted                 position   1
## 19503              retracted              prematurely   1
## 19504              retracted                     shot   1
## 19505             retracting                  halfway   1
## 19506             retraction               difficulty   1
## 19507              retreaded                     tire   1
## 19508                 return                  attempt   1
## 19509                 return                     home   1
## 19510                 return                  landing   1
## 19511                 return                     line   1
## 19512                 return                  shortly   1
## 19513                 return                    valve   1
## 19514                 return                   valves   1
## 19515                reuther                       63   1
## 19516                    rev                     isln   1
## 19517               revealed                  fatigue   1
## 19518               revealed              indications   1
## 19519               revealed                   lethal   1
## 19520                reverse                       10   1
## 19521                reverse                 ejectors   1
## 19522                reverse                     idle   1
## 19523                reverse                indicator   1
## 19524                reverse                    pitch   1
## 19525                reverse                    range   1
## 19526                reverse                  rigging   1
## 19527                reverse                 thruster   1
## 19528               reversed                  command   1
## 19529               reverser                  crashed   1
## 19530               reverser              deactivated   1
## 19531               reverser                excessive   1
## 19532               reverser                   system   1
## 19533               reverser                    usage   1
## 19534              reversers                   failed   1
## 19535                revoked                        6   1
## 19536             revolution                     army   1
## 19537          revolutionary                    guard   1
## 19538                    rey                  shortly   1
## 19539                reynosa                   mexico   1
## 19540                    rez                  located   1
## 19541                     rh                      53d   1
## 19542                  rhein                     main   1
## 19543                  rhine                    river   1
## 19544                 rhoads                       25   1
## 19545                 rhoads                   rachel   1
## 19546                   riau                  islands   1
## 19547                ribeiro                    baiao   1
## 19548                   ribs                  crashed   1
## 19549                   ribs                   pelvis   1
## 19550                  rican                  women's   1
## 19551                richard                    nixon   1
## 19552             richardson                       28   1
## 19553                 richie                   valens   1
## 19554                   rick                 hendrick   1
## 19555                   rick                  intveld   1
## 19556                   rick                   nelson   1
## 19557           rickenbacker                president   1
## 19558                   rico                      air   1
## 19559                   rico                  crashed   1
## 19560                  ridge                       15   1
## 19561                  ridge                      200   1
## 19562                  ridge                        6   1
## 19563                  ridge                      7.5   1
## 19564                  ridge                       71   1
## 19565                  ridge                        8   1
## 19566                  ridge                  bounded   1
## 19567                  ridge                    broke   1
## 19568                  ridge                  crashed   1
## 19569                  ridge                exploding   1
## 19570                  ridge                     lost   1
## 19571                  ridge                 regional   1
## 19572                  ridge                    short   1
## 19573                  ridge                  shortly   1
## 19574                    rig                    broke   1
## 19575                    rig                 improper   1
## 19576                 rijeka                  airport   1
## 19577                   rila                mountains   1
## 19578                   ring                  allowed   1
## 19579                   ring                     cowl   1
## 19580                   ring                     seal   1
## 19581                    rio                 approach   1
## 19582                    rio                   branco   1
## 19583                    rio                caquetãƒâ   1
## 19584                    rio                   cuarto   1
## 19585                    rio                   grande   1
## 19586                    rio                    guape   1
## 19587                    rio                magdalena   1
## 19588                    rio                  orinoco   1
## 19589                 rising              mountainous   1
## 19590                 rising                 position   1
## 19591                 rising                  rapidly   1
## 19592                 rising                     tide   1
## 19593                 rising                    waves   1
## 19594                   risk               assessment   1
## 19595                  river                      1km   1
## 19596                  river                        5   1
## 19597                  river                     boat   1
## 19598                  river                 breaking   1
## 19599                  river                   coming   1
## 19600                  river               considered   1
## 19601                  river                     crew   1
## 19602                  river                     dike   1
## 19603                  river                   engine   1
## 19604                  river                  finally   1
## 19605                  river                    found   1
## 19606                  river                   guiaba   1
## 19607                  river               inaccurate   1
## 19608                  river                   leased   1
## 19609                  river                  managed   1
## 19610                  river                   marine   1
## 19611                  river                  minutes   1
## 19612                  river                     neva   1
## 19613                  river                    orrin   1
## 19614                  river                     pier   1
## 19615                  river                    plate   1
## 19616                  river                     poor   1
## 19617                  river                    tagus   1
## 19618                  river                   valley   1
## 19619                 rivera                       43   1
## 19620                  rivit                    amber   1
## 19621                   rnav                     gnss   1
## 19622                   road                   french   1
## 19623                   road                  manager   1
## 19624                roadway                     slid   1
## 19625                roadway                 striking   1
## 19626                 robbed               passengers   1
## 19627                 robert                    bajac   1
## 19628                 robert                       bo   1
## 19629                 robert                   elliot   1
## 19630                 robert                     loft   1
## 19631                 robert                  stethem   1
## 19632                roberto                 clemente   1
## 19633                roberto                   obando   1
## 19634                  rocca                president   1
## 19635                   rock                        8   1
## 19636                   rock                  airport   1
## 19637                   rock                 arkansas   1
## 19638                   rock                    cliff   1
## 19639                   rock                  covered   1
## 19640                   rock               embankment   1
## 19641                   rock                  outcrop   1
## 19642                   rock                     pile   1
## 19643                   rock                 promoter   1
## 19644                 rocker                      box   1
## 19645                 rocket                  grenade   1
## 19646                 rocket                propelled   1
## 19647                 rockne                       43   1
## 19648                  rocks               dovestones   1
## 19649               rockwell                 aircraft   1
## 19650                  rocky                   desert   1
## 19651                  rocky                    ledge   1
## 19652                  rocky                 marciano   1
## 19653                  rocky                 mountain   1
## 19654                  rocky                   shores   1
## 19655                  rocky                     wall   1
## 19656                    rod                      due   1
## 19657                    rod                  stalled   1
## 19658            roddenberry                  creator   1
## 19659                  rodeo                   cowboy   1
## 19660                  rodeo                    gorge   1
## 19661                  rodeo                    pampa   1
## 19662                  rodes                    south   1
## 19663                rodilla                       de   1
## 19664                 rodney                   culver   1
## 19665                  roger                 peterson   1
## 19666                 rogers                       33   1
## 19667                 rogers                       56   1
## 19668                rohtang                     pass   1
## 19669                   roll              accompanied   1
## 19670                   roll            approximately   1
## 19671                   roll           awareness.this   1
## 19672                   roll                   caused   1
## 19673                   roll               consistent   1
## 19674                   roll          controllability   1
## 19675                   roll                  counter   1
## 19676                   roll                      due   1
## 19677                   roll                  factors   1
## 19678                   roll                 inverted   1
## 19679                   roll                    upset   1
## 19680                 rolled                       40   1
## 19681                 rolled                  sharply   1
## 19682                rolling                     bank   1
## 19683                rolling                 inverted   1
## 19684                rolling                 maneuver   1
## 19685                rolling                   moment   1
## 19686                  rolls                    royce   1
## 19687                   rome                      atc   1
## 19688                 romney                    marsh   1
## 19689                    ron                    brown   1
## 19690                 ronnie                      van   1
## 19691                   roof                   houses   1
## 19692              roosevelt                   killed   1
## 19693              roosevelt                      son   1
## 19694            roosevelt's                      son   1
## 19695                   root                  crashed   1
## 19696                   root                  fitting   1
## 19697                  ropes                 securing   1
## 19698                 roques                  airport   1
## 19699                 roques                   island   1
## 19700                   rose                      200   1
## 19701                   rose                       50   1
## 19702                rosiers                       12   1
## 19703                rostock                  crashed   1
## 19704                 rotate                  control   1
## 19705               rotating                   blades   1
## 19706               rotation                 airspeed   1
## 19707               rotation                  causing   1
## 19708               rotation                   damage   1
## 19709               rotation                 resulted   1
## 19710               rotation                technique   1
## 19711             rotational                    speed   1
## 19712                   rotc                 students   1
## 19713               rotonote                       53   1
## 19714                  rotor                   caused   1
## 19715                  rotor                 collided   1
## 19716                  rotor            configuration   1
## 19717                  rotor                  control   1
## 19718                  rotor                     disk   1
## 19719                  rotor                   failed   1
## 19720                  rotor                     fell   1
## 19721                  rotor                     flew   1
## 19722                  rotor                  gearbox   1
## 19723                  rotor                     main   1
## 19724                  rotor                    pitch   1
## 19725                  rotor              positioning   1
## 19726                  rotor                    power   1
## 19727                  rotor                    pylon   1
## 19728                  rotor                separated   1
## 19729                  rotor               separating   1
## 19730                  rotor                  spindle   1
## 19731                  rotor                   struck   1
## 19732                  rotor                   system   1
## 19733                  rotor                     zone   1
## 19734                  rouge                louisiana   1
## 19735                  rough                   fields   1
## 19736                  rough                  landing   1
## 19737                  rough                      sea   1
## 19738                  rough                     seas   1
## 19739                  rough                    water   1
## 19740                  rough                  weather   1
## 19741                  round               structural   1
## 19742                  route                        1   1
## 19743                  route                    1,120   1
## 19744                  route                       35   1
## 19745                  route                       45   1
## 19746                  route                       60   1
## 19747                  route                   action   1
## 19748                  route                 altitude   1
## 19749                  route               attempting   1
## 19750                  route                   caused   1
## 19751                  route                   change   1
## 19752                  route                    chart   1
## 19753                  route                    climb   1
## 19754                  route                 collided   1
## 19755                  route                continued   1
## 19756                  route                    crash   1
## 19757                  route                   debris   1
## 19758                  route              disappeared   1
## 19759                  route                diversion   1
## 19760                  route                   engine   1
## 19761                  route                  fatigue   1
## 19762                  route                   flames   1
## 19763                  route                     flew   1
## 19764                  route                   flight   1
## 19765                  route                    found   1
## 19766                  route                     fuel   1
## 19767                  route                    heavy   1
## 19768                  route                 improper   1
## 19769                  route               inadequate   1
## 19770                  route              information   1
## 19771                  route                     life   1
## 19772                  route                   marker   1
## 19773                  route                      met   1
## 19774                  route                    metal   1
## 19775                  route                      mid   1
## 19776                  route                   midair   1
## 19777                  route                  minimum   1
## 19778                  route                       ny   1
## 19779                  route               overloaded   1
## 19780                  route               penetrated   1
## 19781                  route                    plane   1
## 19782                  route                     poor   1
## 19783                  route                premature   1
## 19784                  route               procedural   1
## 19785                  route                  reasons   1
## 19786                  route                  segment   1
## 19787                  route                 suddenly   1
## 19788                  route                  traffic   1
## 19789                  route                   unable   1
## 19790                  route                   veered   1
## 19791                  route                  weather   1
## 19792                  route                witnesses   1
## 19793                routine            communication   1
## 19794                routine                   flight   1
## 19795                routine             humanitarian   1
## 19796                routine              maintenance   1
## 19797                routine               operations   1
## 19798                routine              proficiency   1
## 19799                    row                        7   1
## 19800                  royal                 hawaiian   1
## 19801                  royal                     thai   1
## 19802                  royal                  wedding   1
## 19803                  royce                  service   1
## 19804                   rozo                   beacon   1
## 19805                    rpm               indication   1
## 19806                    rpm                reduction   1
## 19807                 rubber                       de   1
## 19808                 rubber                     hose   1
## 19809                 rubber                  sparked   1
## 19810                  rubio                mountains   1
## 19811                  rucio                 mountain   1
## 19812                 rudder                 assembly   1
## 19813                 rudder                   bungee   1
## 19814                 rudder                   caused   1
## 19815                 rudder                deflected   1
## 19816                 rudder               deployment   1
## 19817                 rudder                 detached   1
## 19818                 rudder                 exploded   1
## 19819                 rudder                  failure   1
## 19820                 rudder                     fell   1
## 19821                 rudder                hydraulic   1
## 19822                 rudder              malfunction   1
## 19823                 rudder                      pcu   1
## 19824                 rudder                      puc   1
## 19825                 rudder                 remained   1
## 19826                 rudder              responsible   1
## 19827                 rudder                 reversal   1
## 19828                 rudder                separated   1
## 19829                 rudder                    servo   1
## 19830                 rudder                   swings   1
## 19831                 rudder                   travel   1
## 19832                 rudder                  trimmer   1
## 19833                rudders                      due   1
## 19834                 rudolf                 windisch   1
## 19835                  rugby                     team   1
## 19836                 rugged                     farm   1
## 19837                 rugged                     peak   1
## 19838                 rugged               rainforest   1
## 19839                 rugged                    woods   1
## 19840                   ruiz                  picasso   1
## 19841                  rules             contributing   1
## 19842                  rules                  crashed   1
## 19843                  rules                   flight   1
## 19844                 rumors                  suggest   1
## 19845                    run                  crashed   1
## 19846                    run              disappeared   1
## 19847                    run                producing   1
## 19848                    run                    rough   1
## 19849                    run                   twenty   1
## 19850                runaway                     trim   1
## 19851                running                      dry   1
## 19852                running                   engine   1
## 19853                running                      low   1
## 19854                running                  nonstop   1
## 19855                running                    rough   1
## 19856                running                  roughly   1
## 19857                 runwal                      18l   1
## 19858                 runway                       02   1
## 19859                 runway                       03   1
## 19860                 runway                      06r   1
## 19861                 runway                      07r   1
## 19862                 runway                       09   1
## 19863                 runway                       12   1
## 19864                 runway                      13c   1
## 19865                 runway                      15l   1
## 19866                 runway                       19   1
## 19867                 runway                       1r   1
## 19868                 runway                       21   1
## 19869                 runway                      25l   1
## 19870                 runway                      26l   1
## 19871                 runway                       27   1
## 19872                 runway                        3   1
## 19873                 runway                      31c   1
## 19874                 runway                  31l.the   1
## 19875                 runway                       32   1
## 19876                 runway                      33r   1
## 19877                 runway                       35   1
## 19878                 runway                      35l   1
## 19879                 runway                      36r   1
## 19880                 runway                       3r   1
## 19881                 runway                        4   1
## 19882                 runway                       5l   1
## 19883                 runway                       5r   1
## 19884                 runway                        7   1
## 19885                 runway                        8   1
## 19886                 runway                 aircraft   1
## 19887                 runway               aircraft's   1
## 19888                 runway              approaching   1
## 19889                 runway                attempted   1
## 19890                 runway               attempting   1
## 19891                 runway                      bad   1
## 19892                 runway                    break   1
## 19893                 runway                 breaking   1
## 19894                 runway                 bursting   1
## 19895                 runway                captain's   1
## 19896                 runway                   cashed   1
## 19897                 runway                   caught   1
## 19898                 runway                   change   1
## 19899                 runway                   closed   1
## 19900                 runway               collapsing   1
## 19901                 runway               conditions   1
## 19902                 runway               controlled   1
## 19903                 runway                   crew's   1
## 19904                 runway                crossings   1
## 19905                 runway               destroying   1
## 19906                 runway                deviation   1
## 19907                 runway              disappeared   1
## 19908                 runway                   double   1
## 19909                 runway                   engine   1
## 19910                 runway                  entered   1
## 19911                 runway                    error   1
## 19912                 runway                excessive   1
## 19913                 runway                   failed   1
## 19914                 runway                  fifteen   1
## 19915                 runway                     flew   1
## 19916                 runway                   flying   1
## 19917                 runway                      fog   1
## 19918                 runway                     fuel   1
## 19919                 runway                    glide   1
## 19920                 runway                    heavy   1
## 19921                 runway                hijacking   1
## 19922                 runway               horizontal   1
## 19923                 runway               inadequate   1
## 19924                 runway                incorrect   1
## 19925                 runway                   indian   1
## 19926                 runway             installation   1
## 19927                 runway                 japanese   1
## 19928                 runway                   jumped   1
## 19929                 runway                      led   1
## 19930                 runway                    limit   1
## 19931                 runway                   losing   1
## 19932                 runway                     lost   1
## 19933                 runway           malfunctioning   1
## 19934                 runway                  missing   1
## 19935                 runway                   motion   1
## 19936                 runway            necessitating   1
## 19937                 runway               overloaded   1
## 19938                 runway                  overrun   1
## 19939                 runway                 overshot   1
## 19940                 runway                       pc   1
## 19941                 runway               penetrated   1
## 19942                 runway                   pilots   1
## 19943                 runway                     poor   1
## 19944                 runway              positioning   1
## 19945                 runway               procedural   1
## 19946                 runway                proceeded   1
## 19947                 runway                propeller   1
## 19948                 runway                 relative   1
## 19949                 runway                resulting   1
## 19950                 runway                   safety   1
## 19951                 runway                      san   1
## 19952                 runway                     shot   1
## 19953                 runway                   slowly   1
## 19954                 runway                  smashed   1
## 19955                 runway                    smoke   1
## 19956                 runway                     tail   1
## 19957                 runway                terrorist   1
## 19958                 runway               threshhold   1
## 19959                 runway                   uneven   1
## 19960                 runway                   upside   1
## 19961                 runway                   veered   1
## 19962                 runway                   visual   1
## 19963                 runway                  weather   1
## 19964                 runway                windshear   1
## 19965                 runway                    wrong   1
## 19966                 runway                       wy   1
## 19967               runway's                   ground   1
## 19968                runways                intersect   1
## 19969               ruptured                      gas   1
## 19970               ruptured           simultaneously   1
## 19971               ruptured                     tank   1
## 19972                russian                 aviation   1
## 19973                russian                      buk   1
## 19974                russian                     coal   1
## 19975                russian                  fighter   1
## 19976                russian               government   1
## 19977                russian                   guests   1
## 19978                russian                immigrant   1
## 19979                russian                      jet   1
## 19980                russian                 military   1
## 19981                russian                     mine   1
## 19982                russian                  mission   1
## 19983                russian                    music   1
## 19984                russian                passenger   1
## 19985                russian                    pilot   1
## 19986                russian                    plane   1
## 19987                russian                       sa   1
## 19988                russian               scientists   1
## 19989                russian             snowboarders   1
## 19990                russian                   soccer   1
## 19991                russian                       su   1
## 19992                russian                    trade   1
## 19993                russian                transport   1
## 19994                russian                turboprop   1
## 19995                   rust                operation   1
## 19996                 rusted                 elevator   1
## 19997                   ruta                       de   1
## 19998                 ruteng                  crashed   1
## 19999                 ruteng                   flores   1
## 20000                 ruzyne                 aerodome   1
## 20001                 rwanda                  juvenal   1
## 20002               rwenzori                mountains   1
## 20003                    rwy                       23   1
## 20004                    rwy                       33   1
## 20005                   ryan            international   1
## 20006                     sa                      227   1
## 20007                     sa                        7   1
## 20008                   saab                     340b   1
## 20009                 sabine                     pass   1
## 20010                 sabino                  located   1
## 20011               sabotage               detonation   1
## 20012               sabotage                explosion   1
## 20013               saboteur                  ignited   1
## 20014               sabrejet                  fighter   1
## 20015                   safe                 airspeed   1
## 20016                   safe                    climb   1
## 20017                   safe                 climbing   1
## 20018                   safe              directional   1
## 20019                   safe               instrument   1
## 20020                   safe                mechanism   1
## 20021                   safe                  minimum   1
## 20022                   safe                 obstacle   1
## 20023                   safe                  options   1
## 20024                   safe                   return   1
## 20025                   safe                   single   1
## 20026                   safe                     step   1
## 20027                   safe                     stop   1
## 20028                 safely              discontinue   1
## 20029                 safely                  ditched   1
## 20030                 safely                   eleven   1
## 20031                 safely                evacuated   1
## 20032                 safely                  failure   1
## 20033                 safely                   manner   1
## 20034                 safely               negligence   1
## 20035                 safely                  reached   1
## 20036                 safely                     slow   1
## 20037                  safer                    cline   1
## 20038                  safer                      ils   1
## 20039                 safest                   method   1
## 20040                 safety                   alerts   1
## 20041                 safety                 altitude   1
## 20042                 safety                    belts   1
## 20043                 safety                     caps   1
## 20044                 safety                    chain   1
## 20045                 safety                  crashed   1
## 20046                 safety                   flight   1
## 20047                 safety              instruction   1
## 20048                 safety                     lock   1
## 20049                 safety                 maneuver   1
## 20050                 safety                  officer   1
## 20051                 safety                     risk   1
## 20052                 safety                  shortly   1
## 20053                 safety                   unhurt   1
## 20054                 safety                    vests   1
## 20055                 safety                  warning   1
## 20056                 sahara                   desert   1
## 20057                 saigon                  shortly   1
## 20058                  saint                 clements   1
## 20059                  saint                 honorãƒâ   1
## 20060                  saint                    james   1
## 20061               sakamoto                       43   1
## 20062               sakhalin                 governor   1
## 20063                 salang                     pass   1
## 20064                   sale                  airport   1
## 20065               salesman                   samuel   1
## 20066                salinas                mountains   1
## 20067              salisbury                  airport   1
## 20068                 salmon                 mountain   1
## 20069                   salt                      air   1
## 20070                   salt                    water   1
## 20071               saltillo                     plan   1
## 20072                salvage                     yard   1
## 20073                    sam                        7   1
## 20074                    sam                  houston   1
## 20075                  samal                   island   1
## 20076               samantha                    smith   1
## 20077              samarkand                  airport   1
## 20078                samburu                 national   1
## 20079                 samoan                  clipper   1
## 20080                 samora                   machel   1
## 20081                 sampit                      due   1
## 20082                 samuel                     byck   1
## 20083                    san                  antonio   1
## 20084                    san                    borja   1
## 20085                    san                    bruno   1
## 20086                    san                   carlos   1
## 20087                    san                    chiao   1
## 20088                    san                cristobal   1
## 20089                    san                  gabriel   1
## 20090                    san                   miguel   1
## 20091                    san                    pablo   1
## 20092                    san                    pedro   1
## 20093                    san                   ramone   1
## 20094                    san                  vicente   1
## 20095                  sanaa            international   1
## 20096              sanctuary                  killing   1
## 20097                   sand                    dunes   1
## 20098                 sandia                 mountain   1
## 20099            sandinistan                   rebels   1
## 20100              sandstorm                       50   1
## 20101              sandstorm                 decision   1
## 20102              sandstorm                   headed   1
## 20103              sandstorm                  killing   1
## 20104              sandstorm                  overran   1
## 20105              sandstorm                      ran   1
## 20106                  sandy                    knoll   1
## 20107                  sandy                     lake   1
## 20108                sanford                      due   1
## 20109                   sank                       18   1
## 20110                   sank                     crew   1
## 20111                   sank                 drowning   1
## 20112                   sank                lufthansa   1
## 20113                   sank                  shortly   1
## 20114                   sant                     pere   1
## 20115                  santa                  cecilia   1
## 20116                  santa                    clara   1
## 20117                  santa                    elena   1
## 20118                  santa                     ynez   1
## 20119               santiago                   madrid   1
## 20120               santiago                    radio   1
## 20121                  santo                    antao   1
## 20122                 santos                   dumont   1
## 20123                 santos                  estuary   1
## 20124                    sao                  gabriel   1
## 20125                    sao                    jorge   1
## 20126                    sao                   miguel   1
## 20127                    sao                  vicente   1
## 20128                saposoa                    river   1
## 20129                    sar               operations   1
## 20130                  saran                       30   1
## 20131                 sardeh                      dam   1
## 20132                  sardy                    field   1
## 20133                   sari                       55   1
## 20134                    sas                       dc   1
## 20135           satisfactory                   mental   1
## 20136                satolas                    power   1
## 20137                saturna                   island   1
## 20138                  saudi                      747   1
## 20139                  saudi                   arabia   1
## 20140                saurimo                    unita   1
## 20141               savagely                 fighting   1
## 20142               savannah                   hilton   1
## 20143                   save                     time   1
## 20144                savings                 building   1
## 20145                sawdust                  packing   1
## 20146                 sawyer                      afb   1
## 20147                     sb                        2   1
## 20148                  scale               sufficient   1
## 20149              scattered                    cloud   1
## 20150              scattered            thunderstorms   1
## 20151               sceduled                passenger   1
## 20152                  scene                  records   1
## 20153                 scenic                   flight   1
## 20154                 scenic                    route   1
## 20155              scheduled                       50   1
## 20156              scheduled                 airliner   1
## 20157              scheduled                  airport   1
## 20158              scheduled               inspection   1
## 20159              scheduled                   report   1
## 20160              scheduled                  service   1
## 20161              scheduled                     stop   1
## 20162              scheduled                  takeoff   1
## 20163                 school                      400   1
## 20164                 school                 children   1
## 20165                 school                 compound   1
## 20166                 school                  crashed   1
## 20167                 school                  shortly   1
## 20168                 school              soesterberg   1
## 20169               school's               volleyball   1
## 20170             scientific               expedition   1
## 20171               scottish                highlands   1
## 20172               scranton            international   1
## 20173                scratch                     tool   1
## 20174                  screw                fasteners   1
## 20175                  screw                     jack   1
## 20176                 screws                   caused   1
## 20177                 screws                     lack   1
## 20178                    sea                      100   1
## 20179                    sea                       11   1
## 20180                    sea                       13   1
## 20181                    sea                       14   1
## 20182                    sea                       15   1
## 20183                    sea                      2.5   1
## 20184                    sea                      200   1
## 20185                    sea                        3   1
## 20186                    sea                      300   1
## 20187                    sea                       31   1
## 20188                    sea                       43   1
## 20189                    sea                      5.5   1
## 20190                    sea                        7   1
## 20191                    sea                      7.5   1
## 20192                    sea                     80nm   1
## 20193                    sea                        9   1
## 20194                    sea                     afte   1
## 20195                    sea                 believed   1
## 20196                    sea                    broke   1
## 20197                    sea                   caught   1
## 20198                    sea             disappearing   1
## 20199                    sea                       en   1
## 20200                    sea                   engine   1
## 20201                    sea                  fatigue   1
## 20202                    sea            featherweight   1
## 20203                    sea                     flew   1
## 20204                    sea                 flipping   1
## 20205                    sea                    icing   1
## 20206                    sea               inadequate   1
## 20207                    sea                incorrect   1
## 20208                    sea                   island   1
## 20209                    sea                     lost   1
## 20210                    sea                 practice   1
## 20211                    sea                    prior   1
## 20212                    sea                 stallion   1
## 20213                    sea                   struck   1
## 20214                    sea                  unknown   1
## 20215                    sea                    wrong   1
## 20216                sealing                   washer   1
## 20217                   seam                      due   1
## 20218               seaplane                      hit   1
## 20219                 search                  crashed   1
## 20220              searchers                        2   1
## 20221                   seas                  crashed   1
## 20222                   seas                  overran   1
## 20223                   seas                     shot   1
## 20224                   seat                      15f   1
## 20225                   seat                      17h   1
## 20226                   seat                      26k   1
## 20227                   seat                       4a   1
## 20228                   seat                  cushion   1
## 20229                   seat                  engaged   1
## 20230                   seat                   pulled   1
## 20231                   seat                     rail   1
## 20232                   seat                  ritchie   1
## 20233                seattle               navigation   1
## 20234                seattle                   tacoma   1
## 20235              secondary                   factor   1
## 20236              secondary                      nav   1
## 20237              secondary                    slide   1
## 20238              secondary             surveillance   1
## 20239              secretary                designate   1
## 20240                section                  crashed   1
## 20241                section                detaching   1
## 20242                section               detonation   1
## 20243                section                      hit   1
## 20244                section                  landing   1
## 20245                section                     line   1
## 20246                section                    lower   1
## 20247                section                 overshot   1
## 20248                section                    prior   1
## 20249                section                separated   1
## 20250                 sector                 boundary   1
## 20251                sectors                 required   1
## 20252                 secure                 carriage   1
## 20253                secured                     bolt   1
## 20254                secured              disappeared   1
## 20255                secured                    heavy   1
## 20256               securing                    cargo   1
## 20257               securing                  crashed   1
## 20258               security               assistance   1
## 20259               security                    fence   1
## 20260               security                   forces   1
## 20261               security                personnel   1
## 20262               security           recommendation   1
## 20263                seeking                     anti   1
## 20264                seeking               permission   1
## 20265                  sefid                     kouh   1
## 20266                 segnas                 mountain   1
## 20267                  seine                     west   1
## 20268                 seized                  causing   1
## 20269                   sela                     pass   1
## 20270               selected                    3,300   1
## 20271               selected                     beta   1
## 20272               selected                  causing   1
## 20273               selected                emergency   1
## 20274               selected                    wrong   1
## 20275              selecting                     auto   1
## 20276              selection           configueration   1
## 20277               selector                  control   1
## 20278               selector                   levers   1
## 20279               selector                    relay   1
## 20280               selector                   switch   1
## 20281               selector                   valves   1
## 20282              selfridge                       26   1
## 20283              selfridge                 suffered   1
## 20284                   semi                 airborne   1
## 20285                   semi                  stalled   1
## 20286               seminole                  failure   1
## 20287               seminole                     fell   1
## 20288           semipalatins                collision   1
## 20289                senator                  bronson   1
## 20290                senator                   ernest   1
## 20291                senator                     john   1
## 20292                senator                      ted   1
## 20293             senegalese                  medical   1
## 20294                  senic                   flight   1
## 20295                 sensor                  circuit   1
## 20296                 sensor                    input   1
## 20297                sensors               obstructed   1
## 20298                sensory                 illusory   1
## 20299                sentani                  airport   1
## 20300                 sentry                      box   1
## 20301                    sep                       13   1
## 20302               separate                   cables   1
## 20303               separate               controlled   1
## 20304               separate                 warnings   1
## 20305              separated                  causing   1
## 20306              separated                      due   1
## 20307              separated                    prior   1
## 20308              separated               vertically   1
## 20309             separation                        2   1
## 20310             separation                    error   1
## 20311             separation                inability   1
## 20312             separation                    rules   1
## 20313             separatist                   rebels   1
## 20314              september                     1994   1
## 20315               sequence                  leading   1
## 20316                 serano                   serano   1
## 20317              serengeti                 national   1
## 20318                 series                       10   1
## 20319                  serov                     city   1
## 20320                  serov                   russia   1
## 20321                  serra                       da   1
## 20322                  serra                       de   1
## 20323                  serra                  shortly   1
## 20324                service                       10   1
## 20325                service                  ceiling   1
## 20326                service                      col   1
## 20327                service                  crashed   1
## 20328                service                personnel   1
## 20329                service                    plane   1
## 20330                service                     road   1
## 20331                service               specialist   1
## 20332                service            subcontractor   1
## 20333            serviceable                     worn   1
## 20334               serviced               overloaded   1
## 20335             servicemen                  crashed   1
## 20336             servicemen                  wearing   1
## 20337               services                     boac   1
## 20338                  servo                  control   1
## 20339                  servo                 cylinder   1
## 20340                  servo                    lower   1
## 20341                  servo                    motor   1
## 20342                  servo                  pistons   1
## 20343                  servo                 reaching   1
## 20344                  servo                   unit's   1
## 20345                 servos                  causing   1
## 20346                    set                 controls   1
## 20347                    set                  crashed   1
## 20348                    set                    flaps   1
## 20349                    set                  spatial   1
## 20350                setting                    afire   1
## 20351                setting                  changed   1
## 20352                setting                 collided   1
## 20353                setting                  crashed   1
## 20354                setting                    error   1
## 20355                setting                      i.e   1
## 20356                setting                propeller   1
## 20357                setting                stablizer   1
## 20358                   seul             contributing   1
## 20359              seventeen                     died   1
## 20360              seventeen                   killed   1
## 20361              seventeen                  minutes   1
## 20362                  sever                     pull   1
## 20363                  sever               turbulence   1
## 20364                 severe                      air   1
## 20365                 severe               convective   1
## 20366                 severe                 coronary   1
## 20367                 severe                corrosion   1
## 20368                 severe                   damage   1
## 20369                 severe               downdrafts   1
## 20370                 severe                     drag   1
## 20371                 severe                     fuel   1
## 20372                 severe                    gusts   1
## 20373                 severe                headwinds   1
## 20374                 severe                    heart   1
## 20375                 severe                     jolt   1
## 20376                 severe                      lee   1
## 20377                 severe                lightning   1
## 20378                 severe                    local   1
## 20379                 severe                      oil   1
## 20380                 severe                 overcast   1
## 20381                 severe                   static   1
## 20382                 severe                    storm   1
## 20383                 severe               structural   1
## 20384                 severe              turbulences   1
## 20385                 severe           underinflation   1
## 20386                 severe                     wind   1
## 20387                 severe                windshear   1
## 20388                severed                     nose   1
## 20389                severed                   rudder   1
## 20390               severely                 affected   1
## 20391               severely               aggravated   1
## 20392               severely                 damaging   1
## 20393               severely               restricted   1
## 20394               severing                 elevator   1
## 20395               severing                    power   1
## 20396                severly                  damaged   1
## 20397                seville                      san   1
## 20398               sevuokuk                 mountain   1
## 20399                seymour                  crashed   1
## 20400                  shaft                    broke   1
## 20401                  shaft                  crashed   1
## 20402                  shaft                      due   1
## 20403                  shaft                  failure   1
## 20404                  shaft                  leading   1
## 20405                  shaft                   thrust   1
## 20406                  shake                violently   1
## 20407                 shaker                    stall   1
## 20408               shakhtar                  donetsk   1
## 20409                shallow                    climb   1
## 20410                shallow                    dense   1
## 20411                shallow                     left   1
## 20412                shallow                     pond   1
## 20413                shamsam                 mountain   1
## 20414               shamurat                     crew   1
## 20415               shanghai                   caused   1
## 20416               shanghai                  crashed   1
## 20417                shannon                  airport   1
## 20418                shannon                  ireland   1
## 20419                 shanty                     town   1
## 20420             shantytown                        2   1
## 20421                 shaped                  leading   1
## 20422                 sharem                       el   1
## 20423                 sharhi                  baranta   1
## 20424                  sharp                      180   1
## 20425                  sharp                       90   1
## 20426                  sharp                     bank   1
## 20427                  sharp                     drop   1
## 20428                sharply              criticizing   1
## 20429                sharply                  dropped   1
## 20430                sharply                  stalled   1
## 20431                 shasta                  trinity   1
## 20432             shattering                   debris   1
## 20433                  shear               conditions   1
## 20434                  sheer                 vertical   1
## 20435                 sheikh                  airport   1
## 20436                   shek                  airport   1
## 20437                  shell                 exploded   1
## 20438                  shell                    fired   1
## 20439                  shell                      nvg   1
## 20440              sheltered                 interior   1
## 20441           shenandoah's                 external   1
## 20442              sheriff's               department   1
## 20443                 sheyma                    rivit   1
## 20444                  shift                  decided   1
## 20445                  shift                  removed   1
## 20446                shifted                    cargo   1
## 20447                shifted                  causing   1
## 20448                shifted                 rearward   1
## 20449                   ship                     bibb   1
## 20450                   ship                    broke   1
## 20451                   ship                   headed   1
## 20452                   ship               passengers   1
## 20453                   ship                porpoised   1
## 20454                   ship                  rescued   1
## 20455                   ship                    toisa   1
## 20456                 ship's                  compass   1
## 20457               shipment                   aboard   1
## 20458               shipping                  crashed   1
## 20459                 shiraz                  airport   1
## 20460                 shiraz                      hit   1
## 20461                 shitai                       15   1
## 20462               shooting                  erupted   1
## 20463                   shop                    owner   1
## 20464               shopping                   center   1
## 20465                  shore                      400   1
## 20466                  shore                  crashed   1
## 20467                  shore              disappeared   1
## 20468                  shore                 drilling   1
## 20469                  shore                  sinking   1
## 20470                  shore                witnesses   1
## 20471              shoreline                 adjacent   1
## 20472                  short                        1   1
## 20473                  short                       30   1
## 20474                  short                 distance   1
## 20475                  short                  garbled   1
## 20476                  short                     hill   1
## 20477                  short                  hitting   1
## 20478                  short                northwest   1
## 20479                  short                  takeoff   1
## 20480              shortened                  causing   1
## 20481                shortly                     afer   1
## 20482                   shot                    fired   1
## 20483                   shot                  peening   1
## 20484                   shot                    prior   1
## 20485                   shot                   wildly   1
## 20486               shoulder                 launched   1
## 20487               shouting                     shut   1
## 20488           showboarding                     tour   1
## 20489                showers                continued   1
## 20490                showers                  crashed   1
## 20491                showers             thunderstorm   1
## 20492              showstorm                     flew   1
## 20493               shrapnel                   struck   1
## 20494                 shrimp                  crashed   1
## 20495                 shroud                  allowed   1
## 20496               shrouded                    cliff   1
## 20497               shrouded                   wooded   1
## 20498                   shur                    river   1
## 20499                shutoff                   handle   1
## 20500                shutoff                    valve   1
## 20501              shuttered                violently   1
## 20502              shuttling               passengers   1
## 20503                shymket                  airport   1
## 20504                sibayak                hijacking   1
## 20505               siberian                woodlands   1
## 20506                  sibir               tupolov154   1
## 20507                   sick                   people   1
## 20508               sideslip                    angle   1
## 20509               sideways                 relative   1
## 20510                 sierra                 cristais   1
## 20511                 sierra                   grande   1
## 20512                 sierra                    leone   1
## 20513                 sierra                  leone's   1
## 20514                 sierra                    madre   1
## 20515                 sierre                    madre   1
## 20516                  sight                    gauge   1
## 20517                  sight               inordinate   1
## 20518                sightly                  injured   1
## 20519            sightseeing                  flights   1
## 20520                 signal                        ã   1
## 20521                 signal                  crashed   1
## 20522                 signal                    flare   1
## 20523                 signal                  stalled   1
## 20524                signals           unintelligible   1
## 20525            significant                 changing   1
## 20526            significant              degradation   1
## 20527            significant                     flaw   1
## 20528            significant                   layers   1
## 20529            significant                  terrain   1
## 20530          significantly                decreased   1
## 20531          significantly                 impaired   1
## 20532          significantly                    lower   1
## 20533                sikhote                     alin   1
## 20534               sikorski                    prime   1
## 20535               sikorsky                 designed   1
## 20536               sikorsky                    warns   1
## 20537               silencio                       de   1
## 20538                  silla                       de   1
## 20539                 simara                  airport   1
## 20540                 simple                    means   1
## 20541              simulated                  failure   1
## 20542             simulation                    games   1
## 20543              simulator                 exercise   1
## 20544            simulator's               inadequate   1
## 20545           simultaneous            transmissions   1
## 20546         simultaneously                 dropping   1
## 20547                  sinai                peninsula   1
## 20548                sinai's             peacekeeping   1
## 20549                sinatra                       82   1
## 20550            sincholagua                 mountain   1
## 20551              singapore                  contact   1
## 20552                 singer                  actress   1
## 20553                 singer                     anna   1
## 20554                 singer                   carlos   1
## 20555                 singer                    grace   1
## 20556                 singer                     john   1
## 20557                 singer                  melanie   1
## 20558                 singer                     otis   1
## 20559                 singer                    patsy   1
## 20560                 singer                   richie   1
## 20561                 singer                     rick   1
## 20562                 singer                   ronnie   1
## 20563                 singer               songwriter   1
## 20564                 singer                     stan   1
## 20565            singerjenni                   rivera   1
## 20566                singers                  ritchie   1
## 20567                 single                      aoa   1
## 20568                 single               instrument   1
## 20569                   sink             contributing   1
## 20570                sinking                     fast   1
## 20571                sinking                    plane   1
## 20572                 sinnai                mountains   1
## 20573                  sioux                     city   1
## 20574                  sioux                  lookout   1
## 20575                    sir                  adverse   1
## 20576                    sir                     john   1
## 20577                 sister                   lauren   1
## 20578                   site              operational   1
## 20579                  sites                    pilot   1
## 20580              situation                 analysis   1
## 20581              situation                awareness   1
## 20582              situation                  crashed   1
## 20583              situation              culminating   1
## 20584              situation             effectuating   1
## 20585             situations                  crashed   1
## 20586                sivukha                  located   1
## 20587                sixteen                   killed   1
## 20588                  sixth                  attempt   1
## 20589                   size                   sprags   1
## 20590                  sized                    trees   1
## 20591                 skagen                  denmark   1
## 20592                 skagon                  airport   1
## 20593              skalafell                  located   1
## 20594                skating                     team   1
## 20595                   skid                      hit   1
## 20596                   skid                      vic   1
## 20597                skidded                    1,000   1
## 20598                skidded                      800   1
## 20599                skidded                 sideways   1
## 20600               skidding                     left   1
## 20601                  skids                contacted   1
## 20602                  skies                  crashed   1
## 20603                 skiing                 vacation   1
## 20604                  skill                  crashed   1
## 20605                  skill                 required   1
## 20606                   skin                anomalies   1
## 20607              skipper's                     shot   1
## 20608                skniliv                  airport   1
## 20609               skwentna                  airport   1
## 20610                    sky                   divers   1
## 20611                    sky                   diving   1
## 20612                    sky                   flight   1
## 20613               skychief                  crashed   1
## 20614                skynyrd                     band   1
## 20615                skywest                 aircraft   1
## 20616                skywest               metroliner   1
## 20617                   slat                actuation   1
## 20618                   slat             disagreement   1
## 20619                  slats                  failure   1
## 20620                  slats                    flaps   1
## 20621                  slats           incapacitation   1
## 20622                  slats                  overran   1
## 20623                  slave                     lake   1
## 20624                  sleep                     debt   1
## 20625                  sleep                    prior   1
## 20626                  sleet                        6   1
## 20627                  sleet                    storm   1
## 20628                  slick                   runway   1
## 20629                   slid                    1,000   1
## 20630                   slid                    1,200   1
## 20631                   slid                    2,300   1
## 20632                   slid                    2,500   1
## 20633                   slid                      500   1
## 20634                   slid            approximately   1
## 20635                  slide                 inflated   1
## 20636                sliding                       65   1
## 20637                 slight                  banking   1
## 20638                 slight                  descent   1
## 20639                 slight                     loss   1
## 20640                 slight                     nose   1
## 20641                 slight                 tailwind   1
## 20642               slightly                 airborne   1
## 20643               slightly               descending   1
## 20644               slightly                 downward   1
## 20645               slightly                  injured   1
## 20646               slightly                     left   1
## 20647               slightly                      low   1
## 20648                   slip                    angle   1
## 20649                   slip                   stream   1
## 20650                slipped                   anchor   1
## 20651             slipstream                 entering   1
## 20652                  slope                       40   1
## 20653                  slope                  entered   1
## 20654                  slope                  failure   1
## 20655                  slope                    icing   1
## 20656                  slope                  located   1
## 20657                  slope                   midair   1
## 20658                  slope             navigational   1
## 20659                  slope                shredding   1
## 20660                  slope                  signals   1
## 20661                  slope                   system   1
## 20662                   slow                  braking   1
## 20663                   slow                    climb   1
## 20664                   slow                   psycho   1
## 20665                   slow                 recovery   1
## 20666                   slow                    speed   1
## 20667                 slowly                  entered   1
## 20668                 slowly                  reduced   1
## 20669                 slowly                     sank   1
## 20670                  smith                       13   1
## 20671                  smith                       45   1
## 20672                  smith                       jr   1
## 20673                  smoke                        3   1
## 20674                  smoke                   aboard   1
## 20675                  smoke              accumulated   1
## 20676                  smoke                 appeared   1
## 20677                  smoke                    candi   1
## 20678                  smoke                   coming   1
## 20679                  smoke                emanating   1
## 20680                  smoke                     fire   1
## 20681                  smoke               inhalation   1
## 20682                  smoke                     rain   1
## 20683                  smoke                rendering   1
## 20684                  smoke                 streamed   1
## 20685                  smoke             subsequently   1
## 20686                  smoke                  thermal   1
## 20687                  smoky                   crater   1
## 20688                 smooth                  surface   1
## 20689                  smuts                  airport   1
## 20690                   snag                       yt   1
## 20691                 snezka                mountains   1
## 20692                   snow                      2.5   1
## 20693                   snow                  bounced   1
## 20694                   snow                   capped   1
## 20695                   snow            contamination   1
## 20696                   snow                continued   1
## 20697                   snow                   covers   1
## 20698                   snow                      ice   1
## 20699                   snow              inoperative   1
## 20700                   snow                      low   1
## 20701                   snow                  pilot's   1
## 20702                   snow                     plow   1
## 20703                   snow                     poor   1
## 20704                   snow               procedural   1
## 20705                   snow                    radar   1
## 20706                   snow                  removal   1
## 20707               snow.the               fatalities   1
## 20708              snowdrift                    broke   1
## 20709              snowstorm                      200   1
## 20710              snowstorm                        3   1
## 20711              snowstorm              disappeared   1
## 20712              snowstorm                 drifting   1
## 20713              snowstorm                  failure   1
## 20714              snowstorm                     flew   1
## 20715              snowstorm           malfunctioning   1
## 20716              snowstorm                    pilot   1
## 20717                  snowy               conditions   1
## 20718                  snowy                   meadow   1
## 20719                  snowy                mountains   1
## 20720                  sobat                    river   1
## 20721                    soc                    trang   1
## 20722                 soccer              association   1
## 20723                 soccer                     club   1
## 20724                  sochi                  airport   1
## 20725               soekarno                    hatta   1
## 20726            soesterberg                    pilot   1
## 20727               soewondo                      air   1
## 20728                   soft                  landing   1
## 20729                   soft                     peat   1
## 20730                   soft                    water   1
## 20731                softner                  bottles   1
## 20732               software                    error   1
## 20733               software               mistakenly   1
## 20734                 sokotu                      due   1
## 20735                    sol                 airfield   1
## 20736                soldier                     died   1
## 20737               soldiers                   aboard   1
## 20738               soldiers                  crashed   1
## 20739               soldiers                   inside   1
## 20740               soldiers                   struck   1
## 20741                  solid                     wall   1
## 20742               solimoes                    river   1
## 20743                   solo                    river   1
## 20744                 somali                  capital   1
## 20745           somatogravic                 illusion   1
## 20746               somerset                  pulaski   1
## 20747                    son                  brother   1
## 20748                    son                convicted   1
## 20749                    son                  crashed   1
## 20750                    son                   elliot   1
## 20751                    son                     nhut   1
## 20752                    son                    roger   1
## 20753                    son                   walked   1
## 20754                   song                 deportee   1
## 20755                   song                 sukiyaki   1
## 20756                   song                   writer   1
## 20757             songwriter                   walter   1
## 20758                  sonny                   carter   1
## 20759                 sopena                 managing   1
## 20760                 sophia                  airport   1
## 20761                 sorido                 airstrip   1
## 20762                   soto                       la   1
## 20763                  sound                      4.7   1
## 20764                sounded                        9   1
## 20765                sounded                   alarms   1
## 20766                sounded               indicating   1
## 20767                sounded                 numerous   1
## 20768                sounded                  shortly   1
## 20769               soundman                    clark   1
## 20770                 source                  ignited   1
## 20771                 source                    lines   1
## 20772                 source                   struck   1
## 20773                sources                evaluated   1
## 20774                sources                    quote   1
## 20775                sources                   report   1
## 20776                   sout                     east   1
## 20777                  south                     calm   1
## 20778                  south                  central   1
## 20779                  south                continued   1
## 20780                  south                 easterly   1
## 20781                  south                    korea   1
## 20782                  south                      leg   1
## 20783                  south                    sudan   1
## 20784                  south                thormanby   1
## 20785                  south                    tower   1
## 20786                  south                     west   1
## 20787              southeast                    coast   1
## 20788           southeastern                   region   1
## 20789              southerly                  heading   1
## 20790              southerly                     wind   1
## 20791               southern                     bank   1
## 20792               southern               california   1
## 20793               southern                    coast   1
## 20794               southern                   france   1
## 20795               southern                  germany   1
## 20796               southern                mountains   1
## 20797               southern                     ohio   1
## 20798               southern                     peru   1
## 20799               southern                    slope   1
## 20800               southern                   slopes   1
## 20801              southwest                airline's   1
## 20802           southwestern                    apure   1
## 20803           southwestern                 military   1
## 20804                 soviet                  command   1
## 20805                 soviet                cosmonaut   1
## 20806                 soviet                  fighter   1
## 20807                 soviet                   forces   1
## 20808                 soviet                   leader   1
## 20809                 soviet                      mig   1
## 20810                 soviet                 nation's   1
## 20811                 soviet                transport   1
## 20812                 soviet                  tupolev   1
## 20813                 spacer                  failure   1
## 20814                spacial           disorientation   1
## 20815                  spain                  crashed   1
## 20816                  spain                     shot   1
## 20817                spain's                 european   1
## 20818                spanish             peacekeeping   1
## 20819                   spar                  causing   1
## 20820                   spar                 igniting   1
## 20821                   spar                structure   1
## 20822                   spar                      web   1
## 20823                  spark                     plug   1
## 20824                 sparks                   aboard   1
## 20825                  spars                   caused   1
## 20826                  spars                    notre   1
## 20827               sparsely                   served   1
## 20828                special                  effects   1
## 20829                special                     flew   1
## 20830                special                    model   1
## 20831               specific                      air   1
## 20832               specific                  gravity   1
## 20833           specifically               determined   1
## 20834              spectator                      box   1
## 20835                   sped           simultaneously   1
## 20836                  speed                       28   1
## 20837                  speed                 altitude   1
## 20838                  speed                 approach   1
## 20839                  speed            approximately   1
## 20840                  speed                 attained   1
## 20841                  speed                  bounced   1
## 20842                  speed                    brake   1
## 20843                  speed                   brakes   1
## 20844                  speed               calculated   1
## 20845                  speed               conditions   1
## 20846                  speed                      cue   1
## 20847                  speed                  decayed   1
## 20848                  speed                  descent   1
## 20849                  speed              essentially   1
## 20850                  speed                      hit   1
## 20851                  speed                 increase   1
## 20852                  speed               increasing   1
## 20853                  speed               indication   1
## 20854                  speed               indicators   1
## 20855                  speed                    limit   1
## 20856                  speed                      low   1
## 20857                  speed                 monitors   1
## 20858                  speed             navigational   1
## 20859                  speed                 nosedive   1
## 20860                  speed                  overran   1
## 20861                  speed                resulting   1
## 20862                  speed                    stall   1
## 20863                  speed                  stalled   1
## 20864                  speed                     taxi   1
## 20865                  speed                     test   1
## 20866                  speed                 unstable   1
## 20867                  speed                      yaw   1
## 20868              speed.the                  copilot   1
## 20869               speeding               propellers   1
## 20870                spencer                     gulf   1
## 20871                  spent                     time   1
## 20872               spessart                mountains   1
## 20873                spewing                  flaming   1
## 20874                  spies                  crashed   1
## 20875                 spigot                  fitting   1
## 20876                spilled                 straight   1
## 20877                   spin                  factors   1
## 20878                   spin                partially   1
## 20879                spindle                 assembly   1
## 20880                spindle                  ditched   1
## 20881                spindle                  fatigue   1
## 20882               spinning                      300   1
## 20883               spinning                 fuselage   1
## 20884                  spins                   severe   1
## 20885              spiritual                   leader   1
## 20886               spitfire                  fighter   1
## 20887               spitfire                 fighters   1
## 20888               spitzkop                 mountain   1
## 20889                   spla                   rebels   1
## 20890                spoiler                  causing   1
## 20891                spoiler                  control   1
## 20892               spoilers                  crashed   1
## 20893               spoilers              deactivated   1
## 20894               spoilers                   failed   1
## 20895                  spoke               macedonian   1
## 20896            spontaneous                 ignition   1
## 20897            spontaneous                 improper   1
## 20898          spontaneously                  shifted   1
## 20899                 sports                      bag   1
## 20900                 sports                 chairman   1
## 20901                 sports                  figures   1
## 20902                  spots                  failure   1
## 20903                  sprag                 assembly   1
## 20904                  sprag                   clutch   1
## 20905                  spray                 gasoline   1
## 20906                sprayed                  machine   1
## 20907                 spread               destroying   1
## 20908                 spread                  rapidly   1
## 20909                 spring                 mountain   1
## 20910                 spring                      tab   1
## 20911                springs                  airport   1
## 20912                springs                departure   1
## 20913                springs                      due   1
## 20914                springs                municipal   1
## 20915                   spur                  adapter   1
## 20916                     sq                       ft   1
## 20917               squadron                  crashed   1
## 20918               squadron                      raf   1
## 20919                 squall             accompanying   1
## 20920                 square                  crashed   1
## 20921                 square                     foot   1
## 20922                 square                    miles   1
## 20923                 square                     peak   1
## 20924                 square              uncontained   1
## 20925                    sri                    lanka   1
## 20926                     ss                      t.l   1
## 20927                     st                  bernard   1
## 20928                     st                 boniface   1
## 20929                     st                   bridge   1
## 20930                     st                 george's   1
## 20931                     st                    james   1
## 20932                     st                     jean   1
## 20933                     st                     john   1
## 20934                     st                   john's   1
## 20935                     st                   joseph   1
## 20936                     st                 lawrence   1
## 20937                     st                   paul's   1
## 20938                     st                   thomas   1
## 20939              stability          characteristics   1
## 20940          stabilization                  mission   1
## 20941             stabilized                    final   1
## 20942             stabilized                 slightly   1
## 20943             stabilizer               attachment   1
## 20944             stabilizer              attachments   1
## 20945             stabilizer                    forty   1
## 20946             stabilizer                    icing   1
## 20947             stabilizer                     lost   1
## 20948             stabilizer                 resulted   1
## 20949             stabilizer                    screw   1
## 20950             stabilizer                   screws   1
## 20951             stabilizer                  setting   1
## 20952             stabilizer            spontaneously   1
## 20953             stabilizer                    stall   1
## 20954             stabilizer                weakening   1
## 20955            stabilizing                 maneuver   1
## 20956            stabilizing                   system   1
## 20957                 stable                   flight   1
## 20958                 stable                  stalled   1
## 20959              stablizer                  setting   1
## 20960                  staff                  crashed   1
## 20961                  stage                     disk   1
## 20962                  stage                       hp   1
## 20963                  stage                  shortly   1
## 20964                  stage                  turbine   1
## 20965                  stair                     door   1
## 20966                  stall               attributed   1
## 20967                  stall                  captain   1
## 20968                  stall                   caused   1
## 20969                  stall                   colgan   1
## 20970                  stall                condition   1
## 20971                  stall                     crew   1
## 20972                  stall              encountered   1
## 20973                  stall                  entered   1
## 20974                  stall            unfamiliarity   1
## 20975                stalled                      1.2   1
## 20976                stalled                       10   1
## 20977                stalled                       80   1
## 20978                stalled                contacted   1
## 20979                stalled                 crashing   1
## 20980                stalled                      due   1
## 20981                stalled                     fell   1
## 20982                stalled               helicopter   1
## 20983                stalled              immediately   1
## 20984                stalled                     lost   1
## 20985                stalled                   rolled   1
## 20986                stalled                  shortly   1
## 20987                stalled                   veered   1
## 20988                stalled                windshear   1
## 20989               stalling                     crew   1
## 20990               stalling                    short   1
## 20991               stalling                     test   1
## 20992               stallion               helicopter   1
## 20993                   stan                   rogers   1
## 20994             stanchions                extending   1
## 20995               standard                  actions   1
## 20996               standard                 callouts   1
## 20997               standard                   flight   1
## 20998               standard                  holding   1
## 20999               standard                     left   1
## 21000               standard              maintenance   1
## 21001               standard              operational   1
## 21002               standard              orientation   1
## 21003               standard                procedure   1
## 21004               standard               procedures   1
## 21005               standard                    route   1
## 21006               standard                   runway   1
## 21007               standard                     time   1
## 21008               standard               trajectory   1
## 21009              standards                    spark   1
## 21010                standby                 airspeed   1
## 21011                standby                  horizon   1
## 21012                standby                indicator   1
## 21013                standby              instruments   1
## 21014               standing                    heart   1
## 21015              standpipe                   cutoff   1
## 21016                stanley                    range   1
## 21017               stansted           overcorrection   1
## 21018              stapleton                  airport   1
## 21019                   star                    ariel   1
## 21020                   star                    audie   1
## 21021                   star                     dust   1
## 21022                   star                   leader   1
## 21023                   star                     ozzy   1
## 21024                   star                    tiger   1
## 21025                   star                     trek   1
## 21026              starboard                     boom   1
## 21027              starboard                   brakes   1
## 21028              starboard                     flap   1
## 21029              starboard                    front   1
## 21030              starboard                      jet   1
## 21031              starboard                    wheel   1
## 21032              starlings                  causing   1
## 21033                  start                   access   1
## 21034                  start                     fire   1
## 21035                started                   diving   1
## 21036                started                overshoot   1
## 21037                started                    pilot   1
## 21038                started              prematurely   1
## 21039                started                  shortly   1
## 21040                started              windmilling   1
## 21041                starter                 damaging   1
## 21042                starter                 selector   1
## 21043                starter                     unit   1
## 21044                starter                  warning   1
## 21045               starting                  control   1
## 21046               starting                  descent   1
## 21047               starting              evacuations   1
## 21048                 starts                     crew   1
## 21049              starvaion                     crew   1
## 21050             starvation                  brought   1
## 21051             starvation                   caused   1
## 21052             starvation           circumstantial   1
## 21053             starvation                  failure   1
## 21054             starvation          inattentiveness   1
## 21055             starvation            mismanagement   1
## 21056             starvation                    pilot   1
## 21057             starvation                     rear   1
## 21058             starvation                resulting   1
## 21059                 stated                  baggage   1
## 21060                 static                condition   1
## 21061                 static                   ground   1
## 21062                 static                     heat   1
## 21063                 static                   source   1
## 21064                 static                     wind   1
## 21065                 static                     wire   1
## 21066                station                      1.8   1
## 21067                station                        2   1
## 21068                station                      367   1
## 21069                station                    bound   1
## 21070                station                 building   1
## 21071                station                  crashed   1
## 21072                station                  failure   1
## 21073                station             insufficient   1
## 21074                station                 november   1
## 21075              station's                     main   1
## 21076                 stator                     vane   1
## 21077              stavropol                   russia   1
## 21078                   stay                    alive   1
## 21079                 stayed                    awake   1
## 21080                    ste                     mere   1
## 21081                 steady                condition   1
## 21082                 steady                     rain   1
## 21083                 steady                     rate   1
## 21084                  steam                   roller   1
## 21085              steamboat                  springs   1
## 21086                  steel                     bolt   1
## 21087                  steel                    cable   1
## 21088                  steel                  foundry   1
## 21089                  steel                 windsock   1
## 21090                  steep                       45   1
## 21091                  steep                 approach   1
## 21092                  steep                 attitude   1
## 21093                  steep                  banking   1
## 21094                  steep               embankment   1
## 21095                  steep                 forested   1
## 21096                  steep                  heavily   1
## 21097                  steep                 hillside   1
## 21098                  steep                  incline   1
## 21099                  steep                 mountain   1
## 21100                  steep                     rate   1
## 21101                  steep                   spiral   1
## 21102                  steep                starboard   1
## 21103                  steep                upsloping   1
## 21104                  steep                   wooded   1
## 21105                steeper                    angle   1
## 21106                steeply                   banked   1
## 21107                steeply                  classic   1
## 21108                steeply                   rising   1
## 21109                steered                 manually   1
## 21110               steering                 hardware   1
## 21111               steering                   system   1
## 21112               stehekin                    lodge   1
## 21113                  stene                  airport   1
## 21114                stephen                    baltz   1
## 21115                  stern                  section   1
## 21116                 stevie                   gaines   1
## 21117                 stevie                      ray   1
## 21118             stewardess                   exited   1
## 21119             stewardess                 survived   1
## 21120                stewart                       42   1
## 21121                  stick                 ailerons   1
## 21122                  stick                  forward   1
## 21123                  stick                   pusher   1
## 21124            stickshaker                  sounded   1
## 21125             stillwater                 oklahoma   1
## 21126                stinger                  missile   1
## 21127               stockley                columnist   1
## 21128                  stone                   canyon   1
## 21129                  stone                     slab   1
## 21130                  stong                    gusty   1
## 21131                   stop                  control   1
## 21132                   stop              immediately   1
## 21133                   stop                   leased   1
## 21134                   stop                   midway   1
## 21135                   stop                 position   1
## 21136                   stop               retracting   1
## 21137                   stop                 rotating   1
## 21138                stoping              performance   1
## 21139                stopped              functioning   1
## 21140                stopped                   safely   1
## 21141                stopped                    short   1
## 21142               stopping                 distance   1
## 21143                storage                    tanks   1
## 21144                storage                     yard   1
## 21145                 stored                   flight   1
## 21146                  stork                  crashed   1
## 21147                  storm                      200   1
## 21148                  storm                        8   1
## 21149                  storm                     alma   1
## 21150                  storm                    cells   1
## 21151                  storm                continued   1
## 21152                  storm                     crew   1
## 21153                  storm                excessive   1
## 21154                  storm                 exploded   1
## 21155                  storm                  failure   1
## 21156                  storm                    front   1
## 21157                  storm                   ground   1
## 21158                  storm                 ignition   1
## 21159                  storm                 kathleen   1
## 21160                  storm                     left   1
## 21161                  storm                   midair   1
## 21162                  storm                president   1
## 21163                  storm               separation   1
## 21164                  storm                     shot   1
## 21165                  storm                  stalled   1
## 21166                 storms              accompanied   1
## 21167                 stormy            weather.three   1
## 21168                  story                       70   1
## 21169                  story                  airport   1
## 21170                  story                 appeared   1
## 21171                  story                    house   1
## 21172                  stove                  carried   1
## 21173                 stowed                 position   1
## 21174               straight                     line   1
## 21175                 strait                    1mile   1
## 21176                strange               manoeuvres   1
## 21177              strategic                      air   1
## 21178            strathclyde                   police   1
## 21179         stratofortress                  bombers   1
## 21180             stravanger                  airport   1
## 21181                  stray                   bullet   1
## 21182                 stream                 entering   1
## 21183                 street                   struck   1
## 21184                 stress                  command   1
## 21185                 stress                condition   1
## 21186                 stress                corrosion   1
## 21187                 stress                   cracks   1
## 21188                 stress                      due   1
## 21189                 stress                   engine   1
## 21190                 stress                   limits   1
## 21191               stressed                 fatigued   1
## 21192               stressed               separating   1
## 21193               stresses              accompanied   1
## 21194               stresses                  imposed   1
## 21195               stresses                  induced   1
## 21196               stricken                     peru   1
## 21197                 strict                adherence   1
## 21198               strijdom                  airport   1
## 21199                 strike                     shot   1
## 21200                 strike                    trees   1
## 21201               striking                    birds   1
## 21202               striking               irrigation   1
## 21203               striking                 mountain   1
## 21204               striking              mountainous   1
## 21205               striking                    power   1
## 21206               striking                    radio   1
## 21207               striking                    rocks   1
## 21208                  strip                 appeared   1
## 21209                  strip                  cleared   1
## 21210                  strip                     left   1
## 21211                  strip                 operated   1
## 21212                  strip                returning   1
## 21213              strip.the                 probable   1
## 21214                 strobe                    light   1
## 21215                  stroh                     peak   1
## 21216              stromboli                  volcano   1
## 21217                 strong                      air   1
## 21218                 strong               crosswinds   1
## 21219                 strong             downdraughts   1
## 21220                 strong                    gusts   1
## 21221                 strong                    gusty   1
## 21222                 strong                 headwind   1
## 21223                 strong                  lateral   1
## 21224                 strong                  rapidly   1
## 21225                 strong                southerly   1
## 21226                 strong                    storm   1
## 21227                 strong                 tailwind   1
## 21228                 strong                tailwinds   1
## 21229                 strong                vibration   1
## 21230                 strong                     wind   1
## 21231               stronger                  locking   1
## 21232              strongest                   killed   1
## 21233               strongly                disagreed   1
## 21234               strongly                suspected   1
## 21235              stronorov                  william   1
## 21236            strructural                  failure   1
## 21237                 struck                   14,250   1
## 21238                 struck                    2,000   1
## 21239                 struck                    3,000   1
## 21240                 struck                  alfabia   1
## 21241                 struck                amountain   1
## 21242                 struck                 antennas   1
## 21243                 struck                    black   1
## 21244                 struck                     blue   1
## 21245                 struck                     boat   1
## 21246                 struck                     cars   1
## 21247                 struck                   cedrel   1
## 21248                 struck                    chena   1
## 21249                 struck                    cloud   1
## 21250                 struck                       el   1
## 21251                 struck               electrical   1
## 21252                 struck                     gray   1
## 21253                 struck                    heavy   1
## 21254                 struck                   huayna   1
## 21255                 struck                   itavia   1
## 21256                 struck                kumaraden   1
## 21257                 struck                     lash   1
## 21258                 struck                  moganik   1
## 21259                 struck                 mountain   1
## 21260                 struck              mountainous   1
## 21261                 struck                obstacles   1
## 21262                 struck                    pilot   1
## 21263                 struck                    putre   1
## 21264                 struck                   rising   1
## 21265                 struck                   runway   1
## 21266                 struck                    silla   1
## 21267                 struck                   square   1
## 21268                 struck                    stroh   1
## 21269                 struck                  taquari   1
## 21270                 struck                   timika   1
## 21271                 struck                  utility   1
## 21272                 struck                 vehicles   1
## 21273                 struck                    waves   1
## 21274                 struck                    wires   1
## 21275             structural             deficiencies   1
## 21276             structural                   design   1
## 21277             structural           disintegration   1
## 21278             structural                 elements   1
## 21279             structural                  fatigue   1
## 21280             structural                      ice   1
## 21281             structural                    joint   1
## 21282             structural                stiffness   1
## 21283             structural                   stress   1
## 21284             structural                  takeoff   1
## 21285           structurally                    break   1
## 21286              structure                  beneath   1
## 21287              structure                  causing   1
## 21288              structure                  crashed   1
## 21289              structure                   losing   1
## 21290              structure             shortcomings   1
## 21291             structures                 skidding   1
## 21292             structures                   trucks   1
## 21293               struggle                   ensued   1
## 21294                  stuck                  landing   1
## 21295                  stuck                       st   1
## 21296                  stuck                     tree   1
## 21297                  stuck                    trees   1
## 21298                   stud             installation   1
## 21299                student                     died   1
## 21300                student                    pilot   1
## 21301                student                   pilots   1
## 21302                student              pilots.were   1
## 21303               students                   killed   1
## 21304               students                returning   1
## 21305               students                   taking   1
## 21306                 stukel                 mountain   1
## 21307                     su                       15   1
## 21308                     su                       24   1
## 21309                     su                       76   1
## 21310            subdivision               scattering   1
## 21311                  subic                      bay   1
## 21312              submarine                      pen   1
## 21313             submarines                flight447   1
## 21314              submerged                   object   1
## 21315             subsequent                      atc   1
## 21316             subsequent                  attempt   1
## 21317             subsequent                attempted   1
## 21318             subsequent                  belated   1
## 21319             subsequent                    check   1
## 21320             subsequent               controlled   1
## 21321             subsequent                    crash   1
## 21322             subsequent               discussion   1
## 21323             subsequent           disorientation   1
## 21324             subsequent              distraction   1
## 21325             subsequent                diversion   1
## 21326             subsequent               feathering   1
## 21327             subsequent               inadequate   1
## 21328             subsequent               management   1
## 21329             subsequent               mechanical   1
## 21330             subsequent                   search   1
## 21331             subsequent                  spatial   1
## 21332             subsequent                    stall   1
## 21333             subsequent                 stalling   1
## 21334             subsequent               structural   1
## 21335             subsequent               transition   1
## 21336             subsequent              unjustified   1
## 21337           subsequently                  bounced   1
## 21338           subsequently                  cleared   1
## 21339           subsequently              compromised   1
## 21340           subsequently                     died   1
## 21341           subsequently                   filled   1
## 21342           subsequently                    flown   1
## 21343           subsequently                impacting   1
## 21344           subsequently                 received   1
## 21345           subsequently                 revealed   1
## 21346           subsequently                   struck   1
## 21347             subsiquent                    stall   1
## 21348            substandard                 hardness   1
## 21349            substantial                   damage   1
## 21350            substantial                    earth   1
## 21351            substantial                momentary   1
## 21352          substantially                      aft   1
## 21353          substantially                  damaged   1
## 21354                 suburb                 crashing   1
## 21355               suburban                      los   1
## 21356                success                  fighter   1
## 21357                success                  koepcke   1
## 21358             successful                 approach   1
## 21359             successful                 ditching   1
## 21360             successful                emergency   1
## 21361             successful                   engine   1
## 21362             successful                 recovery   1
## 21363             successful                 relights   1
## 21364             successful                   single   1
## 21365           successfully              communicate   1
## 21366           successfully                feathered   1
## 21367           successfully                    relit   1
## 21368           successfully                   remedy   1
## 21369             successive                  impacts   1
## 21370                succoth                     glen   1
## 21371                  sucre                       18   1
## 21372                  sucre                  airport   1
## 21373                  sudan                  airport   1
## 21374                  sudan              authorities   1
## 21375                  sudan                  crashed   1
## 21376                sudan's                   deputy   1
## 21377               sudanese                ministers   1
## 21378               sudanese                 soldiers   1
## 21379                 sudden                avoidance   1
## 21380                 sudden                  cardiac   1
## 21381                 sudden                     dive   1
## 21382                 sudden                     drop   1
## 21383                 sudden                emergency   1
## 21384                 sudden                   engine   1
## 21385                 sudden                  failure   1
## 21386                 sudden                     gust   1
## 21387                 sudden           incapacitation   1
## 21388                 sudden                     nose   1
## 21389                 sudden                    pitch   1
## 21390                 sudden               retraction   1
## 21391                 sudden                 reversal   1
## 21392                 sudden                 stopping   1
## 21393                 sudden                     tail   1
## 21394                 sudden              unexplained   1
## 21395               suddenly                   banked   1
## 21396               suddenly                collapsed   1
## 21397               suddenly              decelerated   1
## 21398               suddenly                deflected   1
## 21399               suddenly                   dipped   1
## 21400               suddenly                 exploded   1
## 21401               suddenly                     left   1
## 21402               suddenly                     lost   1
## 21403               suddenly                     nose   1
## 21404               suddenly                nosedived   1
## 21405               suddenly                  rolling   1
## 21406               suddenly                    yawed   1
## 21407               suffered                   broken   1
## 21408               suffered                  control   1
## 21409               suffered                downdraft   1
## 21410               suffered                  landing   1
## 21411               suffered                    minor   1
## 21412               suffered                 multiple   1
## 21413               suffered                    rapid   1
## 21414               suffered               separation   1
## 21415               suffered                sunstroke   1
## 21416              suffering                   engine   1
## 21417              suffering                  spatial   1
## 21418             sufficient                      air   1
## 21419             sufficient                     drag   1
## 21420             sufficient                  engines   1
## 21421             sufficient                 evidence   1
## 21422             sufficient                     fuel   1
## 21423             sufficient                   height   1
## 21424             sufficient                magnitude   1
## 21425             sufficient                oversight   1
## 21426             sufficient                     push   1
## 21427             sufficient                 quantity   1
## 21428             sufficient                     rate   1
## 21429             sufficient              supervision   1
## 21430             sufficient                vigilance   1
## 21431            suffiecient                 altitude   1
## 21432              sugarcane                    field   1
## 21433               suggests                 strongly   1
## 21434                suicide                detonated   1
## 21435               suitable                   forced   1
## 21436               suitable                 location   1
## 21437                 sukhoi                officials   1
## 21438               sulaiman                      afb   1
## 21439               sumatran                   jungle   1
## 21440                sumbawa                   island   1
## 21441               sumburgh                    rotor   1
## 21442                 summer                   beaver   1
## 21443                 summer                    homes   1
## 21444                 summer                 training   1
## 21445                 summit                  bounced   1
## 21446                 summit                premature   1
## 21447                 summit                resulting   1
## 21448                   sump                     tank   1
## 21449                    sun                    glare   1
## 21450               sundance              helicopters   1
## 21451               sundance                resources   1
## 21452             sundance's                      air   1
## 21453                   sunk                  crashed   1
## 21454                   sunk               immedately   1
## 21455                   sunk              immediately   1
## 21456                  sunol                    ridge   1
## 21457             sunshine's              maintenance   1
## 21458              sunstroke                     lost   1
## 21459                  super                      cub   1
## 21460                  super                 speedway   1
## 21461            supercooled                    cloud   1
## 21462            superficial               mechanical   1
## 21463               superior                 judgment   1
## 21464            supertanker                  sighted   1
## 21465            supervision                     poor   1
## 21466             supplement             navigational   1
## 21467               supplied                     fuel   1
## 21468               supplies                  crashed   1
## 21469                 supply              contractors   1
## 21470                 supply             contributing   1
## 21471                 supply                 dropping   1
## 21472                 supply                     fuel   1
## 21473                 supply               subsequent   1
## 21474                 supply                     tank   1
## 21475              supplying                hydraulic   1
## 21476                support                     beam   1
## 21477                support                     link   1
## 21478                support                structure   1
## 21479             supporting                 aircraft   1
## 21480             suppressed                  medical   1
## 21481             suppressed                  reports   1
## 21482            suppression                   system   1
## 21483                    sur                    seine   1
## 21484               surabaya                  airport   1
## 21485                  surat                    thani   1
## 21486                surface                 abnormal   1
## 21487                surface             contributing   1
## 21488                surface                deflected   1
## 21489                surface                      due   1
## 21490                surface                      ice   1
## 21491                surface                  leading   1
## 21492                surface                      pit   1
## 21493                surface               visibility   1
## 21494               surfaces                      due   1
## 21495            surrounding                   forest   1
## 21496            surrounding                  jackson   1
## 21497            surrounding             neighborhood   1
## 21498            surrounding              obstructing   1
## 21499                 survey                  fllight   1
## 21500               surveyor                 mountain   1
## 21501               survived                 aircraft   1
## 21502               survived                      atc   1
## 21503               survived                     fire   1
## 21504               survived                    forty   1
## 21505               survived                     fuel   1
## 21506               survived                including   1
## 21507               survived            investigation   1
## 21508               survived                     shot   1
## 21509              survivers                  crashed   1
## 21510              surviving                passenger   1
## 21511              surviving                  witness   1
## 21512               survivor                   aboard   1
## 21513               survivor             accumulation   1
## 21514               survivor                  failure   1
## 21515               survivor                  roberto   1
## 21516               survivor                    slats   1
## 21517               survivor                succumbed   1
## 21518              survivors                        2   1
## 21519              survivors                 collided   1
## 21520              survivors                 resorted   1
## 21521                  susan                    saint   1
## 21522                susitna                   valley   1
## 21523              suspected                     drug   1
## 21524              suspected                   gunmen   1
## 21525              suspected                      hit   1
## 21526              suspected                     leak   1
## 21527              suspected               procedural   1
## 21528              suspected                windshear   1
## 21529              suspended                      due   1
## 21530              suspended                  landing   1
## 21531                sustain                   flight   1
## 21532              sustained               controlled   1
## 21533              sustained                   flight   1
## 21534              sustained                    minor   1
## 21535              sustained               structural   1
## 21536             sverdlovsk                   russia   1
## 21537                 sverre                   viking   1
## 21538                  sveti                      duh   1
## 21539             swachplate                 assembly   1
## 21540                  swamp                     800m   1
## 21541                  swamp                   broken   1
## 21542                  swamp               collapsing   1
## 21543                  swamp                   coming   1
## 21544                  swamp                 possilbe   1
## 21545                  swamp                    short   1
## 21546                  swamp                 wreckage   1
## 21547                 swampy                 forested   1
## 21548                 swampy                  terrain   1
## 21549                   swan                   midair   1
## 21550             sweden.the                  captain   1
## 21551                swedish                    coast   1
## 21552                swedish                    crown   1
## 21553                swedish                passenger   1
## 21554                swerved                violently   1
## 21555               swimming                passenger   1
## 21556               swimming               passengers   1
## 21557                  swiss                  germany   1
## 21558                 switch                  causing   1
## 21559                 switch                   failed   1
## 21560                 switch                    valve   1
## 21561            switzerland                mountains   1
## 21562                 sydney                australia   1
## 21563                 sydney                   london   1
## 21564               symbolic                surrender   1
## 21565                 system                        5   1
## 21566                 system                       90   1
## 21567                 system                activated   1
## 21568                 system                    alarm   1
## 21569                 system                    alert   1
## 21570                 system                 approach   1
## 21571                 system                    broke   1
## 21572                 system               compounded   1
## 21573                 system                 decision   1
## 21574                 system                 degraded   1
## 21575                 system               distracted   1
## 21576                 system                    error   1
## 21577                 system               eventually   1
## 21578                 system                   flange   1
## 21579                 system                    forty   1
## 21580                 system                frequency   1
## 21581                 system                    gross   1
## 21582                 system                      hit   1
## 21583                 system              immediately   1
## 21584                 system               inadequacy   1
## 21585                 system                including   1
## 21586                 system                incorrect   1
## 21587                 system                   issued   1
## 21588                 system                jackscrew   1
## 21589                 system                     lack   1
## 21590                 system                  leading   1
## 21591                 system                  limited   1
## 21592                 system              malfunction   1
## 21593                 system            malfunctioned   1
## 21594                 system               management   1
## 21595                 system                   melted   1
## 21596                 system                  melting   1
## 21597                 system                   midair   1
## 21598                 system                     msaw   1
## 21599                 system                   naming   1
## 21600                 system                permitted   1
## 21601                 system                    pilot   1
## 21602                 system                processor   1
## 21603                 system             recklessness   1
## 21604                 system                     tcas   1
## 21605                 system              temperature   1
## 21606                 system                  warning   1
## 21607                 system                 warnings   1
## 21608                 system                   wiring   1
## 21609                systems                   aboard   1
## 21610                systems                   caused   1
## 21611                systems              culminating   1
## 21612                systems                      due   1
## 21613                systems               inadequate   1
## 21614                systems                incorrect   1
## 21615                systems                resulting   1
## 21616                    t.l                   lenzen   1
## 21617                     ta                   fertas   1
## 21618                     ta                     khli   1
## 21619                    tab               attachment   1
## 21620                    tab                   caused   1
## 21621                    tab                 controls   1
## 21622                    tab                separated   1
## 21623                    tab                   system   1
## 21624                    tab                     unit   1
## 21625                  table                   spring   1
## 21626                  table                      top   1
## 21627                  tabor                     peak   1
## 21628                   tabs             contributing   1
## 21629              tachikawa                      air   1
## 21630                 tacoma                  airport   1
## 21631                tadeusz               kosciuszko   1
## 21632                taesa's                operation   1
## 21633                 tagbao                 mountain   1
## 21634                  tagus                    river   1
## 21635               taigetos                mountains   1
## 21636                   tail                 assembly   1
## 21637                   tail                     boom   1
## 21638                   tail                  causing   1
## 21639                   tail                     cone   1
## 21640                   tail                  crashed   1
## 21641                   tail                     fell   1
## 21642                   tail                  leading   1
## 21643                   tail                   linked   1
## 21644                   tail                separated   1
## 21645                   tail                 severing   1
## 21646                   tail                     spin   1
## 21647                   tail                 spinning   1
## 21648                   tail                   strike   1
## 21649                 tailed                     hawk   1
## 21650              tailplane                  failure   1
## 21651              tailplane                   midair   1
## 21652              tailplane                 official   1
## 21653              tailplane                  setting   1
## 21654              tailplane                     spar   1
## 21655               tailwind                component   1
## 21656               tailwind                condition   1
## 21657               tailwind                  stalled   1
## 21658                 taipei                deviation   1
## 21659               taipei's            international   1
## 21660                 taiwan                   strait   1
## 21661              tajumbina                     peak   1
## 21662                    tak                  airport   1
## 21663                takeoff                      2.5   1
## 21664                takeoff                       20   1
## 21665                takeoff                       40   1
## 21666                takeoff                 aircraft   1
## 21667                takeoff                 appeared   1
## 21668                takeoff                binstockã   1
## 21669                takeoff                     blew   1
## 21670                takeoff                    brake   1
## 21671                takeoff                    broke   1
## 21672                takeoff             calculations   1
## 21673                takeoff                    cargo   1
## 21674                takeoff                     cart   1
## 21675                takeoff                checklist   1
## 21676                takeoff                  climbed   1
## 21677                takeoff                    close   1
## 21678                takeoff                 collided   1
## 21679                takeoff           configueration   1
## 21680                takeoff             contaminated   1
## 21681                takeoff                  control   1
## 21682                takeoff                  coupled   1
## 21683                takeoff                 crossing   1
## 21684                takeoff                 cruising   1
## 21685                takeoff                 decision   1
## 21686                takeoff                   design   1
## 21687                takeoff               detonation   1
## 21688                takeoff                deviation   1
## 21689                takeoff                  ditched   1
## 21690                takeoff                     dove   1
## 21691                takeoff                   duties   1
## 21692                takeoff                 elevator   1
## 21693                takeoff                      epr   1
## 21694                takeoff                   forced   1
## 21695                takeoff                 improper   1
## 21696                takeoff                 inverted   1
## 21697                takeoff                      led   1
## 21698                takeoff                     loss   1
## 21699                takeoff           miscalculation   1
## 21700                takeoff                 overshot   1
## 21701                takeoff               overweight   1
## 21702                takeoff                  partial   1
## 21703                takeoff               permission   1
## 21704                takeoff                 personal   1
## 21705                takeoff                    pilot   1
## 21706                takeoff                    power   1
## 21707                takeoff                    prior   1
## 21708                takeoff                procedure   1
## 21709                takeoff               procedures   1
## 21710                takeoff                 reaching   1
## 21711                takeoff                reference   1
## 21712                takeoff                resulting   1
## 21713                takeoff                   rolled   1
## 21714                takeoff                     rose   1
## 21715                takeoff                 rotation   1
## 21716                takeoff                   safety   1
## 21717                takeoff                 selected   1
## 21718                takeoff                 sequence   1
## 21719                takeoff                  settled   1
## 21720                takeoff                   shiraz   1
## 21721                takeoff                  shortly   1
## 21722                takeoff                   singer   1
## 21723                takeoff                    speed   1
## 21724                takeoff                    stage   1
## 21725                takeoff                 striking   1
## 21726                takeoff                  takeoff   1
## 21727                takeoff                technique   1
## 21728                takeoff           underestimated   1
## 21729                takeoff                  warning   1
## 21730                takeoff                wladyslaw   1
## 21731                 taking                 aircraft   1
## 21732                 taking                 pictures   1
## 21733                 takoff                   remote   1
## 21734                  talas                     crew   1
## 21735                taliban               insurgents   1
## 21736               talisman                       ii   1
## 21737          talkativeness              distracting   1
## 21738                 talked                   waylon   1
## 21739              talkeetna                   alaska   1
## 21740               talkeoff                    nosed   1
## 21741                   tall                 helideck   1
## 21742              talladega                    super   1
## 21743                tallinn                      atc   1
## 21744                 talodi                      air   1
## 21745                talsula                    pilot   1
## 21746                 tamara                   drasin   1
## 21747               tamatave                    cargo   1
## 21748                   tame                 airlines   1
## 21749                   tame                  crashed   1
## 21750                   tame                  ecuador   1
## 21751                 tamgas                 mountain   1
## 21752                  tamil                    eelam   1
## 21753                  tamil              separatists   1
## 21754                    tan                      son   1
## 21755               tanazawa                       28   1
## 21756                 tandem                  crashed   1
## 21757               tangcong                     vaca   1
## 21758                tangier                   reason   1
## 21759                 tangma                 district   1
## 21760                 tangok                 mountain   1
## 21761                   tank                       18   1
## 21762                   tank                   access   1
## 21763                   tank                breaching   1
## 21764                   tank                  crashed   1
## 21765                   tank               eventually   1
## 21766                   tank                 expected   1
## 21767                   tank                exploding   1
## 21768                   tank                explosion   1
## 21769                   tank                    float   1
## 21770                   tank                 igniting   1
## 21771                   tank                 improper   1
## 21772                   tank               proceeding   1
## 21773                   tank                reservoir   1
## 21774                   tank               reservoirs   1
## 21775                   tank                  running   1
## 21776                   tank                 ruptured   1
## 21777                   tank                     tore   1
## 21778                   tank                   vapors   1
## 21779                   tank                     vent   1
## 21780                  tanks                  crashed   1
## 21781                  tanks                      due   1
## 21782                  tanks                 exploded   1
## 21783                  tanks                     lack   1
## 21784                  tanks                 overshot   1
## 21785                  tanks                   pilots   1
## 21786                  tanks                   poured   1
## 21787               tanzania                   border   1
## 21788               tapacari                       23   1
## 21789                tapecua                mountains   1
## 21790                taquari                     hill   1
## 21791                 tarbat                     ness   1
## 21792                 target                 airspeed   1
## 21793                 target                 appeared   1
## 21794                 tarmac             destabilized   1
## 21795                 tartar                   strait   1
## 21796                  tasks                     lift   1
## 21797              tatarstan                      air   1
## 21798                  tatra                 mountain   1
## 21799                 taught                   amelia   1
## 21800                   taws                 warnings   1
## 21801                   taxi                checklist   1
## 21802                   taxi                clearance   1
## 21803                   taxi              encountered   1
## 21804                   taxi                   flight   1
## 21805                   taxi                    strip   1
## 21806                 taxied                     half   1
## 21807                taxiing                      due   1
## 21808                 taxing                 accident   1
## 21809                 taxing                  crashed   1
## 21810                 taxing                 ruptured   1
## 21811                 taxing                      tin   1
## 21812                taxiway                       n1   1
## 21813                taxiway                       np   1
## 21814                taxiway                  turnout   1
## 21815                 taylor                   killed   1
## 21816                     tc                       62   1
## 21817                   tcas                     told   1
## 21818                    tco                 colombia   1
## 21819                     te                    plane   1
## 21820                    tea                  crashed   1
## 21821                   team                       15   1
## 21822                   team                 colorful   1
## 21823                   team                  crashed   1
## 21824                   team              disappeared   1
## 21825                   team                including   1
## 21826                   team                pakhtakor   1
## 21827                   team                    pilot   1
## 21828                  teams                    found   1
## 21829            teaubernard                      air   1
## 21830                techint             construction   1
## 21831              technical              compartment   1
## 21832              technical               facilities   1
## 21833              technical                    fault   1
## 21834              technical              malfunction   1
## 21835            technicians                   failed   1
## 21836              technique                displayed   1
## 21837              technique                 employed   1
## 21838              technique                   faulty   1
## 21839              technique                resulting   1
## 21840             techniques                 training   1
## 21841                  techo                  airport   1
## 21842                    ted                  stevens   1
## 21843                  teddy                roosevelt   1
## 21844               teenager                 survived   1
## 21845              tehachapi                mountains   1
## 21846                 tehran                       11   1
## 21847                 tehran                transport   1
## 21848                 tehran                   twenty   1
## 21849          tejãƒâ­condor                  factory   1
## 21850                    tel                     aviv   1
## 21851      telecommunication                    tower   1
## 21852              telegraph                    poles   1
## 21853              telegraph                    tower   1
## 21854            telegraphic                   cables   1
## 21855              telephone                     line   1
## 21856              telephone                     pole   1
## 21857               teletype                operators   1
## 21858            temperature                   sensor   1
## 21859           temperatures             sufficiently   1
## 21860                tempest                 fighters   1
## 21861            temporarily                 confused   1
## 21862            temporarily                paralyzed   1
## 21863              temporary                 blinding   1
## 21864              temporary                blindness   1
## 21865              temporary         unresponsiveness   1
## 21866                    ten                   aboard   1
## 21867                    ten                     bank   1
## 21868                    ten                     died   1
## 21869                    ten                    hours   1
## 21870                    ten               kilometers   1
## 21871                    ten                    miles   1
## 21872                    ten                   people   1
## 21873                    ten                      top   1
## 21874              tennessee                   nascar   1
## 21875                tensile                 strength   1
## 21876                tension                    lines   1
## 21877                tenzing                  airport   1
## 21878                   term                  suicide   1
## 21879               terminal                  weather   1
## 21880                terrain                    1,500   1
## 21881                terrain                       12   1
## 21882                terrain                       15   1
## 21883                terrain                        3   1
## 21884                terrain                       50   1
## 21885                terrain                       53   1
## 21886                terrain                       75   1
## 21887                terrain                      9.7   1
## 21888                terrain                 accident   1
## 21889                terrain                 aircraft   1
## 21890                terrain            approximately   1
## 21891                terrain                awareness   1
## 21892                terrain                    based   1
## 21893                terrain                    broke   1
## 21894                terrain                 collapse   1
## 21895                terrain              complicated   1
## 21896                terrain                condition   1
## 21897                terrain                controled   1
## 21898                terrain                difficult   1
## 21899                terrain               disappeard   1
## 21900                terrain                     east   1
## 21901                terrain                       en   1
## 21902                terrain              environment   1
## 21903                terrain                  failure   1
## 21904                terrain                      hit   1
## 21905                terrain                 improper   1
## 21906                terrain              insufficent   1
## 21907                terrain                  killing   1
## 21908                terrain                  located   1
## 21909                terrain                     loss   1
## 21910                terrain                   marked   1
## 21911                terrain                   midair   1
## 21912                terrain                 mountain   1
## 21913                terrain                    north   1
## 21914                terrain                 obscured   1
## 21915                terrain                    plane   1
## 21916                terrain                premature   1
## 21917                terrain                 rejected   1
## 21918                terrain                  spatial   1
## 21919                terrain                   struck   1
## 21920                terrain                 thirteen   1
## 21921                terrain                 vanished   1
## 21922                terrain                  warning   1
## 21923                terrain                 warnings   1
## 21924             terrifying                   series   1
## 21925            territorial                   waters   1
## 21926              territory                alexander   1
## 21927              territory                  crashed   1
## 21928              territory                      due   1
## 21929              terrorism                 exercise   1
## 21930              terrorist                      act   1
## 21931              terrorist                    proof   1
## 21932             terrorists                 musician   1
## 21933                   test                  flights   1
## 21934                   test                   pilots   1
## 21935                   test                  program   1
## 21936                   test                  slowing   1
## 21937                 tested                 positive   1
## 21938                testing              inspections   1
## 21939                testing                 revealed   1
## 21940                   tete                       de   1
## 21941              texarkana                    heavy   1
## 21942                  texas                     flew   1
## 21943                  texas                  senator   1
## 21944                   thai                      air   1
## 21945                   thai                   police   1
## 21946                  thani                  airport   1
## 21947               thatched                     roof   1
## 21948             theatrical               impresario   1
## 21949             thelanding                 approach   1
## 21950               theories                  suggest   1
## 21951                 thereã                        â   1
## 21952                thermal                  fatigue   1
## 21953                thermal               insulation   1
## 21954                thermal                    metal   1
## 21955                  thick                    black   1
## 21956                  thick                   formed   1
## 21957                  thick                   jungle   1
## 21958                thickly                   wooded   1
## 21959                   thin                    layer   1
## 21960               thirteen                   deaths   1
## 21961                   thoa                    river   1
## 21962                 thomas                     doty   1
## 21963                 thomas                   mickey   1
## 21964               thorburn                       36   1
## 21965              thormanby                   island   1
## 21966               thornton                       34   1
## 21967               thousand                   pounds   1
## 21968                 thread                     loss   1
## 21969             threshhold                   whille   1
## 21970              threshold                  bounced   1
## 21971              threshold                  climbed   1
## 21972              threshold                 collided   1
## 21973              threshold              experienced   1
## 21974              threshold                    icing   1
## 21975              threshold                     left   1
## 21976              threshold                    metal   1
## 21977              threshold           nonfunctioning   1
## 21978              threshold                    pilot   1
## 21979              threshold                  sixteen   1
## 21980              threshold                     slid   1
## 21981              threshold                     tore   1
## 21982                  threw                 grenades   1
## 21983               throttle                    cable   1
## 21984               throttle                 increase   1
## 21985               throttle                   jammed   1
## 21986               throttle                    meant   1
## 21987               throttle                   slowly   1
## 21988              throttles                    prior   1
## 21989                 thrust                asymmetry   1
## 21990                 thrust                    brake   1
## 21991                 thrust                condition   1
## 21992                 thrust               decreasing   1
## 21993                 thrust                delivered   1
## 21994                 thrust                imbalance   1
## 21995                 thrust                 increase   1
## 21996                 thrust                isolation   1
## 21997                 thrust                    lever   1
## 21998                 thrust                   levers   1
## 21999                 thrust               management   1
## 22000                 thrust                 reversal   1
## 22001                 thrust                  reverse   1
## 22002                 thrust                 reverses   1
## 22003                 thrust                 steering   1
## 22004                 thrust            symmetrically   1
## 22005              thrusting                  forward   1
## 22006                  thump                    smoke   1
## 22007                thunder                      bay   1
## 22008                thunder                    storm   1
## 22009           thunderstorm                       29   1
## 22010           thunderstorm                       50   1
## 22011           thunderstorm                   caused   1
## 22012           thunderstorm               conditions   1
## 22013           thunderstorm                continued   1
## 22014           thunderstorm                     crew   1
## 22015           thunderstorm               downdrafts   1
## 22016           thunderstorm                  failure   1
## 22017           thunderstorm                    icing   1
## 22018           thunderstorm                     lack   1
## 22019           thunderstorm                     loss   1
## 22020           thunderstorm                  massive   1
## 22021           thunderstorm                   pilots   1
## 22022           thunderstorm                   struck   1
## 22023           thunderstorm             subsequently   1
## 22024           thunderstorm                      ten   1
## 22025           thunderstorm                 wreckage   1
## 22026          thunderstorms                continued   1
## 22027          thunderstorms                 critical   1
## 22028          thunderstorms                  initial   1
## 22029          thunderstorms                     lost   1
## 22030          thunderstorms                operating   1
## 22031          thunderstorms                 powerful   1
## 22032          thunderstorms                     rain   1
## 22033          thunderstorms                    short   1
## 22034          thunderstorms                   triple   1
## 22035          thundrestorms                    heavy   1
## 22036                thurman                   munson   1
## 22037              thutmosis                      iii   1
## 22038                  tibet                      bad   1
## 22039                  tidal                     flat   1
## 22040                  tidal                    flats   1
## 22041                  tidal                    swamp   1
## 22042                  tidal                 waterway   1
## 22043                   tide                  failure   1
## 22044                tiedown                   straps   1
## 22045                 tierra                   blanca   1
## 22046                 tigers                confessed   1
## 22047                tighten                   torque   1
## 22048                  tigre                 mountain   1
## 22049                  tikal                  airport   1
## 22050                   till                  montãƒâ   1
## 22051                   till                   orange   1
## 22052               timbered                  terrain   1
## 22053                   time                  adverse   1
## 22054                   time                      atc   1
## 22055                   time                     bomb   1
## 22056                   time                 clipping   1
## 22057                   time                contained   1
## 22058                   time                 declared   1
## 22059                   time                      due   1
## 22060                   time              festivities   1
## 22061                   time                   flying   1
## 22062                   time                   height   1
## 22063                   time                      hit   1
## 22064                   time               microburst   1
## 22065                   time                 military   1
## 22066                   time                 multiple   1
## 22067                   time               overloaded   1
## 22068                   time                  playing   1
## 22069                   time              regulations   1
## 22070                   time                    smoke   1
## 22071                   time                   veered   1
## 22072                   time                    zones   1
## 22073             time.after                 aborting   1
## 22074                 timely                abandoned   1
## 22075                 timely                   action   1
## 22076                 timely            airworthiness   1
## 22077                 timely               assessment   1
## 22078                 timely                     base   1
## 22079                 timely                departure   1
## 22080                 timely                execution   1
## 22081                 timely                 informed   1
## 22082                 timely             intervention   1
## 22083                 timely                 issuance   1
## 22084                  times                  crashed   1
## 22085                  times                  shortly   1
## 22086                 timika                     peak   1
## 22087                 timing                   device   1
## 22088                 timing                mechanism   1
## 22089                    tin                      ore   1
## 22090                    tin              preperation   1
## 22091                 tintic                 plymouth   1
## 22092                    tip            approximately   1
## 22093                    tip                  brushed   1
## 22094                    tip                  dragged   1
## 22095                    tip                    float   1
## 22096                   tips                  forward   1
## 22097                    tir                   square   1
## 22098                 tirana                  albania   1
## 22099                   tire               detonation   1
## 22100                   tire                   failed   1
## 22101                   tire                 failures   1
## 22102                   tire                 nitrogen   1
## 22103                   tire                   twenty   1
## 22104                  tires                     blew   1
## 22105                  tires            disintegrated   1
## 22106                 titian             overspeeding   1
## 22107               titograd                  airport   1
## 22108                    tnt                explosive   1
## 22109                  tobin                      300   1
## 22110               tocument                  airport   1
## 22111               tocuyito                 mountain   1
## 22112                   todd                       49   1
## 22113                 toilet              compartment   1
## 22114                  toisa                  mariner   1
## 22115                  tokyo               exhibition   1
## 22116                  tokyo            international   1
## 22117                  tokyo                   narita   1
## 22118                   told               passengers   1
## 22119                   told                     west   1
## 22120                 toledo                  express   1
## 22121                 toledo               washington   1
## 22122                 tolman                     peak   1
## 22123                    tom                 stockley   1
## 22124                 tomãƒâ                   island   1
## 22125                  tommy                   allsup   1
## 22126                    ton                    plane   1
## 22127                   tona                northeast   1
## 22128              toncontin                  airport   1
## 22129                   tony                     lema   1
## 22130                   tony                 richards   1
## 22131                   tool                     mark   1
## 22132                    top            approximately   1
## 22133                    top                      atc   1
## 22134                    top                  landing   1
## 22135                    top                 mountain   1
## 22136                   tops                   banked   1
## 22137                   tops                    short   1
## 22138                   tops                    trees   1
## 22139                  torch                   effect   1
## 22140                   tore                     free   1
## 22141                   tore                    loose   1
## 22142                 torino                   soccer   1
## 22143                tornado                     tore   1
## 22144                   toro                   marine   1
## 22145                 torque                    limit   1
## 22146                 torque                   piston   1
## 22147                 torque                     tube   1
## 22148             torrecilla                   lagoon   1
## 22149             torrential                     rain   1
## 22150             torrential                    rains   1
## 22151                 torres                  plateau   1
## 22152             toruuguero                   lagoon   1
## 22153                  total                      103   1
## 22154                  total                     acme   1
## 22155                  total                 darkness   1
## 22156                  total               electrical   1
## 22157                  total                  failure   1
## 22158                  total                    hours   1
## 22159                  total                hydraulic   1
## 22160                  total                   linhas   1
## 22161                  total                    stall   1
## 22162               totaling                  105,000   1
## 22163               totaling                  125,000   1
## 22164              totkomlos              bekessamson   1
## 22165              touchdown                      900   1
## 22166              touchdown                  causing   1
## 22167              touchdown                  fatigue   1
## 22168              touchdown                  heavily   1
## 22169              touchdown                 occurred   1
## 22170              touchdown                 probable   1
## 22171              touchdown                  unknown   1
## 22172                 toulon                   france   1
## 22173                   tour                  crashed   1
## 22174                   tour                  group's   1
## 22175                   tour                    guide   1
## 22176                   tour               helicopter   1
## 22177                   tour               operations   1
## 22178                   tour                 operator   1
## 22179                   tour                   struck   1
## 22180                touring               helicopter   1
## 22181                tourist                excursion   1
## 22182                tourist                    guide   1
## 22183               tourists                 possibly   1
## 22184                  towel                      bin   1
## 22185                  towel               receptical   1
## 22186                  tower                       10   1
## 22187                  tower                       30   1
## 22188                  tower                       66   1
## 22189                  tower                 breaking   1
## 22190                  tower                  cleared   1
## 22191                  tower            communication   1
## 22192                  tower               controller   1
## 22193                  tower                     flew   1
## 22194                  tower                frequency   1
## 22195                  tower                  killing   1
## 22196                  tower                  located   1
## 22197                  tower                  noticed   1
## 22198                  tower                 operator   1
## 22199                  tower                operators   1
## 22200                  tower                    pilot   1
## 22201                  tower                 received   1
## 22202                  tower                    short   1
## 22203                  tower                    tapes   1
## 22204                  tower                 thirteen   1
## 22205                  tower                     told   1
## 22206                  tower                   visual   1
## 22207                  tower                     wire   1
## 22208                 towers                   crew's   1
## 22209             towers.the             flightcrew's   1
## 22210                   town                    close   1
## 22211                   town                   lights   1
## 22212                   town                       wv   1
## 22213               townsend               considered   1
## 22214                  toxic                    fumes   1
## 22215                trabzon                  crashed   1
## 22216                trabzon                   turkey   1
## 22217                  trace                  crashed   1
## 22218                  trace                   routes   1
## 22219                  track                   change   1
## 22220                  track                 directly   1
## 22221                  track                   planes   1
## 22222                  track                 rejected   1
## 22223                tracker                     ball   1
## 22224                 tracon               monitoring   1
## 22225               traction                 altitude   1
## 22226                tractor              disappeared   1
## 22227                tractor                  located   1
## 22228                  trade                delegates   1
## 22229                traffic                 accident   1
## 22230                traffic               advisories   1
## 22231                traffic                 advisory   1
## 22232                traffic                  centers   1
## 22233                traffic                 directly   1
## 22234                traffic                 facility   1
## 22235                traffic                   landed   1
## 22236                traffic                    lanes   1
## 22237                traffic             observations   1
## 22238                traffic              regulations   1
## 22239                traffic                 reporter   1
## 22240                traffic               separation   1
## 22241                traffic                 services   1
## 22242                traffic                situation   1
## 22243                traffic                    tower   1
## 22244                tragedy                  crashed   1
## 22245                 tragic                    crash   1
## 22246               trailing                     fire   1
## 22247               trailing                    heavy   1
## 22248               trailing                   vortex   1
## 22249                trainee                  captain   1
## 22250                trainee                   flying   1
## 22251                trainee                  pilot's   1
## 22252               trainees                  crashed   1
## 22253               trainees                      due   1
## 22254                trainer                 aircraft   1
## 22255                trainer               parachuted   1
## 22256               training                  captain   1
## 22257               training                captain's   1
## 22258               training             contributing   1
## 22259               training                    crews   1
## 22260               training            documentation   1
## 22261               training                  filight   1
## 22262               training                     flew   1
## 22263               training               inadequate   1
## 22264               training                 included   1
## 22265               training                 maneuver   1
## 22266               training               procedures   1
## 22267               training                    radio   1
## 22268               training              simulator's   1
## 22269               training                 soldiers   1
## 22270               training                standards   1
## 22271               training                witnesses   1
## 22272               training                     zone   1
## 22273             trajkovski                       47   1
## 22274                  trans              continental   1
## 22275       transcontinental                   flight   1
## 22276               transfer                  actions   1
## 22277               transfer              inadvertent   1
## 22278               transfer               procedures   1
## 22279             transition                     time   1
## 22280           transmission                 assembly   1
## 22281           transmission               indicating   1
## 22282           transmission                     line   1
## 22283           transmission                     pack   1
## 22284          transmissions               interfered   1
## 22285            transmitted              unnecessary   1
## 22286             transplant                   organs   1
## 22287             transplant                     team   1
## 22288            transponder              allegations   1
## 22289            transponder                     code   1
## 22290            transponder             contributing   1
## 22291              transport               approached   1
## 22292              transport                   canada   1
## 22293              transport                 carrying   1
## 22294              transport              disappeared   1
## 22295              transport               helicopter   1
## 22296              transport            international   1
## 22297              transport                 minister   1
## 22298              transport                 suffered   1
## 22299              transport                   system   1
## 22300         transportation                committee   1
## 22301           transporting                      bus   1
## 22302           transporting                  company   1
## 22303           transporting                   people   1
## 22304           transporting                personnel   1
## 22305           transporting                   troops   1
## 22306               trapping                   people   1
## 22307                 travel                direction   1
## 22308                 travel                  limiter   1
## 22309                 travel                     past   1
## 22310                 travel                 priority   1
## 22311              traveling                companion   1
## 22312              traveling                   faster   1
## 22313            treacherous                 mountain   1
## 22314                  tread                inability   1
## 22315              treatment                    plant   1
## 22316                 treaty                maneuvers   1
## 22317                   tree                       10   1
## 22318                   tree                       30   1
## 22319                   tree                 catching   1
## 22320                   tree                  causing   1
## 22321                   tree                    delay   1
## 22322                   tree                  killing   1
## 22323                   tree                  located   1
## 22324                   tree                    pilot   1
## 22325                   tree                 severing   1
## 22326                   tree                    short   1
## 22327                   tree                windshear   1
## 22328                  trees                        1   1
## 22329                  trees                      1.2   1
## 22330                  trees                      1.5   1
## 22331                  trees                      100   1
## 22332                  trees                      113   1
## 22333                  trees                      180   1
## 22334                  trees                    2,400   1
## 22335                  trees                      2.5   1
## 22336                  trees                    3,000   1
## 22337                  trees                      3.3   1
## 22338                  trees                        8   1
## 22339                  trees                  actress   1
## 22340                  trees            approximately   1
## 22341                  trees                    broke   1
## 22342                  trees                  causing   1
## 22343                  trees                continued   1
## 22344                  trees             contributing   1
## 22345                  trees                  control   1
## 22346                  trees                 embedded   1
## 22347                  trees                   engine   1
## 22348                  trees               eventually   1
## 22349                  trees                    found   1
## 22350                  trees                     fuel   1
## 22351                  trees                      hit   1
## 22352                  trees                 improper   1
## 22353                  trees                 inverted   1
## 22354                  trees                   losing   1
## 22355                  trees                     past   1
## 22356                  trees                    pilot   1
## 22357                  trees                    poles   1
## 22358                  trees                 striking   1
## 22359              trees.the                     crew   1
## 22360               trelease                 numerous   1
## 22361                    tri                   cities   1
## 22362                    tri                   motors   1
## 22363                  trial                 approach   1
## 22364                  trial                   flight   1
## 22365               triangle                   legend   1
## 22366                tribaud                       72   1
## 22367              tribhuvan                  airport   1
## 22368              tribhuvan            international   1
## 22369                 tricky                 approach   1
## 22370                  triel                      sur   1
## 22371              triggered               indicating   1
## 22372                   trim                  applied   1
## 22373                   trim                    cable   1
## 22374                   trim                   cables   1
## 22375                   trim                 commands   1
## 22376                   trim                component   1
## 22377                   trim                condition   1
## 22378                   trim            configuration   1
## 22379                   trim                     drum   1
## 22380                   trim               improperly   1
## 22381                   trim                    input   1
## 22382                   trim           malfunctioning   1
## 22383                   trim                mechanism   1
## 22384                   trim                    moved   1
## 22385                   trim                    prior   1
## 22386                   trim                    servo   1
## 22387                   trim                      set   1
## 22388                   trim                  setting   1
## 22389                   trim                  warning   1
## 22390                   trim                    wheel   1
## 22391                trimmed                      due   1
## 22392                trimmer                    check   1
## 22393             trinbhuvan                  airport   1
## 22394               trinidad                  airport   1
## 22395               trinidad                  section   1
## 22396                trinity                 national   1
## 22397                   trio                  passion   1
## 22398                 triple                   engine   1
## 22399                tripoli            international   1
## 22400                  troop                  carrier   1
## 22401                  troop                     lift   1
## 22402                 troops                  crashed   1
## 22403                 troops                  missing   1
## 22404               tropical                      air   1
## 22405                trouble                       10   1
## 22406                trouble            communication   1
## 22407                trouble                     died   1
## 22408                trouble                   forced   1
## 22409                trouble                  judging   1
## 22410                trouble                     left   1
## 22411                trouble                  skidded   1
## 22412                trouble                     tthe   1
## 22413               troubled                  takeoff   1
## 22414        troubleshooting                  efforts   1
## 22415                  truck                  killing   1
## 22416                 trucks                  killing   1
## 22417                   true               conditions   1
## 22418               trujillo                 mountain   1
## 22419                   truk                   island   1
## 22420                trumpet                   player   1
## 22421                   tthe                 airplane   1
## 22422                     tu                      144   1
## 22423                     tu                       16   1
## 22424                  tubes                    froze   1
## 22425                  tubes                   heater   1
## 22426                    tug                     boat   1
## 22427                  tulua                      vor   1
## 22428                 tumaco                      tco   1
## 22429                  tunas                   canyon   1
## 22430                   tuoy                   island   1
## 22431                tupolev                     134a   1
## 22432                tupolev                      154   1
## 22433                tupolev                     flew   1
## 22434                tupolev                    pilot   1
## 22435                tupolev                       sb   1
## 22436              tupolev's                   pilots   1
## 22437              tupolev's                     tcas   1
## 22438              tupungato                     peak   1
## 22439                turbine               blades.the   1
## 22440                turbine                     disk   1
## 22441                turbine                  failure   1
## 22442                turbine                     lost   1
## 22443                turbine                    rotor   1
## 22444                turbine                separated   1
## 22445                turbine                     vane   1
## 22446               turbines                  driving   1
## 22447              turboprop                 carrying   1
## 22448              turboprop                  crashed   1
## 22449              turboprop                      hit   1
## 22450             turbulence                 affected   1
## 22451             turbulence                    cargo   1
## 22452             turbulence                condition   1
## 22453             turbulence               downdrafts   1
## 22454             turbulence               encounters   1
## 22455             turbulence              erroneously   1
## 22456             turbulence                explosive   1
## 22457             turbulence                   faulty   1
## 22458             turbulence                     flew   1
## 22459             turbulence             insufficient   1
## 22460             turbulence                  leading   1
## 22461             turbulence                   missed   1
## 22462             turbulence                 mountain   1
## 22463             turbulence                 overload   1
## 22464             turbulence                    pilot   1
## 22465             turbulence                     poor   1
## 22466             turbulence                 reported   1
## 22467             turbulence                  sensory   1
## 22468             turbulence                    wrong   1
## 22469            turbulences                  causing   1
## 22470              turbulent                     line   1
## 22471              turbulent                     seas   1
## 22472              turganbek                stambekov   1
## 22473                  turin                 deviated   1
## 22474                  turin                 homebase   1
## 22475                 turkey                  reports   1
## 22476                turkish                 aircraft   1
## 22477                turkish             construction   1
## 22478                turkish                 pilgrims   1
## 22479                 turner                       46   1
## 22480              turrialba                  volcano   1
## 22481                  tutsi                    rebel   1
## 22482                     tv              entertainer   1
## 22483                     tv                    tower   1
## 22484                    twa                       42   1
## 22485                    twa                 aircraft   1
## 22486                    twa                     crew   1
## 22487                  twa's              maintenance   1
## 22488                 twelve                    kiled   1
## 22489                 twelve                  minutes   1
## 22490                 twenty                   killed   1
## 22491                 twenty                    miles   1
## 22492                 twenty                 thousand   1
## 22493                  tweny                   killed   1
## 22494               twilight                     zone   1
## 22495                   twin                  otter's   1
## 22496                   twin                     prop   1
## 22497              twitchell                     test   1
## 22498                   type                 aircraft   1
## 22499                   type                      due   1
## 22500                   type               overloaded   1
## 22501                   type                    storm   1
## 22502                  types                 contrary   1
## 22503                typhoon                     crew   1
## 22504                typhoon                    xiang   1
## 22505                typical               trajectory   1
## 22506                    u.n                  charter   1
## 22507                    u.s                  airline   1
## 22508                    u.s               ambassador   1
## 22509                    u.s                     anti   1
## 22510                    u.s                 aviation   1
## 22511                    u.s                   boxing   1
## 22512                    u.s                 canadian   1
## 22513                    u.s                    coast   1
## 22514                    u.s                dirigible   1
## 22515                    u.s                 district   1
## 22516                    u.s                   figure   1
## 22517                    u.s               government   1
## 22518                    u.s                   marine   1
## 22519                    u.s                 national   1
## 22520                    u.s                    naval   1
## 22521                    u.s                     ntsb   1
## 22522                    u.s                secretary   1
## 22523                    u.s                      spy   1
## 22524                    u.s               theatrical   1
## 22525                  u.s.s                vincennes   1
## 22526                  uiver                    dutch   1
## 22527              ukrainian                  company   1
## 22528              ukrainian                passenger   1
## 22529              ukrainian                  surface   1
## 22530                     ul                      haq   1
## 22531             ultimately                   failed   1
## 22532             ultimately                   landed   1
## 22533                   ulua                    river   1
## 22534           unacceptable                  crashed   1
## 22535            unairworthy                condition   1
## 22536            unairworthy                 cylinder   1
## 22537            unambiguous                  minimum   1
## 22538             unapproved                    route   1
## 22539             unarrested                     rate   1
## 22540           unauthorized                 altitude   1
## 22541           unauthorized                deviation   1
## 22542           unauthorized                    entry   1
## 22543           unauthorized                   flight   1
## 22544           unauthorized               instrument   1
## 22545           unauthorized               overhauled   1
## 22546           unauthorized                   person   1
## 22547            unawareness                resulting   1
## 22548              unbalance                   forces   1
## 22549          uncertainties                  existed   1
## 22550            uncertified               loadmaster   1
## 22551            uncommanded               deflection   1
## 22552            uncommanded                 downward   1
## 22553            uncommanded                extension   1
## 22554            uncommanded                     flap   1
## 22555            uncommanded               retraction   1
## 22556            uncommanded                     roll   1
## 22557            uncommanded                   rudder   1
## 22558            uncompahgre                  plateau   1
## 22559             unconcious                  crashed   1
## 22560           unconcrolled                     dive   1
## 22561            uncontained             catastrophic   1
## 22562            uncontained                  turbine   1
## 22563           uncontroable                     fire   1
## 22564          uncontrolable                     dive   1
## 22565         uncontrollable             contributing   1
## 22566         uncontrollable                     dive   1
## 22567         uncontrollable                   engine   1
## 22568         uncontrollable                propeller   1
## 22569         uncontrollable                    stall   1
## 22570           uncontrolled                  actions   1
## 22571           uncontrolled                  airport   1
## 22572           uncontrolled                 airports   1
## 22573           uncontrolled                 airspace   1
## 22574           uncontrolled                collision   1
## 22575           uncontrolled                     dive   1
## 22576           uncontrolled                 movement   1
## 22577           uncontrolled                  traffic   1
## 22578          uncoordinated                emergency   1
## 22579          uncoordinated                operation   1
## 22580               undamped             oscillations   1
## 22581          undercarriage                  bounced   1
## 22582             undersized                  threads   1
## 22583         understandably                initiated   1
## 22584            undertaking                simulated   1
## 22585              underwent              maintenance   1
## 22586              underwood                       32   1
## 22587             undetected             accumulation   1
## 22588             undetected                   cracks   1
## 22589             undetected               deflection   1
## 22590             undetected                deviation   1
## 22591             undetected                  failure   1
## 22592             undetected                 insecure   1
## 22593           undetermined                destoryed   1
## 22594           undetermined                excessive   1
## 22595           undetermined                   failed   1
## 22596           undetermined                  failure   1
## 22597           undetermined              malfunction   1
## 22598           undetermined               mechanical   1
## 22599           undetermined                    pilot   1
## 22600           undetermined                 possibly   1
## 22601           undetermined                   singer   1
## 22602           undetermined                   source   1
## 22603           undetermined                  strayed   1
## 22604           undetermined                   struck   1
## 22605           undetermined                 wreckage   1
## 22606            undisclosed             catastrophic   1
## 22607           undiscovered              preexisting   1
## 22608           undocumented              maintenance   1
## 22609                  undue            preoccupation   1
## 22610                 unduly                     nose   1
## 22611                unequal                   thrust   1
## 22612                 uneven                   runway   1
## 22613             unexpected                  aileron   1
## 22614             unexpected                encounter   1
## 22615             unexpected                    heavy   1
## 22616             unexpected                     mode   1
## 22617            unexplained                    climb   1
## 22618            unexplained                  descent   1
## 22619            unexplained                     loss   1
## 22620            unexplained                   reason   1
## 22621             unfamiliar                  terrain   1
## 22622            unfavorable                     wind   1
## 22623           unfavourable                  weather   1
## 22624            unfeathered                propeller   1
## 22625            unfeathered               propellers   1
## 22626             unforeseen                condition   1
## 22627              unguarded                    light   1
## 22628               unheated               windshield   1
## 22629           unidentified              obstruction   1
## 22630           unidentified                transport   1
## 22631                uniform                  cockpit   1
## 22632         unintelligible                   mayday   1
## 22633          unintentional                collision   1
## 22634          unintentional                  descent   1
## 22635          unintentional                 movement   1
## 22636          unintentional                  rolling   1
## 22637          unintentional                 shutdown   1
## 22638        unintentionally                contacted   1
## 22639                  union                      led   1
## 22640                  union                reporting   1
## 22641             unionville                 missouri   1
## 22642                 unique                     loss   1
## 22643                   unit                  causing   1
## 22644                   unit                     crew   1
## 22645                   unit                   failed   1
## 22646                   unit                  setting   1
## 22647                 unit's                   wiring   1
## 22648                 united                      air   1
## 22649                 united                 aircraft   1
## 22650                 united                     auto   1
## 22651                 united                     crew   1
## 22652                 united                 football   1
## 22653                 united                    front   1
## 22654                 united                      jet   1
## 22655                 united                 regional   1
## 22656                  units              inoperative   1
## 22657              universal                 airlines   1
## 22658          universitario                   killed   1
## 22659             university               basketball   1
## 22660             university                 students   1
## 22661          unjustifiable                  attempt   1
## 22662            unjustified                 decision   1
## 22663                unknown                  actress   1
## 22664                unknown                   amount   1
## 22665                unknown             circumstance   1
## 22666                unknown             contributing   1
## 22667                unknown                    crash   1
## 22668                unknown              disappeared   1
## 22669                unknown                  ditched   1
## 22670                unknown                       en   1
## 22671                unknown                   factor   1
## 22672                unknown                   flying   1
## 22673                unknown                    icing   1
## 22674                unknown                  intense   1
## 22675                unknown              malfunction   1
## 22676                unknown               mechanical   1
## 22677                unknown                     poor   1
## 22678                unknown            possibilities   1
## 22679                unknown                 possibly   1
## 22680                unknown                   prince   1
## 22681                unknown                   reason   1
## 22682                unknown                   region   1
## 22683                unknown                     shot   1
## 22684                unknown                technical   1
## 22685                 unkown            circumstances   1
## 22686              unlatched                 position   1
## 22687              unlighted                  airport   1
## 22688              unlighted                  terrain   1
## 22689                  unlit                  airport   1
## 22690               unlocked                  landing   1
## 22691               unmanned               submarines   1
## 22692            unnecessary           discontinuance   1
## 22693            unnecessary             interactions   1
## 22694              unnoticed                extension   1
## 22695             unoccupied                 building   1
## 22696             unoccupied                     fire   1
## 22697             unoccupied               playground   1
## 22698             unofficial                  reports   1
## 22699              unplanned                  descent   1
## 22700          unpredictable                intensity   1
## 22701          unpredictable             thunderstorm   1
## 22702            unpredicted                     cold   1
## 22703             unprepared                     crew   1
## 22704             unprepared                 ditching   1
## 22705           unprescribed                   manner   1
## 22706         unprofessional                 behavior   1
## 22707               unproven                 scenario   1
## 22708            unpublished                    route   1
## 22709            unqualified                    pilot   1
## 22710           unrecognized                     loss   1
## 22711              unrelated                    tasks   1
## 22712             unreliable                      air   1
## 22713             unreliable                 attitude   1
## 22714             unreliable               navigation   1
## 22715             unreliable                  sensors   1
## 22716             unreliable                   status   1
## 22717                 unsafe                 attitude   1
## 22718                 unsafe              environment   1
## 22719                 unsafe               indication   1
## 22720                 unsafe                     path   1
## 22721                 unsafe                  weather   1
## 22722         unsatisfactory                     crew   1
## 22723            unscheduled               feathering   1
## 22724            unscheduled                passenger   1
## 22725              unsecured              nonstandard   1
## 22726          unserviceable                      apu   1
## 22727            unspecified                    cargo   1
## 22728           unstabilized                precision   1
## 22729           unstabilized                   visual   1
## 22730               unstable                 approach   1
## 22731               unstable                substance   1
## 22732               unstable                     tail   1
## 22733               unstable                  weather   1
## 22734           unsuccessful                  attempt   1
## 22735           unsuccessful                    belly   1
## 22736           unsuccessful                  landing   1
## 22737           unsuccessful                     raid   1
## 22738          unsuccessfull                 attempts   1
## 22739             unsuitable           meteorological   1
## 22740             unsuitable                   nature   1
## 22741             unsuitable                  weather   1
## 22742            unsuspected                 internal   1
## 22743               untimely                  actions   1
## 22744              untrained                personnel   1
## 22745                 unused                  control   1
## 22746                unusual                 aircraft   1
## 22747                unusual                   amount   1
## 22748                unusual                   sounds   1
## 22749              unusually                     cold   1
## 22750              unusually                    heavy   1
## 22751              unusually                   severe   1
## 22752               unwanted                   change   1
## 22753               unwanted                extension   1
## 22754               unwanted                 pitching   1
## 22755               unwanted                 reversal   1
## 22756               unwanted                   rudder   1
## 22757            unwarranted                      low   1
## 22758              unwitting                     bomb   1
## 22759               upcoming                maneuvers   1
## 22760                 uphill                    slope   1
## 22761                  upper                     deck   1
## 22762                  upper                    front   1
## 22763                  upper                     lobe   1
## 22764                  upper                    panel   1
## 22765                  upper                 part.but   1
## 22766                  upper                 position   1
## 22767                  upper                 vertical   1
## 22768                upright                  sliding   1
## 22769                  upset                 recovery   1
## 22770                 upward                    pitch   1
## 22771                 upward                 position   1
## 22772                 upward                  stalled   1
## 22773                     ur                      bay   1
## 22774                 urgent                   nature   1
## 22775                  uribe                    river   1
## 22776                  urine                  crashed   1
## 22777                uruapan                  seventy   1
## 22778                uruapan                 wreckage   1
## 22779                uruguay                    river   1
## 22780                  usair                 employee   1
## 22781                   user                  defined   1
## 22782                    usn                    plane   1
## 22783                  usual                 approach   1
## 22784                  usual                  landing   1
## 22785                  usual                    route   1
## 22786                    utc                   flying   1
## 22787                utility                    poles   1
## 22788                utilize                 properly   1
## 22789                  uvira                   midair   1
## 22790                  uzbek                   border   1
## 22791                  uzbek               servicemen   1
## 22792             uzbekistan                  airways   1
## 22793                    v.c                     bird   1
## 22794                     v1                committed   1
## 22795                     v2                  failure   1
## 22796                     v2            inappropriate   1
## 22797                     v2                    speed   1
## 22798                   vaca              misjudgment   1
## 22799                 vacant                     seat   1
## 22800                 vacuum                   driven   1
## 22801                   vale                 rotonote   1
## 22802               valencia                  airport   1
## 22803               valencia                      atc   1
## 22804               valencia                    spain   1
## 22805                 valens                       17   1
## 22806                 valens                      won   1
## 22807                vallejo               california   1
## 22808                 valley                    ahead   1
## 22809                 valley                    floor   1
## 22810                 valley               inadequate   1
## 22811                 valley                    route   1
## 22812                 valley                     west   1
## 22813                 valley                 wreckage   1
## 22814                  valve                 assembly   1
## 22815                  valve                   caused   1
## 22816                  valve                  crashed   1
## 22817                  valve                diaphragm   1
## 22818                  valve                  housing   1
## 22819                  valve                   inside   1
## 22820                  valve                secondary   1
## 22821                 valves                    ports   1
## 22822                    van                      het   1
## 22823                    van                     zant   1
## 22824               vanavera                  crashed   1
## 22825              vancouver                  airport   1
## 22826              vancouver                  british   1
## 22827              vancouver                   canada   1
## 22828              vancouver                  crashed   1
## 22829              vancouver                       en   1
## 22830              vancouver                   island   1
## 22831                   vane                     burn   1
## 22832                   vane                     ring   1
## 22833             vanguardia                  airport   1
## 22834               vanished                       en   1
## 22835                  vapor                    randy   1
## 22836                 vapors                emanating   1
## 22837                 vapors                   forced   1
## 22838                   vapp               descending   1
## 22839                 varies                   widely   1
## 22840                vaughan                       35   1
## 22841                vaughan                  failure   1
## 22842                 vector                  request   1
## 22843                 veered                     left   1
## 22844                veering                     wind   1
## 22845                   vega                     hill   1
## 22846                  vegas                  crashed   1
## 22847                  vegas                     loss   1
## 22848                  vegas                   nevada   1
## 22849                  vegas                       nv   1
## 22850                  vegas                    strip   1
## 22851                vehicle                 exploded   1
## 22852                vehicle               improperly   1
## 22853                vehicle                  killing   1
## 22854                vehicle                  shortly   1
## 22855                vehicle                 weighing   1
## 22856               vehicles                 fourteen   1
## 22857               vehicles                misjudged   1
## 22858               vehicles               overloaded   1
## 22859               vehicles                   thirty   1
## 22860             velocities            preoccupation   1
## 22861             venezuelan                   border   1
## 22862             venezuelan                    choir   1
## 22863             venezuelan                colombian   1
## 22864                   vent                    pipes   1
## 22865                   vent                    ports   1
## 22866                  verde                    coast   1
## 22867                  verde                  islands   1
## 22868                verdugo                mountains   1
## 22869               vertical                 distance   1
## 22870               vertical                     drop   1
## 22871               vertical                     fins   1
## 22872               vertical                     left   1
## 22873               vertical                     load   1
## 22874               vertical                 mountain   1
## 22875               vertical                 position   1
## 22876               vertical                  profile   1
## 22877               vertical                     rate   1
## 22878               vertical                     rock   1
## 22879               vertical                     tail   1
## 22880               vertical               visibility   1
## 22881                vertigo              experienced   1
## 22882                 vessel                    u.s.s   1
## 22883               vesuvius                   struck   1
## 22884                    vfr                 apporach   1
## 22885                    vfr                   cashed   1
## 22886                    vfr                 collided   1
## 22887                    vfr                departure   1
## 22888                    vfr                deviation   1
## 22889                    vfr                  entered   1
## 22890                    vfr                  flilght   1
## 22891                    vfr                      ifr   1
## 22892                    vfr                     lost   1
## 22893                    vfr                   minima   1
## 22894                    vfr                operation   1
## 22895                    vfr                    pilot   1
## 22896                    vfr                    rated   1
## 22897                    vfr                    rules   1
## 22898                    vfr                standards   1
## 22899                    vfr               visibility   1
## 22900                    vfr                  waiting   1
## 22901                    vhf                      nav   1
## 22902             viabration               turbulence   1
## 22903              vibration                  crashed   1
## 22904              vibration                 required   1
## 22905              vibration                resulting   1
## 22906              vibration                  stopped   1
## 22907             vibrations                   caused   1
## 22908             vibrations                  causing   1
## 22909             vibrations                      due   1
## 22910             vibrations                  started   1
## 22911                vicente                      del   1
## 22912                vickers                        7   1
## 22913                vickers                   viking   1
## 22914                vickers                 viscount   1
## 22915               victim's                  pockets   1
## 22916                victims                 collided   1
## 22917                victims                including   1
## 22918                victims                plundered   1
## 22919                victims                  shortly   1
## 22920               victimsã                        â   1
## 22921                 victor                  crashed   1
## 22922               victoria                  shortly   1
## 22923                videira                   struck   1
## 22924                  vieja                       35   1
## 22925                 vienna                     iowa   1
## 22926                vietnam                      war   1
## 22927             vietnamese                   forces   1
## 22928             vietnamese                  orphans   1
## 22929             vietnamese                  village   1
## 22930                   view                   failed   1
## 22931               vigalant                     flew   1
## 22932                 viking                   caused   1
## 22933                 viking                       ln   1
## 22934                 viking                   struck   1
## 22935                village            approximately   1
## 22936                village                  crashed   1
## 22937                village                exploding   1
## 22938                village                    north   1
## 22939              villagers                 stranded   1
## 22940                  ville                       de   1
## 22941              vincennes                responded   1
## 22942               vineyard            massachusetts   1
## 22943                vintage                 aircraft   1
## 22944                vintage                 sabrejet   1
## 22945               violated                 aviation   1
## 22946             violations                   listed   1
## 22947                violent              atmospheric   1
## 22948                violent             cumulonimbus   1
## 22949                violent                downdraft   1
## 22950                violent               downdrafts   1
## 22951                violent                   engine   1
## 22952                violent                explosion   1
## 22953                violent                     fire   1
## 22954                violent                     gust   1
## 22955                violent                   impact   1
## 22956                violent                 maneuver   1
## 22957                violent                    pitch   1
## 22958                violent                    storm   1
## 22959                violent             thunderstorm   1
## 22960                violent               turbulence   1
## 22961                violent                vibration   1
## 22962                violent                      yaw   1
## 22963              violently                  crashed   1
## 22964              violently                   veered   1
## 22965              violinist                  ginette   1
## 22966              violinist                  jacques   1
## 22967                    vip                   lounge   1
## 22968                  viper                  crashed   1
## 22969               virginia              maintenance   1
## 22970              virtually               impossible   1
## 22971               viscount                      815   1
## 22972               viscount                 aircraft   1
## 22973               viscount                  killing   1
## 22974               viscount                  shortly   1
## 22975             visibility                        2   1
## 22976             visibility                        3   1
## 22977             visibility                      700   1
## 22978             visibility                  allowed   1
## 22979             visibility            approximately   1
## 22980             visibility                  causing   1
## 22981             visibility            configuration   1
## 22982             visibility                  control   1
## 22983             visibility               controlled   1
## 22984             visibility                    crash   1
## 22985             visibility                   crashe   1
## 22986             visibility                     crew   1
## 22987             visibility               crosswinds   1
## 22988             visibility                   engine   1
## 22989             visibility                  failure   1
## 22990             visibility                      fog   1
## 22991             visibility                   forced   1
## 22992             visibility                 governor   1
## 22993             visibility            international   1
## 22994             visibility                     lack   1
## 22995             visibility                      low   1
## 22996             visibility                    pilot   1
## 22997             visibility                     poor   1
## 22998             visibility                    power   1
## 22999             visibility                prevailed   1
## 23000             visibility               prevailing   1
## 23001             visibility                 resulted   1
## 23002             visibility                  stalled   1
## 23003             visibility               turbulence   1
## 23004                visible                 approach   1
## 23005                visible                realizing   1
## 23006              visiblity                  crashed   1
## 23007                 visual                alertness   1
## 23008                 visual               conditions   1
## 23009                 visual             confirmation   1
## 23010                 visual                detection   1
## 23011                 visual                   filght   1
## 23012                 visual                   ground   1
## 23013                 visual                     half   1
## 23014                 visual                 illusion   1
## 23015                 visual                  landing   1
## 23016                 visual              limitations   1
## 23017                 visual                 markings   1
## 23018                 visual                 minimums   1
## 23019                 visual               navigation   1
## 23020                 visual                  outlook   1
## 23021                 visual                    phase   1
## 23022                 visual                      rev   1
## 23023                 visual               separation   1
## 23024                  vital                  restart   1
## 23025               vladeasa                 mountain   1
## 23026            vladivostok                  crashed   1
## 23027               vocalist                   cassie   1
## 23028               volcanic                 eruption   1
## 23029                volcano                   banked   1
## 23030                volcano                  crashed   1
## 23031                volcano                   hawaii   1
## 23032                volcano                       mt   1
## 23033              volcanoes                 national   1
## 23034                  volga                     avia   1
## 23035                  volga                    river   1
## 23036                   volt                powerline   1
## 23037                voltage                    cable   1
## 23038                voltage                    level   1
## 23039                voltage                    lines   1
## 23040                voltage                    power   1
## 23041                voltage                regulator   1
## 23042            voluntarily                descended   1
## 23043                    von                baumhauer   1
## 23044                    von                  gablenz   1
## 23045                 voodoo                 aircraft   1
## 23046                 voodoo                   caught   1
## 23047                 voodoo                 collided   1
## 23048                 voodoo                  fighter   1
## 23049                    vor                   radial   1
## 23050                    vor                   signal   1
## 23051                    vor                  station   1
## 23052                vorkuta                  airport   1
## 23053                 vortex                encounter   1
## 23054                 vortex                 existing   1
## 23055                 vortex                generated   1
## 23056                  vryta                       40   1
## 23057                vulovic                     fell   1
## 23058                vulovic                 returned   1
## 23059                vulture                  crashed   1
## 23060              waalhaven                  crashed   1
## 23061                   wadi                       es   1
## 23062              waialeale                   crater   1
## 23063                 waited                    hours   1
## 23064                 walker                     mill   1
## 23065                   wall                      400   1
## 23066                   wall                 bursting   1
## 23067                   wall                  contact   1
## 23068                   wall                   iran's   1
## 23069                   wall             misjudgement   1
## 23070                   wall                  overran   1
## 23071                   wall               separating   1
## 23072                 walter                    hyatt   1
## 23073                 walter                  reuther   1
## 23074                 wamena                  airport   1
## 23075              wanjiatun                  airport   1
## 23076                    war                     bond   1
## 23077                    war                emergency   1
## 23078                    war                 thirteen   1
## 23079                 ward's                    strip   1
## 23080                warning                 advisory   1
## 23081                warning                    alarm   1
## 23082                warning                   alarms   1
## 23083                warning                   alerts   1
## 23084                warning                    chime   1
## 23085                warning                  circuit   1
## 23086                warning                 disabled   1
## 23087                warning                     horn   1
## 23088                warning                including   1
## 23089                warning               indication   1
## 23090                warning                   margin   1
## 23091                warning                  message   1
## 23092                warning                     msaw   1
## 23093                warning                  placard   1
## 23094                warning             precipitated   1
## 23095                warning                  signals   1
## 23096               warnings               descending   1
## 23097               warnings                  fatigue   1
## 23098               warnings              incorrectly   1
## 23099               warnings                    sadly   1
## 23100                wartime                   travel   1
## 23101                 warton                      air   1
## 23102                wasatch                mountains   1
## 23103                   wash                    basin   1
## 23104                   wash                   cliffs   1
## 23105                 washed                   ashore   1
## 23106                 washer                   deicer   1
## 23107             washington                      d.c   1
## 23108             washington                   dulles   1
## 23109             washington                  failure   1
## 23110             washington                    found   1
## 23111             washington            international   1
## 23112                  wasnã                        â   1
## 23113                  waste                    drain   1
## 23114                  water                    1,000   1
## 23115                  water                    1,800   1
## 23116                  water                      100   1
## 23117                  water                      2km   1
## 23118                  water                        3   1
## 23119                  water                    actor   1
## 23120                  water                 adjacent   1
## 23121                  water               conditions   1
## 23122                  water                container   1
## 23123                  water                  content   1
## 23124                  water                continued   1
## 23125                  water                 drainage   1
## 23126                  water               electrical   1
## 23127                  water                  entered   1
## 23128                  water              examination   1
## 23129                  water                    froze   1
## 23130                  water                     fuel   1
## 23131                  water                   impact   1
## 23132                  water                 improper   1
## 23133                  water               improperly   1
## 23134                  water                  induced   1
## 23135                  water            investigation   1
## 23136                  water               irrational   1
## 23137                  water                     leak   1
## 23138                  water                   lilies   1
## 23139                  water                     loss   1
## 23140                  water                   midair   1
## 23141                  water             purification   1
## 23142                  water                  takeoff   1
## 23143                  water                    tower   1
## 23144                  water                treatment   1
## 23145              waterfall                    rates   1
## 23146             waterkloof                      air   1
## 23147             watermelon                    patch   1
## 23148                 waters                departing   1
## 23149                 waters              inattention   1
## 23150                waurika                 oklahoma   1
## 23151                   wave                  crashed   1
## 23152                   wave                    storm   1
## 23153                   wave                     type   1
## 23154                   wave                  weather   1
## 23155                 waylon                 jennings   1
## 23156                   weak                   flight   1
## 23157                   weak                  mixture   1
## 23158                weapons                  experts   1
## 23159                   wear                resulting   1
## 23160                wearing               parachutes   1
## 23161                 weater                condtions   1
## 23162                weather                     35km   1
## 23163                weather                 airframe   1
## 23164                weather                avoidance   1
## 23165                weather                  balloon   1
## 23166                weather                    broke   1
## 23167                weather                   bureau   1
## 23168                weather                   caused   1
## 23169                weather                   closed   1
## 23170                weather                continued   1
## 23171                weather                   crew's   1
## 23172                weather                     data   1
## 23173                weather             deteriorated   1
## 23174                weather                developed   1
## 23175                weather                  ditched   1
## 23176                weather                 diverted   1
## 23177                weather                      due   1
## 23178                weather              encountered   1
## 23179                weather               evaluation   1
## 23180                weather                  factors   1
## 23181                weather                   flight   1
## 23182                weather                   flying   1
## 23183                weather                      fog   1
## 23184                weather                   forced   1
## 23185                weather                 forecast   1
## 23186                weather              forecasters   1
## 23187                weather                    found   1
## 23188                weather                    front   1
## 23189                weather                 improper   1
## 23190                weather                 improved   1
## 23191                weather             instructions   1
## 23192                weather                  joaquin   1
## 23193                weather                      low   1
## 23194                weather                minimumns   1
## 23195                weather              misjudgment   1
## 23196                weather               navigation   1
## 23197                weather             navigational   1
## 23198                weather                prevented   1
## 23199                weather    related.circumstances   1
## 23200                weather                   report   1
## 23201                weather                reporting   1
## 23202                weather                  reports   1
## 23203                weather                 research   1
## 23204                weather                 resulted   1
## 23205                weather                   rolled   1
## 23206                weather                  service   1
## 23207                weather                     snow   1
## 23208                weather                    stall   1
## 23209                weather                  stalled   1
## 23210                weather                   struck   1
## 23211                weather                 suddenly   1
## 23212                weather                   twenty   1
## 23213                weather              unqualified   1
## 23214                weather               unsuitable   1
## 23215                weather                      vfr   1
## 23216                weather                violation   1
## 23217                weather               visibility   1
## 23218                weather                   visual   1
## 23219                weather                 warnings   1
## 23220                weather                witnesses   1
## 23221                weather                    worse   1
## 23222                weather                 wreckage   1
## 23223              weather's                influence   1
## 23224          weather.three                 survived   1
## 23225                    web                   access   1
## 23226                 weekly                     mail   1
## 23227                 weekly              maintenance   1
## 23228                weighed                       16   1
## 23229               weighing                   28,000   1
## 23230                 weight                  allowed   1
## 23231                 weight              assumptions   1
## 23232                 weight                   caused   1
## 23233                 weight                    close   1
## 23234                 weight                condition   1
## 23235                 weight                  forward   1
## 23236                 weight               imbalances   1
## 23237                 weight                      led   1
## 23238                 weight                   loaded   1
## 23239                 weight                permitted   1
## 23240                 weight                     shot   1
## 23241                welding                  process   1
## 23242                   weno                  airport   1
## 23243                wenzhou                  airport   1
## 23244                  weser                    river   1
## 23245                   west                 aircraft   1
## 23246                   west                 boundary   1
## 23247                   west                    cline   1
## 23248                   west                direction   1
## 23249                   west                  georgia   1
## 23250                   west                   german   1
## 23251                   west                     maui   1
## 23252                   west                  offered   1
## 23253                   west                requiring   1
## 23254                   west                southwest   1
## 23255                   west                 virginia   1
## 23256              westbound                   flight   1
## 23257               westerly                  heading   1
## 23258                western                 aviation   1
## 23259                western                     city   1
## 23260                western                     edge   1
## 23261                western               embankment   1
## 23262                western                 ethiopia   1
## 23263                western                    movie   1
## 23264                western                   planes   1
## 23265                western                provinces   1
## 23266                western                   sierre   1
## 23267                western                   singer   1
## 23268                western                    tokyo   1
## 23269               westover                    field   1
## 23270                    wet                 slippery   1
## 23271                whaling                    crews   1
## 23272                  wheel                    blade   1
## 23273                  wheel                  crashed   1
## 23274                  wheel                    doors   1
## 23275                  wheel                   flange   1
## 23276                  wheel                  glanced   1
## 23277                  wheel                   inputs   1
## 23278                  wheel                  started   1
## 23279                  wheel                    tread   1
## 23280                  wheel                    wella   1
## 23281                wheeled                    broke   1
## 23282                 wheels                collapsed   1
## 23283                 wheels                    prior   1
## 23284                 wheels                remaining   1
## 23285                 wheels                  touched   1
## 23286                 whille               attempting   1
## 23287                 whille                       en   1
## 23288                 whille                   flying   1
## 23289                  whirl                     mode   1
## 23290              whistling                    noise   1
## 23291              whistling                     swan   1
## 23292              whistling                    swans   1
## 23293                  white                     city   1
## 23294                  white                    house   1
## 23295                  white                 mountain   1
## 23296                  white                mountains   1
## 23297                  white                    smoke   1
## 23298              whitehall                  station   1
## 23299               whiteout                  greyout   1
## 23300               whiteout                  weather   1
## 23301                 whitey                     dahl   1
## 23302                   whle                returning   1
## 23303                   whle                   taking   1
## 23304                whuan's                wanjiatun   1
## 23305                   wide                    angle   1
## 23306                   wide                  banking   1
## 23307                   wide                      bay   1
## 23308                   wide                     body   1
## 23309                   wide                 circling   1
## 23310                   wide               descending   1
## 23311                   wide              discrepancy   1
## 23312                   wide               initiation   1
## 23313                   wide                      low   1
## 23314                   wide                   radius   1
## 23315                   wife                        2   1
## 23316                   wife                    betty   1
## 23317                   wife                  carolyn   1
## 23318                   wife                   killed   1
## 23319                  wigan                   beacon   1
## 23320                 wildly                 striking   1
## 23321                  wiley                     post   1
## 23322                 wilkes                    barre   1
## 23323              willfully                 deceived   1
## 23324                william                 franklin   1
## 23325                william                  gardner   1
## 23326                william                   kapell   1
## 23327                william                 randolph   1
## 23328                william                   wilson   1
## 23329                william                  wolfman   1
## 23330               williams                      afb   1
## 23331           williamsport                 probable   1
## 23332             wilmington                    north   1
## 23333               wimberry                    rocks   1
## 23334                  winam                      bay   1
## 23335                   wind                   caused   1
## 23336                   wind                component   1
## 23337                   wind                condition   1
## 23338                   wind                  crashed   1
## 23339                   wind                    drift   1
## 23340                   wind                  flipped   1
## 23341                   wind                    gusts   1
## 23342                   wind               improperly   1
## 23343                   wind                increased   1
## 23344                   wind                increases   1
## 23345                   wind                indicator   1
## 23346                   wind                      leg   1
## 23347                   wind                      low   1
## 23348                   wind                  milling   1
## 23349                   wind                 possibly   1
## 23350                   wind                 required   1
## 23351                   wind                    sheer   1
## 23352                   wind                  shifted   1
## 23353                   wind                    speed   1
## 23354                   wind                windshear   1
## 23355               windisch                  crashed   1
## 23356               windmill                      500   1
## 23357            windmilling                  causing   1
## 23358            windmilling                     left   1
## 23359                 window                 breaking   1
## 23360                 window                  causing   1
## 23361                 window               passengers   1
## 23362                 window                     seat   1
## 23363                windows                   nelson   1
## 23364                windows                 observed   1
## 23365                  winds               alternated   1
## 23366                  winds                    cargo   1
## 23367                  winds                  crashed   1
## 23368                  winds                crosswind   1
## 23369                  winds                 decision   1
## 23370                  winds              encountered   1
## 23371                  winds                   forced   1
## 23372                  winds                   lifted   1
## 23373                  winds                prevented   1
## 23374                  winds                     sank   1
## 23375                  winds                   severe   1
## 23376                  winds                  stalled   1
## 23377                  winds                   struck   1
## 23378                  winds                windshear   1
## 23379              windshear                      atc   1
## 23380              windshear                     crew   1
## 23381              windshear                   crew's   1
## 23382              windshear                detection   1
## 23383              windshear              encountered   1
## 23384              windshear                equipment   1
## 23385              windshear                excessive   1
## 23386              windshear                     flew   1
## 23387              windshear                   hazard   1
## 23388              windshear                     lack   1
## 23389              windshear                  limited   1
## 23390              windshear                    pilot   1
## 23391              windshear            precipitation   1
## 23392              windshear                  sensory   1
## 23393              windshear                     shot   1
## 23394              windshear                situation   1
## 23395              windshear                 suffered   1
## 23396              windshear                      u.s   1
## 23397              windshear                 warnings   1
## 23398             windshield                     fell   1
## 23399             windshield                     lost   1
## 23400             windshield                   washer   1
## 23401             windshield                   wipers   1
## 23402               windsock                  support   1
## 23403                windsor                  ontario   1
## 23404                  windy               conditions   1
## 23405                   wing                  aileron   1
## 23406                   wing              attachments   1
## 23407                   wing                   caught   1
## 23408                   wing                   caused   1
## 23409                   wing                   center   1
## 23410                   wing            contamination   1
## 23411                   wing                     crew   1
## 23412                   wing                   dipped   1
## 23413                   wing              disappeared   1
## 23414                   wing                      dug   1
## 23415                   wing                   engine   1
## 23416                   wing                  fatigue   1
## 23417                   wing                   flange   1
## 23418                   wing                     flap   1
## 23419                   wing                  floated   1
## 23420                   wing                  forcing   1
## 23421                   wing               horizontal   1
## 23422                   wing                      ice   1
## 23423                   wing                  leading   1
## 23424                   wing                      led   1
## 23425                   wing                     lift   1
## 23426                   wing                     lost   1
## 23427                   wing                    lower   1
## 23428                   wing                    noted   1
## 23429                   wing                 outboard   1
## 23430                   wing                     ovht   1
## 23431                   wing                 possibly   1
## 23432                   wing                  reduced   1
## 23433                   wing                 resulted   1
## 23434                   wing                resulting   1
## 23435                   wing                     root   1
## 23436                   wing                seperated   1
## 23437                   wing                     skin   1
## 23438                   wing                     spar   1
## 23439                   wing                    stall   1
## 23440                   wing                    strut   1
## 23441                   wing                 suddenly   1
## 23442                   wing                     tips   1
## 23443                   wing                     tore   1
## 23444                 wing's                 interior   1
## 23445                 wing's                  leading   1
## 23446                 wing's                separated   1
## 23447                 winged                    racer   1
## 23448                  wings                 collided   1
## 23449                  wings                continued   1
## 23450                  wings                 decision   1
## 23451                  wings                 detached   1
## 23452                  wings                      due   1
## 23453                  wings                 exploded   1
## 23454                  wings                    flaps   1
## 23455                  wings                    icing   1
## 23456                  wings                    level   1
## 23457                  wings                 resulted   1
## 23458                  wings               separating   1
## 23459                  wings                   sudden   1
## 23460                  wings                 vertical   1
## 23461                  wings                     west   1
## 23462                wingtip                 collided   1
## 23463                wingtip                 striking   1
## 23464                wingtip                   struck   1
## 23465               winnipeg                 manitoba   1
## 23466                winston                churchill   1
## 23467                winston                      cup   1
## 23468                winston                    salem   1
## 23469                 winter                    dance   1
## 23470                 winter                     hill   1
## 23471                 winter               operations   1
## 23472                 winter                  weather   1
## 23473                 wipers               unreliable   1
## 23474                   wire                   bundle   1
## 23475                   wire                  crashed   1
## 23476                   wire                      led   1
## 23477                   wire                   struck   1
## 23478                  wires                  bracing   1
## 23479                  wires                   caught   1
## 23480                  wires                    poles   1
## 23481                 wiring                  crashed   1
## 23482                 wiring                 damaging   1
## 23483                 wiring                  started   1
## 23484                witness                 observed   1
## 23485              witnesses                 describe   1
## 23486              witnesses                   flames   1
## 23487              witnesses                   flying   1
## 23488              wladyslaw                 sikorski   1
## 23489               wolfgang                  amadeus   1
## 23490                 wolper              productions   1
## 23491                woltape                     shot   1
## 23492                  woman                 carrying   1
## 23493                  woman                 involved   1
## 23494                  woman                passenger   1
## 23495                women's                 military   1
## 23496                women's                 national   1
## 23497                women's                   prison   1
## 23498                    won                     guam   1
## 23499               woodcote                     road   1
## 23500                 wooded                 mountain   1
## 23501                 wooded                   valley   1
## 23502                 wooden                 approach   1
## 23503                 wooden                    spars   1
## 23504                woodley                     golf   1
## 23505                  woods                      6.5   1
## 23506                  woods                  crashed   1
## 23507               woodward                       35   1
## 23508                  woody                  guthrie   1
## 23509                  words                  falling   1
## 23510               worker's                president   1
## 23511                workers                  crashed   1
## 23512                workers                   taking   1
## 23513               workload                  sharing   1
## 23514               workload               situations   1
## 23515                  world              chamberlain   1
## 23516                  world                  service   1
## 23517                   worn                    bolts   1
## 23518                worries                  fatigue   1
## 23519              worsening               conditions   1
## 23520                  worst               helicopter   1
## 23521                  worth                    texas   1
## 23522                wounded                 soldiers   1
## 23523               wreckage                   coming   1
## 23524               wreckage                  country   1
## 23525               wreckage                     fell   1
## 23526               wreckage                  finally   1
## 23527               wreckage                   landed   1
## 23528               wreckage                   larger   1
## 23529               wreckage                naviation   1
## 23530               wreckage                     path   1
## 23531               wreckage                 revealed   1
## 23532               wreckage                scattered   1
## 23533              wrenching                     free   1
## 23534                 wright                     nose   1
## 23535                 wright                 suffered   1
## 23536                 writer                    ralph   1
## 23537                  wrong                  airport   1
## 23538                  wrong                 altitude   1
## 23539                  wrong                    angle   1
## 23540                  wrong                     city   1
## 23541                  wrong                  control   1
## 23542                  wrong                   cruise   1
## 23543                  wrong                 decision   1
## 23544                  wrong                decisions   1
## 23545                  wrong                departure   1
## 23546                  wrong               estimation   1
## 23547                  wrong                   flight   1
## 23548                  wrong                frequency   1
## 23549                  wrong                  heading   1
## 23550                  wrong                      ils   1
## 23551                  wrong               indication   1
## 23552                  wrong                 maneuver   1
## 23553                  wrong                      ndb   1
## 23554                  wrong                    plane   1
## 23555                  wrong                  planned   1
## 23556                  wrong                propeller   1
## 23557                  wrong                      qnh   1
## 23558                  wrong                    radio   1
## 23559                  wrong                     road   1
## 23560                  wrong                 rotation   1
## 23561                  wrong                    route   1
## 23562                  wrong                  takeoff   1
## 23563                  wrong                     type   1
## 23564                  wrong                      vor   1
## 23565                  wuzhi                  located   1
## 23566                     wy               officially   1
## 23567                  xiang                     sane   1
## 23568          xiangkhoung's                  airport   1
## 23569                  xingu                    river   1
## 23570                     xl                  airways   1
## 23571               yachting                     team   1
## 23572                    yak                  fighter   1
## 23573                    yak                fighter's   1
## 23574                    yak                violation   1
## 23575               yakovlev                        3   1
## 23576                yakutat                   alaska   1
## 23577                yakutat                  failure   1
## 23578                   yale               university   1
## 23579                 yankee                  clipper   1
## 23580                  yards                   inside   1
## 23581                  yards                   meters   1
## 23582              yaroslavl                      ice   1
## 23583                 yasouj                  airport   1
## 23584                 yasser                   arafat   1
## 23585                  yasuj                  airport   1
## 23586                    yaw                  channel   1
## 23587                    yaw                 controls   1
## 23588                    yaw                   damper   1
## 23589                    yaw                 sideslip   1
## 23590                  yawed                     left   1
## 23591                 yeager                  airport   1
## 23592                  yegar                  injured   1
## 23593                   ynez                     peak   1
## 23594                   yoke                 blocking   1
## 23595                   yoke                  forward   1
## 23596                   yoke                   midair   1
## 23597                   yoke                    peter   1
## 23598                   yoke                releasing   1
## 23599                   yoke                     yoke   1
## 23600                 yokota                      afb   1
## 23601                yokotsu                 mountain   1
## 23602                 yongai                  airport   1
## 23603                   york                 complete   1
## 23604                   york                     fuel   1
## 23605                   york                   gander   1
## 23606                   york                   killed   1
## 23607                   york                    mw248   1
## 23608                   york                peninsula   1
## 23609                   york                   victor   1
## 23610               york.the                     crew   1
## 23611                 yorker                 magazine   1
## 23612                     ys                       11   1
## 23613                   yuan                 mountain   1
## 23614                 yunque                 mountain   1
## 23615                   yuri                 andropov   1
## 23616                   yuri                  gagarin   1
## 23617                     za                      dax   1
## 23618                   zãƒâ                     rich   1
## 23619                zambian                 national   1
## 23620                 zamuro                       20   1
## 23621                   zant                       29   1
## 23622               zaragoza                     crew   1
## 23623                  zemun                  airport   1
## 23624             zhengchang                  village   1
## 23625                    zia                       ul   1
## 23626               zimathan                 district   1
## 23627               zimbabwe                  peoples   1
## 23628                     zk                      dqf   1
## 23629                zlatãƒâ                   piesky   1
## 23630                   zone                extending   1
## 23631                    zue                        1   1
## 23632                    zue                       1y   1
## 23633                 zurich                  braking   1
bigram_unite <- bigrams_filtered %>% 
  unite(bigram, word1, word2, sep = " ")
bigram_unite
##                                     bigram
## 1.2                   demonstration flight
## 1.5                               u.s army
## 1.6                             army flyer
## 1.7                            flyer flown
## 1.10                        orville wright
## 1.11                           wright nose
## 1.12                            nose dived
## 1.21                      approximately 75
## 1.22                               75 feet
## 1.23                          feet killing
## 1.24                            killing lt
## 1.25                             lt thomas
## 1.28                          selfridge 26
## 1.38                     recorded airplane
## 1.39                     airplane fatality
## 1.46                  propellers separated
## 1.49                        flight tearing
## 1.50                         tearing loose
## 1.53                         wires bracing
## 1.65                      aircraft orville
## 1.66                        orville wright
## 1.67                       wright suffered
## 1.68                       suffered broken
## 1.69                           broken ribs
## 1.70                           ribs pelvis
## 1.74                         leg selfridge
## 1.75                    selfridge suffered
## 1.78                         crushed skull
## 1.83                            short time
## 1.86                       eugene lefebvre
## 1.98                          air accident
## 1.102                      controls jambed
## 1.111                        u.s dirigible
## 1.112                      dirigible akron
## 1.113                       akron exploded
## 1.121                             1,000 ft
## 1.125                          test flight
## 1.129                       fatal airplane
## 1.130                    airplane accident
## 1.133                      canada occurred
## 1.136                 american barnstormer
## 1.137                     barnstormer john
## 1.140                    bryant california
## 1.141                   california aviator
## 1.146                         airship flew
## 1.154                     severe downdraft
## 1.155                   downdraft crashing
## 1.156                          crashing 20
## 1.157                             20 miles
## 1.158                          miles north
## 1.161                     helgoland island
## 1.167                           ship broke
## 1.173                          control car
## 1.174                      car immediately
## 1.175                     immediately sank
## 1.176                        sank drowning
## 1.179                   occupants hydrogen
## 1.180                         hydrogen gas
## 1.190                       forward engine
## 1.193                      ignited causing
## 1.202                             3,000 ft
## 1.203                           ft crashed
## 1.218                      french aircraft
## 1.219                    aircraft exploded
## 1.224                       neuwerk island
## 1.227                         hydrogen gas
## 1.234                    lightning crashed
## 1.238                            black sea
## 1.241                         unknown shot
## 1.245                     british aircraft
## 1.246                    aircraft crashing
## 1.249                          flames shot
## 1.256                         british 39th
## 1.257                            39th home
## 1.258                         home defence
## 1.259                     defence squadron
## 1.260                     squadron crashed
## 1.264                           storm shot
## 1.268                         british anti
## 1.269                        anti aircraft
## 1.270                        aircraft fire
## 1.278                            north sea
## 1.279                           sea caught
## 1.280                          caught fire
## 1.283                       crashed struck
## 1.291                           baltic sea
## 1.292                          sea crashed
## 1.301                             3,000 ft
## 1.307                     british aircraft
## 1.308                        aircraft fire
## 1.309                            fire shot
## 1.313                     british aircraft
## 1.314                        aircraft shot
## 1.318                        aircraft shot
## 1.322                     british aircraft
## 1.323                        aircraft shot
## 1.327                          french anti
## 1.328                        anti aircraft
## 1.329                        aircraft fire
## 1.330                        fire exploded
## 1.339                       southern coast
## 1.342                           italy shot
## 1.346                     british aircraft
## 1.347                    aircraft crashing
## 1.353                            17,000 ft
## 1.354                              ft shot
## 1.358                     british aircraft
## 1.359                        aircraft carl
## 1.360                           carl smith
## 1.366                           mail plane
## 1.367                           plane feet
## 1.368                             feet 500
## 1.369                             500 feet
## 1.383                         wind shifted
## 1.386                         lost control
## 1.395                        ground caught
## 1.396                          caught fire
## 1.401                         pilot leaped
## 1.419                           mail plane
## 1.420                        plane crashed
## 1.423                unknown circumstances
## 1.426                   dirigible cruising
## 1.429                             1,200 ft
## 1.430                            ft caught
## 1.431                          caught fire
## 1.437                       illinois trust
## 1.440                     savings building
## 1.446                  transporting people
## 1.449                           grant park
## 1.453                           white city
## 1.454                       city amusement
## 1.455                       amusement park
## 1.456                               park 1
## 1.464                             ten bank
## 1.465                       bank employees
## 1.485                      crashed sources
## 1.496                         reporting 15
## 1.505                          mail flight
## 1.511                       final approach
## 1.516                         aircraft hit
## 1.517                             hit tree
## 1.518                            tree tops
## 1.524                        woods crashed
## 1.538                          mail flight
## 1.544                    pilot encountered
## 1.545                      encountered bad
## 1.546                          bad weather
## 1.547                   weather conditions
## 1.556                       visual contact
## 1.560                    ground eventually
## 1.567                    emergency landing
## 1.571                          valley west
## 1.574                      newark aircraft
## 1.575                         aircraft hit
## 1.580                      crashed crashed
## 1.593                          mail flight
## 1.596                         aircraft hit
## 1.597                            hit trees
## 1.607                      george sherlock
## 1.613                           mail plane
## 1.614                        plane crashed
## 1.624                         heller field
## 1.627                      poor visibility
## 1.631                         fire erupted
## 1.636                        pilot decided
## 1.641                    emergency landing
## 1.645                     aircraft crashed
## 1.648                     aircraft crashed
## 1.654                      unknown reasons
## 1.657                    worsening weather
## 1.658                   weather conditions
## 1.661                           pilot lost
## 1.673                    aircraft suffered
## 1.674                      suffered engine
## 1.675                       engine failure
## 1.678                      crashed shortly
## 1.688                       engine failure
## 1.689                       failure engine
## 1.690                       engine failure
## 1.691                          failure due
## 1.694                      fuel exhaustion
## 1.697                        plane crashed
## 1.701                         cargo flight
## 1.704                unknown circumstances
## 1.709                      poor visibility
## 1.714                            plane hit
## 1.717                           radio mast
## 1.724                             en route
## 1.727                           mail plane
## 1.739                          flight fire
## 1.742                        pilot crashed
## 1.749                    emergency landing
## 1.753                        engine caught
## 1.754                          caught fire
## 1.757                         plane struck
## 1.758                         struck power
## 1.759                          power lines
## 1.769                         low altitude
## 1.772                      poor visibility
## 1.773                   visibility crashed
## 1.781                          mail flight
## 1.786                          mail flight
## 1.789                        plane crashed
## 1.802                         aircraft hit
## 1.809                     aircraft crashed
## 1.815                         poor weather
## 1.816                    weather condtions
## 1.819                         plane failed
## 1.822                        gain altitude
## 1.836                          house pilot
## 1.837                          pilot error
## 1.846                     unfavorable wind
## 1.847                      wind conditions
## 1.852                       commercial air
## 1.853                         air disaster
## 1.858                 passenger fatalities
## 1.862                  regularly scheduled
## 1.863                    scheduled service
## 1.866                     aircraft stalled
## 1.872                        engine failed
## 1.873                       failed shortly
## 1.878                    minneapolis world
## 1.879                    world chamberlain
## 1.880                    chamberlain field
## 1.883                        engine failed
## 1.886                        aircraft lost
## 1.887                        lost altitude
## 1.893                        field crashed
## 1.896                      unknown reasons
## 1.906                           mail fligh
## 1.907                    fligh encountered
## 1.908                     encountered poor
## 1.909                         poor weather
## 1.910                   weather conditions
## 1.929                    recovered shortly
## 1.935                     aircraft stalled
## 1.938                      crashed shortly
## 1.945                      training flight
## 1.948                        aircraft dove
## 1.961                     aircraft stalled
## 1.966                     aircraft crashed
## 1.970                          field short
## 1.980                    scheduled arrival
## 1.989                          fog crashed
## 1.994                         land crashed
## 1.995                          crashed due
## 1.998                   structural failure
## 1.1006                     fire attributed
## 1.1009                       faulty design
## 1.1010                      design crashed
## 1.1017                          le bourget
## 1.1018                     bourget airport
## 1.1021                         paris pilot
## 1.1022                       pilot aborted
## 1.1025                         landing due
## 1.1038                       plane crashed
## 1.1042                    murchinson river
## 1.1043                    river considered
## 1.1047                   commercial flight
## 1.1050                  australila crashed
## 1.1053                          le bourget
## 1.1054                       bourget field
## 1.1055                       field crashed
## 1.1061                              500 ft
## 1.1064                experiencing control
## 1.1069             malfunctioning controls
## 1.1072                       plane ditched
## 1.1078                            40 miles
## 1.1079                          miles east
## 1.1085                     propeller blade
## 1.1086                         blade broke
## 1.1090                      pilot survived
## 1.1096                              2 days
## 1.1100                         flying boat
## 1.1103                          named miss
## 1.1104                          miss miami
## 1.1107                    midair collision
## 1.1108                  collision occurred
## 1.1111                              400 ft
## 1.1114                     poor visibility
## 1.1115            visibility approximately
## 1.1116                    approximately 18
## 1.1117                            18 miles
## 1.1118                         miles north
## 1.1121                     beauvais france
## 1.1134                        route marker
## 1.1137                         bad weather
## 1.1140                     poor visibility
## 1.1146                   commercial midair
## 1.1147                    midair collision
## 1.1150                    aviation history
## 1.1156                        de havilland
## 1.1163                           60 aboard
## 1.1167                      workers taking
## 1.1172                         flight test
## 1.1175                    seventeen aboard
## 1.1178                   chinese nationals
## 1.1184                     english channel
## 1.1187                            en route
## 1.1190                      passenger mail
## 1.1191                          mail plane
## 1.1192                          plane lost
## 1.1202                       trees actress
## 1.1203                        actress fern
## 1.1204                          fern andra
## 1.1205                      andra survived
## 1.1211                      director georg
## 1.1212                         georg bluen
## 1.1217                        pilot lothar
## 1.1218                          lothar von
## 1.1219                      von richthofen
## 1.1227                           world war
## 1.1234                         manfred von
## 1.1235                      von richthofen
## 1.1238                           red baron
## 1.1239                          baron lost
## 1.1248                   emergency landing
## 1.1252                         gusty winds
## 1.1253                       winds stalled
## 1.1266                   emergency landing
## 1.1267                         landing due
## 1.1273                        aircraft hit
## 1.1274                       hit telephone
## 1.1275                     telephone lines
## 1.1280                       plane stalled
## 1.1281                     stalled shortly
## 1.1286                     crashed shortly
## 1.1292                       plane crashed
## 1.1298                        sank crashed
## 1.1301               unknown circumstances
## 1.1306                    foggy conditions
## 1.1309                       pilot reduced
## 1.1310                    reduced altitude
## 1.1318                       plane crashed
## 1.1319                         crashed mid
## 1.1320                             mid air
## 1.1321                             air due
## 1.1325                  structural failure
## 1.1329                        tail crashed
## 1.1336                   snowstorm crashed
## 1.1340                         mail flight
## 1.1343                          pilot lost
## 1.1344                        lost control
## 1.1353                        poor weather
## 1.1354                  weather conditions
## 1.1355                    conditions broke
## 1.1359                             mid air
## 1.1362                suffering structural
## 1.1363                  structural failure
## 1.1366                            3,000 ft
## 1.1370                        onboard fire
## 1.1371                       fire weakened
## 1.1374                   plane's structure
## 1.1375                    structure losing
## 1.1378                       wing possibly
## 1.1379                    possibly started
## 1.1383                passenger discarding
## 1.1392                       aircraft lost
## 1.1397                          45 minutes
## 1.1408                   maintaining level
## 1.1409                        level flight
## 1.1414                    engine operating
## 1.1417                       pilot decided
## 1.1422                   emergency landing
## 1.1443            apparently misunderstood
## 1.1475                     crashed crashed
## 1.1481                  bucharesst crashed
## 1.1485                   emergency landing
## 1.1486                     landing attempt
## 1.1487                     attempt crashed
## 1.1492                      forced landing
## 1.1495                  encountering heavy
## 1.1496                          heavy rain
## 1.1497                        rain crashed
## 1.1501                     training flight
## 1.1502                      flight crashed
## 1.1505               unknown circumstances
## 1.1506               circumstances crashed
## 1.1513                       toulon france
## 1.1516                     algiers algeria
## 1.1521                       radio contact
## 1.1522                    contact reported
## 1.1531                     battling strong
## 1.1532                        strong winds
## 1.1533                        winds struck
## 1.1536                   lightning crashed
## 1.1542                        poor weather
## 1.1543                  weather conditions
## 1.1544                  conditions crashed
## 1.1550                aircraft disappeared
## 1.1554                           north sea
## 1.1562                       found stalled
## 1.1575                            low pass
## 1.1584                        died stalled
## 1.1589                            en route
## 1.1592                   pilot encountered
## 1.1593           encountered thunderstorms
## 1.1594                  thunderstorms lost
## 1.1595                        lost control
## 1.1598                        crashed lost
## 1.1604                       pilot decided
## 1.1614                      killed shortly
## 1.1619                  witnesses observed
## 1.1624                         white smoke
## 1.1629                          plane nose
## 1.1630                          nose dived
## 1.1634                      ground crashed
## 1.1635                         crashed due
## 1.1639                  unknown mechanical
## 1.1640                  mechanical failure
## 1.1643                    subsiquent stall
## 1.1644                       stall captain
## 1.1645                     captain stewart
## 1.1654                    attempted forced
## 1.1655                      forced landing
## 1.1656                     landing shortly
## 1.1670                      flames shortly
## 1.1678                        low altitude
## 1.1681                     poor visibility
## 1.1684                        aircraft hit
## 1.1687                       lightning rod
## 1.1688                         rod stalled
## 1.1697                         bad weather
## 1.1701                         wing struck
## 1.1702                        struck trees
## 1.1706                       plane crashed
## 1.1707                     crashed failure
## 1.1719                        seaplane hit
## 1.1722                      lightning mast
## 1.1725                     crashed crashed
## 1.1728                unknown circumstance
## 1.1729                circumstance crashed
## 1.1734                             land 10
## 1.1735                               10 km
## 1.1745                       southern ohio
## 1.1749                abruptly encountered
## 1.1750                 encountered violent
## 1.1751                 violent atmospheric
## 1.1752              atmospheric conditions
## 1.1753            conditions thunderstorms
## 1.1754              thunderstorms powerful
## 1.1755                        powerful air
## 1.1756                        air currents
## 1.1757                   currents buffeted
## 1.1768                    maintain control
## 1.1769                      control rising
## 1.1770                      rising rapidly
## 1.1774                     pressure height
## 1.1782                      hull structure
## 1.1785              overstressed amidships
## 1.1786                  amidships breaking
## 1.1792               shenandoah's external
## 1.1793                    external control
## 1.1794                         control car
## 1.1798                         engine cars
## 1.1799                           cars fell
## 1.1800                           fell free
## 1.1801                       free carrying
## 1.1804              dirigible's commanding
## 1.1805                  commanding officer
## 1.1815                       stern section
## 1.1828                         bow section
## 1.1834                        free balloon
## 1.1835                     balloon crashed
## 1.1842                          mt nittany
## 1.1847                      low visibility
## 1.1850                      pilot suffered
## 1.1851                  suffered sunstroke
## 1.1852                      sunstroke lost
## 1.1853                        lost control
## 1.1862                          mail plane
## 1.1868                        low altitude
## 1.1871                        aircraft hit
## 1.1872                           hit trees
## 1.1883                    training filight
## 1.1886                    aircraft stalled
## 1.1895                          mail plane
## 1.1896                       plane crashed
## 1.1900                     english channel
## 1.1905                       found crashed
## 1.1908                            en route
## 1.1914                     adverse weather
## 1.1915                  weather conditions
## 1.1926                    altitude crashed
## 1.1934                        poor weather
## 1.1935                     weather crashed
## 1.1938       weather related.circumstances
## 1.1944                      forced landing
## 1.1947                        romney marsh
## 1.1950                           heavy fog
## 1.1951                          fog engine
## 1.1952                      engine failure
## 1.1955                      pilot initally
## 1.1956                   initally survived
## 1.1965                       weight caused
## 1.1968                        landing gear
## 1.1982                      trans atlantic
## 1.1983                  atlantic passenger
## 1.1984                    passenger flight
## 1.1988                         engine fire
## 1.1991                      pilot attempts
## 1.1996                   emergency landing
## 1.1999                  penshurst airfield
## 1.2002                     crashed weather
## 1.2003                     weather related
## 1.2021                    starboard engine
## 1.2027                       lose altitude
## 1.2031                  eventually ditched
## 1.2037                            18 miles
## 1.2041                       english coast
## 1.2044                        plane stayed
## 1.2045                       stayed afloat
## 1.2051                        fishing boat
## 1.2052                        boat invicta
## 1.2053                     invicta piloted
## 1.2056                    captain marshall
## 1.2065                        named prince
## 1.2066                        prince henry
## 1.2069                            en route
## 1.2077                        mail plane's
## 1.2078                      plane's engine
## 1.2079                       engine failed
## 1.2085                   emergency landing
## 1.2091                        cape bojador
## 1.2095                        landing crew
## 1.2100                    maures tribesmen
## 1.2114                        postal plane
## 1.2115                       plane crashed
## 1.2119                      mountain slope
## 1.2122                    foggy conditions
## 1.2125                         flight crew
## 1.2126                    crew encountered
## 1.2127                    encountered poor
## 1.2128                        poor weather
## 1.2129                  weather conditions
## 1.2134                   emergency landing
## 1.2137                     aircraft landed
## 1.2141                         field badly
## 1.2142                       badly damaged
## 1.2153                       engine failed
## 1.2156                    aircraft stalled
## 1.2159                     crashed crashed
## 1.2163                unsuccessful attempt
## 1.2168                    strong headwinds
## 1.2171                         engine quit
## 1.2175                     plane nosedived
## 1.2179                      ground crashed
## 1.2182                      engine failure
## 1.2183                     failure crashed
## 1.2190                          snow storm
## 1.2194                     engine seaplane
## 1.2195                    seaplane stalled
## 1.2201                         sea shortly
## 1.2208                 experiencing engine
## 1.2209                      engine failure
## 1.2216                      forced landing
## 1.2219                         broken wire
## 1.2220                            wire led
## 1.2224                        partial loss
## 1.2232                       crash landing
## 1.2238                   aircraft striking
## 1.2241                        tree killing
## 1.2244                     flight engineer
## 1.2247                        postal plane
## 1.2248                       plane crashed
## 1.2251                     unknown reasons
## 1.2254                   sightseeing plane
## 1.2261                              400 ft
## 1.2265                       engine failed
## 1.2268                       plane stalled
## 1.2277                       apple orchard
## 1.2278                      orchard engine
## 1.2279                      engine failure
## 1.2292                        flying 1,000
## 1.2293                            1,000 km
## 1.2294                             km east
## 1.2298                      canadian coast
## 1.2304                      mayday message
## 1.2308                    aircraft crashed
## 1.2321                    william randolph
## 1.2322                     randolph hearst
## 1.2327               nonstop transatlantic
## 1.2328                transatlantic flight
## 1.2334                              500 ft
## 1.2343                         crashed due
## 1.2347                         broken wing
## 1.2348                          wing strut
## 1.2351                       plane crashed
## 1.2367                          corn field
## 1.2370                               10 km
## 1.2376                          mail plane
## 1.2377                       plane crashed
## 1.2378                     crashed shortly
## 1.2393                        postal plane
## 1.2394                       plane crashed
## 1.2399                        poor weather
## 1.2402                        fire erupted
## 1.2403                      erupted aboard
## 1.2406                          mail plane
## 1.2409                            en route
## 1.2412                    crashed suffered
## 1.2413                 suffered structural
## 1.2414                  structural failure
## 1.2420                            1,000 ft
## 1.2425                           dense fog
## 1.2433                       mohawk valley
## 1.2443                          mail plane
## 1.2444                      plane detached
## 1.2453                         sea crashed
## 1.2456             experiencing mechanical
## 1.2457             mechanical difficulties
## 1.2458                difficulties crashed
## 1.2461               unknown circumstances
## 1.2464             experiencing turbulence
## 1.2467                        pilot's seat
## 1.2468                           seat belt
## 1.2469                          belt broke
## 1.2476                            air mail
## 1.2477                          mail plane
## 1.2478                       plane crashed
## 1.2484                    cottonwood trees
## 1.2487                  burned businessman
## 1.2488                     businessman f.h
## 1.2489                           f.h craig
## 1.2494                         pilot frank
## 1.2495                         frank yegar
## 1.2496                       yegar injured
## 1.2499                     pilot descended
## 1.2502                        altitude due
## 1.2505                     air pockets.the
## 1.2506                   pockets.the plane
## 1.2512                          air pocket
## 1.2523                       trees crashed
## 1.2529                     delivering mail
## 1.2532                        poor weather
## 1.2533                     weather spatial
## 1.2534              spatial disorientation
## 1.2539                   snowstorm crashed
## 1.2551                         flight fire
## 1.2552                         fire caused
## 1.2557                        lose control
## 1.2567                        fire erupted
## 1.2570                         cargo plane
## 1.2571                       plane crashed
## 1.2574                               itã â
## 1.2575                                 â â
## 1.2578                    inaugural flight
## 1.2587                    sufficient speed
## 1.2593                    encountering fog
## 1.2596                       pilot decided
## 1.2602               precautionary landing
## 1.2611                         cow crashed
## 1.2614                        burned pilot
## 1.2615                         pilot error
## 1.2618                       viper crashed
## 1.2621                     unknown reasons
## 1.2624                          mail plane
## 1.2625                          plane flew
## 1.2635                       field crashed
## 1.2638               unknown circumstances
## 1.2646                            800 feet
## 1.2657                          south west
## 1.2658                      west direction
## 1.2661                    aircraft crashed
## 1.2665                       market garden
## 1.2668                       leigh cottage
## 1.2671                       woodcote road
## 1.2677                    residents flying
## 1.2678                          flying low
## 1.2682                           roof tops
## 1.2686                    engine evidently
## 1.2691                    aircraft crashed
## 1.2695                        potato field
## 1.2702                   cockpit clambered
## 1.2713                      enclosed cabin
## 1.2714                          cabin free
## 1.2717                      aircraft burst
## 1.2737                   stalled condition
## 1.2738                       condition hit
## 1.2746                   waalhaven crashed
## 1.2749                         puget sound
## 1.2752                           dense fog
## 1.2753                              fog 12
## 1.2754                            12 miles
## 1.2757                       port townsend
## 1.2758                 townsend considered
## 1.2762                        canadian air
## 1.2763                        air disaster
## 1.2769                       engine failed
## 1.2772                       plane stalled
## 1.2781                         aerial tour
## 1.2782                       tour carrying
## 1.2783                        carrying sir
## 1.2784                            sir john
## 1.2785                        john salmond
## 1.2788                   aircraft departed
## 1.2789                   departed adelaide
## 1.2790                    adelaide piloted
## 1.2801                   passenger control
## 1.2814                      adelaide hills
## 1.2817                  aircraft encounted
## 1.2818                       encounted bad
## 1.2819                         bad weather
## 1.2820                     weather crashed
## 1.2823                         caught fire
## 1.2826                          flying low
## 1.2836                          mail plane
## 1.2841                           nose dive
## 1.2845                        pilot headed
## 1.2854                      ground rolling
## 1.2858                       times crashed
## 1.2859                         crashed due
## 1.2862                      engine failure
## 1.2863                 failure encountered
## 1.2864                     encountered fog
## 1.2870                      mountain slope
## 1.2876                           sant pere
## 1.2877                             pere de
## 1.2878                            de rodes
## 1.2879                         rodes south
## 1.2884                          mail plane
## 1.2885                       plane crashed
## 1.2896                        poor weather
## 1.2897                   weather conditons
## 1.2900                     pilot attempted
## 1.2903                   emergency landing
## 1.2907                         muddy field
## 1.2912                           sea plane
## 1.2913                         plane stuck
## 1.2916                      lightning mast
## 1.2921                        houses pilot
## 1.2922                         pilot error
## 1.2925                          mail plane
## 1.2926                       plane crashed
## 1.2930                          heavy snow
## 1.2931                          snow storm
## 1.2934                          mail plane
## 1.2935                       plane crashed
## 1.2939                          heavy snow
## 1.2940                          snow storm
## 1.2943                          mail plane
## 1.2944                       plane crashed
## 1.2948                          snow storm
## 1.2951                    aircraft crashed
## 1.2956                            en route
## 1.2957                        route flames
## 1.2972                     delivery flight
## 1.2982                    narrowly avoided
## 1.2992                      process veered
## 1.2993                      veered sharply
## 1.3007                      elastic limits
## 1.3012                        lost control
## 1.3019                           fell tail
## 1.3020                       tail spinning
## 1.3021                        spinning 300
## 1.3022                            300 feet
## 1.3031                    engines exploded
## 1.3036                    sunk immediately
## 1.3039                    aircraft crashed
## 1.3049                           fuel line
## 1.3050                          line broke
## 1.3061                   emergency landing
## 1.3070                    aircraft crashed
## 1.3071                  crashed overturned
## 1.3080                          mail plane
## 1.3081                       plane crashed
## 1.3085                          apple tree
## 1.3089                          snow storm
## 1.3093                   pilot experienced
## 1.3094                 experienced spatial
## 1.3095              spatial disorientation
## 1.3096              disorientation crashed
## 1.3117                    properly crashed
## 1.3123                          fog struck
## 1.3126                      mountain slope
## 1.3129                        poor weather
## 1.3136                   emergency landing
## 1.3140                         minam river
## 1.3143                          mail plane
## 1.3144                           plane hit
## 1.3147                      bolder killing
## 1.3152                     passenger plane
## 1.3153                      plane diverted
## 1.3159                          ionian sea
## 1.3160                             sea due
## 1.3163                        poor weather
## 1.3164                  weather conditions
## 1.3171                          rough seas
## 1.3179                          mail plane
## 1.3180                       plane crashed
## 1.3184                      atlantic ocean
## 1.3187                     unknown reasons
## 1.3194                    aircraft overran
## 1.3201                     perimeter fence
## 1.3213                 sightseeing flights
## 1.3220                      engines failed
## 1.3223                       plane stalled
## 1.3234                              200 ft
## 1.3240                    railroad freight
## 1.3241                         freight car
## 1.3242                          car engine
## 1.3243                      engine failure
## 1.3251                   emergency landing
## 1.3252                     landing attempt
## 1.3255                    aircraft crashed
## 1.3260                      mountain ridge
## 1.3261                     ridge exploding
## 1.3264                impact investigators
## 1.3265            investigators speculated
## 1.3269                    encountering fog
## 1.3275                treacherous mountain
## 1.3276                       mountain pass
## 1.3295                      crash occurred
## 1.3298                    midair collision
## 1.3299                  collision occurred
## 1.3304                           air force
## 1.3305                        force boeing
## 1.3306                           boeing pw
## 1.3307                               pw 9d
## 1.3310                            2,000 ft
## 1.3316                           tri motor
## 1.3321                         boeing army
## 1.3322                          army pilot
## 1.3323                    pilot lieutenant
## 1.3324                   lieutenant howard
## 1.3325                       howard keefer
## 1.3337                       steep banking
## 1.3358                     maddux aircraft
## 1.3362                        diving plane
## 1.3363                        plane struck
## 1.3369                            ford tri
## 1.3370                           tri motor
## 1.3374                    found criminally
## 1.3375                criminally negligent
## 1.3378                       engine failed
## 1.3381                       plane stalled
## 1.3386                      wing separated
## 1.3392                       plane crashed
## 1.3395                      plane collided
## 1.3399                    submerged object
## 1.3409                         muddy field
## 1.3410                     field prevented
## 1.3415                    gaining altitude
## 1.3418                           plane hit
## 1.3419                       hit telephone
## 1.3420                     telephone wires
## 1.3427                   named christopher
## 1.3428                christopher columbus
## 1.3432                          lost power
## 1.3440                     telegraph tower
## 1.3447                     english channel
## 1.3448               channel approximately
## 1.3449                     approximately 3
## 1.3450                             3 miles
## 1.3451                      miles offshore
## 1.3455                       engine failed
## 1.3458                     pilot attempted
## 1.3467                       plane ditched
## 1.3471                     english channel
## 1.3472                     channel failure
## 1.3476                      connecting rod
## 1.3480                        cylinder due
## 1.3483                   fatigue.the plane
## 1.3486                          named city
## 1.3492                      engines failed
## 1.3493                      failed shortly
## 1.3496                     takeoff causing
## 1.3505                       indian mounds
## 1.3506                         mounds park
## 1.3509                    seaplane crashed
## 1.3512                      lake constance
## 1.3524                         plane broke
## 1.3531                          mail plane
## 1.3532                       plane crashed
## 1.3536                        antenna mast
## 1.3541                      low visibility
## 1.3547               manufactured aircraft
## 1.3574               unknown circumstances
## 1.3575               circumstances crashed
## 1.3578               unknown circumstances
## 1.3581                        aorcraft hit
## 1.3588                     poor visibility
## 1.3591                       plane crashed
## 1.3597                           tail spin
## 1.3609                      safety shortly
## 1.3614                    aircraft crashed
## 1.3618                           mt taylor
## 1.3633                       san francisco
## 1.3638                    aircraft crashed
## 1.3639                       crashed short
## 1.3645                      low visibility
## 1.3646                  visibility crashed
## 1.3649                              sea 30
## 1.3650                            30 miles
## 1.3653                     larache morocco
## 1.3656                     unknown reasons
## 1.3667                     unknown reasons
## 1.3670                          mail plane
## 1.3671                       plane crashed
## 1.3674                      mt lamentation
## 1.3681                      flames crashed
## 1.3687                     unknown reasons
## 1.3690                          mail plane
## 1.3691                       plane crashed
## 1.3704                   emergency landing
## 1.3710                    aircraft ditched
## 1.3716                   encountering gale
## 1.3717                          gale force
## 1.3718                         force winds
## 1.3719                          winds sank
## 1.3727                          named city
## 1.3732                          mail plane
## 1.3733                       plane crashed
## 1.3739                             trees 8
## 1.3740                             8 miles
## 1.3741                     miles southwest
## 1.3744                        mount vernon
## 1.3747                     foggy conditons
## 1.3750                            air taxi
## 1.3751                        taxi crashed
## 1.3754                         puget sound
## 1.3763                          mail plane
## 1.3764                       plane crashed
## 1.3767                           dense fog
## 1.3771                     plane's antenna
## 1.3772                        antenna wire
## 1.3773                         wire struck
## 1.3779                      partially torn
## 1.3783                     pilot attempted
## 1.3790                            hit tree
## 1.3791                           tree tops
## 1.3803                      corsican coast
## 1.3806                    aircraft crashed
## 1.3822                       plane crashed
## 1.3823                         crashed due
## 1.3827                  optical phenomenon
## 1.3828                   phenomenon caused
## 1.3831                         calm waters
## 1.3835                    erroneous height
## 1.3836                   height assessment
## 1.3839                          mail plane
## 1.3840                       plane crashed
## 1.3844                           fog bound
## 1.3845                         bound tower
## 1.3849                   interstate bridge
## 1.3850                     bridge spanning
## 1.3853                      columbia river
## 1.3856                          mail plane
## 1.3857                       plane crashed
## 1.3858                          crashed en
## 1.3859                            en route
## 1.3867                          pilot lost
## 1.3874                          crashed 60
## 1.3875                               60 km
## 1.3879                     airport crashed
## 1.3890                demonstration flight
## 1.3893                       airmail plane
## 1.3894                         plane crash
## 1.3895                        crash landed
## 1.3913                   emergency landing
## 1.3914                    landing crrashed
## 1.3915                    crrashed moments
## 1.3921                       port francqui
## 1.3924                            en route
## 1.3927                         los angeles
## 1.3930                        pilot flying
## 1.3933                        low altitude
## 1.3934                        altitude due
## 1.3937                        poor weather
## 1.3938                  weather conditions
## 1.3950                           left wing
## 1.3951                         wing struck
## 1.3954                        hill crashed
## 1.3957                      burned adverse
## 1.3958                     adverse weather
## 1.3959                  weather conditions
## 1.3962                          plane flew
## 1.3966                       sudden squall
## 1.3973                        lose control
## 1.3974                         control ran
## 1.4000                              500 ft
## 1.4003                         caught fire
## 1.4013                    hastily mustered
## 1.4014                       mustered crew
## 1.4021                  universal airlines
## 1.4024                    central airlines
## 1.4032                   accident savagely
## 1.4033                   savagely fighting
## 1.4047                        plane struck
## 1.4055                   connecticut river
## 1.4064                          plane rose
## 1.4069                     crashed fatigue
## 1.4073                         upper front
## 1.4074                         front strut
## 1.4083                      flight causing
## 1.4093                         power lines
## 1.4094                           lines 150
## 1.4095                            150 feet
## 1.4105                    foggy conditions
## 1.4110                     captain lowered
## 1.4113                        altitude hit
## 1.4122                       boston harbor
## 1.4132                         flying boat
## 1.4133                         boat landed
## 1.4141                           ocean due
## 1.4144                      engine failure
## 1.4161                   aircraft exploded
## 1.4170                          4,000 feet
## 1.4171                        feet shortly
## 1.4188                       plane crashed
## 1.4191                            10 miles
## 1.4199                irregular ocillation
## 1.4203               horizontal stabilizer
## 1.4204                  stabilizer leading
## 1.4210                     left stabilizer
## 1.4211                  stabilizer crashed
## 1.4225                        lost control
## 1.4231                        plane caught
## 1.4234                        file shortly
## 1.4242                            air mail
## 1.4243                          mail plane
## 1.4244                       plane crashed
## 1.4259                    inaugural flight
## 1.4262                  cardington england
## 1.4265                    karachi pakistan
## 1.4275                  suddenly nosedived
## 1.4276                   nosedived leveled
## 1.4277                     leveled briefly
## 1.4284                burning preparations
## 1.4290                   political reasons
## 1.4298                          speed test
## 1.4299                         test flight
## 1.4307                         outer cover
## 1.4308                         cover split
## 1.4318                     forward gasbags
## 1.4319                    gasbags ruptured
## 1.4320             ruptured simultaneously
## 1.4321             simultaneously dropping
## 1.4322                    dropping ballast
## 1.4323                      ballast raised
## 1.4333                        dynamic lift
## 1.4337                       promptly lost
## 1.4347                   remaining gasbags
## 1.4348                     gasbags crashed
## 1.4360                         strong gust
## 1.4365                       french postal
## 1.4366                        postal plane
## 1.4367                       plane crashed
## 1.4370                   mountains fflying
## 1.4374                       darling range
## 1.4375                      range aircraft
## 1.4385                       hilly terrain
## 1.4386                     terrain crashed
## 1.4404                          named city
## 1.4409                   developing engine
## 1.4410                      engine trouble
## 1.4436                       death crashed
## 1.4440                         sea crashed
## 1.4449                          4,500 feet
## 1.4460                        aircraft hit
## 1.4466                          river boat
## 1.4470                       plane flipped
## 1.4480                          river bank
## 1.4485                      named shanghai
## 1.4501                          mail plane
## 1.4502                       plane lowered
## 1.4511                          mail plane
## 1.4512                          plane flew
## 1.4515                      bluff mountain
## 1.4518                           dense fog
## 1.4523                            mail bag
## 1.4526                       plane stalled
## 1.4531                      plane carrying
## 1.4532                       carrying mail
## 1.4533                        mail crashed
## 1.4546                           heavy fog
## 1.4553                    accident crashed
## 1.4554                         crashed due
## 1.4557                     fuel exhaustion
## 1.4560                 encountering strong
## 1.4561                    strong headwinds
## 1.4565                        lost crashed
## 1.4569                     snowy mountains
## 1.4572                        poor weather
## 1.4573                  weather conditions
## 1.4574                 conditions wreckage
## 1.4575                      wreckage found
## 1.4576                            found 10
## 1.4577                               10 26
## 1.4578                             26 1958
## 1.4579                        1958 shortly
## 1.4585                         kansas city
## 1.4590                   aircraft's wing's
## 1.4591                    wing's separated
## 1.4600                 experiencing strong
## 1.4601                   strong turbulence
## 1.4606                       plane crashed
## 1.4610                         wheat field
## 1.4611                          field wing
## 1.4612                        wing aileron
## 1.4613                     aileron flutter
## 1.4614                     flutter brought
## 1.4618                    moisture leaking
## 1.4622                     wing's interior
## 1.4623                  interior weakening
## 1.4630                        wooden spars
## 1.4631                         spars notre
## 1.4632                          notre dame
## 1.4633                       dame football
## 1.4634                      football coach
## 1.4635                         coach knute
## 1.4636                        knute rockne
## 1.4637                           rockne 43
## 1.4638                           43 killed
## 1.4639                     killed fuselage
## 1.4640                    fuselage failure
## 1.4651                      radio operator
## 1.4656                          mail plane
## 1.4657                       plane crashed
## 1.4660                           las tunas
## 1.4661                        tunas canyon
## 1.4668                     burbank airport
## 1.4671                           dense fog
## 1.4672                             fog hit
## 1.4673                           hit trees
## 1.4681                      jungle crashed
## 1.4689                     poor visibility
## 1.4692                    icing conditions
## 1.4693                  conditions crashed
## 1.4702                            river 50
## 1.4703                               50 km
## 1.4704                            km south
## 1.4709                 experiencing engine
## 1.4710                      engine trouble
## 1.4719                     poor visibility
## 1.4722                  monsoon conditions
## 1.4725                        wing buckled
## 1.4736                       plane crashed
## 1.4747                          plane rose
## 1.4751                              300 ft
## 1.4754                          nose dived
## 1.4762                       flames engine
## 1.4763                      engine failure
## 1.4764                      failure engine
## 1.4765                         engine quit
## 1.4771                       plane crashed
## 1.4777                            700 feet
## 1.4796                 sufficient altitude
## 1.4801                     aircraft caught
## 1.4802                         caught fire
## 1.4805                             mid air
## 1.4808                     crashed crashed
## 1.4814                            500 feet
## 1.4821                         miami river
## 1.4822                       river shortly
## 1.4827                      engine failure
## 1.4828                         failure due
## 1.4832                          broken hub
## 1.4848                    aircraft crashed
## 1.4852                    severe rainstorm
## 1.4857                        land crashed
## 1.4860                        low overcast
## 1.4865                            en route
## 1.4866                       route crashed
## 1.4869                       san francisco
## 1.4870                       francisco bay
## 1.4871                         bay shortly
## 1.4877                     oakland airport
## 1.4878                     airport crashed
## 1.4884                            en route
## 1.4885                       route crashed
## 1.4901                           land flew
## 1.4907                      mountains lost
## 1.4914                          mail plane
## 1.4915                       plane crashed
## 1.4916                           crashed 8
## 1.4917                             8 miles
## 1.4918                          miles west
## 1.4921                           salt lake
## 1.4922                        lake airport
## 1.4928                    plane overturned
## 1.4940                   snowstorm crashed
## 1.4943                  chingshan mountain
## 1.4944                      mountain range
## 1.4945                            range 10
## 1.4946                            10 miles
## 1.4947                         miles south
## 1.4952                         fog crashed
## 1.4959                        land crashed
## 1.4960                  crashed attempting
## 1.4966                  alternate airfield
## 1.4970                         sleet storm
## 1.4973                        plane struck
## 1.4979                       barn adjacent
## 1.4986                     destroyed icing
## 1.4994                     emergency hatch
## 1.4997                        cockpit roof
## 1.5016                    aircraft crashed
## 1.5022                        crew crashed
## 1.5029                   hydraulic failure
## 1.5043                      extremely poor
## 1.5044                        poor weather
## 1.5045                  weather conditions
## 1.5048                    encountering fog
## 1.5060                            wing tip
## 1.5061                          tip struck
## 1.5067                       plane crashed
## 1.5070                          pilot lost
## 1.5075                           heavy fog
## 1.5092               horizontal stabilizer
## 1.5113                   blizzard wreckage
## 1.5114                      wreckage found
## 1.5121                            en route
## 1.5125                           45 minute
## 1.5126                       minute flight
## 1.5127                       flight struck
## 1.5130                    irrigation ditch
## 1.5133                         caught fire
## 1.5138                          mail plane
## 1.5139                       plane crashed
## 1.5143                   snowstorm crashed
## 1.5152                thunderstorm crashed
## 1.5160                        windmill 500
## 1.5161                           500 yards
## 1.5170                    practicing night
## 1.5171                      night landings
## 1.5174                        crew reduced
## 1.5175                    reduced altitude
## 1.5178                    foggy conditions
## 1.5181                     maintain visual
## 1.5182                      visual contact
## 1.5186                      ground crashed
## 1.5190                       apple orchard
## 1.5193                      striking power
## 1.5194                         power lines
## 1.5197                       survivor died
## 1.5203                          mail plane
## 1.5204                         plane pilot
## 1.5205                       pilot drowned
## 1.5209                   parachute tangled
## 1.5220                          ohio river
## 1.5224                       plane crashed
## 1.5225                     crashed crashed
## 1.5232                          sand storm
## 1.5233                       storm crashed
## 1.5237                       storm crashed
## 1.5241                      final approach
## 1.5242                    approach crashed
## 1.5253                     burbank airport
## 1.5254                     airport crashed
## 1.5261                     engine exploded
## 1.5264                    aircraft crashed
## 1.5268                    severe snowstorm
## 1.5272                     andes mountains
## 1.5283                             wasnã â
## 1.5284                                 â â
## 1.5289                            march 22
## 1.5290                             22 1934
## 1.5291                       1934 crrashed
## 1.5298                     beyrough harbor
## 1.5301                        crew radioed
## 1.5307                            engine 3
## 1.5310                        crew lowered
## 1.5317                   emergency landing
## 1.5320                      low visibility
## 1.5332                          mail plane
## 1.5333                        plane struck
## 1.5340                   encountering poor
## 1.5341                        poor weather
## 1.5342                  weather conditions
## 1.5351                  reduced visibility
## 1.5354                       plane crashed
## 1.5358                       hotel parking
## 1.5359                         parking lot
## 1.5362                           left wing
## 1.5365                     rudder detached
## 1.5368                        strong winds
## 1.5377                          sharp left
## 1.5380                     crashed shortly
## 1.5381                        shortly afer
## 1.5382                         afer taking
## 1.5386                       american army
## 1.5387                          army flyer
## 1.5388                        flyer donald
## 1.5389                         donald duke
## 1.5395                      plane carrying
## 1.5396                   carrying bolivian
## 1.5397                       bolivian army
## 1.5398                       army supplies
## 1.5399                    supplies crashed
## 1.5402                          mail plane
## 1.5403                       plane ditched
## 1.5407                     english channel
## 1.5410                     encountering 60
## 1.5411                             60 mile
## 1.5414                           hour gale
## 1.5415                          gale force
## 1.5416                         force winds
## 1.5417                       winds crashed
## 1.5420                 mountainous terrain
## 1.5424                  spessart mountains
## 1.5430                      wing separated
## 1.5434                        aircraft due
## 1.5444                        plane struck
## 1.5447                            oak tree
## 1.5458                          mail plane
## 1.5459                       plane crashed
## 1.5465                          pilot died
## 1.5472                     injuries struck
## 1.5478                       pilot reduced
## 1.5479                    reduced altitude
## 1.5482                    maintain contact
## 1.5488                          pilot lost
## 1.5489                        lost control
## 1.5496                  aerobatic maneuver
## 1.5506                         float plane
## 1.5507                        plane struck
## 1.5508                        struck waves
## 1.5515                       vertical bank
## 1.5520                      burned crashed
## 1.5529                          mail plane
## 1.5530                          plane lost
## 1.5540                     poor visibility
## 1.5543                          mail plane
## 1.5544                       plane crashed
## 1.5553                    aircraft crashed
## 1.5569                          heavy rain
## 1.5574                unforeseen condition
## 1.5578                   weather developed
## 1.5590                    ceiling suddenly
## 1.5591                    suddenly dropped
## 1.5595                    plane approached
## 1.5605                          4,000 feet
## 1.5610                     observed coming
## 1.5615                        tail section
## 1.5623                   emergency landing
## 1.5627                      fuselage split
## 1.5648                    airline disaster
## 1.5649                     disaster caused
## 1.5666                        passenger dr
## 1.5667                             dr voss
## 1.5673                      commit suicide
## 1.5678                           named cit
## 1.5682                   liverpool crashed
## 1.5685               unknown circumstances
## 1.5690                          1,600 feet
## 1.5694                       jersey strong
## 1.5695                          strong air
## 1.5696                        air currents
## 1.5697                     currents droped
## 1.5702                            700 feet
## 1.5712                         safe height
## 1.5718                      atlantic ocean
## 1.5719                      ocean decision
## 1.5733                   lightning crashed
## 1.5741                       mountain wave
## 1.5742                        wave crashed
## 1.5746                         test flight
## 1.5753                       china crashed
## 1.5763                   strong downdrafts
## 1.5766                          mail plane
## 1.5769                       engine faiure
## 1.5781                       lake michigan
## 1.5784                     pilot encounter
## 1.5785                     encounter rough
## 1.5786                         rough water
## 1.5797                      wing separated
## 1.5801                           plane due
## 1.5805                      previous rough
## 1.5806                       rough landing
## 1.5809                         float plane
## 1.5816                          gale force
## 1.5817                         force winds
## 1.5829                       found crashed
## 1.5833                      mountain slope
## 1.5843                   emergency landing
## 1.5844                     landing crashed
## 1.5851                       insane asylum
## 1.5860                            en route
## 1.5870                    explosive device
## 1.5875                          cargo hold
## 1.5876                     hold consisting
## 1.5879                      nitro glycerin
## 1.5885                       timing device
## 1.5886                 device eyewitnesses
## 1.5890                     ground reported
## 1.5891                    reported hearing
## 1.5894                   explosion shortly
## 1.5897                               9 p.m
## 1.5912                          1,000 feet
## 1.5920                  plane crashed.this
## 1.5933                 commercial aviation
## 1.5934                    aviation crashed
## 1.5938                      thickly wooded
## 1.5952                        pilot bailed
## 1.5957                       engine caught
## 1.5958                         caught fire
## 1.5963                     injured crashed
## 1.5967                  chingshan mountain
## 1.5968                      mountain range
## 1.5971                         fog crashed
## 1.5972                         crashed due
## 1.5975                  structural failure
## 1.5979                         test flight
## 1.5980                      flight crashed
## 1.5983               unknown circumstances
## 1.5984               circumstances crashed
## 1.5993                     poor visibility
## 1.5996                        snow crashed
## 1.5999                        poor weather
## 1.6000                  weather conditions
## 1.6003                     enroute crashed
## 1.6009                          desnse fog
## 1.6014                       radio antenna
## 1.6015                       antenna tower
## 1.6023                    aircraft crashed
## 1.6026                            en route
## 1.6030                    severe snowstorm
## 1.6031                     snowstorm icing
## 1.6036                      named emeraude
## 1.6037                    emeraude crashed
## 1.6042                     parley's canyon
## 1.6043                           canyon 20
## 1.6044                            20 miles
## 1.6047                           salt lake
## 1.6048                           lake city
## 1.6049                        city shortly
## 1.6055                      cheyenne pilot
## 1.6056                         pilot error
## 1.6059                         crew failed
## 1.6062                     gain sufficient
## 1.6063                 sufficient altitude
## 1.6067                      rapidly rising
## 1.6068                      rising terrain
## 1.6069                     terrain crashed
## 1.6073                          snow drift
## 1.6074                           drift due
## 1.6080                     blizzard scadta
## 1.6091                     domestic flight
## 1.6097                    colombian jungle
## 1.6101                        called green
## 1.6102                          green hell
## 1.6105                     goigira indians
## 1.6112                         uribe river
## 1.6113                         river found
## 1.6114                        found pieces
## 1.6120                         dead bodies
## 1.6143                     dazed exhausted
## 1.6144                      exhausted half
## 1.6145                          half crazy
## 1.6175                      south american
## 1.6176                       american gold
## 1.6177                       gold platinum
## 1.6178                    platinum company
## 1.6184                    survivor crashed
## 1.6191                      engine failure
## 1.6192                     failure crashed
## 1.6196                     english channel
## 1.6199                     sunk immedately
## 1.6204                         cargo plane
## 1.6205                        plane struck
## 1.6208                         aerial mast
## 1.6222                         chance hill
## 1.6226                  catskill mountains
## 1.6232                          2,000 feet
## 1.6239                            en route
## 1.6240                         route pilot
## 1.6241                      pilot deviated
## 1.6250                   hazardous terrain
## 1.6251                     terrain crashed
## 1.6254                        mar chiquita
## 1.6255                     chiquita lagoon
## 1.6259                     heavy rainstorm
## 1.6264                           named san
## 1.6265                           san pedro
## 1.6266                       pedro weather
## 1.6267                     weather related
## 1.6268                     related crashed
## 1.6271                            en route
## 1.6278                       plane crashed
## 1.6282                        fire station
## 1.6285                           heavy fog
## 1.6290                      flames killing
## 1.6293                        pilot failed
## 1.6296                       gain altitude
## 1.6316                    watermelon patch
## 1.6319                    aircraft crashed
## 1.6323                       violent storm
## 1.6327                       swiss germany
## 1.6328                      germany border
## 1.6331                          plane fell
## 1.6337                          3,000 feet
## 1.6338                       feet bursting
## 1.6341                      flames failure
## 1.6346                         wing caused
## 1.6362                           crew lost
## 1.6363                        lost control
## 1.6378                         mail flight
## 1.6381                       plane crashed
## 1.6384                            11 miles
## 1.6387                           st joseph
## 1.6390                           heavy fog
## 1.6391                           fog pilot
## 1.6392                         pilot error
## 1.6398                   dangerous weather
## 1.6399                  weather conditions
## 1.6410                           fog bound
## 1.6413                  inaccurate weather
## 1.6414                  weather conditions
## 1.6415                 conditions reported
## 1.6425                   pilot encountered
## 1.6426                    encountered poor
## 1.6427                        poor weather
## 1.6428                  weather conditions
## 1.6431                          light rain
## 1.6442                      low visibility
## 1.6446                        cruising vfr
## 1.6454                       water surface
## 1.6457                     eventually lost
## 1.6458                        lost control
## 1.6484                  navigation crashed
## 1.6488                         flight loss
## 1.6491                    control possibly
## 1.6492                    possibly stalled
## 1.6495                        low altitude
## 1.6498                           dusty low
## 1.6499                      low visibility
## 1.6500               visibility conditions
## 1.6501                  conditions crashed
## 1.6502                          crashed 10
## 1.6503                            10 miles
## 1.6509               unknown circumstances
## 1.6512                      final approach
## 1.6524                         house short
## 1.6529                          caught fir
## 1.6534                      named canberra
## 1.6537                   aircraft suddenly
## 1.6550                     delivery flight
## 1.6555                   brisbane improper
## 1.6556                    improper loading
## 1.6563                          aft center
## 1.6572                    marginal weather
## 1.6573                  weather conditions
## 1.6576                          pilot flew
## 1.6582                          ground hit
## 1.6583                           hit trees
## 1.6594                     pilot committed
## 1.6609                           fog bound
## 1.6614               unknown circumstances
## 1.6617                          mail plane
## 1.6618                       plane crashed
## 1.6625                        low altitude
## 1.6626                      altitude icing
## 1.6627                       icing crashed
## 1.6633                         poor weater
## 1.6634                    weater condtions
## 1.6637                       low visiblity
## 1.6640                            en route
## 1.6646                        iraqi desert
## 1.6651                    crew encountered
## 1.6652                    encountered poor
## 1.6653                        poor weather
## 1.6654                  weather conditions
## 1.6666                   aircraft impacted
## 1.6671                         exploded 16
## 1.6672                               16 km
## 1.6681                         named uiver
## 1.6682                         uiver dutch
## 1.6683                          dutch word
## 1.6686                       stork crashed
## 1.6690                      pilot mountain
## 1.6691                         mountain 50
## 1.6692                             50 feet
## 1.6705                     poor visibility
## 1.6708                   battery generator
## 1.6709                    generator system
## 1.6710                       system failed
## 1.6718                      ship's compass
## 1.6724                essential navigation
## 1.6725              navigation instruments
## 1.6726                 instruments crashed
## 1.6729               unknown circumstances
## 1.6730               circumstances crashed
## 1.6740                       crew survived
## 1.6745                         15 soldiers
## 1.6750                          11 injured
## 1.6756                    court martialled
## 1.6761                          mail plane
## 1.6762                       plane crashed
## 1.6772                  blinding snowstorm
## 1.6773                   snowstorm crashed
## 1.6779                            hill 450
## 1.6780                            450 feet
## 1.6786                           fog icing
## 1.6787                      icing fuselage
## 1.6788                    fuselage failure
## 1.6789                      failure forced
## 1.6792                   emergency landing
## 1.6804                     strong headwind
## 1.6816                      engines failed
## 1.6826                        pilot headed
## 1.6830                         strong wind
## 1.6833                       lost airspeed
## 1.6844                             100 130
## 1.6845                            130 feet
## 1.6848                              crew 3
## 1.6849                           3 student
## 1.6850                      student pilots
## 1.6853                       2 instructors
## 1.6858                     training flight
## 1.6861                          baltic sea
## 1.6865                    aircraft crashed
## 1.6871                     reasons unknown
## 1.6872                     unknown shortly
## 1.6877                     captain decided
## 1.6885                      low visibility
## 1.6888                        aircraft hit
## 1.6899                         chief pilot
## 1.6902                          air france
## 1.6903                       france robert
## 1.6904                        robert bajac
## 1.6905                            bajac 36
## 1.6908                        killed blame
## 1.6922                      flight crashed
## 1.6929                     maintain visual
## 1.6930                      visual contact
## 1.6936                           heavy fog
## 1.6943                     named leeuwerik
## 1.6960                       real position
## 1.6968                       safely manner
## 1.6969                      manner crashed
## 1.6972                   rattlesnake butte
## 1.6976                          plane lost
## 1.6977                         lost engine
## 1.6978                        engine power
## 1.6979                         power james
## 1.6980                       james montijo
## 1.6981                          montijo 40
## 1.6986                       taught amelia
## 1.6987                      amelia earhart
## 1.6990                          fly killed
## 1.6993                accidental collision
## 1.7000                          low flying
## 1.7006                        air commerce
## 1.7007                commerce regulations
## 1.7010                       plane crashed
## 1.7013                            en route
## 1.7018                         kansas city
## 1.7021                    encountering fog
## 1.7024                     poor visibility
## 1.7033                  witnesses reported
## 1.7036                          low flying
## 1.7037                     flying aircraft
## 1.7048                        plane struck
## 1.7060                   emergency landing
## 1.7066                         fuel supply
## 1.7080                      mexico senator
## 1.7081                     senator bronson
## 1.7084                          cutting 46
## 1.7085                           46 killed
## 1.7086                     killed improper
## 1.7087                  improper clearance
## 1.7096                    company's ground
## 1.7097                    ground personnel
## 1.7107                functioning properly
## 1.7108                     properly midair
## 1.7109                    midair collision
## 1.7114                           5 fighter
## 1.7117                            2,300 ft
## 1.7122               performing aerobatics
## 1.7131                       plane crashed
## 1.7135             residental neighborhood
## 1.7141                       maiden flight
## 1.7146                     nicknamed maxim
## 1.7147                         maxim gorky
## 1.7148                         gorky pilot
## 1.7149                         pilot error
## 1.7150                         error forty
## 1.7165                    sightseeing trip
## 1.7168                           plane ran
## 1.7174                crashed carelessness
## 1.7188                         fuel supply
## 1.7193                     dangerously low
## 1.7196                       poor judgment
## 1.7212                       terrain ahead
## 1.7233                        poor weather
## 1.7234                  weather conditions
## 1.7237                       pilot decided
## 1.7246                      visual contact
## 1.7257                accidental collision
## 1.7263                          flying low
## 1.7264                             low due
## 1.7267                        severe local
## 1.7268                       local weather
## 1.7269                  weather conditions
## 1.7270                  conditions crashed
## 1.7286                         avoid trees
## 1.7287                      trees striking
## 1.7295             unintentional collision
## 1.7304                        low altitude
## 1.7307                       night crashed
## 1.7311                          ulua river
## 1.7314                  collision occurred
## 1.7319                            ford tri
## 1.7320                          tri motors
## 1.7337                       olaya herrera
## 1.7338                    herrera airfield
## 1.7343               officially attributed
## 1.7346                          wind sheer
## 1.7386                      accident actor
## 1.7387                        actor singer
## 1.7388                       singer carlos
## 1.7389                       carlos gardel
## 1.7390                           gardel 44
## 1.7394                    lyricist alfredo
## 1.7395                          alfredo le
## 1.7396                             le pera
## 1.7397                             pera 35
## 1.7403                          plane lost
## 1.7404                       lost altitude
## 1.7409                   emergency landing
## 1.7419                            wing hit
## 1.7425                         plane burst
## 1.7430                      plane deviated
## 1.7436                             flew 20
## 1.7437                            20 miles
## 1.7444                     unknown crashed
## 1.7450                          st bernard
## 1.7451                        bernard pass
## 1.7454               switzerland mountains
## 1.7455                  mountains obscured
## 1.7460                           crew flew
## 1.7464                        wrong valley
## 1.7472                     icing condtions
## 1.7473                   condtions shortly
## 1.7478                     cardiff airport
## 1.7483                         twin engine
## 1.7484                     engine aircraft
## 1.7485                    aircraft stalled
## 1.7495                         named saint
## 1.7496                      saint clements
## 1.7497                        clements bay
## 1.7500                            en route
## 1.7503                    crew encountered
## 1.7504                  encountered engine
## 1.7505                      engine trouble
## 1.7506                        trouble lost
## 1.7507                        lost control
## 1.7516                       rio magdalena
## 1.7517                       magdalena ten
## 1.7518                         ten minutes
## 1.7524                  explosion occurred
## 1.7525                     occurred aboard
## 1.7529                    aircraft crashed
## 1.7533                           dessert 8
## 1.7534                                8 km
## 1.7535                            km south
## 1.7546              undetermined destoryed
## 1.7550                       storm crashed
## 1.7551                           crashed 3
## 1.7552                             3 miles
## 1.7553                         miles south
## 1.7558                     outboard engine
## 1.7559                    engine separated
## 1.7566                     propeller blade
## 1.7567                         blade broke
## 1.7573                imbalanced condition
## 1.7583                      aircraft dense
## 1.7584                           dense fog
## 1.7585                          fog caused
## 1.7592                      forced landing
## 1.7595                            15 miles
## 1.7596                         miles south
## 1.7603                  mechanical repairs
## 1.7612                             50 feet
## 1.7618                       shallow water
## 1.7619                          water loss
## 1.7628                        low altitude
## 1.7631                       sudden engine
## 1.7632                      engine failure
## 1.7633                         failure due
## 1.7637                        extreme nose
## 1.7638                      nose heaviness
## 1.7642                 aircraft adventurer
## 1.7643                    adventurer wiley
## 1.7644                          wiley post
## 1.7645                             post 37
## 1.7650                           rogers 56
## 1.7651                           56 killed
## 1.7668                  heavily customized
## 1.7669                 customized aircraft
## 1.7670                   aircraft resulted
## 1.7674                 uncontrollable spin
## 1.7682                          plane flew
## 1.7686                         mountain 43
## 1.7687                            43 miles
## 1.7688                          miles west
## 1.7693                           heavy fog
## 1.7701                       pilot decided
## 1.7706                        direct route
## 1.7724                        direct route
## 1.7733                    dangerous flying
## 1.7734                      flying country
## 1.7746                     burbank airport
## 1.7754                          1,000 feet
## 1.7757                    foggy conditions
## 1.7764                     control stalled
## 1.7765                         stalled hit
## 1.7766                           hit power
## 1.7767                         power lines
## 1.7775                       field crashed
## 1.7780                 mountainous terrain
## 1.7783                     adverse weather
## 1.7784                  weather conditions
## 1.7785                  conditions crashed
## 1.7789                         bass strait
## 1.7795                 uncontrollable spin
## 1.7799                      engine failure
## 1.7805                     normal slightly
## 1.7806                 slightly descending
## 1.7807                     descending path
## 1.7826                       knoll tearing
## 1.7832                     engine nacelles
## 1.7846                          1,120 feet
## 1.7852                          rest error
## 1.7863                     abrupt maneuver
## 1.7866               insufficient altitude
## 1.7876                     maintain proper
## 1.7877                      proper control
## 1.7884                    maneuver crashed
## 1.7891                           dense fog
## 1.7894                      low visibility
## 1.7897                          plane lost
## 1.7900                         left engine
## 1.7901                      engine shortly
## 1.7912                   emergency landing
## 1.7922                       plane crashed
## 1.7923                     crashed crashed
## 1.7929                        poor weather
## 1.7930                  weather conditions
## 1.7931                        conditions 5
## 1.7932                             5 miles
## 1.7933                         miles south
## 1.7936                       cheyenne test
## 1.7937                         test flight
## 1.7938                         flight poor
## 1.7939                       poor judgment
## 1.7947                     abrupt maneuver
## 1.7950               insufficient altitude
## 1.7960                     maintain proper
## 1.7961                      proper control
## 1.7970                        postal plane
## 1.7971                       plane crashed
## 1.7974                       atalaya beach
## 1.7977               unknown circumstances
## 1.7978               circumstances plunged
## 1.7982                       ground thirty
## 1.7983                      thirty minutes
## 1.7986                        leaving fort
## 1.7987                          fort worth
## 1.7993                      dallas airport
## 1.7994                         airport due
## 1.7997                   inclement weather
## 1.8004                          fire broke
## 1.8008                        fire erupted
## 1.8011                     fueling crashed
## 1.8012                      crashed whille
## 1.8013                       whille flying
## 1.8022                      final approach
## 1.8043                        garden short
## 1.8049                          flying low
## 1.8052                        aircraft hit
## 1.8053                            hit tree
## 1.8054                           tree tops
## 1.8055                        tops stalled
## 1.8065                               13 km
## 1.8066                            km short
## 1.8075                    request bearings
## 1.8089               unknown circumstances
## 1.8092                        aircraft ran
## 1.8110                         float plane
## 1.8111                       plane crashed
## 1.8114                experiencing unknown
## 1.8115                   unknown technical
## 1.8116              technical difficulties
## 1.8121                           land flew
## 1.8138                   include passenger
## 1.8139              passenger interference
## 1.8142                           fuel tank
## 1.8143                        tank running
## 1.8144                         running dry
## 1.8145                          dry flying
## 1.8156                    controls crashed
## 1.8165                         tapacari 23
## 1.8166                            23 miles
## 1.8169                chochabanba vanished
## 1.8179                       distress call
## 1.8185                      failed crashed
## 1.8198               snowstorm disappeared
## 1.8202                      atlantic ocean
## 1.8215                         named ville
## 1.8216                            ville de
## 1.8217                           de buenos
## 1.8218                        buenos aires
## 1.8221                          mail plane
## 1.8222                   plane disappeared
## 1.8225                            en route
## 1.8226                         route crash
## 1.8227                        crash landed
## 1.8251                           low speed
## 1.8254                    aircraft stalled
## 1.8261                         caught fire
## 1.8268                     german tourists
## 1.8269                   tourists possibly
## 1.8270                     possibly caught
## 1.8284                          mail plane
## 1.8285                     plane explosion
## 1.8288                             mid air
## 1.8297                   snowstorm crashed
## 1.8300                      chestnut ridge
## 1.8305                       poor judgment
## 1.8316                       visual ground
## 1.8317                  ground observation
## 1.8318                 observation methods
## 1.8329                 mountainous terrain
## 1.8341                     poor visibility
## 1.8344                     required flying
## 1.8345                        flying close
## 1.8352                       safest method
## 1.8367                       safe altitude
## 1.8379                       radio crashed
## 1.8386                           plane hit
## 1.8401                  injured passengers
## 1.8404                         jose iturbi
## 1.8410                     pianist crashed
## 1.8416                         mount basso
## 1.8417                            basso 20
## 1.8418                            20 miles
## 1.8421                      turin deviated
## 1.8432                        poor weather
## 1.8433                  weather conditions
## 1.8434               conditions navigation
## 1.8435                    navigation error
## 1.8444                         cargo plane
## 1.8453                          le bourget
## 1.8454                     bourget airport
## 1.8457                         cargo plane
## 1.8458                       plane crashed
## 1.8461                             mt rigi
## 1.8466                        poor weather
## 1.8467                   weather conditons
## 1.8470                        aircraft hit
## 1.8471                       hit telephone
## 1.8472                     telephone wires
## 1.8489                       aircraft quit
## 1.8495                     pilot attempted
## 1.8505                      fatal aviation
## 1.8506                   aviation accident
## 1.8509                  sweden.the captain
## 1.8510                  captain mistakenly
## 1.8519                     propeller pitch
## 1.8520                       pitch handles
## 1.8527                        weak mixture
## 1.8528                     mixture causing
## 1.8536                     pilot attempted
## 1.8539                   emergency landing
## 1.8546                     engine failured
## 1.8551                          named puma
## 1.8556                    aircraft crashed
## 1.8563                         mt lyhesten
## 1.8566                         fog shortly
## 1.8585                        landing gear
## 1.8586                         gear failed
## 1.8591                     aircraft veered
## 1.8599                      flames ditched
## 1.8602                            sea loss
## 1.8606               engines necessitating
## 1.8613                          mail plane
## 1.8614                       plane crashed
## 1.8617                        mountains 50
## 1.8618                            50 miles
## 1.8623                         fog crashed
## 1.8626                     delivering mail
## 1.8627                        mail crashed
## 1.8635                       lambert field
## 1.8644                       extremely low
## 1.8645                        low altitude
## 1.8648                     reasons unknown
## 1.8656            airplane unintentionally
## 1.8657           unintentionally contacted
## 1.8662                         float plane
## 1.8663                       plane crashed
## 1.8666               unknown circumstances
## 1.8669                          mail plane
## 1.8670                       plane crashed
## 1.8675               unknown circumstances
## 1.8682                           plane hit
## 1.8689                      strong lateral
## 1.8690                       lateral winds
## 1.8695                           rough sea
## 1.8696                            sea lost
## 1.8703                         fuel supply
## 1.8710                      passenger shut
## 1.8714                         fuel supply
## 1.8728                       girl survived
## 1.8729                    survived crashed
## 1.8732               unknown circumstances
## 1.8735                     delivering mail
## 1.8736                        mail crashed
## 1.8743                           pilot cut
## 1.8749                       plane crashed
## 1.8753                       hill suffered
## 1.8754                     suffered engine
## 1.8755                       engine failue
## 1.8759                     approach struck
## 1.8771                           half hour
## 1.8777                       engine failed
## 1.8781                       plane crashed
## 1.8793                      forced landing
## 1.8796                          mail plane
## 1.8797                       plane crashed
## 1.8800                     reasons unknown
## 1.8803                          mail plane
## 1.8804                       plane crashed
## 1.8807               unknown circumstances
## 1.8810                  encountering heavy
## 1.8811                           heavy fog
## 1.8820                            hit tree
## 1.8821                           tree tops
## 1.8838                                 ã â
## 1.8839                            â ëœlost
## 1.8842                         bearingsã â
## 1.8843                                 â â
## 1.8849                           heavy fog
## 1.8850                       fog resulting
## 1.8855                   controlled impact
## 1.8862                uncontrolled descent
## 1.8870                   nuremberg airport
## 1.8873                    foggy conditions
## 1.8876                   aircraft deviated
## 1.8888                            hit tree
## 1.8889                           tree tops
## 1.8897                         pilot error
## 1.8900                          mail plane
## 1.8901                     plane attempted
## 1.8906                        strong winds
## 1.8909                        poor weather
## 1.8910                   weather conditons
## 1.8911                     conditons pilot
## 1.8912                         pilot error
## 1.8913                       error crashed
## 1.8917                         french alps
## 1.8925                        named rudolf
## 1.8926                     rudolf windisch
## 1.8927                    windisch crashed
## 1.8928                       crashed short
## 1.8949                         rear engine
## 1.8959                       found aviator
## 1.8960                        aviator jean
## 1.8961                         jean mermoz
## 1.8962                       mermoz killed
## 1.8965                    aircraft crashed
## 1.8975                           heavy fog
## 1.8981                      radio operator
## 1.8982                   operator survived
## 1.8983                   survived aircraft
## 1.8984                   aircraft designer
## 1.8985                       designer juan
## 1.8986                             juan de
## 1.8987                               de la
## 1.8988                           la cierva
## 1.8989                       cierva killed
## 1.8990                        killed pilot
## 1.8991                         pilot error
## 1.8992                        error piilot
## 1.8996                maintain directional
## 1.8997                 directional control
## 1.9005                     takeoff crashed
## 1.9008                           lone peak
## 1.9015                           salt lake
## 1.9016                      lake inability
## 1.9024                           south leg
## 1.9028                           salt lake
## 1.9029                          lake radio
## 1.9030                         radio range
## 1.9031                           range due
## 1.9035                        local static
## 1.9036                    static condition
## 1.9041                     range receivers
## 1.9045                airplane inoperative
## 1.9048                          mail plane
## 1.9049                       plane crashed
## 1.9053                         creek ridge
## 1.9054                            ridge 15
## 1.9055                            15 miles
## 1.9056                         miles south
## 1.9062                      blizzard pilot
## 1.9063                         pilot error
## 1.9069                         radio range
## 1.9073                    leaving missoula
## 1.9081                       safe altitude
## 1.9088                           elk river
## 1.9089                       river crashed
## 1.9094                        poor weather
## 1.9101                        newark error
## 1.9122                   position improper
## 1.9123                improper dispatching
## 1.9133                       predicted bad
## 1.9134                         bad weather
## 1.9146                         safe return
## 1.9149                   static conditions
## 1.9150              conditions encountered
## 1.9153                  rendered reception
## 1.9157                         radio range
## 1.9158                       range signals
## 1.9162                    airplane's range
## 1.9163                     range receivers
## 1.9164            receivers unintelligible
## 1.9173                       engine failed
## 1.9177                       plane crashed
## 1.9185                          corn field
## 1.9191                     burbank airport
## 1.9194                    airliner crashed
## 1.9197                         rice canyon
## 1.9207                     poor visibility
## 1.9210                       aircraft flew
## 1.9214                        hill loosing
## 1.9217                     wings continued
## 1.9222                         rice canyon
## 1.9228                          rocky wall
## 1.9237                        hundred feet
## 1.9244                        canyon error
## 1.9258                        newhall pass
## 1.9262                      altitude lower
## 1.9266               surrounding mountains
## 1.9274                    existing weather
## 1.9281                    aircraft crashed
## 1.9284                      playa vincente
## 1.9287                     adverse weather
## 1.9290                    aircraft crashed
## 1.9293                        pinetos peak
## 1.9294                              peak 4
## 1.9295                             4 miles
## 1.9296                     miles southeast
## 1.9305                     burbank airport
## 1.9312                     pilot descended
## 1.9316                     dangerously low
## 1.9317                        low altitude
## 1.9320                  positive knowledge
## 1.9324                    position african
## 1.9325                    african explorer
## 1.9326                     explorer martin
## 1.9327                      martin johnson
## 1.9328                          johnson 52
## 1.9329                           52 killed
## 1.9330                      killed johnson
## 1.9331                    johnson suffered
## 1.9334                     fractured skull
## 1.9360                    aircraft crashed
## 1.9363                       san francisco
## 1.9364                       francisco bay
## 1.9365                   bay approximately
## 1.9366                     approximately 2
## 1.9367                             2 miles
## 1.9368                      miles offshore
## 1.9374                  accidental jamming
## 1.9378                   elevator controls
## 1.9386                  pilot's microphone
## 1.9389               inadvertently dropped
## 1.9395                    elevator control
## 1.9396                      control column
## 1.9400                           seat rail
## 1.9412                       prevent rapid
## 1.9413                       rapid descent
## 1.9419                  accident involving
## 1.9422                                dc 3
## 1.9423                            3 flying
## 1.9424                          flying low
## 1.9427                     maintain visual
## 1.9428                      visual contact
## 1.9434                           plane ran
## 1.9445                       plane crashed
## 1.9450                         german mail
## 1.9451                          mail plane
## 1.9452                       plane crashed
## 1.9460                       named rostock
## 1.9461                     rostock crashed
## 1.9476                     aircraft banked
## 1.9477                         banked left
## 1.9480                       crashed short
## 1.9484                        runway heavy
## 1.9485                         heavy icing
## 1.9490                plane uncontrollable
## 1.9491               uncontrollable engine
## 1.9492                      engine failure
## 1.9493                         failure led
## 1.9497                       crash landing
## 1.9503                  airship hindenburg
## 1.9504                   hindenburg caught
## 1.9505                         caught fire
## 1.9519                    static discharge
## 1.9522                     ignited leaking
## 1.9523                    leaking hydrogen
## 1.9537                      landing caused
## 1.9540                         steel cable
## 1.9549                    hydrogen airbags
## 1.9553                       mooring ropes
## 1.9563                  discharged setting
## 1.9567                    static discharge
## 1.9571                  hindenburg's outer
## 1.9572                          outer skin
## 1.9575                       frame causing
## 1.9580                      ignite stalled
## 1.9587                      final approach
## 1.9592                        crew elected
## 1.9600                     unknown reasons
## 1.9603                    aircraft stalled
## 1.9606                       crashed short
## 1.9611                   plane disappeared
## 1.9614                            en route
## 1.9619                      howland island
## 1.9629                        expected due
## 1.9635                          extra fuel
## 1.9638                     addition strong
## 1.9639                         strong head
## 1.9640                          head winds
## 1.9656                            ocean 50
## 1.9659                           100 miles
## 1.9660                     miles northwest
## 1.9663                      howland island
## 1.9664                       island amelia
## 1.9665                      amelia earhart
## 1.9666                          earhart 40
## 1.9669                      navigator fred
## 1.9670                         fred noonan
## 1.9671                       noonan killed
## 1.9674                    aircraft crashed
## 1.9678                        potato field
## 1.9690                         flight fire
## 1.9691                        fire crashed
## 1.9699                   accident happened
## 1.9703                      crew abandoned
## 1.9710                  overshoot maneuver
## 1.9713                         flying boat
## 1.9714                        boat plunged
## 1.9718                            ocean 20
## 1.9719                            20 miles
## 1.9743                            en route
## 1.9746                        plane caught
## 1.9747                         caught fire
## 1.9752                       passenger lit
## 1.9758                         rear toilet
## 1.9761                 ignited accumulated
## 1.9762                  accumulated vapors
## 1.9763                       vapors forced
## 1.9769                             sea due
## 1.9772                         bad weather
## 1.9775                          wing broke
## 1.9783                        8 passengers
## 1.9784                     passengers hung
## 1.9789                      remaining wing
## 1.9796                      named chekiang
## 1.9799                        plane struck
## 1.9802                          power pole
## 1.9813                          ground 600
## 1.9814                            600 feet
## 1.9825                   reasonable notice
## 1.9846                     aircraft taking
## 1.9850                         cargo plane
## 1.9851                       plane crashed
## 1.9859                            en route
## 1.9862                      entering dense
## 1.9863                           dense fog
## 1.9869                     foggy condition
## 1.9872                         cargo plane
## 1.9873                          plane lost
## 1.9874                       lost altitude
## 1.9880                       house crashed
## 1.9886                        phaleron bay
## 1.9889                  passengers drowned
## 1.9890                        drowned poor
## 1.9891                     poor visibility
## 1.9900                       initial climb
## 1.9903                         left engine
## 1.9904                       engine failed
## 1.9907                        crew decided
## 1.9913                        safe landing
## 1.9917                        aircraft hit
## 1.9918                            hit tree
## 1.9919                           tree tops
## 1.9920                        tops stalled
## 1.9923                   crashed bronislaw
## 1.9924                 bronislaw hubermann
## 1.9925                hubermann celibrated
## 1.9926                   celibrated polish
## 1.9927                    polish violinist
## 1.9930                     sightly injured
## 1.9933                       plane crashed
## 1.9940                      mountain humpy
## 1.9941                         humpy ridge
## 1.9944                        level flight
## 1.9947                           10,000 ft
## 1.9950                     adverse weather
## 1.9951                  weather conditions
## 1.9952                   conditions static
## 1.9953                   static conditions
## 1.9954              conditions encountered
## 1.9968                         radio range
## 1.9969                       range signals
## 1.9970              signals unintelligible
## 1.9978                 mountainous country
## 1.9991                   ground visibility
## 1.9994                       radio signals
## 1.9998                   identify position
## 1.10004                     weather caused
## 1.10011                   unpredicted cold
## 1.10012                         cold front
## 1.10013                  front disappeared
## 1.10018                      distress call
## 1.10021                           en route
## 1.10024                     final approach
## 1.10030                    poor visibility
## 1.10031                     visibility due
## 1.10036                         pilot flew
## 1.10039                            low hit
## 1.10040                          hit power
## 1.10041                        power lines
## 1.10047                          field hit
## 1.10050                 ground prematurely
## 1.10071                     scheduled stop
## 1.10074                    brussel's haren
## 1.10075                      haren airport
## 1.10092                     ostend weather
## 1.10093                 weather conditions
## 1.10103                       aircraft hit
## 1.10106                    factory chimney
## 1.10113                       ostend stene
## 1.10114                      stene airport
## 1.10120                   killed including
## 1.10123                         grand duke
## 1.10136                        minor royal
## 1.10137                      royal wedding
## 1.10140                   airport employee
## 1.10153                    poor visibility
## 1.10154                  visibility engine
## 1.10155                     engine failure
## 1.10158                     takeoff caused
## 1.10161                        cargo plane
## 1.10169                     hanger crashed
## 1.10178                     low visibility
## 1.10179                 visibility stalled
## 1.10187                          sea wrong
## 1.10188                         wrong flap
## 1.10189                       flap setting
## 1.10192                    takeoff causing
## 1.10199                        flying boat
## 1.10200                       boat crashed
## 1.10210                       named cygnus
## 1.10211                     cygnus crashed
## 1.10214                       poor weather
## 1.10215                 weather conditions
## 1.10220                        low hitting
## 1.10221                        hitting pas
## 1.10222                             pas de
## 1.10223                              de la
## 1.10224                           la motte
## 1.10225                         motte peak
## 1.10230                         10 minutes
## 1.10245                     prague airport
## 1.10246                 airport controller
## 1.10254                mountainous terrain
## 1.10257                   snowy conditions
## 1.10260                     plane impacted
## 1.10261                    impacted hutska
## 1.10262                        hutska hora
## 1.10263                      hora mountain
## 1.10269                         3,300 feet
## 1.10275                determined possibly
## 1.10278                  naviational error
## 1.10282                  political reasons
## 1.10283                    reasons crashed
## 1.10284                      crashed short
## 1.10296                   icing conditions
## 1.10299                   aircraft crashed
## 1.10300                         crashed 12
## 1.10301                           12 miles
## 1.10302                    miles northeast
## 1.10307            experiencing structural
## 1.10308                 structural failure
## 1.10315                  severe turbulence
## 1.10316                turbulence reported
## 1.10328                 structural failure
## 1.10332                     upper vertical
## 1.10333                      vertical fins
## 1.10336                        rudders due
## 1.10339                    flutter natural
## 1.10340                  natural resonance
## 1.10364                  aircraft exploded
## 1.10367                            mid air
## 1.10371                     crew attempted
## 1.10374                          dump fuel
## 1.10378                  emergency landing
## 1.10381                          pago pago
## 1.10396                       named samoan
## 1.10397                     samoan clipper
## 1.10398                        clipper pan
## 1.10399                     pan american's
## 1.10403                        chief pilot
## 1.10404                      pilot captain
## 1.10405                      captain edwin
## 1.10408                      musick killed
## 1.10409                     killed crashed
## 1.10412                     rugged terrain
## 1.10415                           en route
## 1.10419                   aircraft crashed
## 1.10422                            mid air
## 1.10425                         heavy rain
## 1.10435                    airship crashed
## 1.10440                       trial flight
## 1.10445                   rescuing russian
## 1.10446                 russian scientists
## 1.10450                           ice floe
## 1.10455                    airship crashed
## 1.10462                   mountain crashed
## 1.10467                        test flight
## 1.10470                        flying boat
## 1.10471                        boat struck
## 1.10478                           60 miles
## 1.10494                  mediterranean sea
## 1.10502                         mail plane
## 1.10503                      plane crashed
## 1.10515                    bourget airport
## 1.10516                    airport crashed
## 1.10525                     severe weather
## 1.10526                      weather front
## 1.10529                           en route
## 1.10532                      pilot radioed
## 1.10540                               dc 2
## 1.10548                tehachapi mountains
## 1.10566                   aircraft sheared
## 1.10572                         pine trees
## 1.10575                        crashed 200
## 1.10576                           200 feet
## 1.10587                               6 12
## 1.10588                              12 38
## 1.10589                         38 crashed
## 1.10594                     flames shortly
## 1.10600                            dum dum
## 1.10608                       lost control
## 1.10616                         mail plane
## 1.10617                      plane crashed
## 1.10620                         cinq croix
## 1.10621                         croix peak
## 1.10625                 pyrenees mountains
## 1.10628                           en route
## 1.10629                       route struck
## 1.10630                       struck cloud
## 1.10631                     cloud obscured
## 1.10632                     obscured mount
## 1.10633                     mount maranola
## 1.10634                   maranola stalled
## 1.10641                experiencing engine
## 1.10642                     engine failure
## 1.10648                      plane crashed
## 1.10655                      flames struck
## 1.10656                       struck stroh
## 1.10657                         stroh peak
## 1.10660                         3,300 feet
## 1.10663                        mint canyon
## 1.10664                          canyon 27
## 1.10665                         27 minutes
## 1.10671                    burbank airport
## 1.10674                    aircraft struck
## 1.10677                      ridge bounded
## 1.10686                        ridge broke
## 1.10699              prescribed procedures
## 1.10706                    unsafe altitude
## 1.10711                 mountainous region
## 1.10712                     region shortly
## 1.10717                      plane stalled
## 1.10722                     santos estuary
## 1.10725                uncontrollable fire
## 1.10726                     fire developed
## 1.10734                      pilot decided
## 1.10739                  emergency landing
## 1.10745                    reach cleveland
## 1.10746                  cleveland airport
## 1.10749                       plane struck
## 1.10750                       struck trees
## 1.10753                       level flight
## 1.10754                         flight 8.5
## 1.10755                          8.5 miles
## 1.10756                         miles east
## 1.10759                  cleveland airport
## 1.10766                   engine accessory
## 1.10767                  accessory section
## 1.10776                    cylinder barrel
## 1.10784                         engine oil
## 1.10785                         oil supply
## 1.10786                     supply crashed
## 1.10793                      hitting trees
## 1.10794                      trees crashed
## 1.10797                    langeoog island
## 1.10798                     island crashed
## 1.10801                           50 miles
## 1.10808                   leaving santiago
## 1.10809                     santiago radio
## 1.10810                      radio contact
## 1.10830                      february 1941
## 1.10840                    dead passengers
## 1.10851                      airplane left
## 1.10857                  stalled condition
## 1.10862                    pilot attempted
## 1.10870                    emergency power
## 1.10871                    power emergency
## 1.10872                    emergency power
## 1.10879                improper adjustment
## 1.10893                    propeller pitch
## 1.10894                      pitch control
## 1.10895                     control levers
## 1.10896                  levers preventing
## 1.10905                          low pitch
## 1.10906                     pitch position
## 1.10913                  stalled condition
## 1.10916                      airplane fell
## 1.10928                         1,100 feet
## 1.10932                          ne runway
## 1.10946                        flying boat
## 1.10947                       boat crashed
## 1.10951                     tyrrhenian sea
## 1.10958                   wing disappeared
## 1.10962                    andes mountains
## 1.10963                 mountains wreckage
## 1.10964                     wreckage found
## 1.10965                          found feb
## 1.10966                         feb 1941at
## 1.10967                          1941at mt
## 1.10968                      mt mercedario
## 1.10969                 mercedario crashed
## 1.10972                  strong turbulence
## 1.10979                     lightning flew
## 1.10992                     named amalthea
## 1.10995                      plane crashed
## 1.11001                           en route
## 1.11017                             582 nm
## 1.11018                            nm east
## 1.11019                     east southeast
## 1.11024                              04 00
## 1.11025                             00 gct
## 1.11041                        truk island
## 1.11053                       named hawaii
## 1.11054                     hawaii clipper
## 1.11055                    clipper crashed
## 1.11067                 carrying hungarian
## 1.11068              hungarian journalists
## 1.11069                  journalists crash
## 1.11070                       crash landed
## 1.11073                  chichijima island
## 1.11074                     island crashed
## 1.11080                         heavy rain
## 1.11089                  hurricane crashed
## 1.11093                       black forest
## 1.11094                   forest mountains
## 1.11097                       poor weather
## 1.11098                 weather conditions
## 1.11101                stewardess survived
## 1.11111                      mountain wave
## 1.11123                      guanabara bay
## 1.11124                         bay caught
## 1.11125                        caught fire
## 1.11129                     ground looping
## 1.11132                          sea plane
## 1.11133                      plane crashed
## 1.11134                    crashed shortly
## 1.11141                        test flight
## 1.11146                           en route
## 1.11149                          hong kong
## 1.11159                  japanese military
## 1.11160                  military fighters
## 1.11165                      named kweilin
## 1.11181                  japanese military
## 1.11182                    military midair
## 1.11183                   midair collision
## 1.11193                      wreckage fell
## 1.11215                     mail passenger
## 1.11216                passenger transport
## 1.11217                  transport crashed
## 1.11221                           field 10
## 1.11222                           10 miles
## 1.11223                        miles south
## 1.11230                       strong storm
## 1.11231                    storm excessive
## 1.11232                excessive vibration
## 1.11237                          power due
## 1.11242                        left engine
## 1.11243                  engine consulting
## 1.11246                 insufficient speed
## 1.11253                     flight crashed
## 1.11257                         cane field
## 1.11258                        field short
## 1.11269                      pilot swerved
## 1.11274                tractor disappeared
## 1.11278                     atlantic ocean
## 1.11286               aircraft disappeared
## 1.11304                     mountain guide
## 1.11305                        guide found
## 1.11306                       found debris
## 1.11307                          debris 14
## 1.11316                      pizzo cengalo
## 1.11324                          mail bags
## 1.11332                         local post
## 1.11333                        post office
## 1.11336                     aircraft broke
## 1.11350                     broken tearing
## 1.11351                      tearing loose
## 1.11354                     engine crashed
## 1.11357                       mt daodenong
## 1.11360                          heavy fog
## 1.11363                           en route
## 1.11364                   route procedural
## 1.11365                  procedural errors
## 1.11369                       pilot caught
## 1.11370                        caught fire
## 1.11383                        farm worker
## 1.11391                    wreckage landed
## 1.11396                      pilot allowed
## 1.11410                       low overcast
## 1.11415              insufficient altitude
## 1.11420                      regain contol
## 1.11423                      aircraft flew
## 1.11431                    poor visibility
## 1.11440                    military flying
## 1.11441                      flying school
## 1.11442                 school soesterberg
## 1.11443                  soesterberg pilot
## 1.11444                    pilot descended
## 1.11448                        safe height
## 1.11454                         mail plane
## 1.11455                      plane crashed
## 1.11467                       aircraft hit
## 1.11470                          palm tree
## 1.11475                         flames due
## 1.11478                      double engine
## 1.11479                     engine failure
## 1.11482                        flying boat
## 1.11483                       boat crashed
## 1.11486                        lake ramadi
## 1.11494                       aircraft ran
## 1.11509                      mile offshore
## 1.11510                   offshore failure
## 1.11524               standard orientation
## 1.11525             orientation procedures
## 1.11529                    reasonable time
## 1.11537                      oakland radio
## 1.11538                        radio range
## 1.11542                     company flight
## 1.11543                 flight dispatchers
## 1.11544                dispatchers charged
## 1.11557                 properly safeguard
## 1.11560                   flight resulting
## 1.11563                     forced landing
## 1.11569                            sea due
## 1.11572                     exhausted fuel
## 1.11573                        fuel supply
## 1.11574                     supply crashed
## 1.11585                   foggy conditions
## 1.11597                    poor visibility
## 1.11598                 visibility crashed
## 1.11602                         east china
## 1.11603                          china sea
## 1.11606                experiencing engine
## 1.11607                     engine failure
## 1.11608                       failure whle
## 1.11609                        whle taking
## 1.11613                   aircraft stalled
## 1.11620                   schiphol airport
## 1.11623                        caught fire
## 1.11624                          fire shot
## 1.11628                  japanese aircraft
## 1.11629                     aircraft owned
## 1.11632                   imperial airways
## 1.11639                   aircraft crashed
## 1.11643                       field losing
## 1.11652                       low overcast
## 1.11655                 reduced visibility
## 1.11658                       strong winds
## 1.11661                   seaplane crashed
## 1.11667                          mt chambe
## 1.11674                             rio de
## 1.11675                         de janerio
## 1.11678                   aircraft crashed
## 1.11679                      crashed 2,650
## 1.11680                         2,650 feet
## 1.11681                          feet past
## 1.11684                     runway boundry
## 1.11692             considerable intensity
## 1.11693                intensity developed
## 1.11694                    developed prior
## 1.11711                     gasoline cross
## 1.11712                         cross feed
## 1.11713                         feed valve
## 1.11722                       exact origin
## 1.11730                         mail plane
## 1.11731                       plane failed
## 1.11734                        gain height
## 1.11744                    katherine river
## 1.11750                           en route
## 1.11753                   aircraft ditched
## 1.11754                      ditched broke
## 1.11762                     atlantic ocean
## 1.11763                          ocean 285
## 1.11764                          285 miles
## 1.11765                           miles se
## 1.11771                      york complete
## 1.11772                      complete loss
## 1.11782                       partial loss
## 1.11789                      outer engines
## 1.11790                        engines due
## 1.11793                   carburetor icing
## 1.11798                     named cavalier
## 1.11801                           air taxi
## 1.11802                   taxi encountered
## 1.11803                    encountered low
## 1.11804                     low visibility
## 1.11811                       grand island
## 1.11816                            found 1
## 1.11817                            1 month
## 1.11823                        bad weather
## 1.11824                 weather conditions
## 1.11825                conditions aircraft
## 1.11826                       aircraft hit
## 1.11834                      national park
## 1.11837                      mercantour 50
## 1.11838                              50 km
## 1.11839                           km north
## 1.11842                        nice engine
## 1.11843                     engine trouble
## 1.11854                    adverse weather
## 1.11855                 weather conditions
## 1.11860                       falling snow
## 1.11866                        cargo plane
## 1.11867                      plane stalled
## 1.11873                        field short
## 1.11879                   aircraft crashed
## 1.11883                         tail broke
## 1.11886                     dutch engineer
## 1.11887                       engineer a.g
## 1.11888                            a.g von
## 1.11889                      von baumhauer
## 1.11897                  famous helicopter
## 1.11898                 helicopter pioneer
## 1.11906                         tail rotor
## 1.11907                         rotor main
## 1.11908                         main rotor
## 1.11909                rotor configuration
## 1.11916                strructural failure
## 1.11922                    horizontal tail
## 1.11923                      tail surfaces
## 1.11924                       surfaces due
## 1.11931                      loads thereon
## 1.11943                  failure occurring
## 1.11947                        abrupt pull
## 1.11957                   inadvertent spin
## 1.11966                       takeoff blew
## 1.11975                 creating excessive
## 1.11976                     excessive drag
## 1.11981                          left wing
## 1.11993                      wing impacted
## 1.11999                       section line
## 1.12000                          line road
## 1.12005                          100 yards
## 1.12006                       yards inside
## 1.12012                          hot metal
## 1.12020                     source ignited
## 1.12023                      fuel spilling
## 1.12028                      ruptured tank
## 1.12034                   quickly engulfed
## 1.12046                      cylinder blow
## 1.12068                          united dc
## 1.12069                               dc 2
## 1.12074                      landed safely
## 1.12075                     safely crashed
## 1.12082                    aborted landing
## 1.12085                          plane hit
## 1.12094                            ilha de
## 1.12095                      de mocambique
## 1.12096                  mocambique island
## 1.12097                     island crashed
## 1.12109              performing aerobatics
## 1.12112                      aircraft lost
## 1.12113                       lost control
## 1.12118                  numerous building
## 1.12125                    training flight
## 1.12132                           crew hit
## 1.12139                         sentry box
## 1.12142                         9 soldiers
## 1.12143                    soldiers inside
## 1.12146                       soldier died
## 1.12170                      speed stalled
## 1.12175                student pilots.were
## 1.12176                 pilots.were flying
## 1.12181                       aircraft hit
## 1.12186                          mt dora's
## 1.12187                        dora's seat
## 1.12198                   aircraft crashed
## 1.12202                        engine fire
## 1.12203                        fire caused
## 1.12208                          air speed
## 1.12212                      stall crashed
## 1.12216                 llaveria mountains
## 1.12219                          heavy fog
## 1.12222                        caught fire
## 1.12225                          plane hit
## 1.12234                         plane lost
## 1.12235                         lost power
## 1.12239                        left engine
## 1.12240                       engine yawed
## 1.12255                    plane continued
## 1.12258                      lose altitude
## 1.12266                      steeper angle
## 1.12272                   caisson anchored
## 1.12283                 harbor immediately
## 1.12284               immediately adjacent
## 1.12288                   landing approach
## 1.12289                      approach path
## 1.12290                          path loss
## 1.12296                        left engine
## 1.12300                   landing approach
## 1.12301             approach necessitating
## 1.12304                  attempted landing
## 1.12307                extremely hazardous
## 1.12308               hazardous conditions
## 1.12309                 conditions crashed
## 1.12316                        fire aboard
## 1.12317                     aboard leakage
## 1.12323                     overflow boxes
## 1.12331                         fuel tanks
## 1.12332                      tanks crashed
## 1.12333                         crashed en
## 1.12334                           en route
## 1.12337                    unknown reasons
## 1.12340                   aircraft crashed
## 1.12346                 hanover visibility
## 1.12352                            low fog
## 1.12353                       fog covering
## 1.12363                      proper flight
## 1.12364                        flight path
## 1.12368                       plane veered
## 1.12375                          40 meters
## 1.12397                       lost control
## 1.12403                       plane caught
## 1.12404                    caught fire.the
## 1.12405                fire.the passengers
## 1.12412                  swedish passenger
## 1.12423                     german fighter
## 1.12430                        land safely
## 1.12433                  amsterdam crashed
## 1.12436                           en route
## 1.12437                     route collided
## 1.12449                       crashed shot
## 1.12454                        british raf
## 1.12455                        raf fighter
## 1.12456                    fighter crashed
## 1.12457                          crashed 6
## 1.12458                            6 miles
## 1.12459                        miles south
## 1.12467                            sea 300
## 1.12468                          300 miles
## 1.12469                           miles nw
## 1.12472                   alexandria egypt
## 1.12475                       ship rescued
## 1.12478                  survivers crashed
## 1.12482                        mountain 60
## 1.12483                              60 km
## 1.12484                       km southeast
## 1.12496                     forced landing
## 1.12497                    landing crashed
## 1.12501                        sea shortly
## 1.12507                    unknown crashed
## 1.12516                          fog prior
## 1.12521                      crew reported
## 1.12522                       reported ice
## 1.12528                          plane hit
## 1.12536                     tona northeast
## 1.12542                          crew lost
## 1.12547                        fog crashed
## 1.12551                       persian gulf
## 1.12554                           en route
## 1.12563                     named hannibal
## 1.12566                      plane crashed
## 1.12569                  stromboli volcano
## 1.12574                       possibly bad
## 1.12575                        bad weather
## 1.12579          electromagnetic phenomena
## 1.12580                   phenomena struck
## 1.12588                           10 miles
## 1.12594                 reduced visibility
## 1.12595                 visibility crashed
## 1.12601                    government test
## 1.12602                        test flight
## 1.12607                           en route
## 1.12616                     soviet tupolev
## 1.12617                         tupolev sb
## 1.12618                               sb 2
## 1.12619                          2 bombers
## 1.12622                   aircraft crashed
## 1.12623                          crashed 2
## 1.12624                                2 3
## 1.12625                               3 nm
## 1.12626                        nm offshore
## 1.12629                     prangli island
## 1.12632                    keri lighthouse
## 1.12637                       named kaleva
## 1.12638               kaleva inadvertently
## 1.12639                 inadvertently shot
## 1.12643                        french anti
## 1.12644                      anti aircraft
## 1.12645                      aircraft fire
## 1.12646                          fire shot
## 1.12651                  japanese military
## 1.12652                   military fighter
## 1.12661                        pilot error
## 1.12667                  circling canberra
## 1.12668                 canberra aerodrome
## 1.12673                        headed west
## 1.12678                     final approach
## 1.12683               aircraft momentarily
## 1.12684            momentarily disappeared
## 1.12707               aircraft disappeared
## 1.12719                        black smoke
## 1.12728                   killed including
## 1.12732                 ranking australian
## 1.12733                australian military
## 1.12734                   military leaders
## 1.12741                  aircraft appeared
## 1.12746                          left wing
## 1.12752                       nose steeply
## 1.12753                    steeply classic
## 1.12754                   classic symptoms
## 1.12765                       recovery hit
## 1.12768                     mountain slope
## 1.12771                           en route
## 1.12774                   approaching cluj
## 1.12775                        cluj napoca
## 1.12786                     assigned track
## 1.12793                           mt gaina
## 1.12819                         short hill
## 1.12820                      hill mountain
## 1.12821                 mountain disabling
## 1.12828                   severe lightning
## 1.12829                lightning discharge
## 1.12839                     resulting loss
## 1.12844                   limited accident
## 1.12845             accident investigation
## 1.12846                investigation tools
## 1.12857                       plane flying
## 1.12860                      windshear u.s
## 1.12861                        u.s senator
## 1.12862                     senator ernest
## 1.12863                     ernest lundeen
## 1.12866                   minnesota killed
## 1.12867                     killed crashed
## 1.12872                          land shot
## 1.12876                  japanese military
## 1.12877                  military fighters
## 1.12880                          plane ran
## 1.12883                         5 japanese
## 1.12884                  japanese fighters
## 1.12889                  emergency landing
## 1.12893                       remote field
## 1.12898                     machine gunned
## 1.12903                         escape hit
## 1.12906                       ground short
## 1.12912                 reduced visibility
## 1.12913                  visibility crashe
## 1.12919                           en route
## 1.12920                     route wreckage
## 1.12921                     wreckage found
## 1.12922                           found 15
## 1.12923                          15 months
## 1.12927                   aircraft crashed
## 1.12930                     bountiful peak
## 1.12934                  wasatch mountains
## 1.12938                        snowstorm 3
## 1.12939                               3 nm
## 1.12940                              nm ne
## 1.12948           communications operators
## 1.12951                    tintic plymouth
## 1.12954                          salt lake
## 1.12955                          lake city
## 1.12956                          city utah
## 1.12971                 immediately notify
## 1.12985                     fullest extent
## 1.12986                 extent established
## 1.12987                  established radio
## 1.12988                        radio range
## 1.12989                    range technique
## 1.12998              procedure established
## 1.13006                  civil aeronautics
## 1.13007         aeronautics administration
## 1.13008              administration midair
## 1.13009                   midair collision
## 1.13013                      private plane
## 1.13019                   aircraft crashed
## 1.13023                       botafogo bay
## 1.13024                      bay seventeen
## 1.13025                   seventeen killed
## 1.13029                          junkers 1
## 1.13033                      private plane
## 1.13034                      plane crashed
## 1.13037                           en route
## 1.13040                       poor weather
## 1.13041                  weather condtions
## 1.13042                    condtions icing
## 1.13043                         icing shot
## 1.13047                   italian aircraft
## 1.13050                   aircraft crashed
## 1.13070                     skill required
## 1.13083                    short northwest
## 1.13084                   northwest runway
## 1.13087           substantial contributing
## 1.13088                contributing factor
## 1.13104                       short runway
## 1.13120                     stalling speed
## 1.13126                           en route
## 1.13138                        raf fighter
## 1.13146                           40 miles
## 1.13147                    miles southwest
## 1.13151                       capri island
## 1.13152                     island crashed
## 1.13156                  mediterranian sea
## 1.13159                           en route
## 1.13163                      trace crashed
## 1.13193                     engine stalled
## 1.13197                      initial climb
## 1.13201                      plane crashed
## 1.13204                     burned crashed
## 1.13213                 reduced visibility
## 1.13214                 visibility shortly
## 1.13220                      west boundary
## 1.13226                      pilot started
## 1.13236                   plane contracted
## 1.13237                   contracted trees
## 1.13238                          trees 113
## 1.13239                           113 feet
## 1.13267                         pilot lost
## 1.13268                       lost control
## 1.13271                   aircraft crashed
## 1.13284                     mile southwest
## 1.13288                   airport boundary
## 1.13300                    adverse weather
## 1.13301                 weather conditions
## 1.13307                minimums prescribed
## 1.13311                  civil aeronautics
## 1.13312         aeronautics administration
## 1.13323                    dangerously low
## 1.13324                       low altitude
## 1.13327                      plane crashed
## 1.13332                        wing struck
## 1.13344                    adverse weather
## 1.13345                     weather struck
## 1.13351                    landed inverted
## 1.13357                   aircraft crashed
## 1.13363                         pine woods
## 1.13366                     chandler field
## 1.13373                 instrument landing
## 1.13374                   landing approach
## 1.13393                      proper degree
## 1.13407                      correctly set
## 1.13410               properly functioning
## 1.13415                   landing approach
## 1.13418           substantial contributing
## 1.13419                contributing factor
## 1.13426                established uniform
## 1.13427                    uniform cockpit
## 1.13428                  cockpit procedure
## 1.13431                        eastern air
## 1.13432                          air lines
## 1.13447                     complete check
## 1.13455                 landing operations
## 1.13456                 operations captain
## 1.13457                     captain edward
## 1.13458                edward rickenbacker
## 1.13459             rickenbacker president
## 1.13462                        eastern air
## 1.13463                          air lines
## 1.13464                     lines survived
## 1.13469                   seaplane crashed
## 1.13476                       sunk crashed
## 1.13482                         elands bay
## 1.13485                  inclement weather
## 1.13486                       weather shot
## 1.13492                         111 german
## 1.13493                    german military
## 1.13494                  military aircraft
## 1.13495                        aircraft 20
## 1.13496                         20 minutes
## 1.13499                    takeoff stalled
## 1.13504                    takeoff crashed
## 1.13507                           en route
## 1.13513                      engine failed
## 1.13516                       crew decided
## 1.13521             encountered turbulence
## 1.13524                    crashed crashed
## 1.13528                     mountain ridge
## 1.13531                           rain low
## 1.13532                     low visibility
## 1.13535                overcast conditions
## 1.13536            conditions navigational
## 1.13537                 navigational error
## 1.13538                      error crashed
## 1.13545                heathfield airfield
## 1.13565                     plane diverted
## 1.13579                          left wing
## 1.13580                         wing broke
## 1.13585                   aircraft crashed
## 1.13589                      field crashed
## 1.13595                   aircraft crashed
## 1.13598                       lake bolomon
## 1.13601                     engine failure
## 1.13606                   windy conditions
## 1.13612                 aircraft contacted
## 1.13618                        unduly nose
## 1.13619                           nose low
## 1.13620                       low attitude
## 1.13623                    moving sideways
## 1.13624                  sideways relative
## 1.13638                   aircraft swerved
## 1.13639                  swerved violently
## 1.13648                     major sections
## 1.13656                 exercise requisite
## 1.13657                  requisite caution
## 1.13664                contributing factor
## 1.13668                     smooth surface
## 1.13674                 rendered difficult
## 1.13677                    captain's depth
## 1.13678                   depth perception
## 1.13684                exact determination
## 1.13688                   lateral movement
## 1.13692                   aircraft crashed
## 1.13696                    greek hungarian
## 1.13697                   hungarian border
## 1.13700                    unknown crashed
## 1.13705                           mist due
## 1.13713                     pilot clarence
## 1.13714                     clarence bates
## 1.13725                      lone survivor
## 1.13726              survivor accumulation
## 1.13738                airplane increasing
## 1.13741                     stalling speed
## 1.13751                     power required
## 1.13754                    maintain flight
## 1.13755                      flight action
## 1.13770                   icing conditions
## 1.13773                   critical ceiling
## 1.13774                 ceiling conditions
## 1.13792                    chicago circled
## 1.13799                            4 times
## 1.13804                       landing spot
## 1.13812                       plowed field
## 1.13818                      initial climb
## 1.13825                   command suffered
## 1.13828             spatial disorientation
## 1.13829             disorientation stalled
## 1.13836                       crew decided
## 1.13842                     minima weather
## 1.13843                 weather conditions
## 1.13846                         low clouds
## 1.13847                         clouds fog
## 1.13848                    fog turbulences
## 1.13851                       severe icing
## 1.13861                      aircraft lost
## 1.13862                      lost altitude
## 1.13873                          plane hit
## 1.13874                         hit debris
## 1.13883                   aircraft crashed
## 1.13886                          mt potosi
## 1.13887                      potosi double
## 1.13890                         peak table
## 1.13891                       table spring
## 1.13892                    spring mountain
## 1.13893                    mountain olcott
## 1.13894                    olcott mountain
## 1.13895                        mountain 32
## 1.13896                           32 miles
## 1.13897                           miles sw
## 1.13900                          las vegas
## 1.13901                           vegas nv
## 1.13902                              nv 15
## 1.13903                         15 minutes
## 1.13910                   western airlines
## 1.13911                  airlines terminal
## 1.13912                  terminal building
## 1.13915                          las vegas
## 1.13918                   aircraft clipped
## 1.13921                        rocky ledge
## 1.13922                  ledge cartwheeled
## 1.13931                exploded scattering
## 1.13932                scattering wreckage
## 1.13939                     ravine actress
## 1.13940                     actress carole
## 1.13941                     carole lombard
## 1.13942                         lombard 33
## 1.13947                        press agent
## 1.13984                           war bond
## 1.13985                     bond promotion
## 1.13990                          6.7 miles
## 1.13995                    unknown reasons
## 1.13996                    reasons failure
## 1.14010              navigation facilities
## 1.14016                contributing factor
## 1.14031                      war emergency
## 1.14032                  emergency shortly
## 1.14038                        left engine
## 1.14039                      engine caught
## 1.14040                        caught fire
## 1.14043                      plane stalled
## 1.14046                       crashed shot
## 1.14050                  japanese military
## 1.14051                  military aircraft
## 1.14052                      aircraft shot
## 1.14056                  japanese military
## 1.14057                  military aircraft
## 1.14058                     aircraft owned
## 1.14061                   british overseas
## 1.14062                   overseas airways
## 1.14063                       airways shot
## 1.14070                          royal air
## 1.14071                          air force
## 1.14072                     force spitfire
## 1.14073                  spitfire fighters
## 1.14074                   fighters crashed
## 1.14077              unknown circumstances
## 1.14078              circumstances crashed
## 1.14079                    crashed shortly
## 1.14084              archerfield airfiield
## 1.14088                  hillside suffered
## 1.14089                suffered structural
## 1.14090                 structural failure
## 1.14095                    adverse weather
## 1.14096                  weather conditons
## 1.14101                       low overcast
## 1.14102                      overcast shot
## 1.14106                  japanese military
## 1.14107                  military aircraft
## 1.14110                          150 miles
## 1.14113                          java shot
## 1.14117                  japanese military
## 1.14118                  military aircraft
## 1.14119                      aircraft shot
## 1.14128                   japanese fighter
## 1.14129                    fighter crashed
## 1.14130                          crashed 2
## 1.14131                               2 km
## 1.14135                    kunming airdome
## 1.14136                    airdome shortly
## 1.14142                     include engine
## 1.14143                     engine failure
## 1.14144                failure overloading
## 1.14145               overloading sabotage
## 1.14148                 temporary blinding
## 1.14152                       bright light
## 1.14159                 government charter
## 1.14160                   charter carrying
## 1.14163                 teletype operators
## 1.14173               departed archerfield
## 1.14174               archerfield brisbane
## 1.14177                           0622 est
## 1.14182              charleville cloncurry
## 1.14185                       daily waters
## 1.14186                   waters departing
## 1.14189                       daily waters
## 1.14192                       1655 central
## 1.14193                   central standard
## 1.14194                      standard time
## 1.14201                    events happened
## 1.14205                      remained lost
## 1.14208            scattered thunderstorms
## 1.14228                      hundred miles
## 1.14229                        miles north
## 1.14257                         force land
## 1.14268                     engine failure
## 1.14271                    fuel starvation
## 1.14275                       lower engine
## 1.14291                    peering forward
## 1.14304                        grassy spot
## 1.14324                    descend rapidly
## 1.14334                   increasing power
## 1.14338                   remaining engine
## 1.14341                    electra flipped
## 1.14345                      vertical bank
## 1.14350                          ridge top
## 1.14357                               6 22
## 1.14358                            22 1943
## 1.14372                    descend rapidly
## 1.14382                   increasing power
## 1.14386                   remaining engine
## 1.14389                    electra flipped
## 1.14393                      vertical bank
## 1.14398                          ridge top
## 1.14413                     found lockheed
## 1.14414                       lockheed 14s
## 1.14419                      nasty buggers
## 1.14422                          low speed
## 1.14431                          salt lake
## 1.14434                 aircraft proceeded
## 1.14438                    wrong direction
## 1.14447                           hill 3.8
## 1.14448                          3.8 miles
## 1.14449                    miles northeast
## 1.14453                          salt lake
## 1.14454                          lake city
## 1.14455                       city airport
## 1.14466                         5,053 feet
## 1.14469                          sea level
## 1.14473                           830 feet
## 1.14485               reasons undetermined
## 1.14488                          plane hit
## 1.14497                     runway overran
## 1.14500                     runway boundry
## 1.14512                        landing run
## 1.14527               reasons undetermined
## 1.14540                obstruction stalled
## 1.14541                     stalled struck
## 1.14542                       struck trees
## 1.14543                      trees crashed
## 1.14546                 burned immediately
## 1.14549                       takeoff flew
## 1.14560                      vertical dive
## 1.14566                       ground icing
## 1.14571               approaching amberley
## 1.14580                    continued south
## 1.14588                   aircraft crashed
## 1.14594                               3 km
## 1.14597                        broken head
## 1.14610              thunderstorm activity
## 1.14618                 lightning attacked
## 1.14621                          royal air
## 1.14622                          air force
## 1.14623                     force fighters
## 1.14624                   fighters crashed
## 1.14634                     sank lufthansa
## 1.14635                 lufthansa chairman
## 1.14636                       chairman von
## 1.14637                        von gablenz
## 1.14638                     gablenz killed
## 1.14639                     killed shortly
## 1.14645                      radio contact
## 1.14670                severe thunderstorm
## 1.14673                      plane crashed
## 1.14689                     228th squadron
## 1.14690                       squadron raf
## 1.14693                          plane hit
## 1.14698                         eagle rock
## 1.14702                 scottish highlands
## 1.14705                    poor visibility
## 1.14708                 navigational error
## 1.14713                     unknown prince
## 1.14714                      prince george
## 1.14715                        george duke
## 1.14726                        flight fire
## 1.14727                      fire possibly
## 1.14728                   possibly related
## 1.14735                        fuel intake
## 1.14736                      intake system
## 1.14737                          system 90
## 1.14738                         90 minutes
## 1.14741                  departure crashed
## 1.14748                     flight failure
## 1.14752                        wing struck
## 1.14755                         mountain 5
## 1.14756                            5 miles
## 1.14762                    adverse weather
## 1.14763                    weather crashed
## 1.14770                         losing oil
## 1.14771                       oil pressure
## 1.14780                    wide descending
## 1.14784                    engines running
## 1.14785                    running roughly
## 1.14793                    poor visibility
## 1.14798                   takeoff aircraft
## 1.14799                 aircraft porpoised
## 1.14800                 porpoised attained
## 1.14805                              35 ft
## 1.14816              inadvertent actuation
## 1.14820                         wing flaps
## 1.14825                         35 degrees
## 1.14826                   degrees position
## 1.14836               aircraft excessively
## 1.14837                   excessively nose
## 1.14838                         nose heavy
## 1.14841             uncontrollable crashed
## 1.14845                     final approach
## 1.14846                     approach icing
## 1.14847                    icing incorrect
## 1.14848                  incorrect weather
## 1.14849                 weather conditions
## 1.14850                conditions supplied
## 1.14855                    aircraft struck
## 1.14858                        north slope
## 1.14861                           mt fruka
## 1.14862                         fruka gora
## 1.14863                      gora improper
## 1.14864                   improper weather
## 1.14865                weather information
## 1.14866               information provided
## 1.14870                        crew midair
## 1.14871                   midair collision
## 1.14875                        army bomber
## 1.14880                       chino canyon
## 1.14883                       palm springs
## 1.14886                         9,000 feet
## 1.14887                    feet destroying
## 1.14893                               dc 3
## 1.14896                          12 aboard
## 1.14899                               dc 3
## 1.14906                          34 landed
## 1.14907                      landed safely
## 1.14910                       minor damage
## 1.14915              irresponsible conduct
## 1.14919                       bomber pilot
## 1.14920                      pilot william
## 1.14921                     william wilson
## 1.14924           deliberately maneuvering
## 1.14929                dangerous proximity
## 1.14936              unjustifiable attempt
## 1.14947                      friend aboard
## 1.14950                  airliner composer
## 1.14953                        song writer
## 1.14954                       writer ralph
## 1.14955                      ralph rainger
## 1.14956                         rainger 41
## 1.14957                          41 killed
## 1.14958                      killed struck
## 1.14961                      mouintian 8km
## 1.14964                       la esperanza
## 1.14970                          ten hours
## 1.14985                         enemy fire
## 1.14988                    crashed stalled
## 1.14989                stalled immediately
## 1.14995                      crashed icing
## 1.15024                       captain left
## 1.15029               passenger disengaged
## 1.15034                    assumed control
## 1.15038                      plane crashed
## 1.15043                   violent maneuver
## 1.15044                   maneuver failure
## 1.15052                          wing tips
## 1.15057                    horizontal tail
## 1.15058                      tail surfaces
## 1.15065                         sever pull
## 1.15069                     caused unusual
## 1.15074                          air loads
## 1.15084                 determined crashed
## 1.15085                          crashed 2
## 1.15086                               2 km
## 1.15098                     refuel crashed
## 1.15104                          m.t cheam
## 1.15107                         7,000 feet
## 1.15110                complete electrical
## 1.15111                 electrical failure
## 1.15112                  failure resulting
## 1.15119                   prescribed route
## 1.15120                      route crashed
## 1.15124                        river tagus
## 1.15128                         fire broke
## 1.15137                  emergency landing
## 1.15140                     ship porpoised
## 1.15162                     blaze exploded
## 1.15165                            mid air
## 1.15173                     south american
## 1.15176                           en route
## 1.15179                 africa disappeared
## 1.15182                           en route
## 1.15183                         route life
## 1.15184                         life boats
## 1.15187                        dead bodies
## 1.15188                       bodies found
## 1.15189                          found 100
## 1.15190                             100 km
## 1.15196                           2,500 ft
## 1.15197                        ft mountain
## 1.15202                        bad weather
## 1.15217                          san diego
## 1.15218                      diego clipped
## 1.15219                      clipped trees
## 1.15220                       trees struck
## 1.15234                position accurately
## 1.15240                    dangerously low
## 1.15241                       low altitude
## 1.15244                     extremely poor
## 1.15245                       poor weather
## 1.15246                 weather conditions
## 1.15256                   named philippine
## 1.15257                 philippine clipper
## 1.15260                   aircraft crashed
## 1.15264                        mt chaparra
## 1.15268                    andes mountains
## 1.15271                           en route
## 1.15272                       route action
## 1.15285                  overcast contrary
## 1.15288                     company flight
## 1.15289                   flight procedure
## 1.15300                          aware ran
## 1.15304                          fuel lost
## 1.15305                      lost altitude
## 1.15306                    altitude struck
## 1.15307                       struck power
## 1.15308                        power lines
## 1.15314                      packing house
## 1.15319                        engine fire
## 1.15323                        test flight
## 1.15324                     flight crashed
## 1.15328                        tagus river
## 1.15331                       poor weather
## 1.15336                   land inadvertent
## 1.15337                inadvertent contact
## 1.15341                          left wing
## 1.15342                           wing tip
## 1.15363                     yankee clipper
## 1.15364                   clipper novelist
## 1.15365                       novelist ben
## 1.15366                      ben robertson
## 1.15369                     singer actress
## 1.15370                     actress tamara
## 1.15371                      tamara drasin
## 1.15372                          drasin 34
## 1.15376                     killed actress
## 1.15377                       actress jane
## 1.15378                        jane froman
## 1.15407                        cargo plane
## 1.15416                      mountain pass
## 1.15417                            pass en
## 1.15418                           en route
## 1.15421                crashed disappeared
## 1.15427                    aircraft taking
## 1.15433                    poor visibility
## 1.15434                 visibility crashed
## 1.15437                       heavy timber
## 1.15440                        caught fire
## 1.15441                          fire shot
## 1.15445                    german fighters
## 1.15446                        fighters 30
## 1.15447                           30 miles
## 1.15450                     skagen denmark
## 1.15451                    denmark stalled
## 1.15456                       poor weather
## 1.15463                  emergency landing
## 1.15468                          sea broke
## 1.15472                         heavy seas
## 1.15473                          seas shot
## 1.15478                         german air
## 1.15479                          air force
## 1.15488                   message received
## 1.15500                     enemy aircraft
## 1.15506                         dutch crew
## 1.15507                       crew british
## 1.15508                      british actor
## 1.15509                       actor leslie
## 1.15510                      leslie howard
## 1.15511                          howard 42
## 1.15512                          42 killed
## 1.15525                   germans believed
## 1.15528                      british prime
## 1.15529                     prime minister
## 1.15530                   minister winston
## 1.15531                  winston churchill
## 1.15536                   theories suggest
## 1.15544               passengers including
## 1.15545                   including howard
## 1.15548                      british spies
## 1.15549                      spies crashed
## 1.15552              thunderstorm activity
## 1.15560                      initial climb
## 1.15563                      engine failed
## 1.15568                  emergency landing
## 1.15571                      plane stalled
## 1.15580                         ground fog
## 1.15590                           300 feet
## 1.15593                      plane stalled
## 1.15600                       flight bound
## 1.15603                     london crashed
## 1.15607              mediterranean shortly
## 1.15610                  takeoff wladyslaw
## 1.15611                 wladyslaw sikorski
## 1.15612                     sikorski prime
## 1.15613                     prime minister
## 1.15617                  polish government
## 1.15620                       exile killed
## 1.15623                        wing struck
## 1.15632                     crew descended
## 1.15635                overcast conditions
## 1.15636                   conditions pilot
## 1.15637                        pilot error
## 1.15640                  captain descended
## 1.15643                 obtaining bearings
## 1.15651                position accurately
## 1.15654                   aircraft crashed
## 1.15663                  strong turbulence
## 1.15666                 violent downdrafts
## 1.15697                      aircraft loss
## 1.15703                       aircraft due
## 1.15706                   unusually severe
## 1.15707                  severe turbulence
## 1.15710                  violent downdraft
## 1.15711                   downdraft caused
## 1.15719            unpredictable intensity
## 1.15720                  intensity crashed
## 1.15724                     women's prison
## 1.15730                      anti aircraft
## 1.15731                      aircraft fire
## 1.15736                        bombing run
## 1.15737                         run twenty
## 1.15738                     twenty minutes
## 1.15744                   aircraft crashed
## 1.15747                      cleveland bay
## 1.15750                     miles offshore
## 1.15753                        cargo plane
## 1.15759                  japanese fighters
## 1.15765                      aircraft lost
## 1.15766                       lost control
## 1.15769                   crashed offshore
## 1.15770                    offshore struck
## 1.15773                      naval academy
## 1.15774                   academy building
## 1.15782                          heavy fog
## 1.15798                         named city
## 1.15801                             rio de
## 1.15802                         de janiero
## 1.15803                       janiero shot
## 1.15807                    german military
## 1.15808                  military aircraft
## 1.15811                         crashed 70
## 1.15812                              70 km
## 1.15813                            km west
## 1.15816                  hirsthals denmark
## 1.15817                     denmark midair
## 1.15818                   midair collision
## 1.15828                   formation eleven
## 1.15829                      eleven killed
## 1.15833                      plane crashed
## 1.15851                   evasive maneuver
## 1.15852                    maneuver caused
## 1.15859                       crash cashed
## 1.15862                      trees shortly
## 1.15868                    aircraft struck
## 1.15871                        ground nose
## 1.15876                  vertical attitude
## 1.15879                           en route
## 1.15883              completely demolished
## 1.15887                   impact inability
## 1.15895                  maintain altitude
## 1.15896                       altitude due
## 1.15899                     carburetor ice
## 1.15900                      ice propeller
## 1.15901                      propeller ice
## 1.15904                           wing ice
## 1.15911                   icing conditions
## 1.15918                 weather unsuitable
## 1.15922                  emergency landing
## 1.15923                    landing weather
## 1.15924                 weather conditions
## 1.15948                  propeller deicing
## 1.15949                  deicing equipment
## 1.15952                      plane crashed
## 1.15964                     black mountain
## 1.15965                        mountain 60
## 1.15966                           60 miles
## 1.15967                        miles north
## 1.15971               destination montreal
## 1.15984                        ju88 german
## 1.15985                    german military
## 1.15986                  military aircraft
## 1.15995                       aircraft hit
## 1.15998                      cliff stalled
## 1.16009                 parachute exercise
## 1.16010                   exercise crashed
## 1.16015                        flight fire
## 1.16016                       fire started
## 1.16022                    engines crashed
## 1.16028                        cargo plane
## 1.16029                      plane crashed
## 1.16030                      crashed short
## 1.16036                       poor weather
## 1.16037                 weather conditions
## 1.16040                 navigational error
## 1.16041                       error caused
## 1.16044                        cargo plane
## 1.16049                      mountain flew
## 1.16053                       hill shortly
## 1.16059                       ward's strip
## 1.16060                     strip operated
## 1.16065                 allied directorate
## 1.16068                      air transport
## 1.16075                   cruising altiude
## 1.16081                          sea icing
## 1.16084                        cargo plane
## 1.16085                       plane struck
## 1.16098                           en route
## 1.16101                   midair collision
## 1.16102                 collision occurred
## 1.16107                      cross country
## 1.16108                     country flight
## 1.16109                      flight flying
## 1.16112                   formation twelve
## 1.16113                       twelve kiled
## 1.16114                       kiled aboard
## 1.16115                     aboard 4207183
## 1.16118                    thirteen aboard
## 1.16119                          aboard 42
## 1.16120                            42 7408
## 1.16121                        7408 faulty
## 1.16122                      faulty flying
## 1.16123                   flying technique
## 1.16124                technique displayed
## 1.16130                            42 7183
## 1.16144                       hill located
## 1.16145                         located 16
## 1.16146                              16 km
## 1.16147                            km east
## 1.16151                     belgrade zemun
## 1.16152                      zemun airport
## 1.16155                   aircraft crashed
## 1.16161                            sank 18
## 1.16162                           18 miles
## 1.16163                    miles southwest
## 1.16171                           en route
## 1.16177               undetermined crashed
## 1.16185                        cargo plane
## 1.16186                         plane flew
## 1.16203                  found disappeared
## 1.16206                           en route
## 1.16211                     combat mission
## 1.16212                   mission wreckage
## 1.16213                     wreckage found
## 1.16214                           found 39
## 1.16219                               4 30
## 1.16220                            30 1983
## 1.16221                       1983 crashed
## 1.16222                    crashed shortly
## 1.16228                         snow storm
## 1.16229                      storm failure
## 1.16240                         ground due
## 1.16243                         heavy snow
## 1.16249                       terrain shot
## 1.16253                    allied fighters
## 1.16254                   fighters crashed
## 1.16255                         crashed 50
## 1.16256                           50 miles
## 1.16263                       signal flare
## 1.16264                      flare started
## 1.16267                       onboard fire
## 1.16268                       fire causing
## 1.16273                      ditch crashed
## 1.16279                     houses shortly
## 1.16285                     dorval airport
## 1.16296                        22,000 foot
## 1.16297                      foot mountain
## 1.16300                          tibet bad
## 1.16301                        bad weather
## 1.16302                  weather prevented
## 1.16312                      radio station
## 1.16313                    station crashed
## 1.16318                       poor weather
## 1.16319                 weather conditions
## 1.16320                    conditions shot
## 1.16324                      anti aircraft
## 1.16325                      aircraft fire
## 1.16329                  normandy invasion
## 1.16330                      invasion shot
## 1.16334                      anti aircraft
## 1.16335                      aircraft fire
## 1.16339                  normandy invasion
## 1.16340                      invasion shot
## 1.16344                      anti aircraft
## 1.16345                      aircraft fire
## 1.16349                  normandy invasion
## 1.16352               plane discintigrated
## 1.16355                            mid aid
## 1.16358                           jack pad
## 1.16366                          wing root
## 1.16369                             left 4
## 1.16372                     holes directly
## 1.16376                         fuel tanks
## 1.16409                          fuel tank
## 1.16410                      tank igniting
## 1.16432                            3 hours
## 1.16435                       aircraft ran
## 1.16439                            gas hit
## 1.16440                       hit mountain
## 1.16449                   aircraft crashed
## 1.16453                       river guiaba
## 1.16454                       guiaba smoke
## 1.16467                   aircraft crashed
## 1.16470                           wing hit
## 1.16476                  plane cartwheeled
## 1.16480                    redbank trailer
## 1.16481                       trailer park
## 1.16484                  plane disappeared
## 1.16492                         los negros
## 1.16493                      negros island
## 1.16497               position transmitted
## 1.16503                       aircraft due
## 1.16504                          due south
## 1.16507                       port moresby
## 1.16510                         11 degrees
## 1.16511                      degrees south
## 1.16514                         60 minutes
## 1.16515                     minutes flying
## 1.16516                        flying time
## 1.16517                           time hit
## 1.16526                       owen stanley
## 1.16527                      stanley range
## 1.16528                     range wreckage
## 1.16529                   wreckage finally
## 1.16530                      finally found
## 1.16535                     sources report
## 1.16538                  accident happened
## 1.16544                 cairns disappeared
## 1.16547                           en route
## 1.16555                aircraft approached
## 1.16556                    approached land
## 1.16567                    gain sufficient
## 1.16568                sufficient altitude
## 1.16573                     cloud shrouded
## 1.16574                     shrouded cliff
## 1.16583                 aircraft's wingtip
## 1.16584                   wingtip collided
## 1.16588                      jackpole mast
## 1.16592                   anchored liberty
## 1.16593                       liberty ship
## 1.16597                     slipped anchor
## 1.16600                  drifted unlighted
## 1.16619                       sank crashed
## 1.16623                severe thunderstorm
## 1.16634                    engines crashed
## 1.16649                         ocean loss
## 1.16652                        control due
## 1.16656             captain's inexperience
## 1.16668                         named hong
## 1.16669                          hong kong
## 1.16670                       kong clipper
## 1.16671                       clipper navy
## 1.16672                    navy lieutenant
## 1.16673                  lieutenant joseph
## 1.16676                         kennedy jr
## 1.16677                              jr 29
## 1.16678                         29 brother
## 1.16681                     president john
## 1.16690                     flying mission
## 1.16695                          world war
## 1.16696                             war ii
## 1.16697                         ii kennedy
## 1.16698                kennedy volunteered
## 1.16701                operation aphrodite
## 1.16707                       combat tours
## 1.16714                    explosive laden
## 1.16715                         laden pb4y
## 1.16719                        flying blew
## 1.16742                     remote control
## 1.16746                   german submarine
## 1.16747                      submarine pen
## 1.16751                       french coast
## 1.16754                apparently exploded
## 1.16762                 photographic chase
## 1.16763                        chase plane
## 1.16766                 president franklin
## 1.16767               franklin roosevelt's
## 1.16768                    roosevelt's son
## 1.16769                         son elliot
## 1.16770                   elliot roosevelt
## 1.16775                     bomber crashed
## 1.16788                         warton air
## 1.16789                          air depot
## 1.16792                       poor weather
## 1.16795                     crash occurred
## 1.16801                         heavy rain
## 1.16804                    winds windshear
## 1.16805                  windshear crashed
## 1.16814                   poor visiblility
## 1.16822                     trans atlantic
## 1.16823                   atlantic flilght
## 1.16830                   aircraft crashed
## 1.16836                      mt kinnekulle
## 1.16841                     gothenburg due
## 1.16848                          fog short
## 1.16858                  congonhas airport
## 1.16859                       airport shot
## 1.16863                    allied fighters
## 1.16870                           en route
## 1.16878                      radio contact
## 1.16881                         15 minutes
## 1.16886              scientific expedition
## 1.16887                   expedition found
## 1.16892                       january 1989
## 1.16893                            1989 65
## 1.16894                              65 km
## 1.16895                       km northwest
## 1.16903                       1,200 meters
## 1.16906                     bomber crashed
## 1.16910                   farmhouse struck
## 1.16924                 weather conditions
## 1.16925               conditions suspected
## 1.16928                           en route
## 1.16932                      engine failed
## 1.16933                     failed forcing
## 1.16947                  emergency landing
## 1.16948                 landing eventually
## 1.16957                    crashed missing
## 1.16965                         spain shot
## 1.16970                   american bristol
## 1.16971                       bristol beau
## 1.16972                        beau allied
## 1.16973                       allied night
## 1.16974                      night fighter
## 1.16980                        cargo plane
## 1.16981                    plane separated
## 1.16988                aircraft penetrated
## 1.16993                     final approach
## 1.16997                        engine shut
## 1.17000                         stalled 10
## 1.17001                              10 ft
## 1.17007                      hull ruptured
## 1.17017                        plane broke
## 1.17023                  passenger drowned
## 1.17024                    drowned crashed
## 1.17027                     mt skorvefjell
## 1.17030                       poor weather
## 1.17031                 weather conditions
## 1.17032                    conditions shot
## 1.17036                   british mosquito
## 1.17037                  mosquito fighters
## 1.17038                     fighters broke
## 1.17049            catastrophic structural
## 1.17050                 structural failure
## 1.17056                     wing separated
## 1.17066                encountering severe
## 1.17067                  severe turbulence
## 1.17073               airplane's structure
## 1.17079                  severe turbulence
## 1.17095                  abnormal attitude
## 1.17098                         flight i.e
## 1.17099                       i.e inverted
## 1.17105                 structural failure
## 1.17116               determined colllided
## 1.17120                      navy goodyear
## 1.17121                        goodyear fg
## 1.17122                              fg 1a
## 1.17123                         1a corsair
## 1.17124                    corsair airship
## 1.17125                    airship crashed
## 1.17130                        land flying
## 1.17133                       low overcast
## 1.17136                    aircraft struck
## 1.17139                      hill exploded
## 1.17142                     burned crashed
## 1.17146                 aberdare mountains
## 1.17147                       mountains 50
## 1.17148                           50 miles
## 1.17164                      month crashed
## 1.17167                           en route
## 1.17168                      route failure
## 1.17178              viabration turbulence
## 1.17181                 constant operation
## 1.17184                       rough fields
## 1.17185                        fields shot
## 1.17190                      german patrol
## 1.17191                        patrol boat
## 1.17194                        cargo plane
## 1.17195                         plane flew
## 1.17198                    digboi mountain
## 1.17205                      plane crashed
## 1.17208                         burned 6.5
## 1.17209                          6.5 miles
## 1.17210                         miles west
## 1.17211                     west northwest
## 1.17215                     bubank airport
## 1.17218                          dense fog
## 1.17221                  pilot's deviation
## 1.17225                standard instrument
## 1.17226                instrument approach
## 1.17227                 approach procedure
## 1.17233                   established safe
## 1.17234                       safe minimum
## 1.17235                   minimum altitude
## 1.17238                contributing factor
## 1.17242                  company's failure
## 1.17245                  enforce adherence
## 1.17248                 company procedures
## 1.17249                 procedures crashed
## 1.17255                          fog wrong
## 1.17256                     wrong decision
## 1.17270                     minima weather
## 1.17271                 weather conditions
## 1.17272             conditions disappeared
## 1.17276                    english channel
## 1.17277                         channel en
## 1.17278                           en route
## 1.17281                    bedford england
## 1.17284                       paris france
## 1.17285                        france band
## 1.17286                        band leader
## 1.17289                     musician glenn
## 1.17290                       glenn miller
## 1.17291                          miller 40
## 1.17292                          40 killed
## 1.17296                     flight officer
## 1.17297                       officer john
## 1.17298                        john morgan
## 1.17301                         lt colonel
## 1.17302                     colonel norman
## 1.17303                    norman baessell
## 1.17321                    english channel
## 1.17324                        raf bombers
## 1.17332                  unsuccessful raid
## 1.17333                      raid wreckage
## 1.17342               accepted explanation
## 1.17349                   instrument rated
## 1.17354                  worsening weather
## 1.17355                 weather conditions
## 1.17358                possibly carburetor
## 1.17359                   carburetor icing
## 1.17360                       icing caused
## 1.17363                     engine failure
## 1.17364                    failure causing
## 1.17372                    english channel
## 1.17375                        cargo plane
## 1.17376                      plane crashed
## 1.17379                       strong winds
## 1.17382                   aircraft crashed
## 1.17383                       crashed 1.25
## 1.17384                         1.25 miles
## 1.17385                        miles short
## 1.17389                   intended landing
## 1.17410                  officer's failure
## 1.17426                     normal landing
## 1.17432               adequate supervision
## 1.17439                  landing resulting
## 1.17443                 inadvertent flight
## 1.17451                     normal landing
## 1.17452                      landing speed
## 1.17463                        named china
## 1.17464                      china clipper
## 1.17467                      aircraft lost
## 1.17470                        fog crashed
## 1.17474                  verdugo mountains
## 1.17479                     reach palmdale
## 1.17480                   palmdale airport
## 1.17483                  alternate landing
## 1.17484                       landing site
## 1.17492                    burbank airport
## 1.17495                     company ground
## 1.17496                   ground personnel
## 1.17497                   personnel failed
## 1.17507                   pilot improperly
## 1.17508                improperly executed
## 1.17509                    executed missed
## 1.17510                    missed approach
## 1.17514                      pilot actress
## 1.17515                      actress donna
## 1.17516                         donna reed
## 1.17545                   military officer
## 1.17546                    officer holding
## 1.17549                     wartime travel
## 1.17550                    travel priority
## 1.17551                      priority pass
## 1.17554                        cargo plane
## 1.17555                       plane struck
## 1.17558                   mountain crashed
## 1.17561                           en route
## 1.17566                        broken hill
## 1.17567                      hill believed
## 1.17568                    believed caused
## 1.17571                      metal fatigue
## 1.17575                         outer port
## 1.17576                          port wing
## 1.17582                  severe turbulence
## 1.17583                 turbulence crashed
## 1.17591                           fog bank
## 1.17597                    sufficient time
## 1.17602                     terrain struck
## 1.17609                         low clouds
## 1.17612                    poor visibility
## 1.17613                 visibility crashed
## 1.17616                      san francisco
## 1.17617                      francisco bay
## 1.17618                        bay shortly
## 1.17625                        wing struck
## 1.17639                       gyro crashed
## 1.17642                           en route
## 1.17643                      route crashed
## 1.17647                   snezka mountains
## 1.17651                          ice storm
## 1.17654                      aircraft flew
## 1.17660                     glade mountain
## 1.17663                           3,900 ft
## 1.17666                         heavy rain
## 1.17671                           en route
## 1.17674                    pilot's failure
## 1.17677                      properly plan
## 1.17685                    safe instrument
## 1.17686                instrument altitude
## 1.17689                existing conditions
## 1.17699                   company's laxity
## 1.17706                 flight disappeared
## 1.17707                     disappeared en
## 1.17708                           en route
## 1.17711                        cargo plane
## 1.17712                       plane struck
## 1.17720                       poor weather
## 1.17721                 weather conditions
## 1.17724                   aircraft crashed
## 1.17730                     cheat mountain
## 1.17733                           2,100 ft
## 1.17734                               ft 7
## 1.17735                            7 miles
## 1.17736                         miles east
## 1.17737                     east northeast
## 1.17747                  continuing flight
## 1.17750                mountainous terrain
## 1.17753              instrument conditions
## 1.17757                 minimum authorized
## 1.17758              authorized instrument
## 1.17759                instrument altitude
## 1.17760                    altitude failed
## 1.17763                      gain altitude
## 1.17769                  transport crashed
## 1.17779                          heavy fog
## 1.17782                  guildford airport
## 1.17783                      airport broke
## 1.17791              thunderstorms initial
## 1.17792                 initial structural
## 1.17793                 structural failure
## 1.17794                   failure involved
## 1.17801                    entire aircraft
## 1.17802                   aircraft missing
## 1.17806                  evacuation flight
## 1.17811                        munich shot
## 1.17815                      soviet forces
## 1.17816                       forces south
## 1.17819                        berlin shot
## 1.17823                      allied forces
## 1.17824                          forces 50
## 1.17825                           50 miles
## 1.17836                         2,000 feet
## 1.17839                       aircraft hit
## 1.17844                           mt north
## 1.17845                      north barrule
## 1.17846                    barrule located
## 1.17847                          located 2
## 1.17848                            2 miles
## 1.17849                        miles south
## 1.17852                        ramsey lost
## 1.17857                    takeoff settled
## 1.17862                     runway overran
## 1.17865                      runway rolled
## 1.17874                     drainage ditch
## 1.17877                      burned engine
## 1.17878                     engine failure
## 1.17891                    pilot executing
## 1.17894                  emergency landing
## 1.17897             unfavorable conditions
## 1.17898            conditions contributing
## 1.17899               contributing factors
## 1.17903                       strong gusts
## 1.17906                  ground turbulence
## 1.17918                         deep ditch
## 1.17922                     runway crashed
## 1.17933                    sorido airstrip
## 1.17938                     unknown flying
## 1.17939                         flying low
## 1.17943                     poor visiblity
## 1.17946                    aircraft struck
## 1.17949                        radar tower
## 1.17950                         tower lost
## 1.17954                       wing crashed
## 1.17957                       burned pilot
## 1.17958                        pilot error
## 1.17959                       error flying
## 1.17960                         flying vfr
## 1.17963                     ifr conditions
## 1.17979                        caught fire
## 1.17980                       fire crashed
## 1.17986                         7,000 feet
## 1.17989                 passengers rescued
## 1.18000                   women's military
## 1.18001                     military corps
## 1.18006                   army disappeared
## 1.18010                     atlantic coast
## 1.18015                   distress message
## 1.18018                   witness observed
## 1.18021                          plane hit
## 1.18027                          45 degree
## 1.18028                       degree angle
## 1.18038                   aircraft crashed
## 1.18045                     carstenz range
## 1.18051                          14,200 ft
## 1.18058                      december 1970
## 1.18061                   takeoff appeared
## 1.18062                    appeared normal
## 1.18077                       flew hangars
## 1.18081                           300 feet
## 1.18093                           wide low
## 1.18094                        low circuit
## 1.18101                          port wing
## 1.18102                           wing low
## 1.18110                    dropped heavily
## 1.18114                     starboard main
## 1.18115                 main undercarriage
## 1.18116              undercarriage bounced
## 1.18117                  bounced contacted
## 1.18123                         tail wheel
## 1.18137                          port main
## 1.18138                         main wheel
## 1.18144                       engine power
## 1.18150                     aircraft swung
## 1.18154                       left banking
## 1.18155                    banking steeply
## 1.18159                         left wings
## 1.18165                     ground contact
## 1.18168               aircraft cartwheeled
## 1.18173                        ground nose
## 1.18183                experiencing engine
## 1.18184                     engine failure
## 1.18185                    failure crashed
## 1.18189                  village exploding
## 1.18194                 houses disappeared
## 1.18198                     trans atlantic
## 1.18199                    atlantic flight
## 1.18204                    england crashed
## 1.18208                     island located
## 1.18211                          winam bay
## 1.18212                        bay shortly
## 1.18222                            8 miles
## 1.18225                     avoid military
## 1.18226                   military traffic
## 1.18230                    planes collided
## 1.18233                           3,000 ft
## 1.18236                   commercial pilot
## 1.18237                       pilot landed
## 1.18243                         corn field
## 1.18250                              26 33
## 1.18251                           33 35553
## 1.18257                  parachuted safely
## 1.18265                               dc 3
## 1.18266                             3 lack
## 1.18278                 aircraft resulting
## 1.18298                           u.s army
## 1.18299                           army air
## 1.18300                          air force
## 1.18301                        force plane
## 1.18302                      plane crashed
## 1.18306                         79th floor
## 1.18314                          heavy fog
## 1.18315                             fog lt
## 1.18316                             lt col
## 1.18317                        col william
## 1.18318                   william franklin
## 1.18319                     franklin smith
## 1.18320                           smith jr
## 1.18331                     newark airport
## 1.18332                         airport lt
## 1.18333                           lt smith
## 1.18340                             3 hour
## 1.18341                          hour wait
## 1.18346                   newark impatient
## 1.18356                   falsely declared
## 1.18360                  official business
## 1.18363                         la guardia
## 1.18364                    guardia airport
## 1.18380                             12 ton
## 1.18381                          ton plane
## 1.18382                      plane smashed
## 1.18385                              20 ft
## 1.18386                            ft hole
## 1.18390                      building fuel
## 1.18394                       ruptured gas
## 1.18395                          gas tanks
## 1.18396                       tanks poured
## 1.18402                      floors ablaze
## 1.18403                     ablaze killing
## 1.18404                         killing 10
## 1.18405                          10 people
## 1.18408                      engine exited
## 1.18424                     engine entered
## 1.18427                     elevator shaft
## 1.18432                    cables plunging
## 1.18438                  elevator operator
## 1.18439                     operator 1,000
## 1.18440                         1,000 feet
## 1.18455                   survived crashed
## 1.18458                mountainous terrain
## 1.18461                encountering engine
## 1.18462                     engine failure
## 1.18465                   aircraft crashed
## 1.18470                            fort de
## 1.18471                          de france
## 1.18474                         plane sank
## 1.18477                       4 passengers
## 1.18478                 passengers drowned
## 1.18492                      water surface
## 1.18500                        flying boat
## 1.18501                       boat crashed
## 1.18504              ixtaccihuatl mountain
## 1.18505                        mountain 40
## 1.18506                           40 miles
## 1.18507                         miles east
## 1.18508                          east sout
## 1.18509                          sout east
## 1.18512                        mexico city
## 1.18513                  city navigational
## 1.18514                 navigational error
## 1.18520                     message stated
## 1.18538                    passed florence
## 1.18541                    fire originated
## 1.18553                         rear cargo
## 1.18554                  cargo compartment
## 1.18559                 aircraft descended
## 1.18563                     lower altitude
## 1.18568                    florence struck
## 1.18578                undetermined origin
## 1.18582                         rear cargo
## 1.18583                  cargo compartment
## 1.18596                  maintain altitude
## 1.18603                  emergency landing
## 1.18604                       landing left
## 1.18605                         left milne
## 1.18606                          milne bay
## 1.18609                     routine flight
## 1.18614                              10 15
## 1.18615                         15 crashed
## 1.18620                          milne bay
## 1.18621                         bay failed
## 1.18624                      gain altitude
## 1.18629                       struck trees
## 1.18630                         trees lost
## 1.18633                     wings exploded
## 1.18636                      burned engine
## 1.18637                     engine failure
## 1.18651                   mountain located
## 1.18654                          mt puncak
## 1.18655                        puncak jaya
## 1.18656                     jaya southwest
## 1.18659                          mulia 100
## 1.18660                           100 feet
## 1.18666                           crash 32
## 1.18667                              32 km
## 1.18668                       km southeast
## 1.18673              unknown circumstances
## 1.18674              circumstances crashed
## 1.18684                    missed approach
## 1.18687                   faulty execution
## 1.18691                    missed approach
## 1.18692                 approach procedure
## 1.18693                procedure resulting
## 1.18706                     landing runway
## 1.18707                      runway cashed
## 1.18710                     burned shortly
## 1.18717                        engine fire
## 1.18722                           2 engine
## 1.18723                        engine lost
## 1.18724                      lost altitude
## 1.18737                       burned short
## 1.18743                    aircraft failed
## 1.18746                         gain speed
## 1.18759                      runway struck
## 1.18762                 radio transmission
## 1.18763                 transmission tower
## 1.18771                      nanyman field
## 1.18774                   encountering low
## 1.18775                         low clouds
## 1.18778                    poor visibility
## 1.18779                 visibility crashed
## 1.18785                           en route
## 1.18786                       route flying
## 1.18790                       low altitude
## 1.18793             adverse meteorological
## 1.18794          meteorological conditions
## 1.18795             conditions disappeared
## 1.18796                     disappeared en
## 1.18797                           en route
## 1.18798                   route penetrated
## 1.18806                      engine failed
## 1.18812                      plane stalled
## 1.18815                    crashed crashed
## 1.18818                    takeoff crashed
## 1.18823                   takeoff striking
## 1.18828                     engine failure
## 1.18833                     crew descended
## 1.18836                       low overcast
## 1.18848                wooded mountainside
## 1.18849             mountainside navigator
## 1.18850                    navigator error
## 1.18859                    terrain crashed
## 1.18867                           en route
## 1.18868                     route wreckage
## 1.18869                     wreckage found
## 1.18879                     plane carrying
## 1.18880                  carrying magazins
## 1.18884                         west coast
## 1.18885                      coast crashed
## 1.18890                  encountering snow
## 1.18893                       strong winds
## 1.18896                    flight engineer
## 1.18897                  engineer survived
## 1.18900                aircraft expierence
## 1.18903                   midair collision
## 1.18906                     corpus christi
## 1.18907                        christi bay
## 1.18912                    training flight
## 1.18915                      pilot radioed
## 1.18919                       lost shortly
## 1.18930                    poor visibility
## 1.18936               aircraft experienced
## 1.18939                        engine fire
## 1.18940                       fire stalled
## 1.18945                     burned crashed
## 1.18949                     mountain ridge
## 1.18950                          ridge 200
## 1.18951                             200 ft
## 1.18952                           ft short
## 1.18956                     summit bounced
## 1.18968                           en route
## 1.18971                  plane disappeared
## 1.18975                      pilot radioed
## 1.18979                  exeriencing heavy
## 1.18980                        heavy icing
## 1.18991                            found 5
## 1.18992                           5 months
## 1.18996                            mt meta
## 1.18997                       meta crashed
## 1.19001                           sea afte
## 1.19004                    aborted landing
## 1.19012                      plane touched
## 1.19015                        hard pulled
## 1.19023                          sea pilot
## 1.19024                        pilot error
## 1.19025                     error decision
## 1.19030                unfavorable weather
## 1.19031                    weather crashed
## 1.19035                           7,598 ft
## 1.19036                        ft mountain
## 1.19042                           wide bay
## 1.19043                            bay 150
## 1.19044                           150 feet
## 1.19048                      ridge shortly
## 1.19057                    indian soldiers
## 1.19062                   aircraft crashed
## 1.19066                       hill shortly
## 1.19078                prescribed altitude
## 1.19079                   altitude crashed
## 1.19082                  severe turbulence
## 1.19096                     aircraft 23307
## 1.19097                        23307 73209
## 1.19098                        73209 46325
## 1.19099                        46325 46094
## 1.19100                        46094 45714
## 1.19101                       45714 flying
## 1.19106                          u.s naval
## 1.19107                          naval air
## 1.19108                        air station
## 1.19111                    fort lauderdale
## 1.19115                   training mission
## 1.19118                           lost ran
## 1.19127                     atlantic ocean
## 1.19144                   bermuda triangle
## 1.19145                    triangle legend
## 1.19146                     legend crashed
## 1.19152                      hitting trees
## 1.19160                     snowstorm flew
## 1.19169                       icing caused
## 1.19170                        caused loss
## 1.19192                              60 km
## 1.19193                            km west
## 1.19196                     bangui airport
## 1.19197                    airport crashed
## 1.19198                         crashed 50
## 1.19199                           50 miles
## 1.19200                    miles northwest
## 1.19205                      catching fire
## 1.19218                encountering engine
## 1.19219                     engine trouble
## 1.19220                  trouble attempted
## 1.19226                   landing approach
## 1.19234                       fast initial
## 1.19235                    initial contact
## 1.19246              provided insufficient
## 1.19251                       landing roll
## 1.19256              airspeed considerable
## 1.19276                 avoid overshooting
## 1.19300                  worsening weather
## 1.19301                 weather conditions
## 1.19304                       plane landed
## 1.19305                        landed fast
## 1.19312                instrument approach
## 1.19315                 birmingham overran
## 1.19318                     runway crashed
## 1.19322                      barrier fence
## 1.19348                   fast experienced
## 1.19349                 experienced severe
## 1.19350                       severe icing
## 1.19351                    icing resulting
## 1.19356                 structural failure
## 1.19357                    failure crashed
## 1.19366                      aircraft lost
## 1.19367                       lost control
## 1.19377                           1 engine
## 1.19378                      engine caught
## 1.19384                          left wing
## 1.19385                     wing separated
## 1.19391                        fire caused
## 1.19398                          fuel line
## 1.19401                          fuel line
## 1.19402                    line connection
## 1.19403                     connection led
## 1.19409                          left wing
## 1.19410                      wing collided
## 1.19413                         mt ptolemy
## 1.19416                           en route
## 1.19419                   aircraft crashed
## 1.19422                       elk mountain
## 1.19429             unauthorized deviation
## 1.19433                   prescribed route
## 1.19437              altitude insufficient
## 1.19440                    assure adequate
## 1.19441                 adequate clearance
## 1.19444                       elk mountain
## 1.19445                    mountain flight
## 1.19448                   originally filed
## 1.19451                          13,000 ft
## 1.19457                        flight plan
## 1.19460                          11,000 ft
## 1.19461                             ft elk
## 1.19462                       elk mountain
## 1.19465                          11,152 ft
## 1.19466                             ft msl
## 1.19467                        msl crashed
## 1.19470                mountainous terrain
## 1.19473                           en route
## 1.19474                      route crashed
## 1.19479                         land icing
## 1.19485                          san diego
## 1.19488                      aircraft flew
## 1.19491                      tierra blanca
## 1.19492                    blanca mountain
## 1.19498                         4,500 feet
## 1.19501                       fog exploded
## 1.19506                     crew descended
## 1.19509              instrument conditions
## 1.19518                 maintain clearance
## 1.19530                 determined crashed
## 1.19535                 approaching ruzyne
## 1.19536                    ruzyne aerodome
## 1.19541                experiencing engine
## 1.19545                   aircraft crashed
## 1.19546                         crashed 10
## 1.19547                            10 mins
## 1.19552                 hobart inadvertent
## 1.19553             inadvertent engagement
## 1.19561                     fuel crossfeed
## 1.19562                  crossfeed crashed
## 1.19565                mountainous terrain
## 1.19568                     low visibility
## 1.19571                           en route
## 1.19572                  route disappeared
## 1.19575                           en route
## 1.19576                        route plane
## 1.19581                      aircraft lost
## 1.19589                      donner summit
## 1.19592                    reasons unknown
## 1.19593                unknown disappeared
## 1.19599                      cocos islands
## 1.19602                           en route
## 1.19603                     route aircraft
## 1.19604                     aircraft owned
## 1.19614                      sydney london
## 1.19615                    london services
## 1.19616                      services boac
## 1.19617                         boac crews
## 1.19618                     crews operated
## 1.19619                    operated london
## 1.19620                     london karachi
## 1.19623                       qantas crews
## 1.19624                      crews karachi
## 1.19625                     karachi sydney
## 1.19626                     sydney crashed
## 1.19627                          crashed 5
## 1.19628                            5 miles
## 1.19629                        miles north
## 1.19630                    north northeast
## 1.19639                     advese weather
## 1.19640                      weather pilot
## 1.19641                        pilot error
## 1.19644                       pilot failed
## 1.19663                   spitfire fighter
## 1.19673                       dummy target
## 1.19681                     evasive action
## 1.19690                         5,000 feet
## 1.19691                      feet altitude
## 1.19698                     started diving
## 1.19701                         20 degrees
## 1.19706                   loosing altitude
## 1.19707                      altitude till
## 1.19719                    distress signal
## 1.19726                      fighter pilot
## 1.19729                     ground control
## 1.19740                    hydraulic fluid
## 1.19746                     released fumes
## 1.19750                  cockpit rendering
## 1.19753                    crew unconcious
## 1.19754                 unconcious crashed
## 1.19757                      takeoff broke
## 1.19763                   crashed collided
## 1.19771                    practice diving
## 1.19772                   diving maneuvers
## 1.19776                   formation engine
## 1.19777                     engine trouble
## 1.19780                     takeoff forced
## 1.19806                      running rough
## 1.19809                   pilot apparently
## 1.19810                    apparently shut
## 1.19814                       wrong engine
## 1.19817                      plane stalled
## 1.19822                         earth nose
## 1.19830                  maintain adequate
## 1.19831                   adequate control
## 1.19839                   emergency single
## 1.19840                      single engine
## 1.19841                  engine instrument
## 1.19842                instrument approach
## 1.19845                    adverse weather
## 1.19846                 weather conditions
## 1.19847                 conditions crashed
## 1.19850                         oslo fjord
## 1.19851                      fjord shortly
## 1.19854                     takeoff engine
## 1.19855                     engine trouble
## 1.19856                     trouble forced
## 1.19874                undetermined origin
## 1.19875                     origin erupted
## 1.19889                        flames lost
## 1.19890                       lost control
## 1.19898                  aboard parachuted
## 1.19901                     safety crashed
## 1.19910                prescribed altitude
## 1.19911                    altitude flying
## 1.19912                         flying low
## 1.19915                         avoid poor
## 1.19916                       poor weather
## 1.19919                   aircraft crashed
## 1.19922                           en route
## 1.19927                  ikeja disappeared
## 1.19930                        cargo plane
## 1.19931                       plane struck
## 1.19932                       struck power
## 1.19933                        power lines
## 1.19946                             mt tom
## 1.19954                     westover field
## 1.19957                     flight crashed
## 1.19958                        crashed due
## 1.19963                        flight fire
## 1.19964                        fire caused
## 1.19970                     generator lead
## 1.19973                  stud installation
## 1.19977                baggage compartment
## 1.19978                compartment causing
## 1.19979                    causing intense
## 1.19980                       intense heat
## 1.19981                           heat due
## 1.19984                 electrical arching
## 1.19985                   arching ignition
## 1.19988                fuselage insulation
## 1.19993                    smoke rendering
## 1.19996                     crew incapable
## 1.20003                      plane crashed
## 1.20014                       accident led
## 1.20018                             30 day
## 1.20019                      day grounding
## 1.20028                         named star
## 1.20031                    lisbon training
## 1.20032                    training flight
## 1.20035                   aircraft crashed
## 1.20036                          crashed 1
## 1.20037                             1 mile
## 1.20041                   airfield shortly
## 1.20044                        takeoff due
## 1.20047                     engine failure
## 1.20048                   failure overshot
## 1.20057                    regain altitude
## 1.20061                      plane crashed
## 1.20069                     flames crashed
## 1.20078                    lightning storm
## 1.20082                  aircraft collided
## 1.20085                          midair 20
## 1.20086                           20 miles
## 1.20087                        miles north
## 1.20091                  panamanian island
## 1.20099                      missing plane
## 1.20100                          plane ten
## 1.20101                           ten died
## 1.20102                        died aboard
## 1.20105                   aircraft crashed
## 1.20115               suffering structural
## 1.20116                 structural failure
## 1.20120                          left wing
## 1.20123                    adverse weather
## 1.20124                 weather conditions
## 1.20125                conditions returned
## 1.20131                   suffering engine
## 1.20132                     engine failure
## 1.20135                      plane crashed
## 1.20136                         crashed 40
## 1.20137                           40 miles
## 1.20138                    miles southeast
## 1.20141                        jalapa flew
## 1.20146                mistberget mountain
## 1.20154                         oslo pilot
## 1.20155                        pilot error
## 1.20156                    error descended
## 1.20162                        radio range
## 1.20163                       range flying
## 1.20166               inadequate equipment
## 1.20167                  equipment crashed
## 1.20178                  emergency landing
## 1.20181                     lakhurst field
## 1.20184                        port engine
## 1.20189                   starboard engine
## 1.20190                      engine failed
## 1.20196                    fuel starvation
## 1.20197          starvation circumstantial
## 1.20198            circumstantial evidence
## 1.20199                  evidence suggests
## 1.20200                  suggests strongly
## 1.20208              inadvertent selection
## 1.20212                     auxiliary fuel
## 1.20213                         fuel tanks
## 1.20218                     time contained
## 1.20225                     fuel descended
## 1.20230                  crashed premature
## 1.20231                  premature descent
## 1.20239                  position training
## 1.20240                    training flight
## 1.20251                           1 engine
## 1.20252                      engine failed
## 1.20260                  descent initiated
## 1.20264              emergency landing.the
## 1.20265               landing.the aircraft
## 1.20266                  aircraft overshot
## 1.20285                     flaps extended
## 1.20288                          left wing
## 1.20289                       wing touched
## 1.20295               aircraft cartwheeled
## 1.20298                     engine failure
## 1.20305                         5 cylinder
## 1.20306                  cylinder fracture
## 1.20307                   fracture crashed
## 1.20310                        caught fire
## 1.20311                       fire crashed
## 1.20314                      chatham sound
## 1.20321                          heavy fog
## 1.20322                        fog shortly
## 1.20327                   aircraft crashed
## 1.20331                           field 40
## 1.20332                           40 miles
## 1.20333                        miles south
## 1.20336               copenhagen exploding
## 1.20347                        caught fire
## 1.20348                         fire prior
## 1.20352                    crash resulting
## 1.20356                          fuel leak
## 1.20357                          leak lost
## 1.20358                      lost altitude
## 1.20370                       factory yard
## 1.20373                      aircraft lost
## 1.20374                       lost contact
## 1.20391                       elko airport
## 1.20403                    pilot continued
## 1.20408                      losing visual
## 1.20409                     visual contact
## 1.20413                        airport due
## 1.20416                  fog unfamiliarity
## 1.20423                terrain insufficent
## 1.20424                   insufficent fuel
## 1.20425                        fuel aboard
## 1.20431                  alternate landing
## 1.20432                       landing site
## 1.20435                   aircraft crashed
## 1.20436                    crashed shortly
## 1.20447                       captain loss
## 1.20455                    unknown reasons
## 1.20469                         named star
## 1.20470                        star leader
## 1.20473                        cargo plane
## 1.20481                        fog covered
## 1.20482                   covered mountain
## 1.20490                         pilot lost
## 1.20491                       lost control
## 1.20506                       plane rolled
## 1.20511                       hangers loss
## 1.20516               undetermined reasons
## 1.20519                   aircraft crashed
## 1.20520                         crashed 24
## 1.20521                              24 mi
## 1.20522                              mi sw
## 1.20528                    gander improper
## 1.20529                  improper approach
## 1.20530                approach procedures
## 1.20536                       poor weather
## 1.20537                    weather crashed
## 1.20544                  lightning crashed
## 1.20548                          15,000 ft
## 1.20549                        ft mountain
## 1.20550                   mountain shortly
## 1.20558                  aircraft departed
## 1.20559                      departed hong
## 1.20560                          hong kong
## 1.20561                        kong runway
## 1.20562                          runway 31
## 1.20563                        31 climbing
## 1.20569                            700 800
## 1.20570                           800 feet
## 1.20576                      airplane lost
## 1.20577                       lost control
## 1.20582                    dakota possibly
## 1.20583                   possibly stalled
## 1.20586            encountering turbulence
## 1.20590                  foothills crashed
## 1.20596                       low overcast
## 1.20597                   overcast weather
## 1.20598                 weather navigation
## 1.20599                   navigation error
## 1.20600                      error crashed
## 1.20604                 mountainside north
## 1.20607                             rio de
## 1.20608                         de janerio
## 1.20612                    possibly struck
## 1.20624                      straight line
## 1.20628                     mountain ridge
## 1.20629                           ridge 71
## 1.20630                           71 miles
## 1.20638                     named flagship
## 1.20658                         safe climb
## 1.20680                 adequate clearance
## 1.20685                     gained crashed
## 1.20693                           en route
## 1.20699                      single engine
## 1.20700                     engine fighter
## 1.20704                unauthorized flight
## 1.20710                         flying low
## 1.20713                  attract attention
## 1.20716                      aircraft lost
## 1.20717                      lost altitude
## 1.20727                     school killing
## 1.20728                         killing 22
## 1.20735                   landing attempts
## 1.20747                        wing struck
## 1.20753                      plane skidded
## 1.20754                        skidded 800
## 1.20755                             800 ft
## 1.20767                     final approach
## 1.20782                    named mainliner
## 1.20783                     mainliner lake
## 1.20784                      lake michigan
## 1.20785                   michigan crashed
## 1.20791                           en route
## 1.20792                   route navigation
## 1.20793                   navigation error
## 1.20794                      error crashed
## 1.20800                      prairie lands
## 1.20807                    laramie weather
## 1.20808                 weather conditions
## 1.20811              deteriorating rapidly
## 1.20828                    dangerously low
## 1.20829                       low altitude
## 1.20832                  extremely adverse
## 1.20833                    adverse weather
## 1.20834                 weather conditions
## 1.20842                contributing factor
## 1.20859                    adverse weather
## 1.20860                 weather conditions
## 1.20866                adequate provisions
## 1.20870                 suitable alternate
## 1.20871                  alternate airport
## 1.20872                     airport struck
## 1.20875                          11,000 ft
## 1.20876                        ft mountain
## 1.20879                      plane crashed
## 1.20889                     forced landing
## 1.20895                       fuel crashed
## 1.20900                           en route
## 1.20903                    pilot descended
## 1.20906                    lower altitiude
## 1.20913                        ice stalled
## 1.20919                          heavy fog
## 1.20920                           fog crew
## 1.20921                         crew error
## 1.20922                       error struck
## 1.20923                       struck power
## 1.20924                        power lines
## 1.20929                        crashed 500
## 1.20930                           500 feet
## 1.20931                         feet short
## 1.20962                          runway 23
## 1.20967                          runway 31
## 1.20970                contributing factor
## 1.20985                  cleveland airport
## 1.20990                 weather conditions
## 1.20994                minimums prescribed
## 1.21000                   aircraft crashed
## 1.21003                     white mountain
## 1.21009                         6,000 feet
## 1.21014                             70 mph
## 1.21015                          mph winds
## 1.21040                 instrument letdown
## 1.21043            previously establishing
## 1.21046                     positive radio
## 1.21047                          radio fix
## 1.21056                      severe static
## 1.21057                        static wind
## 1.21062             anticipated velocities
## 1.21063           velocities preoccupation
## 1.21067                     unusual amount
## 1.21070                 radio conversation
## 1.21074                inoperative newhall
## 1.21075                      newhall radio
## 1.21076                        radio range
## 1.21077                      range crashed
## 1.21081                          11,000 ft
## 1.21082                        ft mountain
## 1.21083                  mountain obscured
## 1.21088                     flight crashed
## 1.21093                    landing attempt
## 1.21096                  inclement weather
## 1.21108                         sharp left
## 1.21112                           wing hit
## 1.21118                  aircraft exploded
## 1.21124                         360 degree
## 1.21131                             sea 15
## 1.21132                           15 miles
## 1.21135                           iwo jima
## 1.21136                        jima struck
## 1.21137                      struck cedrel
## 1.21138                    cedrel mountain
## 1.21145                           san jose
## 1.21148                     engine failure
## 1.21151                       captain lost
## 1.21152                       lost control
## 1.21159                       land crashed
## 1.21160                    crashed shortly
## 1.21165                     meshed airport
## 1.21166                    airport crashed
## 1.21167                          crashed 3
## 1.21168                            3 miles
## 1.21169                    miles southwest
## 1.21172                          itami air
## 1.21173                           air base
## 1.21174                       base shortly
## 1.21181                       engine power
## 1.21184                    reasons unknown
## 1.21187                      crew reported
## 1.21188                   reported picking
## 1.21198                           en route
## 1.21202                   reported positon
## 1.21205                           30 miles
## 1.21206                        miles south
## 1.21209                  toledo washington
## 1.21210                   washington found
## 1.21211                           found 11
## 1.21212                          11 months
## 1.21216                          mt rainer
## 1.21217                     rainer crashed
## 1.21220                          tree tops
## 1.21223                        mt banahaur
## 1.21228                        1 passenger
## 1.21229                 passenger survived
## 1.21230               survived disappeared
## 1.21231                     disappeared en
## 1.21232                           en route
## 1.21235                         found poor
## 1.21236                       poor weather
## 1.21240                destination airport
## 1.21241                     airport forced
## 1.21248                             rio de
## 1.21249                         de janeiro
## 1.21256                      aircraft flew
## 1.21260                        mountain 14
## 1.21261                           14 miles
## 1.21265                    airport crashed
## 1.21266                       crashed east
## 1.21267                         east slope
## 1.21270                 cuyapaipe mountain
## 1.21273                           6,120 ft
## 1.21276                          san diego
## 1.21277                       diego county
## 1.21280                       poor weather
## 1.21281                 weather conditions
## 1.21295                   obstructions due
## 1.21310                    laguna mountain
## 1.21311                   mountain crashed
## 1.21315                     failed landing
## 1.21316                    landing attempt
## 1.21319                   kiangwan airport
## 1.21322                           rain fog
## 1.21327                      plan overshot
## 1.21346                       aircraft ran
## 1.21350                       fuel stalled
## 1.21355                      lunghwa field
## 1.21358                          heavy fog
## 1.21361                    aircraft struck
## 1.21367                    nearby building
## 1.21373                     neighborhood 1
## 1.21374                             1 mile
## 1.21377                    lunghwa airport
## 1.21378                    airport killing
## 1.21385                        cargo plane
## 1.21386                      plane crashed
## 1.21390                     engines failed
## 1.21391                        failed fuel
## 1.21392                    fuel exhaustion
## 1.21393                 exhaustion crashed
## 1.21394                          crashed 1
## 1.21395                             1 mile
## 1.21402                    island situated
## 1.21406                       fergus river
## 1.21407                   river inaccurate
## 1.21408               inaccurate altimeter
## 1.21409                  altimeter reading
## 1.21410                     reading caused
## 1.21419                      static source
## 1.21420                       source lines
## 1.21447                unheated windshield
## 1.21452                        named cairo
## 1.21453                     cairo skychief
## 1.21454                   skychief crashed
## 1.21457                      loosing power
## 1.21461                        engines due
## 1.21464                    fuel starvation
## 1.21469                     carburetor ice
## 1.21483                    fuel starvation
## 1.21488                    fuel starvation
## 1.21493                 determined crashed
## 1.21497                     solimoes river
## 1.21503                       amazon river
## 1.21504                      river crashed
## 1.21513                       low overcast
## 1.21516                  aircraft diverted
## 1.21524                      heavy traffic
## 1.21531                    fuel exhaustion
## 1.21532                  exhaustion forced
## 1.21540                  emergency landing
## 1.21547                  suitable location
## 1.21550                         heavy snow
## 1.21553                    aircraft struck
## 1.21554                       struck trees
## 1.21557                    crashed failure
## 1.21561                     weather bureau
## 1.21566                 minimum conditions
## 1.21567                   conditions north
## 1.21572                 washington failure
## 1.21579                        flight plan
## 1.21584                    sufficient time
## 1.21595                         flight ran
## 1.21617                        lympne poor
## 1.21618                      poor planning
## 1.21624                          crew poor
## 1.21625                       poor weather
## 1.21626                 weather conditions
## 1.21627             conditions encountered
## 1.21631                        flight crew
## 1.21632                     crew unfamilar
## 1.21637                      plane ditched
## 1.21641                      pacific ocean
## 1.21642                           ocean 80
## 1.21643                           80 miles
## 1.21644                         miles west
## 1.21650                         fire broke
## 1.21656                           2 engine
## 1.21659                      aircraft flew
## 1.21668                           2,500 ft
## 1.21669                              ft 63
## 1.21670                           63 miles
## 1.21671                    miles northwest
## 1.21674                      winston salem
## 1.21680                   unapproved route
## 1.21687              positively determined
## 1.21695                contributing factor
## 1.21699               erroneous navigation
## 1.21709                      occasions led
## 1.21717                      farther south
## 1.21725                     burned moments
## 1.21728                    takeoff failure
## 1.21733                     engine crashed
## 1.21740                    magdalena river
## 1.21741                       river valley
## 1.21742                    valley wreckage
## 1.21743                     wreckage found
## 1.21755                    gained altitude
## 1.21756                   altitude overran
## 1.21764              ceskoslovenske dakota
## 1.21765                      dakota twelve
## 1.21766                      twelve killed
## 1.21770                    spencer airways
## 1.21775                ceskoslovenske loss
## 1.21784                    spencer airways
## 1.21785                      airways plane
## 1.21794                     heavily loaded
## 1.21795                    loaded aircraft
## 1.21798                    poor visibility
## 1.21799                 visibility allowed
## 1.21807                       semi stalled
## 1.21808                  stalled condition
## 1.21809                  condition crashed
## 1.21812                      mountains 120
## 1.21813                          120 miles
## 1.21814                        miles south
## 1.21819                        cargo plane
## 1.21820                       plane struck
## 1.21821                          struck mt
## 1.21822                          mt parker
## 1.21829                  kobenhavn kastrup
## 1.21830                    kastrup airport
## 1.21833                      aircraft rose
## 1.21839                           150 feet
## 1.21849                   fireball failure
## 1.21854                   elevator locking
## 1.21855                       locking pins
## 1.21856                         pins prior
## 1.21859                     takeoff singer
## 1.21860                       singer grace
## 1.21861                        grace moore
## 1.21862                           moore 48
## 1.21865                      swedish crown
## 1.21866                       crown prince
## 1.21867                      prince gustav
## 1.21868                       gustav adolf
## 1.21869                           adolf 41
## 1.21873                     killed crashed
## 1.21876                           en route
## 1.21879                         30 minutes
## 1.21887                       boy survived
## 1.21888                      survived fire
## 1.21892                          left wing
## 1.21893                       wing leading
## 1.21899                       wing crashed
## 1.21902                    cintra mountain
## 1.21908                       poor weather
## 1.21909                  weather condtions
## 1.21912                        cargo plane
## 1.21913                     plane diverted
## 1.21920                           2 engine
## 1.21921                         engine rpm
## 1.21922                      rpm reduction
## 1.21925                   plane approached
## 1.21926                approached downwind
## 1.21927                  downwind overshot
## 1.21932                         trees fuel
## 1.21933                 fuel contamination
## 1.21934              contamination crashed
## 1.21937                    gredos mountain
## 1.21938                     mountain range
## 1.21941                          100 miles
## 1.21942                         miles west
## 1.21947                           en route
## 1.21951                    adverse weather
## 1.21952                 weather conditions
## 1.21957                         named ruta
## 1.21958                            ruta de
## 1.21959                           de colon
## 1.21960                        colon cargo
## 1.21961                       cargo flight
## 1.21964                     momentary loss
## 1.21975                     critically low
## 1.21976                       low altitude
## 1.21980                       final stages
## 1.21984                       ils approach
## 1.21987                contributing factor
## 1.21994                       safety pilot
## 1.21997                       remain alert
## 1.22006                      plane crashed
## 1.22009                              mt el
## 1.22010                        el tabalazo
## 1.22013                        10,500 feet
## 1.22018                           en route
## 1.22019                        route pilot
## 1.22020                        pilot error
## 1.22021                   error conducting
## 1.22027                      safe altitude
## 1.22032                  designated airway
## 1.22033                 airway disappeared
## 1.22053                  egyptian princess
## 1.22060                    remains unknown
## 1.22066                possibility crashed
## 1.22071                           land ran
## 1.22074                        heavy icing
## 1.22077                         wing broke
## 1.22082                           en route
## 1.22085                      found crashed
## 1.22089                  cacasus mountains
## 1.22090          mountains nizhnesvanetsky
## 1.22091              nizhnesvanetsky range
## 1.22094                           en route
## 1.22095                        route pilot
## 1.22096                        pilot error
## 1.22097                        error pilot
## 1.22100                    command changed
## 1.22105                         flight due
## 1.22108                     low visibility
## 1.22121                       aircraft hit
## 1.22126                          mt epomeo
## 1.22129                      ischia island
## 1.22130                     island crashed
## 1.22134                cordillera mountain
## 1.22135                     mountain range
## 1.22136                      range shortly
## 1.22142                      climbing flew
## 1.22145                         4,000 foot
## 1.22146                            foot mt
## 1.22147                    mt moucherolles
## 1.22148                    moucherolles 25
## 1.22149                           25 miles
## 1.22150                        miles south
## 1.22155                       poor weather
## 1.22158                      crash started
## 1.22167                 wreckage naviation
## 1.22168                    naviation error
## 1.22169                      error crashed
## 1.22170                    crashed shortly
## 1.22179                          cerro del
## 1.22180                          del padre
## 1.22181                        padre amaya
## 1.22182                      amaya located
## 1.22183                         located 12
## 1.22184                              12 km
## 1.22185                       km northwest
## 1.22189                     airport failed
## 1.22190                      failed engine
## 1.22196                  maintain altitude
## 1.22197                      altitude lost
## 1.22198                       lost control
## 1.22199                     control struck
## 1.22200                       struck trees
## 1.22203                    crashed crashed
## 1.22204                         crashed 40
## 1.22205                           40 miles
## 1.22206                         miles east
## 1.22211                           en route
## 1.22214                      plane crashed
## 1.22220                    landing attempt
## 1.22221                     attempt unwise
## 1.22222                    unwise decision
## 1.22228                    landing attempt
## 1.22231                    approach lights
## 1.22234                   radio facilities
## 1.22237                      private plane
## 1.22238                       plane landed
## 1.22244                               dc 3
## 1.22257                             150 ft
## 1.22263                               dc 3
## 1.22270                     planes crashed
## 1.22275                           9 killed
## 1.22276                      killed aboard
## 1.22279                               dc 3
## 1.22285                      private plane
## 1.22296                              bt 13
## 1.22301                      standard left
## 1.22302                          left hand
## 1.22303                       hand pattern
## 1.22315                   diligent lookout
## 1.22321               aircraft disappeared
## 1.22324                           en route
## 1.22327                 lethbridge alberta
## 1.22330                  vancouver british
## 1.22331                   british columbia
## 1.22339                  vancouver airport
## 1.22348                     september 1994
## 1.22354                           10 miles
## 1.22355                        miles north
## 1.22360                         mt seymour
## 1.22361                    seymour crashed
## 1.22362                        crashed 100
## 1.22363                          100 miles
## 1.22364                         miles west
## 1.22367                           san jose
## 1.22383                       lost control
## 1.22384                   control spiraled
## 1.22388                        ground loss
## 1.22396               reasons undetermined
## 1.22405                    poor visibility
## 1.22408                  weather minimumns
## 1.22411                          plane hit
## 1.22414                    broadcast radio
## 1.22415                         radio mast
## 1.22416                       mast crashed
## 1.22419                        burned crew
## 1.22420                         crew error
## 1.22421                          error atc
## 1.22422                          atc error
## 1.22425                   aircraft overran
## 1.22431                  attempted takeoff
## 1.22432                    takeoff crashed
## 1.22435                        caught fire
## 1.22446                          gust lock
## 1.22461             apprehension resulting
## 1.22468                       short runway
## 1.22473                          calm wind
## 1.22474                     wind condition
## 1.22488                  mountain bursting
## 1.22491                     flames crashed
## 1.22495                        north coast
## 1.22500                       poor weather
## 1.22503                       aircraft hit
## 1.22508                       mt hestfjall
## 1.22509                  hestfjall located
## 1.22513                         west coast
## 1.22516                           hãƒâ ãƒâ
## 1.22517                       ãƒâ insfjãƒâ
## 1.22518                      insfjãƒâ rãƒâ
## 1.22519                            rãƒâ ur
## 1.22520                             ur bay
## 1.22528                           4,000 ft
## 1.22531                     plane suddenly
## 1.22536                          nose dive
## 1.22537                      dive inverted
## 1.22553                        cargo plane
## 1.22554                       plane struck
## 1.22559                           en route
## 1.22560                       route veered
## 1.22563                      runway struck
## 1.22570                   aircraft crashed
## 1.22576                       lookout rock
## 1.22577                             rock 8
## 1.22578                            8 miles
## 1.22579                           miles se
## 1.22582                       charles town
## 1.22583                            town wv
## 1.22597                         minimum en
## 1.22598                           en route
## 1.22599                     route altitude
## 1.22606                  prevented adquate
## 1.22607                     adquate visual
## 1.22608                   visual reference
## 1.22618                   faulty clearance
## 1.22626                 flight originating
## 1.22634                inaugural westbound
## 1.22635                   westbound flight
## 1.22640                      world service
## 1.22645                           1 engine
## 1.22646                      engine failed
## 1.22647                        failed half
## 1.22656                       istanbul due
## 1.22659                    closed airports
## 1.22662                  inadequate repair
## 1.22663                  repair facilities
## 1.22666                        pilot chose
## 1.22677                  remaining engines
## 1.22678                 engines overheated
## 1.22683                           2 engine
## 1.22684                      engine caught
## 1.22685                        caught fire
## 1.22686                       fire causing
## 1.22691                         crash gene
## 1.22692                   gene roddenberry
## 1.22693                roddenberry creator
## 1.22696                          star trek
## 1.22700                    deadheading pan
## 1.22703                       pilot aboard
## 1.22706                      helped rescue
## 1.22717                           pan am's
## 1.22718                       am's failure
## 1.22724                           2 engine
## 1.22743                        2 propeller
## 1.22751                           2 engine
## 1.22752                      engine thrust
## 1.22753                     thrust bearing
## 1.22758                      named clipper
## 1.22759                    clipper eclipse
## 1.22762                      plane ditched
## 1.22766                          black sea
## 1.22767                         sea engine
## 1.22768                     engine failure
## 1.22769                        failure due
## 1.22774                  traction altitude
## 1.22775                 altitude corrector
## 1.22776                  corrector crashed
## 1.22785                           en route
## 1.22788                 reduced visibility
## 1.22794                     charter flight
## 1.22800                           san juan
## 1.22801                        juan puerto
## 1.22802                        puerto rico
## 1.22803                       rico crashed
## 1.22813                  emergency landing
## 1.22814                       landing loss
## 1.22818                         engine due
## 1.22822                          fuel flow
## 1.22832                      crash landing
## 1.22835                        spark plugs
## 1.22847                       defect found
## 1.22856                     excessive fuel
## 1.22857                          fuel loss
## 1.22858                          loss crew
## 1.22859                       crew fatigue
## 1.22860                fatigue contributed
## 1.22864                      accident lost
## 1.22865                       lost control
## 1.22873                     fourth landing
## 1.22874                    landing attempt
## 1.22877                      plane touched
## 1.22885                      plane crashed
## 1.22907                 unsuitable weather
## 1.22908                 weather conditions
## 1.22909                 conditions coupled
## 1.22917                         atc struck
## 1.22924                       land crashed
## 1.22933                    andes mountains
## 1.22936                       poor weather
## 1.22941                  mendoza argentina
## 1.22944                     santiago chile
## 1.22952                        south slope
## 1.22955                     tupungato peak
## 1.22959                          18,000 ft
## 1.22960                           ft level
## 1.22963                         january 19
## 1.22964                            19 2000
## 1.22965                            2000 53
## 1.22969                     possibly icing
## 1.22980                        20,000 feet
## 1.22981                   feet encountered
## 1.22982                 encountered strong
## 1.22983                        strong head
## 1.22984                         head winds
## 1.22989                   descent thinking
## 1.23003                         named star
## 1.23004                          star dust
## 1.23007                     radio operator
## 1.23008               operator transmitted
## 1.23011                    enigmatic coded
## 1.23012                      coded message
## 1.23013                    message stendec
## 1.23017                  plane disappeared
## 1.23018            disappeared disappeared
## 1.23021                           en route
## 1.23032                          150 miles
## 1.23038                    battling strong
## 1.23039                        strong head
## 1.23040                         head winds
## 1.23041                        winds cargo
## 1.23042                       cargo flight
## 1.23043                        flight lost
## 1.23058                  attempted landing
## 1.23061                      miss approach
## 1.23062                 approach procedure
## 1.23071                     sufficient air
## 1.23072                          air speed
## 1.23075                      single engine
## 1.23076                   engine operation
## 1.23079                        cargo plane
## 1.23080                      plane overran
## 1.23090                        cargo plane
## 1.23091                      plane entered
## 1.23096                        struck blue
## 1.23097                          blue bell
## 1.23098                         bell knoll
## 1.23099                     knoll mountain
## 1.23107                 instrument weather
## 1.23108                 weather conditions
## 1.23111                mountainous terrain
## 1.23121                       mountains en
## 1.23122                           en route
## 1.23123                        route heavy
## 1.23124                        heavy water
## 1.23125                      water landing
## 1.23128                  captain misjudged
## 1.23137                  touchdown heavily
## 1.23138                      heavily short
## 1.23147                   maintain control
## 1.23154                    aircraft struck
## 1.23162                   attitude crashed
## 1.23165                        13,000 foot
## 1.23166                      foot mountain
## 1.23167              mountain navigational
## 1.23168                 navigational error
## 1.23176                           8,000 ft
## 1.23185                         steep dive
## 1.23198                           350 feet
## 1.23207                     captain riding
## 1.23211                          jump seat
## 1.23212                       seat engaged
## 1.23215                          gust lock
## 1.23220                      command pilot
## 1.23225                          gust lock
## 1.23228                     engaged rolled
## 1.23231                      elevator trim
## 1.23232                           trim tab
## 1.23239                          jump seat
## 1.23240                       seat captain
## 1.23241                 captain disengaged
## 1.23244                          gust lock
## 1.23251                         steep dive
## 1.23252                      dive executed
## 1.23266                          jump seat
## 1.23267                       seat captain
## 1.23270                         seat belts
## 1.23275             accidentally feathered
## 1.23278                                1 2
## 1.23281                          4 engines
## 1.23300                 feathering reduced
## 1.23301                      reduced power
## 1.23321                       5,000 pounds
## 1.23325                   certified weight
## 1.23340                   severe headwinds
## 1.23346                           25 hours
## 1.23355                        coast guard
## 1.23356                         guard ship
## 1.23357                          ship bibb
## 1.23374                   shipping crashed
## 1.23380                     engine failure
## 1.23386                 passenger survived
## 1.23389                        cargo plane
## 1.23390                       plane struck
## 1.23393                        mountain en
## 1.23394                           en route
## 1.23395                         route fire
## 1.23408                 identical accident
## 1.23416                              11 11
## 1.23417                              11 47
## 1.23420                        flight crew
## 1.23421                   crew transferred
## 1.23422                   transferred fuel
## 1.23431                        4 alternate
## 1.23432                    alternate tanks
## 1.23437                        3 alternate
## 1.23438                    alternate tanks
## 1.23445                   transfer process
## 1.23450                  avoid overflowing
## 1.23454                        3 alternate
## 1.23455                     alternate tank
## 1.23456                      tank gasoline
## 1.23457                    gasoline flowed
## 1.23462                        3 alternate
## 1.23463                     alternate vent
## 1.23464                          vent line
## 1.23475                        slip stream
## 1.23476                    stream entering
## 1.23479                       cabin heater
## 1.23480                  heater combustion
## 1.23481                     combustion air
## 1.23482                         air intake
## 1.23483                       intake scoop
## 1.23487                       cabin heater
## 1.23494                      fire occurred
## 1.23501                   magnesium flares
## 1.23502                     flares strored
## 1.23506                       cabin heater
## 1.23507                 heater compartment
## 1.23508                 compartment caused
## 1.23512                        design flaw
## 1.23518                     allowed vented
## 1.23519                        vented fuel
## 1.23527                       cabin heater
## 1.23528                         heater air
## 1.23529                         air intake
## 1.23532                   aircraft crashed
## 1.23535                        mt hymettus
## 1.23541                    hassani airport
## 1.23545                   severe rainstorm
## 1.23548                       captain john
## 1.23549                       john douglas
## 1.23556                        landing due
## 1.23560                 weather conditions
## 1.23567                       aircraft hit
## 1.23570                   summit resulting
## 1.23575                      control crash
## 1.23583                    properly follow
## 1.23584                         follow ifr
## 1.23585                     ifr procedures
## 1.23599                  victims plundered
## 1.23602                   victim's pockets
## 1.23614                       named sunnan
## 1.23617                   aircraft crashed
## 1.23620                    tamgas mountain
## 1.23627                     annette island
## 1.23631                 extreme turbulence
## 1.23642                  severe turbulence
## 1.23645                     icing official
## 1.23652                      named clipper
## 1.23653                   clipper talisman
## 1.23654                        talisman ii
## 1.23666                          june 1980
## 1.23670                         pir panjal
## 1.23671                       panjal hills
## 1.23676                        cargo plane
## 1.23677                      plane crashed
## 1.23689                      san francisco
## 1.23700                   aircraft crashed
## 1.23701                     crashed landed
## 1.23710                 identical accident
## 1.23718                              10 24
## 1.23719                              24 47
## 1.23722                        flight crew
## 1.23723                   crew transferred
## 1.23724                   transferred fuel
## 1.23733                        4 alternate
## 1.23734                    alternate tanks
## 1.23739                        3 alternate
## 1.23740                    alternate tanks
## 1.23747                   transfer process
## 1.23752                  avoid overflowing
## 1.23756                        3 alternate
## 1.23757                     alternate tank
## 1.23758                      tank gasoline
## 1.23759                    gasoline flowed
## 1.23764                        3 alternate
## 1.23765                     alternate vent
## 1.23766                          vent line
## 1.23777                slipstream entering
## 1.23780                       cabin heater
## 1.23781                  heater combustion
## 1.23782                     combustion air
## 1.23783                         air intake
## 1.23784                       intake scoop
## 1.23788                       cabin heater
## 1.23795                      fire occurred
## 1.23796                    occurred caused
## 1.23800                        design flaw
## 1.23804                    aircraft design
## 1.23807                     allowed vented
## 1.23808                        vented fuel
## 1.23815                          fresh air
## 1.23816                          air inlet
## 1.23819                        cargo plane
## 1.23820                       plane struck
## 1.23823                        mountain en
## 1.23824                           en route
## 1.23825                      route crashed
## 1.23826                      crashed short
## 1.23836                inadvertent landing
## 1.23840                     aircraft short
## 1.23844                  runway inadequate
## 1.23845                     inadequate air
## 1.23846                          air speed
## 1.23847                     speed improper
## 1.23857                    incorrect glide
## 1.23858                         glide path
## 1.23859                       path strayed
## 1.23863                         stuck tree
## 1.23864                          tree tops
## 1.23870                           mt santa
## 1.23871                        santa maria
## 1.23872                          maria del
## 1.23873                          del monte
## 1.23874                      monte pilot's
## 1.23875                    pilot's failure
## 1.23880                      plane strayed
## 1.23887              mountainous territory
## 1.23888                  territory crashed
## 1.23893                           2,000 ft
## 1.23894                           ft tabor
## 1.23895                         tabor peak
## 1.23904                      radio failure
## 1.23907                        cargo plane
## 1.23913                     communist anti
## 1.23914                      anti aircraft
## 1.23915                      aircraft fire
## 1.23916                       fire crashed
## 1.23924                    yakutat failure
## 1.23929                approved instrument
## 1.23930                instrument approach
## 1.23931                approach procedures
## 1.23936                   initial approach
## 1.23940              altitude insufficient
## 1.23947                        flight path
## 1.23950                   aircraft crashed
## 1.23953                           burned 2
## 1.23954                            2 miles
## 1.23957                   titograd airport
## 1.23965                 snowstorm drifting
## 1.23966                        drifting 30
## 1.23967                           30 miles
## 1.23974                   aircraft crashed
## 1.23977                       snow covered
## 1.23978                  covered mountains
## 1.23983                       discovered 8
## 1.23984                           8 months
## 1.23988                    plane attempted
## 1.23993                     seattle tacoma
## 1.23994                     tacoma airport
## 1.24002                        low ceiling
## 1.24009                    landing attempt
## 1.24012                   aircraft touched
## 1.24015                         2,748 feet
## 1.24022                          runway 20
## 1.24023                             20 ran
## 1.24024                           ran past
## 1.24030                         runway hit
## 1.24033                 automobile killing
## 1.24036                     person crashed
## 1.24044                      flames caused
## 1.24060                         wet runway
## 1.24077                   aircraft crashed
## 1.24090                          goose bay
## 1.24091                           bay snow
## 1.24092                       snow falling
## 1.24113                        hand spiral
## 1.24118                    reasons unknown
## 1.24119                      unknown crash
## 1.24120                       crash landed
## 1.24121                         landed due
## 1.24124                     engine failure
## 1.24132                      aircraft lost
## 1.24133                       lost control
## 1.24142                     captain losing
## 1.24143                     losing control
## 1.24148                    poor visibility
## 1.24149                visibility resulted
## 1.24153                    aircraft flying
## 1.24167            inadequate illumination
## 1.24171                 flying instruments
## 1.24172                    instruments due
## 1.24178                    lighting system
## 1.24179                    system decision
## 1.24185                       poor weather
## 1.24186                 weather conditions
## 1.24189                    faulty lighting
## 1.24190                    lighting system
## 1.24191                     system crashed
## 1.24195                        leon public
## 1.24196                      public square
## 1.24199                        destroyed 3
## 1.24200                            3 homes
## 1.24201                         homes lost
## 1.24213                    airport crashed
## 1.24219                      hundred yards
## 1.24230                         le bourget
## 1.24231                    bourget airport
## 1.24236                        pilot error
## 1.24241                  causative factors
## 1.24250                  failed approaches
## 1.24253                       plane struck
## 1.24254                       struck trees
## 1.24260                         field poor
## 1.24261                      poor judgment
## 1.24268                   pilot attempting
## 1.24273                     vfr conditions
## 1.24276                 limited visibility
## 1.24279                       poor weather
## 1.24280                 weather conditions
## 1.24290                    engines stopped
## 1.24301                    aircraft banked
## 1.24302                     banked sharply
## 1.24303                    sharply stalled
## 1.24306                         crashed 10
## 1.24307                           10 miles
## 1.24308                         miles east
## 1.24309                     east northeast
## 1.24314                      fuel selector
## 1.24315                    selector valves
## 1.24324                      supplied fuel
## 1.24331                   auxilliary tanks
## 1.24344                       lost crashed
## 1.24348                    mountainside 50
## 1.24349                           50 miles
## 1.24350                        miles south
## 1.24356                      engine failed
## 1.24357                     failed crashed
## 1.24360                mountainous terrain
## 1.24363                           15 miles
## 1.24364                        miles north
## 1.24365                    north northwest
## 1.24368                      santo domingo
## 1.24369                     domingo unable
## 1.24376                  unlighted airport
## 1.24380               intended destination
## 1.24390                   mountain weather
## 1.24393                 navigational error
## 1.24396                 considered factors
## 1.24402                   aircraft crashed
## 1.24405                       approach 5.2
## 1.24406                          5.2 miles
## 1.24407                        miles short
## 1.24413                       poor weather
## 1.24414                 weather conditions
## 1.24415                 conditions failure
## 1.24421                  follow prescribed
## 1.24422              prescribed procedures
## 1.24427                      safe altitude
## 1.24431                       ils approach
## 1.24434                     heavily loaded
## 1.24435                       loaded plane
## 1.24436                         plane rose
## 1.24437                            rose 50
## 1.24438                              50 ft
## 1.24442                          air nosed
## 1.24454                        wrong plane
## 1.24463                        flight fire
## 1.24464                        fire caused
## 1.24480                      control tests
## 1.24484                          fuel pump
## 1.24490                        left engine
## 1.24494                     spray gasoline
## 1.24509                          left wing
## 1.24526                     defective left
## 1.24527                        left engine
## 1.24528                      engine driven
## 1.24529                        driven fuel
## 1.24530                      fuel pump.the
## 1.24531                     pump.the crash
## 1.24538                      woody guthrie
## 1.24539                       guthrie song
## 1.24540                      song deportee
## 1.24543                       aircraft ran
## 1.24552                     atlantic ocean
## 1.24553                          ocean 340
## 1.24554                          340 miles
## 1.24561                   strong headwinds
## 1.24576                   bermuda official
## 1.24583                         named star
## 1.24584                         star tiger
## 1.24588                        3 propeller
## 1.24589                   propeller failed
## 1.24594                   fuselage killing
## 1.24597                 purser.the failure
## 1.24601                    propeller blade
## 1.24602                          blade due
## 1.24606                   stresses induced
## 1.24609                accumulative engine
## 1.24610              engine malfunctioning
## 1.24611             malfunctioning crashed
## 1.24621                      crew reported
## 1.24632                      plane crashed
## 1.24637                   marginal weather
## 1.24638                 weather conditions
## 1.24641                      crew informed
## 1.24642                    informed ground
## 1.24646                      engine failed
## 1.24654                  emergency landing
## 1.24663                      safe altitude
## 1.24666                     aircraft crash
## 1.24667                       crash landed
## 1.24671                      field located
## 1.24676                              70 km
## 1.24677                       km northeast
## 1.24680                  frankfurt airport
## 1.24683                        pilot chose
## 1.24688                     short distance
## 1.24696                         cloud base
## 1.24699                   weather suddenly
## 1.24705                      plane entered
## 1.24706                     entered clouds
## 1.24709                          low level
## 1.24710                      level drifted
## 1.24723                           ste mere
## 1.24724                      mere l'eglise
## 1.24732                       poor weather
## 1.24735                       snow showers
## 1.24741                    english channel
## 1.24742                         channel 50
## 1.24743                           50 miles
## 1.24744                         miles west
## 1.24747                          la harvre
## 1.24754               encountering adverse
## 1.24755                    adverse weather
## 1.24756                 weather conditions
## 1.24757                 conditions crashed
## 1.24758                          crashed 5
## 1.24759                          5 minutes
## 1.24767                        cargo plane
## 1.24768                       plane struck
## 1.24769                       struck trees
## 1.24774              land.the continuation
## 1.24778                instrument approach
## 1.24782                altitude sufficient
## 1.24787                         terrain en
## 1.24788                           en route
## 1.24791                     plane carrying
## 1.24792                 carrying brazilian
## 1.24793                  brazilian service
## 1.24794                  service personnel
## 1.24798                 dependents crashed
## 1.24803                     stalling short
## 1.24813                       cargo flight
## 1.24814                     flight crashed
## 1.24822                      plane crashed
## 1.24826                     ground control
## 1.24827                   control approach
## 1.24830                       poor weather
## 1.24831                 weather conditions
## 1.24832            conditions misjudgement
## 1.24846                     low visibility
## 1.24849                               dc 3
## 1.24850                            3 built
## 1.24851                      built crashed
## 1.24857                       mt skalafell
## 1.24858                  skalafell located
## 1.24863                       poor weather
## 1.24864                  weather condtions
## 1.24874                     vertical climb
## 1.24880                            500 800
## 1.24881                           800 feet
## 1.24882                       feet stalled
## 1.24885                       crashed loss
## 1.24888               longitudinal control
## 1.24894               reasons undetermined
## 1.24898                     charter flight
## 1.24901                    lunghwa airport
## 1.24902                   airport shanghai
## 1.24905                         la guardia
## 1.24906                    guardia airport
## 1.24911                      plane crashed
## 1.24915                      western slope
## 1.24918                         mt sanford
## 1.24924                        11,000 feet
## 1.24930                   anchorage alaska
## 1.24931                     alaska pilot's
## 1.24932                    pilot's failure
## 1.24936                         mt sanford
## 1.24937                        sanford due
## 1.24940                   obscuring clouds
## 1.24943                    aurora borealis
## 1.24951                      airway struck
## 1.24954                      mountain peak
## 1.24958                    sierra cristais
## 1.24959                   cristais crashed
## 1.24965                            alto el
## 1.24966                    el arrastradero
## 1.24967              arrastradero mountain
## 1.24968                   mountain located
## 1.24969                         located 50
## 1.24970                           50 miles
## 1.24973                     bogota crashed
## 1.24977                           7,800 ft
## 1.24978                        ft mountain
## 1.24979                  mountain obscured
## 1.24984                           en route
## 1.24989                     circling gatow
## 1.24997                               dc 3
## 1.24998                         3 collided
## 1.24999                      collided head
## 1.25004                        russian air
## 1.25005                          air force
## 1.25006                     force yakovlev
## 1.25007                         yakovlev 3
## 1.25008                          3 fighter
## 1.25012              performing aerobatics
## 1.25017                          14 killed
## 1.25021                     vickers viking
## 1.25027                        yak fighter
## 1.25038                      yak fighter's
## 1.25039                    fighter's pilot
## 1.25047                     accepted rules
## 1.25055                instrument approach
## 1.25058                    shannon airport
## 1.25061                    aircraft struck
## 1.25064                       ground 2,380
## 1.25065                         2,380 feet
## 1.25073                    intended runway
## 1.25074                       runway broke
## 1.25078                burned continuation
## 1.25082                instrument approach
## 1.25086              altitude insufficient
## 1.25096                  fluorescent light
## 1.25107                      named clipper
## 1.25108                    clipper empress
## 1.25114                   aircraft climbed
## 1.25117                             500 ft
## 1.25121                        left engine
## 1.25122                      engine failed
## 1.25126                      plane plunged
## 1.25127                       plunged nose
## 1.25138                      markham river
## 1.25139                         river poor
## 1.25140                     poor technique
## 1.25147                emergency situation
## 1.25148                  situation crashed
## 1.25152                          icy river
## 1.25153                           river 20
## 1.25154                           20 miles
## 1.25160                        flight crew
## 1.25167                     previous night
## 1.25168                     night diverted
## 1.25172                      correct route
## 1.25183                             300 ft
## 1.25189                   aircraft crashed
## 1.25193                     storm kathleen
## 1.25194                   kathleen kennedy
## 1.25195                  kennedy cavendish
## 1.25196                       cavendish 28
## 1.25197                          28 sister
## 1.25200                     president john
## 1.25203                     kennedy killed
## 1.25208                aircraft penetrated
## 1.25212                     turbulent line
## 1.25215                        clouds lost
## 1.25216                        lost height
## 1.25224                aircraft apparently
## 1.25225                    apparently flew
## 1.25231                       low altitude
## 1.25232                   altitude crashed
## 1.25235                  spitzkop mountain
## 1.25242                       poor weather
## 1.25247                         named miss
## 1.25248                        miss france
## 1.25249                       france cargo
## 1.25250                       cargo flight
## 1.25254                     flight failure
## 1.25258                     fuselage carry
## 1.25261                  structure beneath
## 1.25264                            fin due
## 1.25267                 extreme turbulence
## 1.25268                   turbulence cargo
## 1.25269                       cargo flight
## 1.25279                          low cloud
## 1.25280                    cloud prepatory
## 1.25285                      aircraft lost
## 1.25286                        lost height
## 1.25301                  aircraft collided
## 1.25305                      western slope
## 1.25308                 marchekanskoy hill
## 1.25309                            hill 70
## 1.25314                            top atc
## 1.25315                          atc error
## 1.25316                      error crashed
## 1.25322                    training flight
## 1.25327                   private aircraft
## 1.25328                   aircraft crashed
## 1.25334                          port erin
## 1.25352                      homing beacon
## 1.25355               suffiecient altitude
## 1.25362                      plane crashed
## 1.25367                        flight fire
## 1.25370                         cargo hold
## 1.25373                    crew discharged
## 1.25374                  discharged carbon
## 1.25375                     carbon dioxide
## 1.25376              dioxide extinguishers
## 1.25380                         cargo hold
## 1.25386                       fire warning
## 1.25390                       plane's nose
## 1.25396                  emergency descent
## 1.25399                     carbon dioxide
## 1.25404                    air accumulated
## 1.25414                   aircraft crashed
## 1.25418                      voltage lines
## 1.25429                              10 24
## 1.25430                              24 47
## 1.25433                              11 11
## 1.25434                              11 47
## 1.25438                        design flaw
## 1.25439                       flaw allowed
## 1.25440                     allowed vented
## 1.25441                        vented fuel
## 1.25449                      cabin heating
## 1.25450                     heating system
## 1.25456                     carbon dioxide
## 1.25457              dioxide extinguishers
## 1.25458            extinguishers installed
## 1.25459                     installed earl
## 1.25460                       earl carroll
## 1.25461                        carroll u.s
## 1.25462                     u.s theatrical
## 1.25463              theatrical impresario
## 1.25464                  impresario killed
## 1.25465                     killed douglas
## 1.25466                   douglas aircraft
## 1.25467                   aircraft company
## 1.25472                     carbon dioxide
## 1.25473                     dioxide danger
## 1.25479                        test pilots
## 1.25485                       test flights
## 1.25488                 suppressed reports
## 1.25503                      flight manual
## 1.25508                    named mainliner
## 1.25509                     mainliner utah
## 1.25512                  catalina seaplane
## 1.25531                      plane crashed
## 1.25532                    crashed killing
## 1.25546                      lead hijacker
## 1.25553                 airliner hijacking
## 1.25554                  hijacking crashed
## 1.25558                    landing attempt
## 1.25559                    attempt crashed
## 1.25566                         heavy rain
## 1.25569                   midair collision
## 1.25570                 collision occurred
## 1.25574                             sas dc
## 1.25575                               dc 6
## 1.25579                          royal air
## 1.25580                          air force
## 1.25581                         force avro
## 1.25582                          avro york
## 1.25583                         york mw248
## 1.25584                       mw248 twenty
## 1.25589                             7 crew
## 1.25593                               dc 6
## 1.25608                  human fallibility
## 1.25617                  flilght personnel
## 1.25618                  personnel crashed
## 1.25621                       mountains 50
## 1.25622                           50 miles
## 1.25623                    miles southwest
## 1.25626                             da lat
## 1.25629             adverse meteriological
## 1.25630          meteriological conditions
## 1.25635                    adequate ground
## 1.25636                ground facililities
## 1.25639                        cargo plane
## 1.25640                         plane lost
## 1.25641                       lost control
## 1.25644                    crashed shortly
## 1.25656              procedure recommended
## 1.25674                         100 meters
## 1.25677                      plane crashed
## 1.25704                     hijackers shot
## 1.25705                        shot wildly
## 1.25706                    wildly striking
## 1.25723                 hijackers survived
## 1.25730                          rear exit
## 1.25734                          plane hit
## 1.25742                       macao prison
## 1.25752                commercial aircraft
## 1.25758                       aircraft hit
## 1.25761                       mountain top
## 1.25764                            cap des
## 1.25765                        des rosiers
## 1.25766                         rosiers 12
## 1.25767                           12 miles
## 1.25775                     burned crashed
## 1.25796                             300 ft
## 1.25797                         ft crashed
## 1.25806                        river plate
## 1.25813                          fog pilot
## 1.25814                        pilot error
## 1.25815                   error attempting
## 1.25818                          land atop
## 1.25819                         atop water
## 1.25826                    poor visibility
## 1.25832                  prescribed minima
## 1.25833                       minima cargo
## 1.25834                       cargo flight
## 1.25862                     overload badly
## 1.25863                       badly loaded
## 1.25869                       aft movement
## 1.25872                           load due
## 1.25878                secured disappeared
## 1.25887                            fort de
## 1.25888                          de france
## 1.25889                  france martinique
## 1.25892                       port etienne
## 1.25893                 etienne mauritania
## 1.25898                        coast guard
## 1.25899                       guard cutter
## 1.25900                    cutter campbell
## 1.25901                  campbell reported
## 1.25902                   reported finding
## 1.25903                     finding debris
## 1.25906                           august 4
## 1.25912                      cargo fllight
## 1.25913                        fllight hit
## 1.25919                   mountain located
## 1.25925                     port underwood
## 1.25926                       underwood 32
## 1.25927                              32 km
## 1.25928                       km northeast
## 1.25933                       poor weather
## 1.25936                        cargo plane
## 1.25937                  plane disappeared
## 1.25938                     disappeared en
## 1.25939                           en route
## 1.25943                      caribbean sea
## 1.25944                        sea crashed
## 1.25951                          left wing
## 1.25955                   aircraft entered
## 1.25958                  thunderstorm loss
## 1.25962                        outer panel
## 1.25966                          left wing
## 1.25975                      fatigue crack
## 1.25982                      faulty design
## 1.25986                        wing flange
## 1.25987                  flange aggravated
## 1.25990                  severe turbulence
## 1.25994               thunderstorm crashed
## 1.25995                         crashed en
## 1.25996                           en route
## 1.25997                      route reasons
## 1.25998               reasons undetermined
## 1.25999               undetermined strayed
## 1.26004                      struck square
## 1.26005                        square peak
## 1.26006                      peak mountain
## 1.26012                         4,600 feet
## 1.26022                      aircraft flew
## 1.26031                    aircraft banked
## 1.26035                      lost altitude
## 1.26036                  altitude crashing
## 1.26044                              39 km
## 1.26045                       km northwest
## 1.26048                   balkhash crashed
## 1.26051                     hommelvika bay
## 1.26061                       seas crashed
## 1.26070                     departure afer
## 1.26071                   afer encounteing
## 1.26072                    encounteing low
## 1.26073                         low clouds
## 1.26074                        clouds rain
## 1.26077                   icing conditions
## 1.26082                  poor navigational
## 1.26083          navigational difficulties
## 1.26084                   difficulties due
## 1.26087                     poor reception
## 1.26090                      radio beacons
## 1.26107                 prestwick scotland
## 1.26110                 aircraft attempted
## 1.26115                          runway 32
## 1.26119                        crew choose
## 1.26126                       strong cross
## 1.26127                        cross winds
## 1.26134                          runway 26
## 1.26145                       aircraft ran
## 1.26149                          heavy fog
## 1.26150                           fog bank
## 1.26156                      voltage power
## 1.26157                        power lines
## 1.26163                           400 feet
## 1.26170                   crashed occurred
## 1.26171                         occurred 5
## 1.26172                            5 miles
## 1.26173                         miles east
## 1.26174                     east northeast
## 1.26178                   airport improper
## 1.26179                    improper flight
## 1.26180                  flight procedures
## 1.26184                          crew lack
## 1.26187               information supplied
## 1.26198                     named nijmegen
## 1.26203                         dutch town
## 1.26204                         town close
## 1.26208                        west german
## 1.26209                      german border
## 1.26210                     border crashed
## 1.26211                        crashed 700
## 1.26212                           700 feet
## 1.26221                           en route
## 1.26224                     low visibility
## 1.26225                    visibility lack
## 1.26228                  navigational aids
## 1.26241                 caucasus mountains
## 1.26244                    adverse weather
## 1.26247                           en route
## 1.26250                      crew deviated
## 1.26256                        poor flight
## 1.26257                    flight planning
## 1.26258                      planning crew
## 1.26259                         crew drank
## 1.26260                      drank alcohol
## 1.26264                       flight cargo
## 1.26265                       cargo flight
## 1.26268                   captain's action
## 1.26271              undertaking simulated
## 1.26272                simulated emergency
## 1.26273               emergency procedures
## 1.26277                    dangerously low
## 1.26278                       low altitude
## 1.26279                    altitude twenty
## 1.26287                    pilot descended
## 1.26288              descended prematurely
## 1.26294                      cloud covered
## 1.26295                   covered mountain
## 1.26296                      mountain lost
## 1.26297                       lost contact
## 1.26304                      crew reported
## 1.26305                   reported passing
## 1.26306                       passing cape
## 1.26307                       cape spencer
## 1.26315               undetermined crashed
## 1.26318                         mt macedon
## 1.26319                     macedon hidden
## 1.26324                     pilot deviated
## 1.26330                        flight plan
## 1.26335                         follow vfr
## 1.26336                         vfr flight
## 1.26337                       flight rules
## 1.26338                      rules crashed
## 1.26351                    adverse weather
## 1.26354         experiencing communication
## 1.26358                     crew attempted
## 1.26365                    airport stalled
## 1.26371                        ice covered
## 1.26372                     covered kolyma
## 1.26373                       kolyma river
## 1.26374                         river crew
## 1.26375                         crew error
## 1.26378                      plane crashed
## 1.26379                    crashed shortly
## 1.26387                         7,000 feet
## 1.26393                     trailing smoke
## 1.26403                     sealing washer
## 1.26407                    carburetor fuel
## 1.26408                        fuel filter
## 1.26412                        port engine
## 1.26413                   engine resulting
## 1.26416                       fuel leaking
## 1.26421                   ignition systems
## 1.26422                systems culminating
## 1.26426                         severe oil
## 1.26427                           oil fire
## 1.26430                   finally involved
## 1.26433                          main port
## 1.26434                          port fuel
## 1.26435                         fuel tanks
## 1.26436                     tanks overshot
## 1.26437                    overshot runway
## 1.26438                     runway crashed
## 1.26443                   aircraft crashed
## 1.26448                        fog crashed
## 1.26453                       land crashed
## 1.26454                    crashed shortly
## 1.26462              accidental detonation
## 1.26468                     carried aboard
## 1.26469                     aboard leading
## 1.26474                  flight separation
## 1.26478                       wing crashed
## 1.26481                     balsalt island
## 1.26486                    visual approach
## 1.26505                     weather closed
## 1.26516                     mountain pilot
## 1.26517                        pilot error
## 1.26518                      error quentin
## 1.26519                  quentin roosevelt
## 1.26520                      roosevelt son
## 1.26523                    teddy roosevelt
## 1.26524                   roosevelt killed
## 1.26525                     killed crashed
## 1.26529                 taigetos mountains
## 1.26532                           en route
## 1.26539                   greek insurgents
## 1.26540                 insurgents crashed
## 1.26543                   pandols mountain
## 1.26546                           en route
## 1.26549                       poor weather
## 1.26550                 weather conditions
## 1.26551                   conditions radio
## 1.26552                      radio contact
## 1.26558                      crew reported
## 1.26561                              50 nm
## 1.26562                           nm south
## 1.26565                    miami departure
## 1.26568                           san juan
## 1.26575               discharged batteries
## 1.26576                  batteries ditched
## 1.26588                       fuel offical
## 1.26591                    unknown crashed
## 1.26594                       mt arbetello
## 1.26597                    poor visibility
## 1.26598                    visibility poor
## 1.26599                    poor visibility
## 1.26602              geographical features
## 1.26607                  terrain difficult
## 1.26631                    yale university
## 1.26632                university students
## 1.26633                 students returning
## 1.26639                 christmas vacation
## 1.26647                      plane swerved
## 1.26656                          left wing
## 1.26657                       wing dropped
## 1.26660                           wing tip
## 1.26661                        tip dragged
## 1.26668                           750 feet
## 1.26671                         tail wheel
## 1.26684                      plane skidded
## 1.26687                           700 feet
## 1.26704                     crew's attempt
## 1.26732                          1,500 lbs
## 1.26735                         blown tire
## 1.26738                        takeoff led
## 1.26744                       landing gear
## 1.26745                        gear engine
## 1.26748                           oil line
## 1.26749                          line lack
## 1.26752                         oil caused
## 1.26753                        caused loss
## 1.26774                        engine fire
## 1.26780                     spiral descent
## 1.26786                       ground cargo
## 1.26787                        cargo plane
## 1.26800                    icing condition
## 1.26801               condition turbulence
## 1.26817                      aircraft spun
## 1.26824                 attempted recovery
## 1.26828                       spins severe
## 1.26829                         severe air
## 1.26830                          air loads
## 1.26837                    left horizontal
## 1.26838              horizontal stabilizer
## 1.26844                   aircraft crashed
## 1.26845                    crashed shortly
## 1.26850                     engine failure
## 1.26851                        failure due
## 1.26854                 fuel contamination
## 1.26855              contamination ditched
## 1.26859                     lagoon crashed
## 1.26860                         crashed en
## 1.26861                           en route
## 1.26862                         route lost
## 1.26872                   kingston jamaica
## 1.26876                      radio message
## 1.26877                   message reported
## 1.26882                        crossing 30
## 1.26883                         30 degrees
## 1.26908                         named star
## 1.26909                         star ariel
## 1.26918                           301st bg
## 1.26919                              bg 15
## 1.26920                             15 afw
## 1.26921                         afw cashed
## 1.26926                 encountering icing
## 1.26927                   icing conditions
## 1.26930                      aircraft lost
## 1.26931                        lost height
## 1.26932                     height clipped
## 1.26937                    beinn tharsuinn
## 1.26946                       succoth glen
## 1.26950                  aircraft departed
## 1.26951                     departed homer
## 1.26956                     vfr conditions
## 1.26957                conditions contrary
## 1.26962                federal regulations
## 1.26963                regulations strayed
## 1.26970                           3,000 ft
## 1.26971                        ft mountain
## 1.26972                        mountain 27
## 1.26973                           27 miles
## 1.26974                    miles northeast
## 1.26987                  designated airway
## 1.26991              altitude insufficient
## 1.26996                     terrain midair
## 1.26997                   midair collision
## 1.27009                       laned safely
## 1.27012                      joint failure
## 1.27016               constellation pilots
## 1.27023                    cessna aircraft
## 1.27030                       cessna pilot
## 1.27042                heavy concentration
## 1.27050                       remain alert
## 1.27055         constellation.the aircraft
## 1.27058                      named clipper
## 1.27059                    clipper monarch
## 1.27063                      skies crashed
## 1.27064                    crashed shortly
## 1.27076                          3 engines
## 1.27077                     engines failed
## 1.27080                   initial approach
## 1.27083                         plane lost
## 1.27084                      lost altitude
## 1.27089                      trees failure
## 1.27097                        safe height
## 1.27106                  starboard engines
## 1.27109                      power failure
## 1.27113                        port engine
## 1.27127                      power failure
## 1.27131                       port engines
## 1.27136                    fuel starvation
## 1.27137                 starvation brought
## 1.27147                         port tanks
## 1.27150                      fuel shortage
## 1.27157                         wing tanks
## 1.27163           progressively unbalanced
## 1.27171                     flight crashed
## 1.27176                       land crashed
## 1.27183                      swedish coast
## 1.27193                    holding pattern
## 1.27202                    inbound traffic
## 1.27211                          runway 22
## 1.27233                undetermined struck
## 1.27239                   plane approached
## 1.27240                 approached huanuco
## 1.27241                     huanuco midair
## 1.27242                   midair collision
## 1.27246                               dc 3
## 1.27250                           raf avro
## 1.27251                         avro anson
## 1.27254                         4,500 feet
## 1.27257               planes disintegrated
## 1.27263                         ground ten
## 1.27264                         ten killed
## 1.27268                               dc 3
## 1.27273                         avro anson
## 1.27274                      anson failure
## 1.27291                  effective lookout
## 1.27294                      aircraft lost
## 1.27295                       lost control
## 1.27301                         blown tire
## 1.27304                    takeoff crashed
## 1.27307                   braemar resevoir
## 1.27314                       poor weather
## 1.27321                        pilot error
## 1.27322                      error crashed
## 1.27346                             300 ft
## 1.27347                            ft roll
## 1.27355                        cargo plane
## 1.27356                      plane crashed
## 1.27361                       land crashed
## 1.27370                       low overcast
## 1.27373                 navigational error
## 1.27381                    flight deviated
## 1.27382                        deviated 60
## 1.27383                           60 miles
## 1.27390                     crew initiated
## 1.27401                     visual contact
## 1.27407                      plane crashed
## 1.27425                      torino soccer
## 1.27426                        soccer team
## 1.27430                       crew decided
## 1.27433                      land directly
## 1.27436                     turin homebase
## 1.27442                     low visibility
## 1.27443                    visibility rain
## 1.27448                          left wing
## 1.27452                       plane struck
## 1.27455                   wall surrounding
## 1.27474                  sanctuary killing
## 1.27477                       aboard error
## 1.27482                     poor visiblity
## 1.27483                  visiblity crashed
## 1.27487                    english channel
## 1.27498                     daet camarines
## 1.27508                  violent explosion
## 1.27518                 convicts confessed
## 1.27523                          time bomb
## 1.27524                        bomb aboard
## 1.27536                     woman involved
## 1.27545               thunderstorm crashed
## 1.27549                    mountainside 30
## 1.27550                           30 miles
## 1.27551                    miles northeast
## 1.27554                  athens structural
## 1.27555                 structural failure
## 1.27563              thunderstorm activity
## 1.27566                   aircraft crashed
## 1.27570                   mountain shortly
## 1.27578                   aircraft crashed
## 1.27582                     atlantic ocean
## 1.27592                           2 engine
## 1.27608                     optimum single
## 1.27609                      single engine
## 1.27610                       engine climb
## 1.27611                        climb speed
## 1.27617                overloaded resulted
## 1.27621                    aircraft losing
## 1.27622                    losing altitude
## 1.27628                    ocean incorrect
## 1.27629                    incorrect spark
## 1.27630                        spark plugs
## 1.27631                    plugs installed
## 1.27636                           2 engine
## 1.27637                     engine crashed
## 1.27640                        bari harbor
## 1.27643                           en route
## 1.27650                     rome witnesses
## 1.27651                 witnesses observed
## 1.27652                     observed smoke
## 1.27665                     fuselage prior
## 1.27671                        plane broke
## 1.27677                         plane rose
## 1.27680                             600 ft
## 1.27689                       housing camp
## 1.27690                         camp south
## 1.27693                  guildford shortly
## 1.27701                   stall attributed
## 1.27704                   improper loading
## 1.27708                               dc 3
## 1.27720                  permissible limit
## 1.27727                       level flight
## 1.27735                           wing tip
## 1.27736                        tip brushed
## 1.27742                       hill pulling
## 1.27747                         90 degrees
## 1.27754                        bounced 300
## 1.27755                           300 feet
## 1.27761                    crashed pilot's
## 1.27762                     pilot's action
## 1.27768                 prescribed minimum
## 1.27769                   minimum altitude
## 1.27774                       ils approach
## 1.27780                   blinding monsoon
## 1.27781                  monsoon rainstorm
## 1.27784                   aircraft crashed
## 1.27787                             674 ft
## 1.27790                     ghatkopar hill
## 1.27791                             hill 3
## 1.27792                            3 miles
## 1.27793                          miles ene
## 1.27797                       airport crew
## 1.27798                         crew error
## 1.27799                       error pilots
## 1.27800                    pilots decision
## 1.27807                prescribed minimums
## 1.27822                   jamnagar railway
## 1.27823                    railway station
## 1.27828                    training flight
## 1.27848                      power failure
## 1.27849                   failure occurred
## 1.27854                           1 engine
## 1.27860                          pilot cut
## 1.27861                          cut power
## 1.27867               discontinued takeoff
## 1.27871                 apparently changed
## 1.27876                      applied power
## 1.27879                        left engine
## 1.27880                   engine continued
## 1.27886                  aircraft collided
## 1.27889                        power lines
## 1.27897                      improper fuel
## 1.27898                  fuel necessitated
## 1.27899             necessitated operating
## 1.27902                 aircraft's engines
## 1.27907                   operating limits
## 1.27908                   limits resulting
## 1.27911                     engine failure
## 1.27912                   failure decision
## 1.27921                        left engine
## 1.27924                      plane crashed
## 1.27928                        left engine
## 1.27929                      engine caught
## 1.27930                        caught fire
## 1.27931                        fire midair
## 1.27932                   midair collision
## 1.27947                   private aircraft
## 1.27954                               dc 3
## 1.27970                               dc 3
## 1.27973                     fifteen killed
## 1.27977                               dc 3
## 1.27984                        6f reckless
## 1.27985                   reckless conduct
## 1.27989                         navy pilot
## 1.27992               performing aerobatic
## 1.27993                aerobatic maneuvers
## 1.27997                       civil airway
## 1.27998                      airway twenty
## 1.27999                     twenty minutes
## 1.28004                       porto alegre
## 1.28011                         cargo hold
## 1.28015                     pilot executed
## 1.28018                  emergency descent
## 1.28033                    plane attempted
## 1.28038               panicking passengers
## 1.28039                  passengers rushed
## 1.28050                     flames causing
## 1.28057                   change resulting
## 1.28061                       hard landing
## 1.28081                       2 propellers
## 1.28082                propellers detached
## 1.28090                      crew ditching
## 1.28093                        plane close
## 1.28102                     relief efforts
## 1.28106                 ecuador earthquake
## 1.28107                 earthquake crashed
## 1.28108                      crashed short
## 1.28112                     runway crashed
## 1.28116                    andes mountains
## 1.28119                           en route
## 1.28120                         route fuel
## 1.28121                    fuel exhaustion
## 1.28122                  exhaustion forced
## 1.28130                     atlantic ocean
## 1.28131                           ocean 15
## 1.28132                              15 km
## 1.28140                       plane stayed
## 1.28141                      stayed afloat
## 1.28144                         15 minutes
## 1.28147                        8 occupants
## 1.28148                     occupants died
## 1.28149                           died due
## 1.28154                   drowning failure
## 1.28160                 properly supervise
## 1.28165                           en route
## 1.28166                      route crashed
## 1.28169                     wimberry rocks
## 1.28170                   rocks dovestones
## 1.28171              dovestones greenfield
## 1.28176                         1,700 feet
## 1.28177                            feet 15
## 1.28178                              15 nm
## 1.28179                           nm short
## 1.28183           destination navigational
## 1.28184                 navigational error
## 1.28187                  improper approach
## 1.28188                 approach procedure
## 1.28189                  procedure failure
## 1.28197                aircraft accurately
## 1.28203                      safe altitude
## 1.28204                   altitude crashed
## 1.28224                       proper climb
## 1.28225                         climb rate
## 1.28235                       low altitude
## 1.28244                     excessive lead
## 1.28248                        spark plugs
## 1.28251             aircraft disintegrated
## 1.28254                          flight 40
## 1.28255                           40 miles
## 1.28259                  quebec detonation
## 1.28263                      dynamite bomb
## 1.28267                    forward baggage
## 1.28268                baggage compartment
## 1.28269                compartment planted
## 1.28272                        albert guay
## 1.28289                         plane guay
## 1.28297              accomplice marguerite
## 1.28298                   marguerite pitre
## 1.28299                          pitre air
## 1.28300                        air express
## 1.28306                        aircraft ms
## 1.28307                         ms pitre's
## 1.28308                    pitre's brother
## 1.28311                  clockmaker helped
## 1.28315                   timing mechanism
## 1.28318                   insurance policy
## 1.28329                     crimes crashed
## 1.28333                          15,000 ft
## 1.28334                            ft snow
## 1.28335                       snow covered
## 1.28336                    covered volcano
## 1.28337                         volcano mt
## 1.28338                    mt popocatepetl
## 1.28339                popocatepetl flying
## 1.28340                         flying vfr
## 1.28343                     ifr conditions
## 1.28344                 conditions crashed
## 1.28349                        flight fire
## 1.28357                     forced landing
## 1.28364                          air strip
## 1.28365                    strip returning
## 1.28369                      mercy mission
## 1.28374                  earthquake relief
## 1.28375                    relief diverted
## 1.28383                   aircraft crashed
## 1.28384                        crashed 2.5
## 1.28385                          2.5 miles
## 1.28386                        miles short
## 1.28392                encountering severe
## 1.28393                  severe turbulence
## 1.28396                         icing loss
## 1.28405                instrument approach
## 1.28412                        heavy icing
## 1.28415                  severe turbulence
## 1.28426                        santa maria
## 1.28429                      aircraft flew
## 1.28432                   redondo mountain
## 1.28435                           2,950 ft
## 1.28438                         san miguel
## 1.28439                      miguel island
## 1.28440                        island crew
## 1.28441                         crew error
## 1.28442                      error failure
## 1.28451                approach procedures
## 1.28452                 procedures adopted
## 1.28455                        santa maria
## 1.28456                      maria airport
## 1.28457                      airport false
## 1.28458                     false position
## 1.28459                    position report
## 1.28463                    crew inadequate
## 1.28464              inadequate navigation
## 1.28465                 navigation failure
## 1.28468                     identify santa
## 1.28469                        santa maria
## 1.28470                      maria airport
## 1.28475                     vfr conditions
## 1.28476                  conditions french
## 1.28477                french middleweight
## 1.28478                middleweight boxing
## 1.28479                    boxing champion
## 1.28480                    champion marcel
## 1.28481                      marcel cerdan
## 1.28482                          cerdan 33
## 1.28485                   french violinist
## 1.28486                  violinist ginette
## 1.28487                      ginette neveu
## 1.28488                       neveu killed
## 1.28489                      killed midair
## 1.28490                   midair collision
## 1.28494                             38 hit
## 1.28501                     planes crashed
## 1.28505                      potomac river
## 1.28512                        38 survived
## 1.28528                   proper clearance
## 1.28538                        charges atc
## 1.28539                          atc error
## 1.28540                       error george
## 1.28541                       george bates
## 1.28542                          bates u.s
## 1.28543                 u.s representative
## 1.28548                    michael kennedy
## 1.28549                        kennedy u.s
## 1.28550                 u.s representative
## 1.28554                        york killed
## 1.28555                       killed helen
## 1.28556                     helen hokinson
## 1.28557                        hokinson 56
## 1.28558                      56 cartoonist
## 1.28563                    yorker magazine
## 1.28570                        cargo plane
## 1.28571                     plane collided
## 1.28574                        trees short
## 1.28584                 improper execution
## 1.28588                instrument approach
## 1.28602                    proper approach
## 1.28603                      approach path
## 1.28617                          6 tempest
## 1.28618                   tempest fighters
## 1.28626                      calcutta city
## 1.28637                      plane crashed
## 1.28642                     planes crashed
## 1.28646                       city causing
## 1.28647                     causing damage
## 1.28678                         20 injured
## 1.28679                    injured crashed
## 1.28686                     approach pilot
## 1.28687                    pilot continued
## 1.28688                      continued vfr
## 1.28691                      ifr condtions
## 1.28692                   condtions struck
## 1.28695                   mountain shortly
## 1.28711                   landing approach
## 1.28716                           1 engine
## 1.28717                   engine feathered
## 1.28721                           4 engine
## 1.28722                        engine lost
## 1.28723                         lost power
## 1.28732                    flight engineer
## 1.28733                 engineer feathered
## 1.28737                           4 engine
## 1.28745                   aircraft stalled
## 1.28753                    building crew's
## 1.28754                    crew's improper
## 1.28755                  improper handling
## 1.28762                      engine failed
## 1.28763                     failed crashed
## 1.28769                      lyons crashed
## 1.28777                          land crew
## 1.28778                         crew error
## 1.28779                         error lack
## 1.28782                  flight discipline
## 1.28783                    discipline poor
## 1.28784                      poor decision
## 1.28795                    continue flight
## 1.28798                       poor weather
## 1.28799                 weather conditions
## 1.28800                  conditions struck
## 1.28803                           1,200 ft
## 1.28804                            ft hill
## 1.28805                      hill obscured
## 1.28811                        rainstorm 6
## 1.28812                            6 miles
## 1.28813                         miles east
## 1.28816                 vallejo california
## 1.28819                       pilot failed
## 1.28825                  assigned altitude
## 1.28828                         4,000 feet
## 1.28832                        flight plan
## 1.28833                       plan crashed
## 1.28836                           en route
## 1.28837                      route crashed
## 1.28843                      hoikow hainan
## 1.28844                      hainan island
## 1.28847                   aircraft crashed
## 1.28848                      crashed 1,875
## 1.28849                         1,875 feet
## 1.28850                         feet short
## 1.28854                   runway threshold
## 1.28858                      potomac river
## 1.28861             approaching washington
## 1.28862                washington national
## 1.28863                   national airport
## 1.28864                airport immediately
## 1.28875                instrument approach
## 1.28887                    effect recovery
## 1.28888                       recovery hit
## 1.28893                          burned 30
## 1.28894                           30 miles
## 1.28895                        miles north
## 1.28898                    karachi airport
## 1.28899               airport navigational
## 1.28900                 navigational error
## 1.28901                      error crashed
## 1.28907                           en route
## 1.28908                      route crashed
## 1.28912                        wing failed
## 1.28915                    takeoff crashed
## 1.28922                  emergency landing
## 1.28928                   koltsovo airport
## 1.28931                  sverdlovsk russia
## 1.28934                   aircraft crashed
## 1.28937                  extremely adverse
## 1.28938                    adverse weather
## 1.28939                 weather conditions
## 1.28940               conditions involving
## 1.28943                    heavy snowstorm
## 1.28946                       strong winds
## 1.28955                   killed including
## 1.28959                    entire national
## 1.28960                       national ice
## 1.28961                         ice hockey
## 1.28962                        hockey team
## 1.28966                         soviet air
## 1.28967                          air force
## 1.28978                      dynamo moscow
## 1.28979                      moscow hockey
## 1.28980                        hockey club
## 1.28983                     military plane
## 1.28984                      plane crashed
## 1.28988                    southeast coast
## 1.28991                      spain crashed
## 1.28994                           en route
## 1.28998                    andes mountains
## 1.29003               thunderstorm crashed
## 1.29007                        mountain 30
## 1.29008                           30 miles
## 1.29009                         miles west
## 1.29012                     tamatave cargo
## 1.29013                        cargo plane
## 1.29014                     plane operated
## 1.29018                      strategic air
## 1.29019                        air command
## 1.29022              transport disappeared
## 1.29027                      elmendorf afb
## 1.29031                           falls mt
## 1.29035                         44 persons
## 1.29036                     persons aboard
## 1.29040                  american military
## 1.29041                 military personnel
## 1.29048                 civilian dependent
## 1.29052                       infant child
## 1.29055                      radio contact
## 1.29059                              17 09
## 1.29062                            snag yt
## 1.29066                       amber airway
## 1.29087                         1951 crash
## 1.29091                          north sea
## 1.29095                         night mail
## 1.29096                        mail flight
## 1.29097                     flight shortly
## 1.29100                         takeoff 40
## 1.29101                           40 miles
## 1.29105                        dutch coast
## 1.29108                   aircraft crashed
## 1.29114                           en route
## 1.29115                      route crashed
## 1.29119                          flag pole
## 1.29124                           red neon
## 1.29125                   neon obstruction
## 1.29126                 obstruction lights
## 1.29131                       blowing snow
## 1.29132                       snow pilot's
## 1.29133                    pilot's attempt
## 1.29136                        land visual
## 1.29142                   visual reference
## 1.29148                         lost cargo
## 1.29149                        cargo plane
## 1.29155                          runway 28
## 1.29158                    llandow airport
## 1.29180                     power climbing
## 1.29183                             300 ft
## 1.29186                   aircraft stalled
## 1.29192                          field due
## 1.29202                     passenger load
## 1.29213              insufficient elevator
## 1.29214                   elevator control
## 1.29215                  control remaining
## 1.29228                      power crashed
## 1.29231                        caught fire
## 1.29236                  etimeagut airport
## 1.29237                       airport loss
## 1.29242                 mechanical failure
## 1.29248                        sea failure
## 1.29252                    aileron control
## 1.29253                  control couplings
## 1.29254                couplings resulting
## 1.29257                   severe vibration
## 1.29260                        cargo plane
## 1.29261                         plane lost
## 1.29270                   emergency return
## 1.29273                 crashed overloaded
## 1.29276                           en route
## 1.29280                    english channel
## 1.29283                 explosion occurred
## 1.29289                          bomb blew
## 1.29292                               8 ft
## 1.29295                               4 ft
## 1.29296                            ft hole
## 1.29316                       safe landing
## 1.29317                 landing detonation
## 1.29324                 toilet compartment
## 1.29328                   towel receptical
## 1.29331                   french passenger
## 1.29338                    suicide attempt
## 1.29343                     named vigalant
## 1.29344                      vigalant flew
## 1.29353                         mt tanzawa
## 1.29357                     rainstorm flew
## 1.29361                   mountain crashed
## 1.29371                         lagens due
## 1.29374                     engine trouble
## 1.29375                       trouble lost
## 1.29378                       left aileron
## 1.29383                       lost control
## 1.29386                     crashed struck
## 1.29391                    galeras volcano
## 1.29394                        cargo plane
## 1.29395                         plane lost
## 1.29402                crashed overloading
## 1.29406                       aircraft due
## 1.29409                     faulty loading
## 1.29412                dispatch procedures
## 1.29413                 procedures coupled
## 1.29416              engine malfunctioning
## 1.29417                 malfunctioning due
## 1.29420             inadequate maintenance
## 1.29425                 dense cumulonimbus
## 1.29426                cumulonimbus clouds
## 1.29427                      clouds severe
## 1.29428                  severe turbulence
## 1.29433                caused displacement
## 1.29441                  uncontrolled dive
## 1.29447                   wings separating
## 1.29451                fuselage structural
## 1.29452                 structural failure
## 1.29453                        failure due
## 1.29456                  severe turbulence
## 1.29460                thunderstorm pilots
## 1.29461                    pilots decision
## 1.29471                    weather ditched
## 1.29475                       atlantic 300
## 1.29476                          300 miles
## 1.29477                         miles east
## 1.29480                  melbourne florida
## 1.29486                           san juan
## 1.29487                         juan porto
## 1.29488                         porto rico
## 1.29491                   wilmington north
## 1.29492                     north carolina
## 1.29493                       carolina due
## 1.29515                  recovered failure
## 1.29521                    reasons unknown
## 1.29522                    unknown crashed
## 1.29525                          burned 19
## 1.29526                           19 miles
## 1.29527                         miles east
## 1.29528                     east northeast
## 1.29540                     final approach
## 1.29545                   aircraft crashed
## 1.29556                     accurate check
## 1.29567                      approach crew
## 1.29568                         crew error
## 1.29569                     error possibly
## 1.29570                       possibly due
## 1.29575                 alternate probable
## 1.29589               windshear conditions
## 1.29590                 conditions existed
## 1.29593              temperature inversion
## 1.29594                   inversion levels
## 1.29600                        shamal dust
## 1.29601                        dust storms
## 1.29610                   adequate forward
## 1.29611                      forward speed
## 1.29617                           400 feet
## 1.29623                     headwind level
## 1.29627                     tailwind level
## 1.29634                      surface winds
## 1.29640                       2,000 meters
## 1.29643                          sand haze
## 1.29648                             400 ft
## 1.29656                           80 knots
## 1.29659                   aircraft crashed
## 1.29663                       persian gulf
## 1.29674                     paris improper
## 1.29675                  improper approach
## 1.29676                      approach crew
## 1.29677                         crew error
## 1.29680                 alternate probable
## 1.29694               windshear conditions
## 1.29695                 conditions existed
## 1.29698              temperature inversion
## 1.29699                   inversion levels
## 1.29705                        shamal dust
## 1.29706                        dust storms
## 1.29715                   adequate forward
## 1.29716                      forward speed
## 1.29722                           400 feet
## 1.29728                     headwind level
## 1.29732                     tailwind level
## 1.29739                      surface winds
## 1.29745                       2,000 meters
## 1.29748                          sand haze
## 1.29753                             400 ft
## 1.29761                           80 knots
## 1.29762                           knots en
## 1.29763                           en route
## 1.29771                   aircraft crashed
## 1.29774                      lake michigan
## 1.29777                               dc 4
## 1.29783                           3,500 ft
## 1.29786                     crash occurred
## 1.29787                   occurred shortly
## 1.29791                   aircraft entered
## 1.29796                  severe turbulence
## 1.29799              thunderstorm activity
## 1.29813                           150 feet
## 1.29824                            30 feet
## 1.29832                     extremely poor
## 1.29833                    poor visibility
## 1.29839                        squall line
## 1.29854               airliner experienced
## 1.29855                experienced trouble
## 1.29862                     crew attempted
## 1.29875                          15 degree
## 1.29881                    aircraft barely
## 1.29882                     barely cleared
## 1.29885                         ridge line
## 1.29886                        line struck
## 1.29889                            tree 30
## 1.29890                            30 feet
## 1.29899                     downward slope
## 1.29900                    slope shredding
## 1.29911                        named amana
## 1.29912                       amana struck
## 1.29915                   mountain crashed
## 1.29921                          left wing
## 1.29922                     wing separated
## 1.29928                 extreme turbulence
## 1.29945                         3,500 feet
## 1.29950                 sudden unexplained
## 1.29951                unexplained descent
## 1.29962                  surviving witness
## 1.29963                     witness stated
## 1.29966                       aircraft hit
## 1.29969                     moderate bumps
## 1.29981                      aircraft flew
## 1.29984                        power lines
## 1.29988                    landing attempt
## 1.29998                    holding pattern
## 1.30004                          left wing
## 1.30005                          wing fuel
## 1.30006                          fuel tank
## 1.30007                          tank tore
## 1.30011                         upper wing
## 1.30012                       wing surface
## 1.30013                    surface leading
## 1.30023                      plane crashed
## 1.30024                    crashed shortly
## 1.30031                        left engine
## 1.30032                      engine failed
## 1.30036                        2 propeller
## 1.30052                        3 propeller
## 1.30056                        3 propeller
## 1.30059             successfully feathered
## 1.30064                       landing gear
## 1.30074                      gain altitude
## 1.30078                         pilot slid
## 1.30088                       trailer park
## 1.30097                   aircraft stalled
## 1.30098                       stalled fell
## 1.30120                     renamed travis
## 1.30121                         travis air
## 1.30122                          air force
## 1.30123                         force base
## 1.30127                           honor en
## 1.30128                           en route
## 1.30132                        3 propeller
## 1.30133                   propeller failed
## 1.30136                    propeller blade
## 1.30137                       blade struck
## 1.30142                   fuselage causing
## 1.30145                cabin decompression
## 1.30148                       safe landing
## 1.30159                      heart trouble
## 1.30160                       trouble died
## 1.30161                         died prior
## 1.30166                   internal gouging
## 1.30170                    propeller blade
## 1.30174              manufacturing process
## 1.30180                   fatigue fracture
## 1.30183                 subsequent failure
## 1.30188                      plane crashed
## 1.30192                     steep forested
## 1.30193                 forested foothills
## 1.30197                         gua musang
## 1.30198                    musang district
## 1.30201                           en route
## 1.30206                     rome witnesses
## 1.30207                 witnesses observed
## 1.30221                     burned failure
## 1.30225                        rear master
## 1.30226                         master rod
## 1.30227                        rod bearing
## 1.30232                           3 engine
## 1.30238                uncontrollable fire
## 1.30243                         named star
## 1.30246                    maryland engine
## 1.30250                   observed falling
## 1.30256                         3,000 feet
## 1.30264                    losing altitude
## 1.30270                          trees 1.5
## 1.30271                          1.5 miles
## 1.30272                    miles southeast
## 1.30275                      oneida county
## 1.30276                     county airport
## 1.30277                    airport failure
## 1.30281                        left engine
## 1.30282                     engine shortly
## 1.30285                    takeoff coupled
## 1.30288                     increased drag
## 1.30289                           drag due
## 1.30295                       left cowling
## 1.30298                      reduced power
## 1.30299                       power output
## 1.30304                   engine resulting
## 1.30309                     pitch position
## 1.30314                  propeller crashed
## 1.30317                    takeoff crashed
## 1.30323                         exploded 3
## 1.30324                          3 minutes
## 1.30332                vertigo experienced
## 1.30341                instruments crashed
## 1.30344                    landing reached
## 1.30349                           200 feet
## 1.30350                       feet stalled
## 1.30356                     ground crashed
## 1.30360                       korea strait
## 1.30361                       strait 1mile
## 1.30373                         ashiya air
## 1.30374                           air base
## 1.30375                       base crashed
## 1.30384                  unwanted reversal
## 1.30402                   maintain control
## 1.30406                   aircraft crashed
## 1.30411                          mill hill
## 1.30414                     engine failure
## 1.30421                   flight attendant
## 1.30424                     killed crashed
## 1.30445               probable explanation
## 1.30455               captain deliberately
## 1.30466                             100 ft
## 1.30474                   abruptly reduced
## 1.30480                      runway lights
## 1.30490                  started overshoot
## 1.30491                overshoot procedure
## 1.30494                      fatal results
## 1.30497                   aircraft crashed
## 1.30501                      snowstorm 200
## 1.30502                         200 meters
## 1.30505                         mont blanc
## 1.30506                       blanc summit
## 1.30514                  geneva controller
## 1.30517                  climb immediately
## 1.30534                   accident remains
## 1.30535               remains undetermined
## 1.30544                       violent gust
## 1.30555                      named malabar
## 1.30556                   malabar princess
## 1.30559                  flight originated
## 1.30566                 intermediate stops
## 1.30569               minneapolis billings
## 1.30576                      aircraft left
## 1.30577                        left helena
## 1.30582                          runway 29
## 1.30585                  aircraft's flight
## 1.30586                        flight plan
## 1.30592                          10,500 ft
## 1.30595                       amber airway
## 1.30600                  whitehall station
## 1.30606                         red airway
## 1.30613                    flight reported
## 1.30616                   reached cruising
## 1.30617                  cruising altitude
## 1.30623                    whitehall range
## 1.30624                      range station
## 1.30638                              08 14
## 1.30639                         14 stating
## 1.30645                    whitehall range
## 1.30646                      range station
## 1.30649                   starting descent
## 1.30650                      descent butte
## 1.30651                 butte acknowledged
## 1.30660                  altimeter setting
## 1.30663                      29.97 advised
## 1.30669                         south calm
## 1.30689                     flight replied
## 1.30694                vertical visibility
## 1.30697                        10,500 feet
## 1.30703                      radio contact
## 1.30709                 approximately 0815
## 1.30716                      eastern slope
## 1.30722                            30 feet
## 1.30732                         8,250 feet
## 1.30733                           feet msl
## 1.30740                    approximately 2
## 1.30741                                2 1
## 1.30742                                1 2
## 1.30743                            2 miles
## 1.30744                         miles east
## 1.30748                      control tower
## 1.30752                      butte airport
## 1.30756                                1 1
## 1.30757                                1 2
## 1.30758                            2 miles
## 1.30774                    butte captain's
## 1.30775                  captain's failure
## 1.30778                  follow prescribed
## 1.30779                prescribed approach
## 1.30780                approach procedures
## 1.30783                   aircraft drifted
## 1.30784                         drifted 50
## 1.30785                           50 miles
## 1.30789                   prescribed route
## 1.30792                          struck mt
## 1.30793                            mt tete
## 1.30794                            tete de
## 1.30795                         de l'obiou
## 1.30798                         6,740 feet
## 1.30810                  corrective action
## 1.30819                        time veered
## 1.30830                   aircraft crashed
## 1.30833                           mt moran
## 1.30836                          11,200 ft
## 1.30844                     imc conditions
## 1.30853                     imc conditions
## 1.30856                probable electrical
## 1.30857                 electrical failure
## 1.30858                        failure due
## 1.30862             malfunctioning voltage
## 1.30863                  voltage regulator
## 1.30864                  regulator crashed
## 1.30870                       poor weather
## 1.30871                 weather conditions
## 1.30874                           en route
## 1.30875                      route failure
## 1.30881                       remain alert
## 1.30892                    aircraft flying
## 1.30899                          hill flew
## 1.30903                      mountain flew
## 1.30910                   pyrenees crashed
## 1.30917                         pyrenees 5
## 1.30918                          5 minutes
## 1.30921                       takeoff crew
## 1.30922                         crew error
## 1.30923                    error excessive
## 1.30924                      excessive low
## 1.30925                           low rate
## 1.30933                     unknown region
## 1.30936                   premature change
## 1.30939                       heading flew
## 1.30943                       mountain due
## 1.30947                 navigational error
## 1.30950                   aircraft crashed
## 1.30956                           1 engine
## 1.30959                     takeoff engine
## 1.30960                     engine failure
## 1.30963                      takeoff pilot
## 1.30964                        pilot error
## 1.30965                        error short
## 1.30966                      short takeoff
## 1.30967                  takeoff procedure
## 1.30990                   aircraft crashed
## 1.30993                  mountains shortly
## 1.30998                        pilot error
## 1.31001                    captain decided
## 1.31007                   lagoons mountain
## 1.31008                     mountain range
## 1.31011                    severe overcast
## 1.31012                  overcast thinking
## 1.31017                             30 kms
## 1.31023                        range drops
## 1.31031                      4,000m cliffs
## 1.31046                      gain altitude
## 1.31050                     hundred meters
## 1.31060                    finally crashed
## 1.31070                   aircraft crashed
## 1.31073                         mt tabayoc
## 1.31076                           en route
## 1.31077                   route navigation
## 1.31078                   navigation error
## 1.31079                       error struck
## 1.31080                       struck trees
## 1.31083                        mt okanagan
## 1.31090                  penticton drifted
## 1.31094                   minimum altitude
## 1.31095               altitude permissible
## 1.31096                permissible crashed
## 1.31097                         crashed 60
## 1.31098                           60 miles
## 1.31099                        miles north
## 1.31108                            mar del
## 1.31109                          del plata
## 1.31110                        plata broke
## 1.31114                 turbulence crashed
## 1.31117                        bukit besar
## 1.31118                     besar mountain
## 1.31121                           en route
## 1.31124                     plane overshot
## 1.31127                        landing ran
## 1.31133                        caught fire
## 1.31134                         fire pilot
## 1.31135                        pilot error
## 1.31146                       snow covered
## 1.31147                     covered runway
## 1.31153                    missed approach
## 1.31158                           6,000 ft
## 1.31169                       dive hitting
## 1.31174                            340 mph
## 1.31175                     mph officially
## 1.31184                        flight fire
## 1.31185                     fire explosion
## 1.31186               explosion structural
## 1.31187                 structural failure
## 1.31190                      conrol system
## 1.31191                     system failure
## 1.31194                   aircraft plunged
## 1.31200                         6,500 feet
## 1.31206                lightning lightning
## 1.31207                  lightning ignited
## 1.31214                         fuel fumes
## 1.31218                          fuel tank
## 1.31219                       tank crashed
## 1.31222                mountainous terrain
## 1.31225                           en route
## 1.31229                    weather related
## 1.31230                    related crashed
## 1.31234                            sea 2.5
## 1.31235                          2.5 miles
## 1.31236                        miles north
## 1.31244                    landing attempt
## 1.31255                      runway lights
## 1.31261                     crew attempted
## 1.31272                  aircraft wreckage
## 1.31278                           ocean 10
## 1.31279                           10 miles
## 1.31283                    airport ditched
## 1.31290                   approach crashed
## 1.31296                         8,500 feet
## 1.31297                    feet navigation
## 1.31298                   navigation error
## 1.31299                    error incorrect
## 1.31300               incorrect procedures
## 1.31313                           en route
## 1.31316                        cargo plane
## 1.31317                          plane hit
## 1.31323                   mountain located
## 1.31324                         located 12
## 1.31325                              12 km
## 1.31331                         missed ils
## 1.31332                       ils approach
## 1.31335                      pilot stalled
## 1.31342                       poor weather
## 1.31343                 weather conditions
## 1.31359                     recovery pilot
## 1.31360                        pilot error
## 1.31361                      error crashed
## 1.31364                      hills shortly
## 1.31367                       takeoff crew
## 1.31368                         crew error
## 1.31371                       pilot taking
## 1.31375                           vfr lost
## 1.31376                        lost visual
## 1.31377                     visual contact
## 1.31387                      ifr procedure
## 1.31398                         named city
## 1.31401                   ayudhya aircraft
## 1.31411                         hato nuevo
## 1.31414         encountering thunderstorms
## 1.31418                           2 engine
## 1.31419                      engine failed
## 1.31426                 reduced visibility
## 1.31432                   aircraft crashed
## 1.31443             catastrophic explosion
## 1.31449                  sea approximately
## 1.31450                  approximately 450
## 1.31451                          450 miles
## 1.31452                         miles west
## 1.31455                   limerick ireland
## 1.31460                         life rafts
## 1.31477                      engine failed
## 1.31480                     flight causing
## 1.31485                         catch fire
## 1.31489                 engine inoperative
## 1.31494                   icing conditions
## 1.31503                    maintain height
## 1.31504                         height hit
## 1.31505                          hit trees
## 1.31510                     final approach
## 1.31513                      rãƒâ­o grande
## 1.31514                     grande airport
## 1.31517                   aircraft stalled
## 1.31532                        gain height
## 1.31533                     height shortly
## 1.31537                       airborne due
## 1.31542                       engine power
## 1.31543                       power caused
## 1.31546                      ice formation
## 1.31550                 carburetor intakes
## 1.31551               intakes attributable
## 1.31555                  captain's failure
## 1.31562                      heat controls
## 1.31565                     final approach
## 1.31568                      techo airport
## 1.31580                    explosion short
## 1.31585                      plane crashed
## 1.31589                        north slope
## 1.31592                         santa ynez
## 1.31593                          ynez peak
## 1.31594                            peak 23
## 1.31595                           23 miles
## 1.31596                    miles northwest
## 1.31599                      santa barbara
## 1.31602                       poor weather
## 1.31603                    weather failure
## 1.31609                   maintain minimum
## 1.31610                   minimum altitude
## 1.31618                    reasons unknown
## 1.31621                   aircraft crashed
## 1.31627                            8 miles
## 1.31628                           miles ne
## 1.31640                     kanawha county
## 1.31641                     county airport
## 1.31650                     aircraft burst
## 1.31655                         pilot lost
## 1.31656                       lost control
## 1.31679                          dense fog
## 1.31695                      cuba collided
## 1.31700                    navy beechcraft
## 1.31703                         4,000 feet
## 1.31704                        feet thirty
## 1.31710                               dc 4
## 1.31716                 beechcraft failure
## 1.31722                maintain sufficient
## 1.31723               sufficient vigilance
## 1.31726                     vfr conditions
## 1.31733                   aircraft crashed
## 1.31740                        squall line
## 1.31743                              65 85
## 1.31744                             85 mph
## 1.31745                          mph winds
## 1.31748                         heavy rain
## 1.31749                     rain windshear
## 1.31752                   severe downdraft
## 1.31753              downdraft encountered
## 1.31766                     level attitude
## 1.31769                   aircraft crashed
## 1.31776                       kirtland afb
## 1.31779                        gusty winds
## 1.31782                     pilot appeared
## 1.31786                 difficulty keeping
## 1.31789                        wings level
## 1.31792                      plane crossed
## 1.31795                     threshold left
## 1.31799                        center line
## 1.31803                    pilot corrected
## 1.31807                      starboard jet
## 1.31808                            jet pod
## 1.31812                        6 propeller
## 1.31813                   propeller struck
## 1.31818                    pilot attempted
## 1.31826                           6 engine
## 1.31827                       engine afire
## 1.31832                     earth bursting
## 1.31837                           1 engine
## 1.31838                      engine failed
## 1.31839                     failed shortly
## 1.31851                    emergency belly
## 1.31852                      belly landing
## 1.31863                articulated control
## 1.31864                        control rod
## 1.31868                 propeller governor
## 1.31869                       governor due
## 1.31876                          split pin
## 1.31880                   governor spindle
## 1.31888                         ball joint
## 1.31892                    control spindle
## 1.31898                          force hit
## 1.31905                               8 km
## 1.31908                  rancheria pilot's
## 1.31909                   pilot's decision
## 1.31912                            fly vfr
## 1.31915                unfavorable weather
## 1.31916                 weather conditions
## 1.31917                  conditions struck
## 1.31922                    crashed crashed
## 1.31930                       vfr apporach
## 1.31933                     ifr conditions
## 1.31936                    pilot attempted
## 1.31945                       minimum safe
## 1.31946                      safe altitude
## 1.31949                           1,200 ft
## 1.31957                  emergency landing
## 1.31960                       airplane hit
## 1.31966              tejãƒâ­condor factory
## 1.31967                    factory located
## 1.31980                     huge explosion
## 1.31983                      plane crashed
## 1.31989                            1000 ft
## 1.31993                   level descending
## 1.31994                descending attitude
## 1.31995                        attitude 54
## 1.31996                           54 miles
## 1.32002                    pilot descended
## 1.32005                           en route
## 1.32006                      route minimum
## 1.32007                   minimum altitude
## 1.32012                aircraft's position
## 1.32017                      named clipper
## 1.32022                  plane encountered
## 1.32023                   encountered poor
## 1.32024                       poor weather
## 1.32025                 weather conditions
## 1.32028              thunderstorm activity
## 1.32031                 turbulence leading
## 1.32038                           crash en
## 1.32039                           en route
## 1.32042                      san francisco
## 1.32049                     cheyenne radio
## 1.32050                        radio range
## 1.32058                      wrong heading
## 1.32059                     heading flying
## 1.32064                 aircraft continued
## 1.32071                        hit crystal
## 1.32072                   crystal mountain
## 1.32080                      wrong control
## 1.32081                     control switch
## 1.32099                        radio range
## 1.32100                      range station
## 1.32103                       fort bridger
## 1.32104                         bridger wy
## 1.32105                      wy officially
## 1.32110               reasons undetermined
## 1.32111                undetermined failed
## 1.32116                   prescribed route
## 1.32135                  aircraft striking
## 1.32136               striking mountainous
## 1.32137                mountainous terrain
## 1.32140                      engine caught
## 1.32141                        caught fire
## 1.32154                      plane crashed
## 1.32157                        cargo plane
## 1.32158                          plane hit
## 1.32164                   mountain crashed
## 1.32168                    landing attempt
## 1.32171                    adverse weather
## 1.32172                 weather conditions
## 1.32181                    pilot attempted
## 1.32184                    visual approach
## 1.32191                       low altitude
## 1.32194                    adverse weather
## 1.32195                 weather conditions
## 1.32196                 conditions crashed
## 1.32200                          huon gulf
## 1.32204                   center propeller
## 1.32205                   propeller failed
## 1.32208                        cargo plane
## 1.32209                      plane crashed
## 1.32217                   land disappeared
## 1.32224                      pacific ocean
## 1.32242                     yakutat alaska
## 1.32263                  hydraulic circuit
## 1.32266                     oil projection
## 1.32273                 increased maneuver
## 1.32274              maneuver difficulties
## 1.32277             restricting visibility
## 1.32281                        cockpit hit
## 1.32289                      crashed cargo
## 1.32290                        cargo plane
## 1.32291                         plane loss
## 1.32294                    lateral control
## 1.32300                       low altitude
## 1.32312                    lateral control
## 1.32321                   aircraft surface
## 1.32322                   surface abnormal
## 1.32323                    abnormal flight
## 1.32324                    flight maneuver
## 1.32329                   crew experienced
## 1.32330             experienced difficulty
## 1.32333                    resuming normal
## 1.32334                      normal flight
## 1.32339                  engines overspeed
## 1.32340                overspeed reduction
## 1.32354                dangerous situation
## 1.32363              dissymmetrical flight
## 1.32370               stresses accompanied
## 1.32381                      design limits
## 1.32389                         tail plane
## 1.32399                  oakland municipal
## 1.32400                  municipal airport
## 1.32403                   aircraft crashed
## 1.32404                         crashed 15
## 1.32405                           15 miles
## 1.32406                          miles sse
## 1.32412                        tolman peak
## 1.32413                       peak patches
## 1.32416                       fog obscured
## 1.32421                    aircraft struck
## 1.32430                           1,000 ft
## 1.32435                            240 mph
## 1.32440                              2 low
## 1.32441                      low frequency
## 1.32442                frequency receivers
## 1.32448                    oakland station
## 1.32459                   visual reference
## 1.32470                            3 miles
## 1.32478                 minimum prescribed
## 1.32479                prescribed altitude
## 1.32489              instrument procedures
## 1.32500                  oakland municipal
## 1.32501                  municipal airport
## 1.32502                    airport crashed
## 1.32506                     houses shortly
## 1.32512                  congonhas airport
## 1.32513                    airport failure
## 1.32517                instruments crashed
## 1.32521                  mediterranean due
## 1.32524                 structural failure
## 1.32531                     severe weather
## 1.32538                        4 propeller
## 1.32539                propeller feathered
## 1.32540                  feathered stalled
## 1.32545                      san francisco
## 1.32546                      francisco bay
## 1.32549                  inadvertent stall
## 1.32553                       low altitude
## 1.32560                      effected lost
## 1.32561                       lost control
## 1.32576                  autopilot engaged
## 1.32577                    engaged crashed
## 1.32583                        mt tanazawa
## 1.32584                        tanazawa 28
## 1.32585                              28 km
## 1.32586                       km northwest
## 1.32595                        314th troop
## 1.32596                      troop carrier
## 1.32597                       carrier wing
## 1.32598                       wing crashed
## 1.32599                    crashed shortly
## 1.32604                             la paz
## 1.32605                             paz el
## 1.32606                            el alto
## 1.32607                       alto airport
## 1.32610                           en route
## 1.32613                       aircraft hit
## 1.32619                       cerro blanco
## 1.32622                         missing en
## 1.32623                           en route
## 1.32634                           en route
## 1.32639                   airplane crashed
## 1.32642                          mt ingeli
## 1.32645                              17 km
## 1.32646                       km southeast
## 1.32651                         flying vfr
## 1.32654                    adverse weather
## 1.32655                 weather conditions
## 1.32658                      pilot mistook
## 1.32659                    mistook nanaimo
## 1.32664                      plane crashed
## 1.32667                          mt benson
## 1.32668                          benson 20
## 1.32669                           20 miles
## 1.32670                         miles west
## 1.32673                  vancouver crashed
## 1.32676                           en route
## 1.32677                      route crashed
## 1.32682                         jungle 170
## 1.32683                          170 miles
## 1.32684                        miles north
## 1.32685                    north northeast
## 1.32688                     guatemala city
## 1.32702                   aircraft's cabin
## 1.32706                  cigarette crashed
## 1.32715                   marginal weather
## 1.32716                 weather conditions
## 1.32719                  captain's attempt
## 1.32726                 minimum visibility
## 1.32735                  military contract
## 1.32736                    contract flight
## 1.32741                   marginal weather
## 1.32742                 weather conditions
## 1.32745                       aircraft hit
## 1.32750                            mt dore
## 1.32753                              32 km
## 1.32754                       km southwest
## 1.32757              clermont ferrand.flew
## 1.32760                            mt dore
## 1.32761                       dore shortly
## 1.32767                      aircraft flew
## 1.32771                      voltage cable
## 1.32776                      plane crashed
## 1.32777                    crashed shortly
## 1.32784                      icing crashed
## 1.32788                          sand dune
## 1.32795                       poor weather
## 1.32796                  weather condtions
## 1.32799                    aircraft struck
## 1.32800                       struck trees
## 1.32806                    missed approach
## 1.32807                         approach 3
## 1.32808                            3 miles
## 1.32809                        miles north
## 1.32812                            dum dum
## 1.32813                        dum airport
## 1.32817                     crew descended
## 1.32822                    poor visibility
## 1.32825                        cargo plane
## 1.32826                      plane crashed
## 1.32835                    poor visibility
## 1.32836                 visibility shortly
## 1.32844                      initial climb
## 1.32847                          plane hit
## 1.32852                    crashed stalled
## 1.32853                    stalled entered
## 1.32860                   inadvertent spin
## 1.32873                      narrow valley
## 1.32876                      pilot elected
## 1.32879                        gain height
## 1.32883                       aircraft hit
## 1.32884                          hit trees
## 1.32889                       flames pilot
## 1.32890                        pilot error
## 1.32891                      error shortly
## 1.32897                     newark airport
## 1.32900                      control tower
## 1.32901                      tower noticed
## 1.32902                      noticed smoke
## 1.32903                    smoke emanating
## 1.32908                     engine minutes
## 1.32912                 aircraft gradually
## 1.32913                gradually descended
## 1.32916                          left wing
## 1.32917                       wing dropped
## 1.32921                    aircraft struck
## 1.32927                    vacant building
## 1.32928                      building hold
## 1.32935                        10 cylinder
## 1.32940                      engine failed
## 1.32941                         failed due
## 1.32944               improper installtion
## 1.32948                          nuts fire
## 1.32949                       fire erupted
## 1.32956                    failed cylinder
## 1.32957                 cylinder extension
## 1.32961                       landing gear
## 1.32968                         engine led
## 1.32972                  aircraft stalling
## 1.32979                             200 ft
## 1.32987                         117 pounds
## 1.32993                       landing gear
## 1.32994                      gear extended
## 1.33023                        10 cylinder
## 1.33024             cylinder precipitating
## 1.33032             uncontrollable crashed
## 1.33035                   mehrabad airport
## 1.33040                    landing attempt
## 1.33043                    pilot attempted
## 1.33050                    poor visibility
## 1.33053                       snow crashed
## 1.33059                          fuel fuel
## 1.33060                     fuel starvaion
## 1.33061                     starvaion crew
## 1.33062                      crew switched
## 1.33066                         wrong fuel
## 1.33067                          fuel tank
## 1.33068                    tank proceeding
## 1.33072                       low altitude
## 1.33075                 maintain reference
## 1.33087                      plane drifted
## 1.33095                            hill 15
## 1.33096                           15 miles
## 1.33097                         miles east
## 1.33101                       direct route
## 1.33102                       route flying
## 1.33103                         flying vfr
## 1.33106                     ifr conditions
## 1.33109                     captain's poor
## 1.33110                     poor judgement
## 1.33117                   visual reference
## 1.33120                 instrument weather
## 1.33121                 weather conditions
## 1.33127                    authorized left
## 1.33134                           east leg
## 1.33138                    fairbanks radio
## 1.33139                        radio range
## 1.33142                subsequently struck
## 1.33143                       struck chena
## 1.33144                         chena dome
## 1.33145                     dome northeast
## 1.33153                   westerly heading
## 1.33161                  follow procedures
## 1.33164                   utilize properly
## 1.33167                   radio facilities
## 1.33182                       lost crashed
## 1.33191                           7,000 ft
## 1.33192                              ft 66
## 1.33193                           66 miles
## 1.33194                    miles northeast
## 1.33197                       williams afb
## 1.33200                        cargo plane
## 1.33201                      plane crashed
## 1.33206                      hitting trees
## 1.33209                      aircraft lost
## 1.33210                       lost control
## 1.33213                  severe turbulence
## 1.33221                          soft peat
## 1.33222                           peat bog
## 1.33223                              bog 1
## 1.33224                             1 mile
## 1.33225                          mile east
## 1.33228                       llyn gwynant
## 1.33253                  strong turbulence
## 1.33260                         crew chose
## 1.33269                           1 engine
## 1.33275                   aircraft crashed
## 1.33279                      pacific ocean
## 1.33282                      mile offshore
## 1.33290                  emergency landing
## 1.33293                          nose gear
## 1.33294                    gear retraction
## 1.33295              retraction difficulty
## 1.33301                    icing condition
## 1.33305                         power loss
## 1.33310                 aircraft incapable
## 1.33313                 maintaining flight
## 1.33324                       frigid water
## 1.33327                   aircraft crashed
## 1.33331                    apartment house
## 1.33335                         approach 3
## 1.33336                            3 miles
## 1.33337                        miles short
## 1.33345                      plane crashed
## 1.33348                    level laterally
## 1.33353                   steep descending
## 1.33354                descending attitude
## 1.33360                   carburetor icing
## 1.33361                     icing official
## 1.33366                     flight failure
## 1.33372                    damaged control
## 1.33373                     control cables
## 1.33374                     cables causing
## 1.33375                       causing loss
## 1.33383                     control cables
## 1.33395                        broke loose
## 1.33399                      shaft failure
## 1.33400                     failure caused
## 1.33404                    sudden stopping
## 1.33408                      engine caused
## 1.33411                    fatigue failure
## 1.33415                           6 piston
## 1.33416                         piston lug
## 1.33419                     military plane
## 1.33420                      plane crashed
## 1.33431                         yokota afb
## 1.33434                      hitting power
## 1.33435                        power lines
## 1.33438                   aircraft crashed
## 1.33442                  apartment complex
## 1.33443                    complex shortly
## 1.33463                     field reversal
## 1.33469                        3 propeller
## 1.33472              subsequent feathering
## 1.33476                        4 propeller
## 1.33486                       recovery hit
## 1.33489                        north slope
## 1.33492                           la cinta
## 1.33493                     cinta mountain
## 1.33494                     mountain range
## 1.33497                           en route
## 1.33498                        route pilot
## 1.33504                      safe altitude
## 1.33507                   pilots ignorance
## 1.33510                    wind conditions
## 1.33517                            drift 3
## 1.33518                          3 degrees
## 1.33522                        banked left
## 1.33525                       struck trees
## 1.33526                        trees 2,000
## 1.33527                           2,000 ft
## 1.33528                           ft short
## 1.33532                       runway pilot
## 1.33533                        pilot error
## 1.33536                    pilot misjudged
## 1.33539                 approach undershot
## 1.33544                         tops trees
## 1.33547                contributing factor
## 1.33554                  pilot's altimeter
## 1.33561                      customary qfe
## 1.33565                     final approach
## 1.33569                        wing struck
## 1.33570                       struck trees
## 1.33577                        pilot error
## 1.33597                crashed malfunction
## 1.33602                         gear chain
## 1.33607                    pilot's control
## 1.33608                     control column
## 1.33609                     column slipped
## 1.33617                   aileron controls
## 1.33623                        cargo plane
## 1.33624                     plane carrying
## 1.33627                         light load
## 1.33630                       freight lost
## 1.33631                      lost altitude
## 1.33641                   training mission
## 1.33644                       flying blind
## 1.33649                    planes collided
## 1.33652                       plane struck
## 1.33669                     planes crashed
## 1.33677                           18 miles
## 1.33680                        san antonio
## 1.33693                        cargo plane
## 1.33694                  plane disappeared
## 1.33695                     disappeared en
## 1.33696                           en route
## 1.33697                        route found
## 1.33700                          august 27
## 1.33701                            27 1953
## 1.33702                       1953 crashed
## 1.33709                        miles short
## 1.33726                     named koningin
## 1.33727                   koningin juliana
## 1.33728                    juliana crashed
## 1.33733                       pilot failed
## 1.33736                  maintain altitude
## 1.33742                    reasons unknown
## 1.33747                      pilot fatigue
## 1.33750                     plane overshot
## 1.33758                  military aircraft
## 1.33759                   aircraft killing
## 1.33763                          70 people
## 1.33764                     people crashed
## 1.33770                       cerro grande
## 1.33771                    grande mountain
## 1.33772                   mountain crashed
## 1.33777                          plane hit
## 1.33780           unidentified obstruction
## 1.33787                   wheels collapsed
## 1.33788                  collapsed violent
## 1.33789                     violent engine
## 1.33790                      engine surges
## 1.33796                         missed ils
## 1.33797                       ils approach
## 1.33798                    approach caused
## 1.33803                      loose control
## 1.33811                           171st st
## 1.33814                           89th ave
## 1.33820                           1 engine
## 1.33821                        engine fuel
## 1.33822                          fuel feed
## 1.33823                         feed valve
## 1.33824                    valve diaphragm
## 1.33825                   diaphragm failed
## 1.33826                         failed due
## 1.33833                     morning flight
## 1.33836              instrument conditions
## 1.33839                          crew flew
## 1.33842                      route segment
## 1.33847                      oshima island
## 1.33848                       island 1,000
## 1.33849                           1,000 ft
## 1.33853                 minimum instrument
## 1.33854                instrument altitude
## 1.33857                      oshima island
## 1.33860                   aircraft crashed
## 1.33866                     mihara volcano
## 1.33869                        cargo plane
## 1.33870                     plane carrying
## 1.33875                        tea crashed
## 1.33887                  emergency landing
## 1.33893                        isle grande
## 1.33894                     grande airport
## 1.33899                engine problems.the
## 1.33900              problems.the aircraft
## 1.33906                     atlantic ocean
## 1.33913                     turbulent seas
## 1.33916                         tail broke
## 1.33923                    aircraft stayed
## 1.33924                      stayed afloat
## 1.33928                          3 minutes
## 1.33933               company's inadequate
## 1.33934             inadequate maintenance
## 1.33941                           3 engine
## 1.33947                failure immediately
## 1.33948             immediately subsequent
## 1.33954                  persistent action
## 1.33973                      critical loss
## 1.33986               attitude progressive
## 1.33987                   progressive loss
## 1.33990                          air speed
## 1.34004                    effect recovery
## 1.34009                      named clipper
## 1.34010                   clipper endeavor
## 1.34020                          york city
## 1.34023                 burbank california
## 1.34024                     california due
## 1.34027                    poor visibility
## 1.34036                        los angeles
## 1.34037                    angeles airport
## 1.34041                       ils approach
## 1.34047                      plane crashed
## 1.34051                       puente hills
## 1.34056                  pilot voluntarily
## 1.34057              voluntarily descended
## 1.34061                   minimum altitude
## 1.34089                 restricted medical
## 1.34090                medical certificate
## 1.34093               emergency suspension
## 1.34111                      40 violations
## 1.34112                  violations listed
## 1.34116                  including charges
## 1.34119                  overweight planes
## 1.34120                   planes excessive
## 1.34121                   excessive flying
## 1.34122                        flying time
## 1.34130                     approved seats
## 1.34133                       safety belts
## 1.34136                     flight crashed
## 1.34142                             887 nm
## 1.34143                             nm nnw
## 1.34146                             rio de
## 1.34147                         de janerio
## 1.34148                 janerio separation
## 1.34152                    propeller blade
## 1.34153                      blade leading
## 1.34160                           2 engine
## 1.34161                         engine due
## 1.34164                   highly unbalance
## 1.34165                   unbalance forces
## 1.34166                     forces leading
## 1.34177                      named clipper
## 1.34180                          hope lost
## 1.34188                       crashed fuel
## 1.34189                    fuel starvation
## 1.34190                  starvation caused
## 1.34194                       plane banked
## 1.34214                     mountain slope
## 1.34217                           en route
## 1.34222                      whaling crews
## 1.34223                       crews aboard
## 1.34224                   aboard returning
## 1.34228                     antarctic crew
## 1.34229                  crew navigational
## 1.34230                 navigational error
## 1.34231                      error crashed
## 1.34232                    crashed shortly
## 1.34243                  emergency landing
## 1.34248                     engine failure
## 1.34249                    failure failure
## 1.34253                        port engine
## 1.34254                         engine due
## 1.34257                    accessory drive
## 1.34258                      drive failure
## 1.34259                    failure failure
## 1.34263                   starboard engine
## 1.34264                         engine due
## 1.34272              deficient maintenance
## 1.34273                  maintenance error
## 1.34284                       landing gear
## 1.34287               emergency conditions
## 1.34290                        cargo plane
## 1.34291                         plane lost
## 1.34300                    crashed failure
## 1.34303                  maintenance staff
## 1.34308                     flying control
## 1.34309                      control locks
## 1.34310                      locks failure
## 1.34316                reason undetermined
## 1.34324                         desert ran
## 1.34332                     forced landing
## 1.34333                  landing survivors
## 1.34341                        rescue team
## 1.34342                            team 15
## 1.34343                           15 miles
## 1.34355                         pilot died
## 1.34356                             died 5
## 1.34357                             5 days
## 1.34361                      head injuries
## 1.34362                  injuries suffered
## 1.34366              accident navagational
## 1.34367                navagational errors
## 1.34371                      crew improper
## 1.34372                improper adjustment
## 1.34379                 gyroscopic compass
## 1.34380                        compass cl2
## 1.34381                        cl2 gyrosyn
## 1.34385                  navigator absence
## 1.34388                   radio assistance
## 1.34395                compasses captain's
## 1.34396                 captain's decision
## 1.34401                 gyroscopic compass
## 1.34408                   magnetic compass
## 1.34416                        named horus
## 1.34417                         horus shot
## 1.34422                             mig 15
## 1.34423                         15 russian
## 1.34424                        russian air
## 1.34425                          air force
## 1.34426                      force fighter
## 1.34430                         baltic sea
## 1.34433               international waters
## 1.34438                 radio surveillance
## 1.34439               surveillance mission
## 1.34440                   mission wreckage
## 1.34441                     wreckage found
## 1.34442                           found 06
## 1.34443                              06 17
## 1.34444                            17 2003
## 1.34445                     2003 recovered
## 1.34446                       recovered 03
## 1.34447                              03 19
## 1.34448                            19 2004
## 1.34449                       2004 ditched
## 1.34453                    english channel
## 1.34458                   starboard engine
## 1.34463                  carborateur icing
## 1.34469                   larkenhealth afb
## 1.34472                      plane dropped
## 1.34479                        10 aircraft
## 1.34490                      farms crashed
## 1.34494                          north sea
## 1.34497                        holy island
## 1.34502                     north atlantic
## 1.34503                    atlantic treaty
## 1.34504                   treaty maneuvers
## 1.34507                       marine cargo
## 1.34508                        cargo plane
## 1.34509                     plane carrying
## 1.34510                      carrying rotc
## 1.34511                      rotc students
## 1.34512                    students taking
## 1.34516                    summer training
## 1.34517                   training crashed
## 1.34524                     refueling stop
## 1.34535                  flight engineer's
## 1.34536                 engineer's failure
## 1.34541                   unsafe condition
## 1.34545                         cabin door
## 1.34549                completely separate
## 1.34550                  separate warnings
## 1.34557                   captain's action
## 1.34560                  continuing flight
## 1.34570                         main cabin
## 1.34571                         cabin door
## 1.34575                    properly locked
## 1.34576                    locked exploded
## 1.34581                      bomb exploded
## 1.34582                    exploded aboard
## 1.34591                      plane ditched
## 1.34595                  mediterranean sea
## 1.34598                    initial failure
## 1.34605                          2 engines
## 1.34608                    reasons unknown
## 1.34609                    unknown crashed
## 1.34610                    crashed shortly
## 1.34618                     engine failure
## 1.34619                  failure extremely
## 1.34620                      extremely bad
## 1.34621                        bad weather
## 1.34622                     weather forced
## 1.34628                        cargo plane
## 1.34634               original destination
## 1.34637                 proper preparation
## 1.34648                 alternate airfield
## 1.34649                     airfield prior
## 1.34662                  captain's attempt
## 1.34669                    kosti aerodrome
## 1.34676                      night landing
## 1.34677                 landing facilities
## 1.34680                     captain landed
## 1.34693                        center line
## 1.34697                    consequence ran
## 1.34705                     steel windsock
## 1.34706                   windsock support
## 1.34727                      aircraft fell
## 1.34737                    farnborough air
## 1.34741                   aircraft crashed
## 1.34745                         ground 1.5
## 1.34746                          1.5 miles
## 1.34750                grandstands killing
## 1.34753                         chief test
## 1.34754                         test pilot
## 1.34757                       de havilland
## 1.34758                 havilland aircraft
## 1.34759               aircraft corporation
## 1.34760                   corporation john
## 1.34761                         john derry
## 1.34765                      observer tony
## 1.34766                      tony richards
## 1.34769                     addition fifty
## 1.34780                         60 injured
## 1.34786                  structural design
## 1.34787                       design fault
## 1.34792                     shaped leading
## 1.34793                       leading edge
## 1.34794                       edge section
## 1.34800                       derry pulled
## 1.34807                       wing buckled
## 1.34810                 navigational error
## 1.34821                severely aggravated
## 1.34827                       proper radio
## 1.34828                         radio aids
## 1.34832                destination airport
## 1.34845                      lesser degree
## 1.34848                 physical condition
## 1.34858                        cargo plane
## 1.34859                       plane coming
## 1.34862                    close proximity
## 1.34866                         ground due
## 1.34870               captains uncertainty
## 1.34874                    position midair
## 1.34875                   midair collision
## 1.34879                              tc 62
## 1.34880                        62 aircraft
## 1.34881                       aircraft atc
## 1.34882                          atc error
## 1.34886                            air sea
## 1.34887                       sea practice
## 1.34893                        tarbat ness
## 1.34901                    aircraft struck
## 1.34906                          burst int
## 1.34907                         int flames
## 1.34908                flames navigational
## 1.34909                 navigational error
## 1.34918                       located poor
## 1.34919                       poor weather
## 1.34922                   aircraft crashed
## 1.34930                           en route
## 1.34948                      washed ashore
## 1.34949                      ashore struck
## 1.34950                        struck gray
## 1.34951                      gray mountain
## 1.34954                    poor visibility
## 1.34957                           en route
## 1.34961                      deviation led
## 1.34965                  aircraft crashing
## 1.34968                        mt mckinley
## 1.34974                          12,000 ft
## 1.34975                          ft struck
## 1.34983                           2,000 ft
## 1.34991                       u.s military
## 1.34992                      military base
## 1.35001                         low clouds
## 1.35002                 clouds disappeared
## 1.35005                           en route
## 1.35016                           en route
## 1.35019                   propeller failed
## 1.35027                  vibrations caused
## 1.35031                           1 engine
## 1.35037                    pilot attempted
## 1.35042                  emergency landing
## 1.35045                      plane crashed
## 1.35053                        muddy field
## 1.35054                        field bound
## 1.35057                      elmendorf air
## 1.35058                          air force
## 1.35059                         force base
## 1.35062                    aircraft struck
## 1.35065                        south slope
## 1.35068                      mount gannett
## 1.35071                      plane drifted
## 1.35078                     winds wreckage
## 1.35079                     wreckage found
## 1.35082                              06 26
## 1.35083                            26 2012
## 1.35084                       2012 crashed
## 1.35087                    poor visibility
## 1.35098                           3 engine
## 1.35099                      engine failed
## 1.35103                      plane crashed
## 1.35106                trees approximately
## 1.35107                    approximately 1
## 1.35108                             1 mile
## 1.35109                     mile southwest
## 1.35122                   survivor crashed
## 1.35123                         crashed en
## 1.35124                           en route
## 1.35125                      route crashed
## 1.35126                      crashed dived
## 1.35130                  sea approximately
## 1.35131                    approximately 5
## 1.35132                            5 miles
## 1.35136                    airport shortly
## 1.35161                      lose altitude
## 1.35169                         snow laden
## 1.35170                        laden field
## 1.35177                   airstrip failure
## 1.35187                   elevator locking
## 1.35188                        locking pin
## 1.35189                          pin prior
## 1.35199                         found lost
## 1.35200                      lost altitude
## 1.35226                          pulled 45
## 1.35227                         45 caliber
## 1.35228                     caliber pistol
## 1.35240                     mainland china
## 1.35257                         steep dive
## 1.35300                      hijacker shot
## 1.35306                       cockpit door
## 1.35307                       door killing
## 1.35312                      pilot changed
## 1.35320                          6000 feet
## 1.35324                          china sea
## 1.35328               chinese nationalists
## 1.35331                          6 harvard
## 1.35332                     harvard planes
## 1.35337                      planes chased
## 1.35340                               dc 3
## 1.35343                    sprayed machine
## 1.35344                        machine gun
## 1.35345                           gun fire
## 1.35348                      pilot managed
## 1.35357                 nationalist planes
## 1.35372                   arrested crashed
## 1.35375                    approach lights
## 1.35380                         land error
## 1.35391                       plane struck
## 1.35397                     mountain ridge
## 1.35403                         1,620 feet
## 1.35411                 aircraft continued
## 1.35412                   continued flying
## 1.35415                     finally struck
## 1.35421                       canyon 1,500
## 1.35422                         1,500 feet
## 1.35426                        caught fire
## 1.35429                 flight's deviation
## 1.35433               established approach
## 1.35434                 approach procedure
## 1.35437                      plane crashed
## 1.35442                           en route
## 1.35459                        trees found
## 1.35460                            found 5
## 1.35461                           5 months
## 1.35465                inadvertent descent
## 1.35478                  pilot's inability
## 1.35483                      safe altitude
## 1.35486                   aircraft crashed
## 1.35490                   midair collision
## 1.35493                approximately 1,500
## 1.35494                           1,500 ft
## 1.35495                         ft weather
## 1.35496                 weather conditions
## 1.35505            localized thundrestorms
## 1.35506                thundrestorms heavy
## 1.35507                         heavy rain
## 1.35529                  evidence revealed
## 1.35533                       malta flight
## 1.35534                 flight information
## 1.35535                 information center
## 1.35546                 lancaster's sortie
## 1.35554                    nineteen killed
## 1.35555                      killed aboard
## 1.35558                          vickers 7
## 1.35559                           7 aboard
## 1.35562                  lancaster crashed
## 1.35563                         crashed 10
## 1.35564                           10 miles
## 1.35565                         miles east
## 1.35571                   sinnai mountains
## 1.35575                        wing failed
## 1.35576                         failed due
## 1.35582                     coordinates 46
## 1.35583                              46 15
## 1.35590                     north atlantic
## 1.35593                   distress message
## 1.35607                    found destroyed
## 1.35613                       bomb crashed
## 1.35630                          heavy fog
## 1.35631                   fog misjudgement
## 1.35635                        pilot wrong
## 1.35636                    wrong altimeter
## 1.35637                  altimeter setting
## 1.35638                    setting crashed
## 1.35645                       sandstorm 50
## 1.35646                              50 km
## 1.35647                       km northeast
## 1.35652                   aircraft crashed
## 1.35660                     mobile alabama
## 1.35663                     aircraft broke
## 1.35671                       frontal wave
## 1.35672                         wave storm
## 1.35678                          left wing
## 1.35688                     flight failure
## 1.35696                 airframe structure
## 1.35704                    intense frontal
## 1.35705                       frontal wave
## 1.35706                          wave type
## 1.35707                         type storm
## 1.35710                   extremely severe
## 1.35711                  severe turbulence
## 1.35727                   aircraft overran
## 1.35732                  takeoff excessive
## 1.35733                     excessive nose
## 1.35742                        takeoff run
## 1.35743                      run producing
## 1.35746                     partly stalled
## 1.35747                  stalled condition
## 1.35750                     excessive drag
## 1.35757                 limited experience
## 1.35761                     comet aircraft
## 1.35762                   aircraft elected
## 1.35770                maximum permissable
## 1.35771                 permissable weight
## 1.35775              prevailing conditions
## 1.35778             circumstances required
## 1.35779                    required strict
## 1.35780                   strict adherence
## 1.35784                 prescribed takeoff
## 1.35785                  takeoff technique
## 1.35793                        fatal crash
## 1.35797                     commercial jet
## 1.35798                       jet aircraft
## 1.35803                      named empress
## 1.35816                    pilot displayed
## 1.35817                     displayed poor
## 1.35818                     poor judgement
## 1.35836                standard instrument
## 1.35837                instrument approach
## 1.35838                   approach crashed
## 1.35844                           en route
## 1.35847                     severe weather
## 1.35850                    pilot descended
## 1.35853                    poor visibility
## 1.35860                   position crashed
## 1.35866                       poor weather
## 1.35867                 weather conditions
## 1.35870                    aircraft flying
## 1.35871                         flying low
## 1.35875                     atlantic ocean
## 1.35886                         coast tail
## 1.35887                         tail winds
## 1.35888                       winds caused
## 1.35893                     arrive earlier
## 1.35897                          plane hit
## 1.35902                          low cloud
## 1.35903                        cloud cover
## 1.35906                   aircraft crashed
## 1.35910                        flat barley
## 1.35911                       barley field
## 1.35924                           wing tip
## 1.35929                  vertical position
## 1.35930               position cartwheeled
## 1.35935                      30 passengers
## 1.35938              maintenance personnel
## 1.35942                         509th bomb
## 1.35943                          bomb wing
## 1.35944                         wing noted
## 1.35949                       atomic bombs
## 1.35952                 japan accumulation
## 1.35963               sufficient magnitude
## 1.35967                        caused loss
## 1.35970                   control official
## 1.35976                    control unknown
## 1.35979                      pilot aborted
## 1.35987                           2 engine
## 1.35996                   remaining runway
## 1.35997                       runway error
## 1.36016                  operating crashed
## 1.36020                        wing failed
## 1.36021                         failed due
## 1.36024                      metal fatigue
## 1.36025                     fatigue cracks
## 1.36029               aircraft encountered
## 1.36030                 encountered strong
## 1.36031                       strong winds
## 1.36034                         wrong type
## 1.36040                      fitting press
## 1.36041                          press fit
## 1.36042                          fit bolts
## 1.36046                       booms caused
## 1.36047                   caused corrosion
## 1.36052                    lower starboard
## 1.36053                     starboard boom
## 1.36057                      outboard bolt
## 1.36058                          bolt hole
## 1.36059                          hole lost
## 1.36064                    takeoff climbed
## 1.36067                            100 200
## 1.36068                             200 ft
## 1.36069                        ft entering
## 1.36072                     slight banking
## 1.36079                        sea failure
## 1.36083                        left engine
## 1.36093                    accessory drive
## 1.36094                         drive gear
## 1.36095                       gear failure
## 1.36102                precautionary steps
## 1.36115                     engine failure
## 1.36118                        cargo plane
## 1.36119                      plane crashed
## 1.36125                  experiencing duel
## 1.36126                        duel engine
## 1.36127                     engine failure
## 1.36130                   aircraft crashed
## 1.36133                     cedar mountain
## 1.36136                      double engine
## 1.36137                     engine failure
## 1.36140                progressive failure
## 1.36144                        engines due
## 1.36152                 proper maintenance
## 1.36153              maintenance standards
## 1.36154                    standards spark
## 1.36155                        spark plugs
## 1.36165                 normal maintenance
## 1.36166             maintenance inspection
## 1.36167                  inspection period
## 1.36170                 exhibited evidence
## 1.36174                condition conducive
## 1.36195                  ultimately failed
## 1.36201                         master rod
## 1.36202                        rod bearing
## 1.36203                   bearing failures
## 1.36206                        cargo plane
## 1.36207                        plane broke
## 1.36216                        khasi hills
## 1.36219                          port wing
## 1.36220                        wing failed
## 1.36224                            air due
## 1.36244                   designed crashed
## 1.36247                        takeoff due
## 1.36250                       wing failure
## 1.36253                 aircraft descended
## 1.36256                   minimum altitude
## 1.36264                     pilot's action
## 1.36272                             500 ft
## 1.36273                      ft prescribed
## 1.36274                 prescribed minimum
## 1.36275                   minimum altitude
## 1.36279                    aircraft struck
## 1.36284              probable contributing
## 1.36285                contributing factor
## 1.36289                  aircraft striking
## 1.36295                   sensory illusion
## 1.36296               illusion experienced
## 1.36302                   aircraft crashed
## 1.36303                          crashed 6
## 1.36304                          6 minutes
## 1.36310                            dum dum
## 1.36311                        dum airport
## 1.36314                  accident occurred
## 1.36318               violent thunderstorm
## 1.36319              thunderstorm wreckage
## 1.36324                     aircraft broke
## 1.36329                        air failure
## 1.36333                     elevator spars
## 1.36334                       spars caused
## 1.36350                    maneuver severe
## 1.36351                       severe gusts
## 1.36352                  gusts encountered
## 1.36374                     nicknamed york
## 1.36375                        york victor
## 1.36376                     victor crashed
## 1.36380                        sea unknown
## 1.36396                    steep starboard
## 1.36413                       low altitude
## 1.36414              altitude inexperience
## 1.36428                     flying crashed
## 1.36433                        land misuse
## 1.36439                   aircraft touched
## 1.36446                   aircraft bounced
## 1.36452                       final bounce
## 1.36458                       nose section
## 1.36464                      plane crashed
## 1.36465                         crashed 13
## 1.36466                           13 miles
## 1.36467                         miles east
## 1.36470                    marashall texas
## 1.36479                severe thunderstorm
## 1.36487                severe thunderstorm
## 1.36494                  effective control
## 1.36508                 company directives
## 1.36509               directives requiring
## 1.36520               action mismanagement
## 1.36523                     fuel resulting
## 1.36534                  field preparatory
## 1.36545                      plane reached
## 1.36551                              50 ft
## 1.36562                        lose height
## 1.36565                       crash landed
## 1.36575                         plane died
## 1.36581                       bicycle path
## 1.36584                      killed midair
## 1.36585                   midair collision
## 1.36586                     collision crew
## 1.36592                   prescribed route
## 1.36593                   route inadequate
## 1.36594             inadequate preparation
## 1.36597                       flight tweny
## 1.36598                       tweny killed
## 1.36602                               li 2
## 1.36609                              li 2t
## 1.36610                         2t crashed
## 1.36616                     lightning poor
## 1.36617                      poor planning
## 1.36627              deteriorating weather
## 1.36628                 weather conditions
## 1.36629                 conditions crashed
## 1.36634                        engine fire
## 1.36635                       fire crashed
## 1.36639                         san ramone
## 1.36640                   ramone mountains
## 1.36647                       poor weather
## 1.36648                    weather crashed
## 1.36652                         board fire
## 1.36653                      fire possibly
## 1.36654                      possibly shot
## 1.36660                     final approach
## 1.36663                          sao paulo
## 1.36664                        paulo error
## 1.36672                    poor visibility
## 1.36675                      night crashed
## 1.36676                    crashed shortly
## 1.36682                      tachikawa air
## 1.36683                           air base
## 1.36684                        base engine
## 1.36685                     engine failure
## 1.36690              premature application
## 1.36698                    engine approach
## 1.36699                 approach resultied
## 1.36704                          air speed
## 1.36707                   aircraft control
## 1.36710                      plane crashed
## 1.36718                  aviation disaster
## 1.36724                          100 lives
## 1.36725                         lives lost
## 1.36730                           en route
## 1.36733                        wake island
## 1.36736                    honolulu hawaii
## 1.36737               hawaii approximately
## 1.36738                  approximately 325
## 1.36739                          325 miles
## 1.36740                         miles east
## 1.36743                        wake island
## 1.36757                    fourteen bodies
## 1.36761                         life rafts
## 1.36766                      plywood panel
## 1.36770                  navigator's table
## 1.36776                      words falling
## 1.36788                        bomb caused
## 1.36797                     royal hawaiian
## 1.36801                       pilot failed
## 1.36806                    sufficient rate
## 1.36812                    airborne struck
## 1.36813                   struck obstacles
## 1.36822                     pilot suffered
## 1.36825             spatial disorientation
## 1.36826         disorientation immediately
## 1.36829                       liftoff shot
## 1.36834                            u.s air
## 1.36835                          air force
## 1.36838                             86 jet
## 1.36839                        jet fighter
## 1.36846                         korean war
## 1.36849                 russian government
## 1.36850                 government claimed
## 1.36856                        chinese air
## 1.36857                          air space
## 1.36861                           3 engine
## 1.36862                       engine broke
## 1.36869                  severe vibrations
## 1.36870                 vibrations causing
## 1.36871                       causing loss
## 1.36878                           4 engine
## 1.36883                       ditching 1.5
## 1.36884                          1.5 miles
## 1.36888                      coast failure
## 1.36894                    propeller blade
## 1.36897                 passengers drowned
## 1.36898                    drowned shortly
## 1.36904                   aircraft entered
## 1.36937                       dark crashed
## 1.36941                     atlantic ocean
## 1.36946                              itã â
## 1.36947                                â â
## 1.36950                     engines caught
## 1.36951                        caught fire
## 1.36952                           fire 500
## 1.36953                          500 miles
## 1.36957                        irish coast
## 1.36960                        cargo plane
## 1.36961                         plane flew
## 1.36965                      mountain east
## 1.36968                          san diego
## 1.36976                          nice cote
## 1.36979                       azur airport
## 1.36982                   aircraft crashed
## 1.36985                           mt cemet
## 1.36989                        french alps
## 1.36990                        alps french
## 1.36991                   french violinist
## 1.36992                  violinist jacques
## 1.36993                    jacques tribaud
## 1.36994                         tribaud 72
## 1.36998                killed navigational
## 1.36999                 navigational error
## 1.37000                        error pilot
## 1.37001                     pilot deviated
## 1.37005                  prescribled route
## 1.37008                    reasons unknown
## 1.37009                    unknown crashed
## 1.37016                  cascade mountains
## 1.37017                       mountains 26
## 1.37018                              26 nm
## 1.37019                           nm short
## 1.37022                        mcchord afb
## 1.37025                    pilot's attempt
## 1.37028                    continue flight
## 1.37036                     ifr conditions
## 1.37040                    missed approach
## 1.37044                           2 engine
## 1.37048                        cargo plane
## 1.37049                       plane failed
## 1.37050                     failed failure
## 1.37058                       pilot wished
## 1.37061                     obtain maximum
## 1.37062                      maximum power
## 1.37069                     missed landing
## 1.37072                        cargo plane
## 1.37073                       plane struck
## 1.37084                       low approach
## 1.37089                   aircraft crashed
## 1.37093                       radio towers
## 1.37099                   albany municipal
## 1.37100                  municipal airport
## 1.37113             obstructions partially
## 1.37114                 partially obscured
## 1.37121                       radio towers
## 1.37122                      towers crew's
## 1.37123                     crew's failure
## 1.37130                    adverse weather
## 1.37131                 weather conditions
## 1.37132                 conditions crashed
## 1.37139                        engine fire
## 1.37145                     plane returned
## 1.37161                        steep climb
## 1.37162                      climb stalled
## 1.37167                 structural failure
## 1.37171                      left elevator
## 1.37174                     flight causing
## 1.37175                       causing loss
## 1.37180                 structural failure
## 1.37187                      left outboard
## 1.37188                     outboard hinge
## 1.37189                         hinge bolt
## 1.37200               improper maintenance
## 1.37208                        hinge bolts
## 1.37213             meeting specifications
## 1.37216              inadequate inspection
## 1.37223                  condition crashed
## 1.37232                       engine power
## 1.37246                      heavy deposit
## 1.37252                        spark plugs
## 1.37255                        cargo plane
## 1.37256                      plane crashed
## 1.37259              unknown circumstances
## 1.37262                   aircraft crashed
## 1.37271                     captain's loss
## 1.37274                   visual reference
## 1.37280               encountered drifting
## 1.37281                       drifting fog
## 1.37282                        fog shortly
## 1.37292              resultant inadvertent
## 1.37293             inadvertent assumption
## 1.37297                  descending flight
## 1.37298                        flight path
## 1.37299                       path crashed
## 1.37305                  carring reporters
## 1.37313                         falcon dam
## 1.37314                        dam stalled
## 1.37317                          crashed 6
## 1.37318                               6 km
## 1.37322                 airport overloaded
## 1.37323                    overloaded snow
## 1.37329                        wings icing
## 1.37339                      san francisco
## 1.37340            francisco international
## 1.37341              international airport
## 1.37344                   aircraft crashed
## 1.37348                     redwood forest
## 1.37352                     mountain ridge
## 1.37353                          ridge 7.5
## 1.37354                          7.5 miles
## 1.37355                    miles southeast
## 1.37358                          half moon
## 1.37359                           moon bay
## 1.37362                       plane struck
## 1.37367                    king's mountain
## 1.37372                scattering wreckage
## 1.37376                          half mile
## 1.37384                  follow prescribed
## 1.37385              prescribed procedures
## 1.37389                instrument approach
## 1.37390                  approach american
## 1.37391                   american pianist
## 1.37392                    pianist william
## 1.37393                     william kapell
## 1.37394                          kapell 31
## 1.37395                          31 killed
## 1.37398                      plane stalled
## 1.37401                        landing due
## 1.37404                     improperly set
## 1.37405                       set controls
## 1.37406                      controls poor
## 1.37407                      poor approach
## 1.37408                approach techniques
## 1.37414                        flying crew
## 1.37419               published procedures
## 1.37424                 weather conditions
## 1.37425                 conditions crashed
## 1.37429                        rodeo pampa
## 1.37430                    pampa mountains
## 1.37436                           sucre 18
## 1.37437                           18 miles
## 1.37441                destination crashed
## 1.37448                  training exercise
## 1.37449                   exercise crashed
## 1.37452                      mt somosierra
## 1.37455                       poor weather
## 1.37456                 weather conditions
## 1.37462                  aircraft suffered
## 1.37463                 suffered downdraft
## 1.37466                      lost altitude
## 1.37472                   mountain shortly
## 1.37478               aircraft experienced
## 1.37479                   experienced loss
## 1.37490                    critical height
## 1.37494                         steep left
## 1.37495                          left hand
## 1.37500                       landing gear
## 1.37509                    unsafe altitude
## 1.37522                     temporary loss
## 1.37528                        left engine
## 1.37537                        engine fire
## 1.37538                       fire warning
## 1.37539               warning precipitated
## 1.37545                     forced landing
## 1.37548                        cargo plane
## 1.37554                       citrus fruit
## 1.37555                         fruit flew
## 1.37559                           8,000 ft
## 1.37560                        ft mountain
## 1.37561                   mountain crashed
## 1.37566                       cairo almaza
## 1.37567                     almaza airport
## 1.37570                   aircraft crashed
## 1.37574                  officer's housing
## 1.37582                  emergency landing
## 1.37589                       anderson air
## 1.37590                          air force
## 1.37591                         force base
## 1.37594                     guam descended
## 1.37598                         glide path
## 1.37601                       poor weather
## 1.37606                        crashed 1.5
## 1.37607                          1.5 miles
## 1.37608                        miles short
## 1.37612                        runway poor
## 1.37613                      poor approach
## 1.37614                approach procedures
## 1.37615               procedures performed
## 1.37621                      russian trade
## 1.37622                    trade delegates
## 1.37628                      plane crashed
## 1.37634                     showstorm flew
## 1.37642                   aircraft crashed
## 1.37643                          crashed 4
## 1.37644                          4 minutes
## 1.37651                        snow shower
## 1.37654                      aircraft lost
## 1.37655                      lost altitude
## 1.37663                    reasons unknown
## 1.37666                     aircraft broke
## 1.37672                           en route
## 1.37677                       london metal
## 1.37678                      metal fatigue
## 1.37679                        fatigue due
## 1.37683                        design flaw
## 1.37684                        flaw caused
## 1.37702                     nicknamed yoke
## 1.37703                         yoke peter
## 1.37712                       poor weather
## 1.37713                 weather conditions
## 1.37716                  aircraft collided
## 1.37720                  mountain shrouded
## 1.37729                       crew spotted
## 1.37751                       airplane hit
## 1.37754                     telephone pole
## 1.37757                 telegraphic cables
## 1.37758                     cables stalled
## 1.37766                       snow covered
## 1.37767                      covered field
## 1.37775                        poor flying
## 1.37776                  flying techniques
## 1.37786                      initial climb
## 1.37789                        jet fighter
## 1.37790                    fighter crashed
## 1.37793                      homes killing
## 1.37794                          killing 6
## 1.37795                           6 people
## 1.37798                       destroying 3
## 1.37799                            3 homes
## 1.37807                      beach airport
## 1.37814                        ifr landing
## 1.37821                         steep dive
## 1.37843                  aircraft possibly
## 1.37844                      possibly lost
## 1.37854                         steep dive
## 1.37857                        cargo plane
## 1.37858                      plane crashed
## 1.37876                    effect recovery
## 1.37881                   control resulted
## 1.37892                            de icer
## 1.37893                         icer boots
## 1.37896                            low air
## 1.37897                         air speeds
## 1.37905                         cargo hold
## 1.37921                       lost control
## 1.37930                      plane crashed
## 1.37931                         crashed 30
## 1.37932                              30 km
## 1.37933                           km south
## 1.37938                        plane broke
## 1.37943                     susitna valley
## 1.37946                      south central
## 1.37947                     central alaska
## 1.37955                       kesugi ridge
## 1.37965                 servicemen wearing
## 1.37966                 wearing parachutes
## 1.37967                 parachutes escaped
## 1.37974            disintegrating aircraft
## 1.37975                   aircraft crashed
## 1.37983                        test flight
## 1.37984                     flight crashed
## 1.37998                              12 12
## 1.37999                            12 1953
## 1.38006                  severe turbulence
## 1.38014                      rapid descent
## 1.38024                   sudden emergency
## 1.38027                undetermined origin
## 1.38030                    adverse weather
## 1.38031                 weather conditions
## 1.38032               conditions resulting
## 1.38035                      rapid descent
## 1.38046                    aircraft struck
## 1.38056                           8,000 ft
## 1.38059                           en route
## 1.38062                  accident occurred
## 1.38067                       low overcast
## 1.38068                overcast conditions
## 1.38080                         wind drift
## 1.38081                   drift correction
## 1.38088                      crashed short
## 1.38092                         runway hit
## 1.38095                    wall overturned
## 1.38098                        caught fire
## 1.38099                      fire improper
## 1.38100                improper procedures
## 1.38104                      landing pilot
## 1.38105                      pilot fatigue
## 1.38113                        cargo plane
## 1.38114                      plane crashed
## 1.38120                     mackay crashed
## 1.38126                         20 minutes
## 1.38129                    leaving bolling
## 1.38130                        bolling air
## 1.38131                          air force
## 1.38132                         force base
## 1.38139                       radio beacon
## 1.38142                        vfr waiting
## 1.38145                      ifr clearance
## 1.38150                       maintain vfr
## 1.38151                         vfr flight
## 1.38157                    poor visibility
## 1.38160                       crew fatigue
## 1.38161                    fatigue crashed
## 1.38166                       friar's peak
## 1.38170                  salinas mountains
## 1.38177                        landing due
## 1.38181                         dust storm
## 1.38182                     storm exploded
## 1.38187                           25 miles
## 1.38190                           adana 15
## 1.38191                         15 minutes
## 1.38198                        cargo plane
## 1.38199                      plane crashed
## 1.38203                          red river
## 1.38207                     final approach
## 1.38210                     aircraft broke
## 1.38219                             sea en
## 1.38220                           en route
## 1.38225                        cairo metal
## 1.38226                      metal fatigue
## 1.38227                        fatigue due
## 1.38231                        design flaw
## 1.38232                           flaw led
## 1.38252                     nicknamed yoke
## 1.38253                          yoke yoke
## 1.38254                        yoke midair
## 1.38255                   midair collision
## 1.38261                                4 1
## 1.38265                       rcaf harvard
## 1.38266                       harvard mark
## 1.38267                            mark ii
## 1.38270                         6,000 feet
## 1.38271                        feet thirty
## 1.38281                    harvard failure
## 1.38295                     proper lookout
## 1.38310                   harvard aircraft
## 1.38328                    takeoff shortly
## 1.38336                      plane crashed
## 1.38339                        lake batuco
## 1.38340                     batuco crashed
## 1.38347                 approach deviation
## 1.38353                    unknown reasons
## 1.38354                       reasons crew
## 1.38355                       crew fatigue
## 1.38363                      captain acted
## 1.38364                     acted contrary
## 1.38367                     company policy
## 1.38371                       required ifr
## 1.38372                       ifr approach
## 1.38385                           1 engine
## 1.38386                      engine failed
## 1.38394                  maintain airspeed
## 1.38395                   airspeed stalled
## 1.38401                         tree delay
## 1.38407                           1 engine
## 1.38410                   failure improper
## 1.38411                 improper emergency
## 1.38412               emergency procedural
## 1.38413                  procedural errors
## 1.38417                      pilot crashed
## 1.38426                             500 ft
## 1.38433                     trees.the crew
## 1.38437                         wrong fuel
## 1.38438                     fuel selection
## 1.38439           selection configueration
## 1.38443                     engines failed
## 1.38444                         failed due
## 1.38447                    fuel starvation
## 1.38450                  aircraft deviated
## 1.38457                           30 miles
## 1.38464                          mt cipãƒâ
## 1.38467                 navigational error
## 1.38470                     minimum safety
## 1.38471                      safety height
## 1.38481                        cargo plane
## 1.38482                          plane ran
## 1.38497                        fighter jet
## 1.38500                        cargo plane
## 1.38501                      plane crashed
## 1.38504                   takeoff elevator
## 1.38505                      elevator lock
## 1.38509                      removed prior
## 1.38512                    takeoff crashed
## 1.38513                         crashed en
## 1.38514                           en route
## 1.38517              unknown circumstances
## 1.38520                      plane ditched
## 1.38524                     atlantic ocean
## 1.38533                swimming passengers
## 1.38534                 passengers drowned
## 1.38535                        drowned due
## 1.38540               lifesaving equipment
## 1.38541                   equipment aboard
## 1.38542                  aboard negligence
## 1.38551                     fuel situation
## 1.38555                  flight progressed
## 1.38558                   aircraft crashed
## 1.38565                     engine failure
## 1.38569                     critical stage
## 1.38572                    takeoff ditched
## 1.38582                  chinese lachovlin
## 1.38583                       lachovlin la
## 1.38584                               la 7
## 1.38585                         7 military
## 1.38586                   military fighter
## 1.38587                   fighter aircraft
## 1.38595                            u.s air
## 1.38596                          air force
## 1.38599                        cargo plane
## 1.38600                         plane flew
## 1.38604                        mountain 35
## 1.38605                           35 miles
## 1.38606                    miles northeast
## 1.38609                    mcgrath crashed
## 1.38614                       poor weather
## 1.38615                   weather diverted
## 1.38620                        santa maria
## 1.38621                         maria flew
## 1.38622                      flew opposite
## 1.38628                       takeoff crew
## 1.38629                         crew error
## 1.38640                       normal climb
## 1.38677                        cargo plane
## 1.38678                      plane crashed
## 1.38679                         crashed en
## 1.38680                           en route
## 1.38681                      route crashed
## 1.38685                       mekong river
## 1.38690                  emergency landing
## 1.38693                encountering engine
## 1.38694                     engine failure
## 1.38702                  evacuate families
## 1.38705                   aircraft crashed
## 1.38706                         crashed 16
## 1.38707                           16 miles
## 1.38708                        miles south
## 1.38711                         mason city
## 1.38712                          city iowa
## 1.38713                           iowa due
## 1.38741                         heavy rain
## 1.38742                     rain divergent
## 1.38743                    divergent winds
## 1.38746                  strong downdrafts
## 1.38754                     ground crashed
## 1.38758                          north sea
## 1.38761                       rain showers
## 1.38764                         heavy seas
## 1.38770                      plane crashed
## 1.38774                     mountains crew
## 1.38781               navigation equipment
## 1.38782                  equipment crashed
## 1.38786                practice approaches
## 1.38789                      ellsworth air
## 1.38790                          air force
## 1.38791                         force base
## 1.38795                      sixth attempt
## 1.38798                      plane slammed
## 1.38804                       landing gear
## 1.38805                     gear retracted
## 1.38808                          flaps set
## 1.38811                         20 degrees
## 1.38820                   aircraft crashed
## 1.38827                      shannon river
## 1.38831                         crash site
## 1.38836                       2,500 metres
## 1.38847                    disaster rescue
## 1.38848                  rescue operations
## 1.38855                  plane's navigator
## 1.38861                      river managed
## 1.38870                partially submerged
## 1.38878                         fuel tanks
## 1.38886                         fuel fumes
## 1.38887                     fumes rendered
## 1.38892                   crew unconscious
## 1.38899                        rising tide
## 1.38900                       tide failure
## 1.38908             instrument indications
## 1.38909               indications properly
## 1.38912                    flap retraction
## 1.38928                             rio de
## 1.38929                         de janeiro
## 1.38932                  severe vibrations
## 1.38937                           1 engine
## 1.38941                       crew feather
## 1.38963                      plane crashed
## 1.38967                      guanabara bay
## 1.38968                           bay lack
## 1.38982              restricted visibility
## 1.38983                   visibility power
## 1.38988              inadvertently reduced
## 1.38993                     engine stalled
## 1.38999                        test flight
## 1.39000                     flight crashed
## 1.39007                          land crew
## 1.39008                         crew error
## 1.39009                      error landing
## 1.39014                   minimums crashed
## 1.39018                            alps 25
## 1.39019                           25 miles
## 1.39020                    miles northeast
## 1.39026                     french italian
## 1.39027                     italian border
## 1.39030                           en route
## 1.39033                  instrument flight
## 1.39034                        flight plan
## 1.39037                        pilot filed
## 1.39041                    cruising height
## 1.39048                 authorized minimum
## 1.39049                   minimum altitude
## 1.39050                  altitude required
## 1.39055                      mountains hit
## 1.39058                         east slope
## 1.39061                         mt sivukha
## 1.39062                    sivukha located
## 1.39063                         located 30
## 1.39064                              30 km
## 1.39068                         mana river
## 1.39071                       strong winds
## 1.39074                           en route
## 1.39075                         route crew
## 1.39076                         crew error
## 1.39079               aircraft disappeared
## 1.39080          disappeared approximately
## 1.39081                  approximately 300
## 1.39082                          300 miles
## 1.39083                         miles east
## 1.39086                         ocean city
## 1.39087                      city maryland
## 1.39099                      found crashed
## 1.39129                    minimum control
## 1.39130                      control speed
## 1.39135                directional control
## 1.39139                         ground run
## 1.39140                    run disappeared
## 1.39146                           en route
## 1.39147                     route wreckage
## 1.39148                     wreckage found
## 1.39149                           found 12
## 1.39150                              12 04
## 1.39151                            04 1954
## 1.39154                   aircraft crashed
## 1.39158                       ils approach
## 1.39161                   berlin premature
## 1.39164            unauthorized instrument
## 1.39165                 instrument descent
## 1.39173                     permit terrain
## 1.39174                  terrain clearance
## 1.39175                  clearance crashed
## 1.39181                              30 km
## 1.39182                           km north
## 1.39185                      luang prabang
## 1.39191                  commercial flight
## 1.39192                         flight hit
## 1.39207                        pitot tubes
## 1.39208                       tubes heater
## 1.39209                      heater system
## 1.39224                      display wrong
## 1.39225                   wrong parameters
## 1.39232                   speed indicators
## 1.39235                      plane crashed
## 1.39238                    approach lights
## 1.39245                     fourth landing
## 1.39246                    landing attempt
## 1.39249                   idlewild airport
## 1.39250                    airport sinking
## 1.39253                        jamaica bay
## 1.39256                   erratic approach
## 1.39269                     avoid striking
## 1.39274                contributing factor
## 1.39277                      pilot fatigue
## 1.39278                        fatigue due
## 1.39284            difficult circumstances
## 1.39285            circumstances including
## 1.39290                         half hours
## 1.39294                    holding pattern
## 1.39297                        cargo plane
## 1.39298                      plane crashed
## 1.39304                           en route
## 1.39305                      route ditched
## 1.39309                  monongahela river
## 1.39315                    fuel inadequate
## 1.39316                  inadequate flight
## 1.39317                    flight planning
## 1.39318              planning contributing
## 1.39319               contributing factors
## 1.39322                    inadequate crew
## 1.39323                   crew supervision
## 1.39326                   training crashed
## 1.39327                      crashed short
## 1.39331                     runway landing
## 1.39332                       landing hard
## 1.39333                         hard pilot
## 1.39334                        pilot error
## 1.39335                       error errors
## 1.39348                     final approach
## 1.39370                      aircraft sank
## 1.39375                       ground short
## 1.39379                     runway crashed
## 1.39380                    crashed shortly
## 1.39385                      irkutsk magan
## 1.39386                      magan airport
## 1.39395                  emergency landing
## 1.39398                   skwentna airport
## 1.39405                         mile short
## 1.39409                 runway disappeared
## 1.39414                   training mission
## 1.39417                    planes collided
## 1.39420                      midair midair
## 1.39421                   midair collision
## 1.39424                            700 900
## 1.39425                           900 feet
## 1.39428                               dc 3
## 1.39429                          3 entered
## 1.39432                  airport's control
## 1.39433                      control space
## 1.39441                     tower thirteen
## 1.39442                    thirteen killed
## 1.39451                               dc 3
## 1.39458                          wing anti
## 1.39459                           anti ice
## 1.39460                     ice capability
## 1.39461                    capability flew
## 1.39464                   unexpected heavy
## 1.39465                     heavy freezing
## 1.39466                      freezing rain
## 1.39469                              ice 4
## 1.39470                           4 inches
## 1.39471                       inches thick
## 1.39472                       thick formed
## 1.39476                  emergency landing
## 1.39481                    pilot requested
## 1.39482                   requested lights
## 1.39500                     confuse pilots
## 1.39505                   lighting circuit
## 1.39512                        plane crash
## 1.39513                       crash landed
## 1.39514                       landed short
## 1.39541                     passenger died
## 1.39547                           30 hours
## 1.39551                      complete loss
## 1.39554                   elevator control
## 1.39557                   severe vibration
## 1.39560                experienced shortly
## 1.39566                         des moines
## 1.39573                        steep climb
## 1.39580                    captain applied
## 1.39588                         steep dive
## 1.39593                      reduced power
## 1.39602                    aircraft safely
## 1.39606                   emergency wheels
## 1.39612                         corn field
## 1.39620              maintenance personnel
## 1.39624               scheduled inspection
## 1.39636              unairworthy condition
## 1.39641                      complete loss
## 1.39644                   elevator control
## 1.39649                        cargo plane
## 1.39650                      plane crashed
## 1.39654                      caqueta river
## 1.39659                       land crashed
## 1.39663                      field shortly
## 1.39668                   aircraft crashed
## 1.39683                    poorly executed
## 1.39684                     executed steep
## 1.39688                       port carried
## 1.39695                       low altitude
## 1.39696                   altitude crashed
## 1.39697                    crashed shortly
## 1.39704                        wing failed
## 1.39707                        design flaw
## 1.39711                           wing led
## 1.39714                     fatigue cracks
## 1.39717                       wing failure
## 1.39718                    failure crashed
## 1.39725              approach navigational
## 1.39726                 navigational error
## 1.39727                          error due
## 1.39733                    radio equipment
## 1.39741                      aircraft flew
## 1.39744                      path directly
## 1.39747                    sandia mountain
## 1.39754                  initially blaming
## 1.39759               intentionally flying
## 1.39770                        cab changed
## 1.39780                    reasons unknown
## 1.39792                         flux gauge
## 1.39793                      gauge compass
## 1.39803                       landing gear
## 1.39815                         belly land
## 1.39820               propellers separated
## 1.39825                   fuselage killing
## 1.39828                     fight engineer
## 1.39836                        flight crew
## 1.39837                   crew compartment
## 1.39840                sufficient quantity
## 1.39845               captain apprehensive
## 1.39856               aircraft immediately
## 1.39860                       landing gear
## 1.39861                     gear retracted
## 1.39864                   fractured rubber
## 1.39865                        rubber hose
## 1.39869                        port engine
## 1.39870                  engine connecting
## 1.39873                         rocker box
## 1.39879                    lower cylinders
## 1.39883                      collector box
## 1.39884                         box caused
## 1.39885                       caused smoke
## 1.39895                   crew compartment
## 1.39916                      airport fence
## 1.39920                        spark plugs
## 1.39921                plugs inappropriate
## 1.39925                        engine type
## 1.39926                    type overloaded
## 1.39930                    aborted landing
## 1.39931                    landing attempt
## 1.39932                        attempt due
## 1.39936                   unlocked landing
## 1.39937                       landing gear
## 1.39947                       pole crashed
## 1.39950                       burned pilot
## 1.39951                        pilot error
## 1.39952                     error improper
## 1.39968                       landing gear
## 1.39969                       gear locking
## 1.39970                  locking mechanism
## 1.39977                        twin engine
## 1.39978                    engine aircraft
## 1.39979                       aircraft hit
## 1.39985                           cerro el
## 1.39986                          el sabino
## 1.39987                     sabino located
## 1.39990                      ciudad valles
## 1.39993                       airplane hit
## 1.39999                          cerro del
## 1.40000                          del cabre
## 1.40001                      cabre located
## 1.40004                              20 km
## 1.40005                       km northwest
## 1.40011                        cargo plane
## 1.40012                      plane crashed
## 1.40018                  platinum shipment
## 1.40019                    shipment aboard
## 1.40020                    aboard wreckage
## 1.40021                     wreckage found
## 1.40027                      plane crashed
## 1.40028                       crashed 1.25
## 1.40029                         1.25 miles
## 1.40030                        miles short
## 1.40038                        land crew's
## 1.40039                 crew's inattention
## 1.40042                 flight instruments
## 1.40045                     approach pilot
## 1.40046                      pilot sensory
## 1.40047                   sensory illusion
## 1.40052                   false impression
## 1.40056                aircraft's altitude
## 1.40059                  aircraft returned
## 1.40062                    hickam airfield
## 1.40068                    frequency radio
## 1.40069                 radio transmitters
## 1.40081                           pali kea
## 1.40082                           kea peak
## 1.40083                            peak 15
## 1.40084                           15 miles
## 1.40085                    miles northwest
## 1.40088              honolulu navigational
## 1.40089                 navigational error
## 1.40093                       crew brought
## 1.40096                            plane 8
## 1.40097                            8 miles
## 1.40098                        miles north
## 1.40102                  intended position
## 1.40105                      plane ditched
## 1.40106                         ditched 35
## 1.40107                           35 miles
## 1.40111                       oregon coast
## 1.40116                           3 engine
## 1.40119                    propeller broke
## 1.40122                     causing severe
## 1.40123                     severe control
## 1.40124               control difficulties
## 1.40127                         plane sank
## 1.40130                         20 minutes
## 1.40131                       minutes loss
## 1.40138                  maintain altitude
## 1.40145                        3 propeller
## 1.40150                     wrenching free
## 1.40154                            3 power
## 1.40155                      power package
## 1.40160                      named clipper
## 1.40161                     clipper united
## 1.40165                        cargo plane
## 1.40166                         plane flew
## 1.40182                           en route
## 1.40183                     route suddenly
## 1.40184                      suddenly dove
## 1.40188               ground unintentional
## 1.40189             unintentional movement
## 1.40193                         4 throttle
## 1.40197                      reverse range
## 1.40201                    breaking ground
## 1.40207                  engines operating
## 1.40211                       power output
## 1.40225                 explosion occurred
## 1.40228                        18,000 feet
## 1.40233                          china sea
## 1.40236                     resulting fire
## 1.40242                     starboard wing
## 1.40247                     eventually led
## 1.40250                    total hydraulic
## 1.40253                 electrical failure
## 1.40254                      failure smoke
## 1.40255                       smoke filled
## 1.40261                      plane crashed
## 1.40266                political terrorism
## 1.40269                    aircraft worker
## 1.40273                  incendiary device
## 1.40277                    starboard wheel
## 1.40278                        wheel wella
## 1.40282                     airport worker
## 1.40287                      named kashmir
## 1.40288                   kashmir princess
## 1.40291                       aircraft hit
## 1.40296                         mt koupãƒâ
## 1.40297                    koupãƒâ located
## 1.40300                              80 km
## 1.40301                           km north
## 1.40304                    douala wreckage
## 1.40305                     wreckage found
## 1.40308                          10 months
## 1.40309                     months crashed
## 1.40315                          jipe lake
## 1.40321                     mt kilimanjaro
## 1.40322                kilimanjaro failure
## 1.40325                  follow prescribed
## 1.40326                   prescribed route
## 1.40329                 procedures ditched
## 1.40348             prevailing unfavorable
## 1.40349             unfavorable conditions
## 1.40355                       aircraft hit
## 1.40358                 instrument landing
## 1.40359                   landing building
## 1.40365                          rail yard
## 1.40368                        cargo plane
## 1.40369                      plane crashed
## 1.40374                       land crashed
## 1.40377                     final approach
## 1.40378                     approach pilot
## 1.40379                      pilot fatigue
## 1.40387              recommended procedure
## 1.40390                   instrument final
## 1.40391                     final approach
## 1.40398                  height prescribed
## 1.40402                     final approach
## 1.40403                     approach chart
## 1.40404                         chart lost
## 1.40415                        caught fire
## 1.40416                       fire crashed
## 1.40422                         located 39
## 1.40423                              39 km
## 1.40430                  zimathan district
## 1.40433                           en route
## 1.40437                instrument approach
## 1.40440                       aircraft hit
## 1.40448                    airport boundry
## 1.40449                      boundry fence
## 1.40450                    fence momentary
## 1.40451           momentary disorientation
## 1.40452              disorientation caused
## 1.40458                   visual reference
## 1.40462                       final visual
## 1.40463                       visual phase
## 1.40467                 approach resulting
## 1.40471                     increased rate
## 1.40481                    effect recovery
## 1.40487                     london england
## 1.40490                           tel aviv
## 1.40493                   aircraft drifted
## 1.40496                 bulgarian airspace
## 1.40503                      bulgarian jet
## 1.40504                       jet fighters
## 1.40507                 navigational error
## 1.40514                    incorrect radio
## 1.40515                      radio compass
## 1.40516                 compass indication
## 1.40517                     indication due
## 1.40523              thunderstorm activity
## 1.40529                 aircraft attempted
## 1.40532                  emergency landing
## 1.40536                  military airstrip
## 1.40539                         fire broke
## 1.40545                           2 engine
## 1.40549                     wing separated
## 1.40555                        crashed 1.5
## 1.40556                          1.5 miles
## 1.40560                runway installation
## 1.40564               unairworthy cylinder
## 1.40569                           2 engine
## 1.40575                uncontrollable fire
## 1.40585                      engine caught
## 1.40588                           fire due
## 1.40592                          fuel leak
## 1.40593                       leak leading
## 1.40602                  air participating
## 1.40606                       u.s military
## 1.40607                  military exercise
## 1.40611                    planes collided
## 1.40622                      planes pulled
## 1.40629                     engine trouble
## 1.40632                  accident occurred
## 1.40638                         4,000 feet
## 1.40639                         feet forty
## 1.40642                        aboard 7841
## 1.40645                          20 aboard
## 1.40646                        aboard 3222
## 1.40649                         killed hit
## 1.40650                        hit caparao
## 1.40651                   caparao mountain
## 1.40654                           en route
## 1.40655                            route 1
## 1.40656                             1 hour
## 1.40663                      follow flight
## 1.40664                        flight plan
## 1.40667                        cargo plane
## 1.40668                       plane lifted
## 1.40685                        runway flew
## 1.40688                         mount popa
## 1.40689                       popa located
## 1.40692                              45 km
## 1.40693                            km east
## 1.40698                     plane returned
## 1.40705                           2 engine
## 1.40706                     engine stalled
## 1.40709                        crashed 200
## 1.40710                          200 yards
## 1.40711                        yards short
## 1.40717                    parked aircraft
## 1.40723               captain's commitment
## 1.40731                visual confirmation
## 1.40735                   runway alignment
## 1.40738                     engine failure
## 1.40739                failure immediately
## 1.40742                    takeoff crashed
## 1.40746                 cameroon mountains
## 1.40750                     wing separated
## 1.40751                      separated due
## 1.40754                  severe turbulence
## 1.40757               reasons undetermined
## 1.40761                      engine failed
## 1.40774                  maintain altitude
## 1.40789                contributing factor
## 1.40797                     pilot's vacuum
## 1.40798                      vacuum driven
## 1.40799                        driven gyro
## 1.40800                   gyro instruments
## 1.40804                    knowledge crash
## 1.40805                       crash landed
## 1.40812                     fourth landing
## 1.40813                    landing attempt
## 1.40820                         low struck
## 1.40827                      crashed 1,200
## 1.40828                        1,200 yards
## 1.40829                        yards short
## 1.40833                       runway pilot
## 1.40834                        pilot error
## 1.40850                      runway lights
## 1.40853                        view failed
## 1.40857                 adequate reference
## 1.40861                 flight instruments
## 1.40864                        cargo plane
## 1.40865                         plane lost
## 1.40866                             lost 3
## 1.40867                          3 engines
## 1.40873                      pacific ocean
## 1.40881                        engines due
## 1.40884                     incorrect fuel
## 1.40885                        fuel system
## 1.40886                  system management
## 1.40889                  faulty restarting
## 1.40890                 restarting methods
## 1.40901                        cargo plane
## 1.40902                      plane ditched
## 1.40906                         thoa river
## 1.40909                      pilot radioed
## 1.40920                          lake fuel
## 1.40921                    fuel exhaustion
## 1.40922                 exhaustion crashed
## 1.40925                 adjacent mountains
## 1.40930                  emergency landing
## 1.40934                        engine fire
## 1.40937                   aircraft crashed
## 1.40940                      cloud covered
## 1.40941                   covered medicine
## 1.40942                       medicine bow
## 1.40943                           bow peak
## 1.40946                           en route
## 1.40949                       plane failed
## 1.40954                          12,013 ft
## 1.40955                            ft peak
## 1.40958                            75 feet
## 1.40961                     pilot deviated
## 1.40966                    reasons unknown
## 1.40973                    carbon monoxide
## 1.40974                 monoxide emanating
## 1.40978                       faulty cabin
## 1.40979                       cabin heater
## 1.40983                     proven crashed
## 1.40986                    kahlenberg hill
## 1.40994                      aircraft flew
## 1.41002                     outbound track
## 1.41008                 prescribed minimum
## 1.41009                  minimum altitutde
## 1.41010                    altitutde pilot
## 1.41011                        pilot error
## 1.41014                   aircraft crashed
## 1.41015                         crashed 11
## 1.41016                         11 minutes
## 1.41022                   denver stapleton
## 1.41023                  stapleton airport
## 1.41024                          airport 8
## 1.41025                            8 miles
## 1.41026                         miles east
## 1.41029                longmont detonation
## 1.41033                      dynamite bomb
## 1.41038                            4 cargo
## 1.41039                         cargo hold
## 1.41043                          john jack
## 1.41044                       jack gilbert
## 1.41045                     gilbert graham
## 1.41049                   mother's luggage
## 1.41054                     collect 37,500
## 1.41059                     delayed flight
## 1.41060                      flight caused
## 1.41067                          flat land
## 1.41074                     planned graham
## 1.41096                               1 11
## 1.41097                              11 56
## 1.41098                         56 crashed
## 1.41104                   mount charleston
## 1.41105                      charleston 30
## 1.41106                           30 miles
## 1.41107                          miles wnw
## 1.41110                          las vegas
## 1.41114                      storm crashed
## 1.41119                        flight prop
## 1.41120                       prop failure
## 1.41121                failure maintenance
## 1.41122                  maintenance error
## 1.41127                     drag resulting
## 1.41131                 improperly indexed
## 1.41132                  indexed propeller
## 1.41133                   propeller blades
## 1.41140                 military transport
## 1.41141                  transport crashed
## 1.41148                    central airport
## 1.41151                           iwo jima
## 1.41152                   jima malfunction
## 1.41158                   engine propeller
## 1.41166                   electrical short
## 1.41167                      short circuit
## 1.41168                   circuit occurred
## 1.41171                   aircraft crashed
## 1.41178                           5 degree
## 1.41179                        degree nose
## 1.41182                  attitude abnormal
## 1.41183                      abnormal nose
## 1.41186                     trim condition
## 1.41192                      corrected due
## 1.41196                unknown malfunction
## 1.41197                malfunction shortly
## 1.41204                           1 engine
## 1.41205                        engine lost
## 1.41206                         lost power
## 1.41209                          crew shut
## 1.41213                     hydraulic pump
## 1.41218                       landing gear
## 1.41221                    stop retracting
## 1.41222                 retracting halfway
## 1.41225                     resulting drag
## 1.41226                        drag caused
## 1.41231                      lose altitude
## 1.41234                          left wing
## 1.41235                        wing struck
## 1.41241                      plane crashed
## 1.41244                     burned failure
## 1.41248                      front bearing
## 1.41252                    propeller shaft
## 1.41253                      shaft leading
## 1.41259                     reduction gear
## 1.41262                     left propeller
## 1.41267                     sudden failure
## 1.41271                        left engine
## 1.41272                        engine flew
## 1.41276                      mountain wave
## 1.41280                       sikhote alin
## 1.41281                      alin mountain
## 1.41282                     mountain range
## 1.41285                           en route
## 1.41288                        cargo plane
## 1.41291                      carrying mail
## 1.41295                  flight structural
## 1.41296                 structural failure
## 1.41297                  failure resulting
## 1.41301                      violent pitch
## 1.41307                     erratic action
## 1.41310             nonconforming elevator
## 1.41311                       elevator tab
## 1.41312                       tab controls
## 1.41313                   controls crashed
## 1.41318                      plane crashed
## 1.41330                       crew allowed
## 1.41345                         glide path
## 1.41348                    reasons unknown
## 1.41351                   crew encountered
## 1.41352                  encountered local
## 1.41353                          local fog
## 1.41356              restricted visibility
## 1.41360                     final approach
## 1.41364                       ils approach
## 1.41367                    missed approach
## 1.41368                 approach procedure
## 1.41383                        cargo plane
## 1.41384                         plane flew
## 1.41392                       pilot relied
## 1.41395                inadequate external
## 1.41396                    external visual
## 1.41397                   visual reference
## 1.41404                  paid insufficient
## 1.41405             insufficient attention
## 1.41411                 irregular approach
## 1.41412                 approach procedure
## 1.41413                  procedure carried
## 1.41420                   command deprived
## 1.41429                      safe approach
## 1.41438                        time height
## 1.41441                      position loss
## 1.41446                           2 engine
## 1.41447                engine necessitated
## 1.41450                       forced crash
## 1.41451                      crash landing
## 1.41455                    railway station
## 1.41456                    station failure
## 1.41459                    maintain height
## 1.41462                          night due
## 1.41469                   starboard engine
## 1.41472                   icing conditions
## 1.41485                        bad weather
## 1.41486                 weather conditions
## 1.41489                       aircraft hit
## 1.41490                          hit trees
## 1.41496                       snow covered
## 1.41504                     tatra mountain
## 1.41505                     mountain range
## 1.41509                          heavy fog
## 1.41513                     final approach
## 1.41521                      hit telephone
## 1.41522                    telephone lines
## 1.41530                               2 km
## 1.41531                           km short
## 1.41535                        runway loss
## 1.41538                        control due
## 1.41541                 improperly secured
## 1.41542                      secured heavy
## 1.41543                        heavy cargo
## 1.41544                     cargo breaking
## 1.41545                     breaking loose
## 1.41556                    takeoff crashed
## 1.41560                    ferrying flight
## 1.41561                     flight soldier
## 1.41564                     fortune harold
## 1.41565                      harold whitey
## 1.41566                        whitey dahl
## 1.41567                        dahl killed
## 1.41568                     killed crashed
## 1.41571                        sunol ridge
## 1.41584                      alameda naval
## 1.41585                          naval air
## 1.41586                        air station
## 1.41595                    holding pattern
## 1.41601                       radio beacon
## 1.41607                unprescribed manner
## 1.41614                      luqua airport
## 1.41617                        malta bound
## 1.41628                        left engine
## 1.41629                     engine shortly
## 1.41642                      cliffs engine
## 1.41643                     engine failure
## 1.41644                        failure due
## 1.41650                   boost enrichment
## 1.41651                 enrichment capsule
## 1.41662                     leftward swing
## 1.41669                     rudder failure
## 1.41683                           1 engine
## 1.41686                     flight crashed
## 1.41690                        approach 18
## 1.41691                           18 miles
## 1.41692                           miles se
## 1.41695                      cairo pilot's
## 1.41696               pilot's inexperience
## 1.41699                     ils approaches
## 1.41700                approaches improper
## 1.41701                  improper approach
## 1.41702                      approach crew
## 1.41703                         crew error
## 1.41704                         error crew
## 1.41705                       crew fatigue
## 1.41706                    fatigue crashed
## 1.41707                    crashed shortly
## 1.41712                           15 miles
## 1.41715                      aleppo double
## 1.41716                      double engine
## 1.41717                     engine failure
## 1.41721                thunderstorm struck
## 1.41722                        struck lash
## 1.41723                        lash golath
## 1.41724                    golath mountain
## 1.41727                           en route
## 1.41728                        route pilot
## 1.41729                        pilot error
## 1.41743                     improper flare
## 1.41746                     landing caused
## 1.41751                     bounce causing
## 1.41763                       plane veered
## 1.41770                instrument approach
## 1.41778                        cargo plane
## 1.41779                    plane permitted
## 1.41787                    approved safety
## 1.41788                      safety height
## 1.41795                  aircraft striking
## 1.41800                        cargo plane
## 1.41801                      plane crashed
## 1.41802                         crashed en
## 1.41803                           en route
## 1.41812                    loaded aircraft
## 1.41822               exceptionally severe
## 1.41823                     severe weather
## 1.41824                 weather conditions
## 1.41827                            1000 ft
## 1.41834                       hundred feet
## 1.41838                    terrain crashed
## 1.41839                    crashed shortly
## 1.41845                     aircraft yawed
## 1.41851                    crashed shortly
## 1.41857                       fire warning
## 1.41858                   warning occurred
## 1.41863                           1 engine
## 1.41869                       fire warning
## 1.41873                     failed exhaust
## 1.41874                  exhaust connector
## 1.41875                    connector clamp
## 1.41879                        left engine
## 1.41884                      adjacent fire
## 1.41885                     fire detecting
## 1.41886                     detecting unit
## 1.41889                   windmilling left
## 1.41890                     left propeller
## 1.41893                   extended landing
## 1.41894                       landing gear
## 1.41898                      takeoff flaps
## 1.41899                     flaps produced
## 1.41900                produced sufficient
## 1.41901                    sufficient drag
## 1.41906                      airplane lose
## 1.41907                      lose altitude
## 1.41914            uncoordinated emergency
## 1.41915                   emergency action
## 1.41920                         short time
## 1.41929             aircraft configuration
## 1.41932                insurmountable drag
## 1.41935               aircraft experienced
## 1.41936                experienced extreme
## 1.41937                  extreme buffeting
## 1.41951                        mcchord afb
## 1.41955                    plane continued
## 1.41958                     loose altitude
## 1.41966                        puget sound
## 1.41967                          sound 4.7
## 1.41968                       4.7 nautical
## 1.41969                     nautical miles
## 1.41970                    miles southwest
## 1.41975                         plane sank
## 1.41978                         15 minutes
## 1.41981                 incorrect analysis
## 1.41984                 control difficulty
## 1.41992                         wing flaps
## 1.41999                  flight engineer's
## 1.42000                 engineer's failure
## 1.42005                        engine cowl
## 1.42006                         cowl flaps
## 1.42020                    extremely short
## 1.42021                       short period
## 1.42027                   decision crashed
## 1.42028                         crashed en
## 1.42029                           en route
## 1.42036                     pilot's action
## 1.42039                  continuing flight
## 1.42042                 instrument weather
## 1.42043                 weather conditions
## 1.42047                        planned vfr
## 1.42048                         vfr flight
## 1.42052                      mountain pass
## 1.42064                       plane struck
## 1.42089            stansted overcorrection
## 1.42106                   aircraft touched
## 1.42111                    excessive speed
## 1.42112                      speed bounced
## 1.42123                   remaining runway
## 1.42124                      runway length
## 1.42130                      plane overran
## 1.42141                        steep slope
## 1.42146                             cf 100
## 1.42151                       canadian air
## 1.42152                        air defense
## 1.42153                    defense command
## 1.42161             unidentified transport
## 1.42162                    transport plane
## 1.42163                       plane flying
## 1.42172                      crew's oxygen
## 1.42173                      oxygen system
## 1.42174               system malfunctioned
## 1.42181                        jet crashed
## 1.42185                   convent operated
## 1.42189                          grey nuns
## 1.42196                          680 miles
## 1.42199                    hour destroying
## 1.42203                           story 70
## 1.42208                       plane struck
## 1.42209                       struck trees
## 1.42220                           8,500 ft
## 1.42223                      sole survivor
## 1.42224                   survivor roberto
## 1.42225                     roberto obando
## 1.42235                     passenger fell
## 1.42248                          1.5 hours
## 1.42257                      pilot radioed
## 1.42261                        2 propeller
## 1.42278                       plane caught
## 1.42279                        caught fire
## 1.42285                     atlantic ocean
## 1.42286                    ocean vibration
## 1.42287                vibration resulting
## 1.42291           uncontrollable propeller
## 1.42292                   propeller caused
## 1.42297                        inside wing
## 1.42298                   wing attachments
## 1.42307                          fuel tank
## 1.42311                         dump chute
## 1.42312                      chute causing
## 1.42315                uncontrollable fire
## 1.42316                          fire loss
## 1.42321                    airspeed caused
## 1.42325              aircraft encountering
## 1.42328         unpredictable thunderstorm
## 1.42329                  thunderstorm cell
## 1.42336                    sudden reversal
## 1.42339                     wind direction
## 1.42340                    direction heavy
## 1.42341                         heavy rain
## 1.42345               downdraft conditions
## 1.42348                       twa aircraft
## 1.42349                    aircraft flying
## 1.42352                        los angeles
## 1.42355                        kansas city
## 1.42359                    united aircraft
## 1.42360                    aircraft flying
## 1.42363                        los angeles
## 1.42366                   chicago collided
## 1.42370                       grand canyon
## 1.42377                            320 mph
## 1.42384              uncontrolled airspace
## 1.42391                               dc 7
## 1.42397               constellation killed
## 1.42428                  evidence suggests
## 1.42442                          factors 1
## 1.42443                      1 intervening
## 1.42444                 intervening clouds
## 1.42445                    clouds reducing
## 1.42446                      reducing time
## 1.42449                  visual separation
## 1.42450                       separation 2
## 1.42451                           2 visual
## 1.42452                 visual limitations
## 1.42453                    limitations due
## 1.42456                 cockpit visibility
## 1.42457                       visibility 3
## 1.42458                    3 preoccupation
## 1.42461                     normal cockpit
## 1.42462                     cockpit duties
## 1.42475                          air route
## 1.42476                      route traffic
## 1.42477                    traffic centers
## 1.42480                       track planes
## 1.42498                  montreal cruising
## 1.42511                           4 engine
## 1.42517                        4 propeller
## 1.42518                    propeller broke
## 1.42522                     blade disabled
## 1.42526                           3 engine
## 1.42531                   fuselage killing
## 1.42536                  emergency landing
## 1.42542                    windsor ontario
## 1.42543                    ontario crashed
## 1.42549                          2 minutes
## 1.42555                        mcguire air
## 1.42556                          air force
## 1.42557                         force base
## 1.42561              thunderstorm activity
## 1.42565                    time microburst
## 1.42566               microburst windshear
## 1.42574                          san diego
## 1.42577                          zãƒâ rich
## 1.42581                        york gander
## 1.42586                         crew broke
## 1.42590                         gca runway
## 1.42591                          runway 23
## 1.42592                        23 approach
## 1.42595                establishing visual
## 1.42596                   visual reference
## 1.42602                          runway 05
## 1.42603                        05 approach
## 1.42606                       plane banked
## 1.42607                     banked sharply
## 1.42608                    sharply dropped
## 1.42611                      crashed error
## 1.42620                   abnormally steep
## 1.42624                     final approach
## 1.42625                   approach crashed
## 1.42632                         rio cuarto
## 1.42640                         descend en
## 1.42641                           en route
## 1.42644                 justifiable reason
## 1.42648                   minimum altitude
## 1.42649                altitude prescribed
## 1.42653                       night flight
## 1.42657                 weather conditions
## 1.42665                         follow ifr
## 1.42666                      ifr procedure
## 1.42667                   procedure struck
## 1.42668                          struck mt
## 1.42669                         mt pindaya
## 1.42674                   aircraft crashed
## 1.42678                    missed approach
## 1.42681                     crew executing
## 1.42688                   increasing power
## 1.42691                  changing attitude
## 1.42692                 attitude resulting
## 1.42700                    missed approach
## 1.42701                    approach midair
## 1.42702                   midair collision
## 1.42705                      planes landed
## 1.42706                      landed safely
## 1.42707                     safely failure
## 1.42728                  emergency landing
## 1.42736                     gear retracted
## 1.42739                      plane bounced
## 1.42753                     flames crashed
## 1.42756                           en route
## 1.42770                    adverse weather
## 1.42777                  maintain adequate
## 1.42778                   adequate control
## 1.42784                  plane disappeared
## 1.42794                          royal air
## 1.42795                          air force
## 1.42796                         force base
## 1.42801                        mcguire air
## 1.42802                          air force
## 1.42803                         force base
## 1.42811                   aircraft ditched
## 1.42815                      pacific ocean
## 1.42822                      san francisco
## 1.42835                           4 engine
## 1.42838                   aircraft circled
## 1.42842                          u.s coast
## 1.42843                        coast guard
## 1.42844                       guard cutter
## 1.42845               cutter pontchartrain
## 1.42848                      ocean station
## 1.42849                   station november
## 1.42858                successful ditching
## 1.42862                casualties probable
## 1.42866                 initial mechanical
## 1.42867                 mechanical failure
## 1.42870               precluded feathering
## 1.42874                        1 propeller
## 1.42878              subsequent mechanical
## 1.42879                 mechanical failure
## 1.42885                      complete loss
## 1.42892                           4 engine
## 1.42904                      named clipper
## 1.42905                  clipper sovereign
## 1.42911                        cargo plane
## 1.42912                      plane crashed
## 1.42942                    aircraft struck
## 1.42943                       struck trees
## 1.42950                           km short
## 1.42953                        runway shot
## 1.42958                        israeli air
## 1.42959                          air force
## 1.42966                 aircraft descended
## 1.42970                     ils glideslope
## 1.42983                  captain misjudged
## 1.42994                  experienced icing
## 1.42995                         icing lost
## 1.42996                      lost altitude
## 1.43001               hommelfjell mountain
## 1.43002                 mountain unusually
## 1.43003                    unusually heavy
## 1.43004                        heavy icing
## 1.43008               aircraft encountered
## 1.43009                 encountered severe
## 1.43010                   severe downdraft
## 1.43011              downdraft immediately
## 1.43012                  immediately prior
## 1.43021                contributing factor
## 1.43024                 unsuccessful belly
## 1.43025                      belly landing
## 1.43030                       flat terrain
## 1.43037                        fuel system
## 1.43038                         system hit
## 1.43039                             hit el
## 1.43040                           el rucio
## 1.43041                     rucio mountain
## 1.43044                           6,200 ft
## 1.43050                        clouds lack
## 1.43053                 cockpit discipline
## 1.43054                  discipline flight
## 1.43060                    excessively low
## 1.43061                       low altitude
## 1.43065                         route lost
## 1.43066                      lost altitude
## 1.43074                       house failed
## 1.43079                    reasons unknown
## 1.43082                  aircraft's slight
## 1.43083                        slight loss
## 1.43106                 altitude orchestra
## 1.43109                    opera conductor
## 1.43110                    conductor guido
## 1.43111                     guido cantelli
## 1.43112                        cantelli 36
## 1.43116                     killed crashed
## 1.43120                      field shortly
## 1.43126                              12 km
## 1.43127                           km north
## 1.43131                     airport struck
## 1.43132                       struck silla
## 1.43133                           silla de
## 1.43134                         de caracas
## 1.43135                   caracas mountain
## 1.43138                         6,700 feet
## 1.43145               maiquetia navigation
## 1.43146                   navigation error
## 1.43152                  follow prescribed
## 1.43153                prescribed approach
## 1.43154                approach procedures
## 1.43155                      procedures st
## 1.43156                           st louis
## 1.43157                     louis cardinal
## 1.43158                cardinal outfielder
## 1.43159                 outfielder charlie
## 1.43160                      charlie peete
## 1.43161                           peete 27
## 1.43162                          27 killed
## 1.43165                   starboard engine
## 1.43166                      engine failed
## 1.43167                     failed shortly
## 1.43173                        plane crash
## 1.43176                       quetame hill
## 1.43177                          hill 25km
## 1.43178                     25km northwest
## 1.43181                      santa cecilia
## 1.43182                    cecilia airport
## 1.43183                   airport complete
## 1.43184                   complete failure
## 1.43188                   starboard engine
## 1.43189                         engine due
## 1.43196                 lubricating system
## 1.43197                system recklessness
## 1.43207                     closed airport
## 1.43213                       poor weather
## 1.43214                 weather conditions
## 1.43222                  aircraft departed
## 1.43223                 departed vancouver
## 1.43224                       vancouver en
## 1.43225                           en route
## 1.43230                         50 minutes
## 1.43234                     pilot reported
## 1.43241                           2 engine
## 1.43253                          3 engines
## 1.43256               aircraft encountered
## 1.43257                 encountered severe
## 1.43258                       severe icing
## 1.43259                   icing turbulence
## 1.43283                           12 miles
## 1.43284                        miles south
## 1.43288                    assigned airway
## 1.43291                      plane crashed
## 1.43295                       mount slesse
## 1.43305                              05 10
## 1.43306                            10 1957
## 1.43320                   memorial crashed
## 1.43324                        steep angle
## 1.43330                       pilot acting
## 1.43350                       aircraft hit
## 1.43353                        ground left
## 1.43354                          left wing
## 1.43358                     wings detached
## 1.43362                      fuselage slid
## 1.43363                         slid 1,200
## 1.43364                         1,200 feet
## 1.43367                   aircraft strayed
## 1.43371                    assigned airway
## 1.43383                   airways assigned
## 1.43387                        flight plan
## 1.43400                        route pilot
## 1.43401                        pilot error
## 1.43402                      error crashed
## 1.43411                          heavy fog
## 1.43414                       night struck
## 1.43415                       struck trees
## 1.43416                          trees hit
## 1.43421                           slid 500
## 1.43422                             500 ft
## 1.43425                      landing short
## 1.43431              rapidly deteriorating
## 1.43432            deteriorating condtions
## 1.43435                     captain's lack
## 1.43447                 instrument descent
## 1.43455                     permit terrain
## 1.43456                  terrain clearance
## 1.43459                    domestic flight
## 1.43460                     flight crashed
## 1.43463                 burned immediately
## 1.43468                       buenos aires
## 1.43479                    excessive cross
## 1.43480                        cross winds
## 1.43488                       aircraft hit
## 1.43489                     hit concepcion
## 1.43490                 concepcion volcano
## 1.43493                           en route
## 1.43503                     volcano banked
## 1.43504                     banked sharply
## 1.43507                     descent enered
## 1.43510                        rapid climb
## 1.43514                crashed unexplained
## 1.43515                   unexplained loss
## 1.43521                        ils attempt
## 1.43526                       orly airport
## 1.43527                     airport failed
## 1.43530                       crew decided
## 1.43538                       gca guidance
## 1.43555                 aircraft continued
## 1.43558                  descend impacting
## 1.43568                     wing separated
## 1.43572                      main fuselage
## 1.43573                     fuselage broke
## 1.43584                delayed application
## 1.43590                     final approach
## 1.43591             approach configuration
## 1.43594                 inadequate control
## 1.43597                   heading airspeed
## 1.43605                        lost midair
## 1.43606                   midair collision
## 1.43610                               dc 7
## 1.43614                            89j air
## 1.43615                          air force
## 1.43616                      force fighter
## 1.43619                               dc 7
## 1.43620                          7 crashed
## 1.43627                     school killing
## 1.43628                          killing 3
## 1.43629                           3 junior
## 1.43632                    school children
## 1.43633                         children 3
## 1.43634                            3 miles
## 1.43635                    miles northwest
## 1.43641                         89 crashed
## 1.43651                               dc 7
## 1.43684          physiological limitations
## 1.43685               limitations resulted
## 1.43689                  minimum avoidance
## 1.43690              avoidance opportunity
## 1.43699                   other's aircraft
## 1.43705                        test flight
## 1.43709                              dc 7b
## 1.43714                         3 students
## 1.43715                    students killed
## 1.43725                      singer richie
## 1.43726                      richie valens
## 1.43732                     airplane crash
## 1.43737                   archie twitchell
## 1.43738                     twitchell test
## 1.43739                         test pilot
## 1.43742                           actor 50
## 1.43743                          50 killed
## 1.43758                  minimum aviodance
## 1.43759              aviodance opportunity
## 1.43770                   aircraft shortly
## 1.43776                         la guardia
## 1.43777                    guardia airport
## 1.43783                       plane rolled
## 1.43784                     rolled sharply
## 1.43792                      rikers island
## 1.43800                   properly observe
## 1.43805                 flight instruments
## 1.43808                   maintain control
## 1.43817                      rikers island
## 1.43818                      island prison
## 1.43822                     heroic rescues
## 1.43830                           3 engine
## 1.43831                      engine seized
## 1.43832                     seized causing
## 1.43846                     fuselage makng
## 1.43863                           4 engine
## 1.43868                     throttle cable
## 1.43873                   emergency return
## 1.43874                     return landing
## 1.43877                          kimpo air
## 1.43878                           air base
## 1.43879                         base level
## 1.43880                       level flight
## 1.43888                 aircraft descended
## 1.43889                 descended crashing
## 1.43893                          han river
## 1.43894                      river crashed
## 1.43898                      densly wooded
## 1.43899                    wooded mountain
## 1.43900                         mountain 3
## 1.43901                            3 miles
## 1.43902                         miles east
## 1.43907                           en route
## 1.43910                 seattle navigation
## 1.43911                   navigation error
## 1.43914                     poor judgement
## 1.43922               overcast mountainous
## 1.43935                         plane lost
## 1.43936                           lost air
## 1.43937                          air speed
## 1.43943                            sea 400
## 1.43944                          400 yards
## 1.43945                     yards offshore
## 1.43948                   aircraft crashed
## 1.43953                     farm buildings
## 1.43964                  abingdon airfield
## 1.43965                      airfield fuel
## 1.43966                    fuel starvation
## 1.43967                     starvation due
## 1.43973                installed backwards
## 1.43974                  backwards crashed
## 1.43977                  mountains located
## 1.43978                         located 32
## 1.43979                              32 km
## 1.43980                            km west
## 1.43985                           en route
## 1.43986                        route pilot
## 1.43990                  follow prescribed
## 1.43991                   prescribed route
## 1.43994                  follow prescribed
## 1.43995                     prescribed ifr
## 1.43996                     ifr procedures
## 1.43999                     plane suddenly
## 1.44000                    suddenly veered
## 1.44014                      plane crashed
## 1.44017                    houses fracture
## 1.44021                               9 16
## 1.44022                            16 bolt
## 1.44026                     starboard flap
## 1.44027                           flap due
## 1.44030                        fatigue led
## 1.44046                         cebu bound
## 1.44052                         crashed 20
## 1.44053                           20 miles
## 1.44054                           miles nw
## 1.44058                     city president
## 1.44059                    president ramon
## 1.44060                    ramon magsaysay
## 1.44061                       magsaysay 50
## 1.44065                   philippines died
## 1.44074                       plane struck
## 1.44075                          struck mt
## 1.44076                       mt manunggal
## 1.44077                manunggal magsaysay
## 1.44082                   campaigning trip
## 1.44085                   reelection metal
## 1.44086                      metal fatigue
## 1.44087                    fatigue crashed
## 1.44090                        andies peak
## 1.44093                           en route
## 1.44094                     route wreckage
## 1.44095                     wreckage found
## 1.44096                          found 100
## 1.44097                          100 miles
## 1.44098                    miles northeast
## 1.44101             cochabamba disappeared
## 1.44105                          storm 200
## 1.44106                          200 miles
## 1.44107                    miles southeast
## 1.44110                        tokyo japan
## 1.44117                         travis air
## 1.44118                          air force
## 1.44119                         force base
## 1.44124                    unknown shortly
## 1.44129                     fire developed
## 1.44133                          left main
## 1.44134                       main landing
## 1.44135                       landing gear
## 1.44147                   engine feathered
## 1.44151                           1 engine
## 1.44157                  emergency landing
## 1.44174                          left wing
## 1.44175                     wing separated
## 1.44181                      plane crashed
## 1.44184                    burned fracture
## 1.44188                          fuel line
## 1.44192                       landing gear
## 1.44193                       gear housing
## 1.44194                        housing due
## 1.44200                       ribs crashed
## 1.44209                      airfield left
## 1.44210                        left engine
## 1.44211                     engine failure
## 1.44214                           en route
## 1.44215                         route fire
## 1.44216                         fire broke
## 1.44221                   starboard engine
## 1.44225                         plane lost
## 1.44226                      lost altitude
## 1.44231                 reduced visibility
## 1.44250                      plane stalled
## 1.44253                     crashed engine
## 1.44254                     engine failure
## 1.44262                  maneuvering error
## 1.44272                        mexico city
## 1.44273                       city heading
## 1.44280           procedure specifications
## 1.44285               prescribed altitudes
## 1.44295                  probable shifting
## 1.44299                           load due
## 1.44302                  improper securing
## 1.44303                   securing crashed
## 1.44306                           burned 5
## 1.44307                          5 minutes
## 1.44315                      aircraft lost
## 1.44318                          left wing
## 1.44323                     air turbulence
## 1.44324               turbulence explosive
## 1.44325            explosive decompression
## 1.44336                        18,000 feet
## 1.44351                  recovered crashed
## 1.44356                   emergency return
## 1.44360                    airport shortly
## 1.44365                     engine failure
## 1.44373                    maintain height
## 1.44377                        safe flying
## 1.44378                       flying speed
## 1.44392                        left engine
## 1.44395                    reasons unknown
## 1.44403              insufficient altitude
## 1.44418            thunderstorm downdrafts
## 1.44421                    divergent winds
## 1.44422                  winds encountered
## 1.44423                 encountered forced
## 1.44429                     ground crashed
## 1.44436                       aircraft hit
## 1.44453                   engine propeller
## 1.44456                        caught fire
## 1.44457                    fire procedural
## 1.44458                  procedural errors
## 1.44462                      pilot crashed
## 1.44466                            ice cap
## 1.44467                          cap white
## 1.44470               conditions incorrect
## 1.44471               incorrect indication
## 1.44474                  navigation charts
## 1.44477                         pilot lost
## 1.44482                       fog searched
## 1.44490                          plane ran
## 1.44499                         4,500 foot
## 1.44500                      foot mountain
## 1.44504                  training exercise
## 1.44507                aircraft approached
## 1.44510                      stall entered
## 1.44513                     spin partially
## 1.44514                partially recovered
## 1.44519                 aircraft descended
## 1.44522                      safe altitude
## 1.44531                    poor visibility
## 1.44534                 crew's application
## 1.44538                 approach procedure
## 1.44546                  airport authority
## 1.44573              insufficient altitude
## 1.44583                      aircraft loss
## 1.44588                executing maneuvers
## 1.44592                    training flight
## 1.44593                   flight resulting
## 1.44609                    effect recovery
## 1.44610                   recovery crashed
## 1.44615                  emergency landing
## 1.44621               control difficulties
## 1.44622                difficulties jammed
## 1.44623                    jammed elevator
## 1.44624                      elevator crew
## 1.44625                        crew forgot
## 1.44630                       ground locks
## 1.44631                      locks crashed
## 1.44642                        tidal flats
## 1.44645                   charlakhi island
## 1.44649                      storm crashed
## 1.44658                 weather conditions
## 1.44661                 permissible limits
## 1.44666                    sparsely served
## 1.44678                           de icing
## 1.44679                    icing equipment
## 1.44682                           air foce
## 1.44683                     foce transport
## 1.44686                           en route
## 1.44692                    mount chaiopeng
## 1.44706                           low pass
## 1.44715                      final glimpse
## 1.44721                    plane gradually
## 1.44722                gradually descended
## 1.44726                        sea crashed
## 1.44727                      crashed burst
## 1.44730                       flames broke
## 1.44734                          sank crew
## 1.44738                   properly monitor
## 1.44743                       plane landed
## 1.44744                      landed safely
## 1.44748                      dynamite bomb
## 1.44749                      bomb exploded
## 1.44753                      rear lavatory
## 1.44756                     passenger saul
## 1.44759                        binstock 62
## 1.44762                      retired north
## 1.44763                    north hollywood
## 1.44764                  hollywood jeweler
## 1.44765                     jeweler intent
## 1.44768                  suicide detonated
## 1.44774                    rear lavoratory
## 1.44775                 lavoratory blowing
## 1.44780                               7 ft
## 1.44781                            ft hole
## 1.44785                  fuselage binstock
## 1.44790                 insurance policies
## 1.44791                  policies totaling
## 1.44792                   totaling 125,000
## 1.44800                          las vegas
## 1.44803                  airport personnel
## 1.44806                     mccarran field
## 1.44807                     field reported
## 1.44813                   airport terminal
## 1.44819                   western airlines
## 1.44820                    airlines flight
## 1.44821                       flight bound
## 1.44824                        los angeles
## 1.44831                      rear lavatory
## 1.44832                   lavatory shortly
## 1.44835                  takeoff binstockã
## 1.44836                        binstockã â
## 1.44837                                â â
## 1.44840                       body missing
## 1.44846                          left hand
## 1.44855                        rugged peak
## 1.44859                      ord mountains
## 1.44860                    mountains south
## 1.44865                        aircraft en
## 1.44866                           en route
## 1.44871                    montreal canada
## 1.44876                           6,000 ft
## 1.44882          thunderstorm subsequently
## 1.44892                   speed calculated
## 1.44895                            230 mph
## 1.44896                       mph bursting
## 1.44899                      flames severe
## 1.44900                  severe turbulence
## 1.44901             turbulence encountered
## 1.44907                 cumulonimbus cloud
## 1.44908                    cloud resulting
## 1.44914                     events quickly
## 1.44915                    quickly leading
## 1.44920                      complete loss
## 1.44923                    control crashed
## 1.44934                       factory crew
## 1.44935                         crew error
## 1.44936                          error atc
## 1.44937                          atc error
## 1.44945                        cargo plane
## 1.44946                      plane stalled
## 1.44949                       crashed blew
## 1.44969                      penas blancas
## 1.44970                      blancas hills
## 1.44971                        hills pilot
## 1.44972                        pilot error
## 1.44973                    error weather's
## 1.44974                weather's influence
## 1.44977               radio communications
## 1.44978             communications leaving
## 1.44981                   prescribed route
## 1.44991                    aircraft struck
## 1.44992                       struck trees
## 1.45007                    pilot attempted
## 1.45012                    visual approach
## 1.45015             descending prematurely
## 1.45025                     prescribed ils
## 1.45026                       ils approach
## 1.45027                 approach procedure
## 1.45033                   existing weather
## 1.45034                 weather conditions
## 1.45035                  conditions flying
## 1.45036                         flying vfr
## 1.45039               aircraft encountered
## 1.45040                    encountered fog
## 1.45044                 approach undershot
## 1.45049                      crashed pilot
## 1.45050                        pilot error
## 1.45055                      initial climb
## 1.45058                  ferry positioning
## 1.45059                 positioning flight
## 1.45060                     flight crashed
## 1.45071                      air ambulance
## 1.45074                       rapidly lost
## 1.45075                        lost height
## 1.45076                      height whilst
## 1.45082                        visual half
## 1.45083                       half circuit
## 1.45097                  sufficient visual
## 1.45098                   visual reference
## 1.45102              prevailing conditions
## 1.45107                          low cloud
## 1.45112                      urgent nature
## 1.45123                   pilot's decision
## 1.45132                          crew lost
## 1.45137                      requested atc
## 1.45138                     atc assistance
## 1.45143                  airplane deviated
## 1.45147                  prescribed flight
## 1.45148                        flight path
## 1.45156                    fuel exhaustion
## 1.45165                  emergency landing
## 1.45169              unsuccessful attempts
## 1.45172                    captain elected
## 1.45175                     fourth landing
## 1.45176                    landing attempt
## 1.45183                         900 meters
## 1.45186                      airplane clip
## 1.45187                         clip trees
## 1.45188                    trees continued
## 1.45192                         340 meters
## 1.45195                 eventually crashed
## 1.45199                       dense wooded
## 1.45208                      crew informed
## 1.45209                       informed atc
## 1.45222                     thirty minutes
## 1.45229                       2,000 meters
## 1.45232                      aircraft lost
## 1.45233                        lost height
## 1.45241                              18 km
## 1.45247                       takeoff roll
## 1.45250                   airplane started
## 1.45265                    flying controls
## 1.45269                       takeoff roll
## 1.45274                        left engine
## 1.45275                   engine turbulent
## 1.45276               turbulent conditions
## 1.45277                   conditions close
## 1.45288                       poor weather
## 1.45291                      plane drifted
## 1.45298                    runway overshot
## 1.45305                    unknown intense
## 1.45306                       intense fire
## 1.45311                           1 engine
## 1.45314                           en route
## 1.45315                       route caused
## 1.45318                    foreign objects
## 1.45319                   objects entering
## 1.45325                        cargo plane
## 1.45326                      plane crashed
## 1.45327                         crashed en
## 1.45328                           en route
## 1.45329                      route crashed
## 1.45330                    crashed shortly
## 1.45336                   aircraft plunged
## 1.45342                  derendorf setting
## 1.45343                      setting afire
## 1.45346                    office building
## 1.45354                      lone occupant
## 1.45361                      elderly woman
## 1.45379                        flying crew
## 1.45383                     final approach
## 1.45390              insufficient altitude
## 1.45402                 approach procedure
## 1.45406                    warning message
## 1.45415                     visual contact
## 1.45419                      runway lights
## 1.45420                         lights due
## 1.45423                     low visibility
## 1.45427                insufficient height
## 1.45434                       struck trees
## 1.45438                      crash crashed
## 1.45442                    training flight
## 1.45446                      wing suddenly
## 1.45447                   suddenly dropped
## 1.45456                     steeply banked
## 1.45462                 crashed instrument
## 1.45463                 instrument failure
## 1.45464                    failure leading
## 1.45469               control undetermined
## 1.45476                         auto pilot
## 1.45479               aircraft disappeared
## 1.45480                    disappeared mid
## 1.45487                      san francisco
## 1.45490                  honolulu wreckage
## 1.45493                          found 940
## 1.45494                          940 miles
## 1.45495                           miles ne
## 1.45498                         honolulu 5
## 1.45499                             5 days
## 1.45510                        flight fire
## 1.45515                    carbon monoxide
## 1.45521                          19 bodies
## 1.45538                      named clipper
## 1.45539                    clipper romance
## 1.45545                       aircraft hit
## 1.45550                         1,500 feet
## 1.45566                   turbulence pilot
## 1.45567                        pilot error
## 1.45570                      plane crashed
## 1.45589                message transmitted
## 1.45596                           4 engine
## 1.45597                   engine feathered
## 1.45598                   feathered coming
## 1.45603                   hurry electrical
## 1.45604                 electrical failure
## 1.45607                     accidental cut
## 1.45612                      fuel actuator
## 1.45613                   actuator circuit
## 1.45621                          4 engines
## 1.45624                        cargo plane
## 1.45625                         plane lost
## 1.45636                  flight structural
## 1.45637                 structural fatigue
## 1.45638                    fatigue failure
## 1.45642                    starboard front
## 1.45643                        front lower
## 1.45644                         lower spar
## 1.45645                          spar boom
## 1.45648                      plane crashed
## 1.45652                         storm left
## 1.45653                          left wing
## 1.45654                      wing detached
## 1.45657                 extreme turbulence
## 1.45660                   pilot descending
## 1.45668                     minimum safety
## 1.45669                      safety flight
## 1.45670                    flight altitude
## 1.45671               altitude established
## 1.45682                        flight plan
## 1.45692           meteorological phenomena
## 1.45693              phenomena encountered
## 1.45694             encountered inadequate
## 1.45695             inadequate operational
## 1.45696               operational dispatch
## 1.45700                   aircraft crashed
## 1.45704                    landing attempt
## 1.45710                      plane stalled
## 1.45713                          hit trees
## 1.45716               uncontrollable stall
## 1.45719                       low altitude
## 1.45725                       abrupt steep
## 1.45726                        steep climb
## 1.45727                  climb immediately
## 1.45730               takeoff contributing
## 1.45731               contributing factors
## 1.45735                   improper loading
## 1.45742                   prevailing gusty
## 1.45743                         gusty wind
## 1.45749                ambient temperature
## 1.45752                          june 1958
## 1.45760                    northwest slope
## 1.45763                       mount poktoy
## 1.45764                          poktoy 30
## 1.45765                              30 km
## 1.45766                            km west
## 1.45769             birobidzhan completely
## 1.45770               completely destroyed
## 1.45773                       burned crews
## 1.45774                          crews atc
## 1.45775                          atc error
## 1.45778                      aircraft lost
## 1.45784                simulated emergency
## 1.45785                 emergency maneuver
## 1.45797                           1,000 ft
## 1.45802                         crew moved
## 1.45805                     emergency shut
## 1.45811                    wrong direction
## 1.45812                direction depriving
## 1.45819                        fuel supply
## 1.45822                          plane hit
## 1.45834                        check pilot
## 1.45839                  initiate remedial
## 1.45840                    remedial action
## 1.45847                      lose altitude
## 1.45852                 exercise authority
## 1.45856                     real emergency
## 1.45857                emergency developed
## 1.45860                        cargo plane
## 1.45861                        plane crash
## 1.45862                       crash landed
## 1.45863                       landed short
## 1.45871                    landing attempt
## 1.45900                    critical height
## 1.45903                  sufficient visual
## 1.45904                   visual reference
## 1.45910                        flying boat
## 1.45911                          boat sank
## 1.45914                       buenos aires
## 1.45915                       aires harbor
## 1.45922                  emergency landing
## 1.45929                        cargo plane
## 1.45930                         plane lost
## 1.45934                           1 engine
## 1.45937                       takeoff dove
## 1.45945                     burned crashed
## 1.45948                mountainous terrain
## 1.45951                           en route
## 1.45954                    plane abandoned
## 1.45960                      engine failed
## 1.45972                    runway striking
## 1.45973                     striking rocks
## 1.45976                      catching fire
## 1.45977                       fire failure
## 1.45981                           4 engine
## 1.45982              engine malfunctioning
## 1.45986                   starboard brakes
## 1.45990                  aircraft collided
## 1.45996                         3,000 feet
## 1.45997                    feet scattering
## 1.45998                scattering wreckage
## 1.46007                       suburban los
## 1.46008                        los angeles
## 1.46019                    beach municipal
## 1.46020                  municipal airport
## 1.46024            transcontinental flight
## 1.46032                instrument training
## 1.46033                  training exercise
## 1.46036                          41 killed
## 1.46059                        house pilot
## 1.46060                        pilot error
## 1.46061                       error pilots
## 1.46068                    takeoff attempt
## 1.46073                    aborted takeoff
## 1.46074                        takeoff due
## 1.46077                    engine boosting
## 1.46119                       plane passed
## 1.46120                          passed v1
## 1.46121                       v1 committed
## 1.46127                     plane suddenly
## 1.46128               suddenly decelerated
## 1.46132                   airborne crashed
## 1.46136                      barrier fence
## 1.46149                  manchester united
## 1.46150                    united football
## 1.46151                    football soccer
## 1.46152                        soccer team
## 1.46153                        team killed
## 1.46156                     german inquiry
## 1.46157                  inquiry concluded
## 1.46172                   accident blaming
## 1.46180                          plane ten
## 1.46185                   british reopened
## 1.46228                     accident plane
## 1.46233                    engine boosting
## 1.46246                         named lord
## 1.46247                      lord burghley
## 1.46248                     burghley radio
## 1.46249                      radio contact
## 1.46255                  military aircraft
## 1.46256                    aircraft thirty
## 1.46257                     thirty minutes
## 1.46266                      crew reported
## 1.46267                        reported en
## 1.46268                           en route
## 1.46271                         6,500 feet
## 1.46277                           rome atc
## 1.46280                      plane crashed
## 1.46284                    northern slopes
## 1.46287                        mt vesuvius
## 1.46288                    vesuvius struck
## 1.46297                           wing tip
## 1.46298                          tip float
## 1.46299                    float contacted
## 1.46308                     final approach
## 1.46314                       aircraft hit
## 1.46323                       crash landed
## 1.46327                    damaged landing
## 1.46328                       landing gear
## 1.46335                         duty pilot
## 1.46339                     emergency exit
## 1.46342                   aircraft stopped
## 1.46354                 killed disappeared
## 1.46360                          100 miles
## 1.46372                      found crashed
## 1.46378                        winter hill
## 1.46388                        wrong radio
## 1.46389                       radio beacon
## 1.46390                      beacon oldham
## 1.46391                      oldham becaon
## 1.46396                       wigan beacon
## 1.46399                  approaching cairo
## 1.46412                      menzalah lake
## 1.46415                  aircraft collided
## 1.46421                    holding pattern
## 1.46428                           naha air
## 1.46429                           air base
## 1.46430                       base failure
## 1.46434                               ad 6
## 1.46435                            6 pilot
## 1.46442                      killed aboard
## 1.46445                               ad 6
## 1.46446                             6 poor
## 1.46447                     poor judgement
## 1.46454                          r4q plane
## 1.46455                    plane commander
## 1.46461                           35 miles
## 1.46462                           miles sw
## 1.46467                         mexico fog
## 1.46468                           fog snow
## 1.46478                          plane hit
## 1.46484                          45 degree
## 1.46485                       degree angle
## 1.46490                        burned film
## 1.46491                      film director
## 1.46492                  director producer
## 1.46493                      producer mike
## 1.46494                          mike todd
## 1.46495                            todd 49
## 1.46496                         49 husband
## 1.46499                   elizabeth taylor
## 1.46500                      taylor killed
## 1.46501                   killed elizabeth
## 1.46502                   elizabeth taylor
## 1.46514                   husband remained
## 1.46517                           home ill
## 1.46526                          lucky liz
## 1.46527                          liz icing
## 1.46528                          icing due
## 1.46532                 navigational error
## 1.46535                      aircraft flew
## 1.46538                        wrong route
## 1.46550                   aircraft stalled
## 1.46553                   crashed wreckage
## 1.46556                           found 16
## 1.46557                           16 miles
## 1.46562                      plane crashed
## 1.46563                          crashed 2
## 1.46564                          2 minutes
## 1.46582                           3 engine
## 1.46590                  maintain altitude
## 1.46594                   emergency return
## 1.46598                        airport due
## 1.46602                undue preoccupation
## 1.46606                        engine fire
## 1.46609                   takeoff collided
## 1.46616                           6,000 ft
## 1.46619                   aircraft crashed
## 1.46622                  farmlands killing
## 1.46630                            49 195a
## 1.46636                     wrong altitude
## 1.46637                   altitude crashed
## 1.46640                experiencing engine
## 1.46641                     engine trouble
## 1.46644                   aircraft stalled
## 1.46650                         corn field
## 1.46651                          field 300
## 1.46652                           300 feet
## 1.46653                         feet short
## 1.46661                    landing attempt
## 1.46664                           tri city
## 1.46665                       city airport
## 1.46668              restricted visibility
## 1.46675                    aircraft struck
## 1.46678                        ground nose
## 1.46690              horizontal stabilizer
## 1.46691                 stabilizer leading
## 1.46696                      pitch control
## 1.46697                       control flew
## 1.46701                        mountain 15
## 1.46702                         15 minutes
## 1.46705                  leaving guayaquil
## 1.46706               guayaquil procedural
## 1.46707                   procedural error
## 1.46713                       maintain ifr
## 1.46719                        cloud cover
## 1.46720                      cover crashed
## 1.46727                   sudden avoidance
## 1.46728                  avoidance manuver
## 1.46729                        manuver atc
## 1.46730                          atc error
## 1.46740                     exact position
## 1.46748                               dc 7
## 1.46751                           en route
## 1.46754                        los angeles
## 1.46757                      denver flying
## 1.46760                          21,000 ft
## 1.46763                       military jet
## 1.46768                   training mission
## 1.46775                  fighter initiated
## 1.46778                   evasive maneuver
## 1.46790                  instructor aboard
## 1.46804                               dc 7
## 1.46805                         7 airliner
## 1.46817                     altitude human
## 1.46820                cockpit limitations
## 1.46826                         nellis air
## 1.46827                          air force
## 1.46828                         force base
## 1.46832                  civil aeronautics
## 1.46833         aeronautics administration
## 1.46842                 collision exposure
## 1.46845                 training exercises
## 1.46859                     numerous close
## 1.46860                        close calls
## 1.46863                      military jets
## 1.46869                      airline crews
## 1.46879                    tragedy crashed
## 1.46880                    crashed shortly
## 1.46885               improper observation
## 1.46895                   properly observe
## 1.46900                 flight instruments
## 1.46904            inadvertently permitted
## 1.46912                 ground immediately
## 1.46916                      night takeoff
## 1.46921                   visual reference
## 1.46926                        cargo plane
## 1.46927                        plane broke
## 1.46938                 aircraft developed
## 1.46939                  developed trouble
## 1.46944                           1 engine
## 1.46947                           en route
## 1.46958                    poor visibility
## 1.46961                          3 engines
## 1.46964                   aircraft stalled
## 1.46965                         stalled 80
## 1.46966                              80 ft
## 1.46979                         flames pre
## 1.46980                          pre crash
## 1.46981                       crash damage
## 1.46986                           1 engine
## 1.47011                   sufficient speed
## 1.47017                   attempted safety
## 1.47018                    safety maneuver
## 1.47019                    maneuver midair
## 1.47020                   midair collision
## 1.47023                           8,000 ft
## 1.47026                          miles ene
## 1.47029                  brunswick failure
## 1.47034                          33a pilot
## 1.47042                    avoid procedure
## 1.47054                         33 ejected
## 1.47055                     ejected safely
## 1.47066                      fligth caused
## 1.47074                           1 engine
## 1.47078                     ensuing forced
## 1.47079                     forced landing
## 1.47082                      rough terrain
## 1.47085                     aircraft broke
## 1.47094                        cargo plane
## 1.47095                      plane plunged
## 1.47102                        front wheel
## 1.47103                      wheel glanced
## 1.47115                      mountains 100
## 1.47116                          100 miles
## 1.47117                    miles southwest
## 1.47122                       hard landing
## 1.47125                         heavy rain
## 1.47128                        gusty winds
## 1.47131                      manila caused
## 1.47138                       main landing
## 1.47139                       landing gear
## 1.47142                         prop broke
## 1.47147                           3 engine
## 1.47148                  engine penetrated
## 1.47159                      named clipper
## 1.47160                     clipper golden
## 1.47161                        golden gate
## 1.47164                      plane crashed
## 1.47167                         la latilla
## 1.47168                   latilla mountain
## 1.47169                        mountain 13
## 1.47170                              13 km
## 1.47171                            km west
## 1.47184                approved procedures
## 1.47188                    trainee pilot's
## 1.47189                    pilot's failure
## 1.47192                   maintain minimum
## 1.47193                    minimum control
## 1.47194                      control speed
## 1.47202                   instructor pilot
## 1.47203                       pilot failed
## 1.47212                    sufficient time
## 1.47217                      critical loss
## 1.47222                contributing factor
## 1.47229                       landing gear
## 1.47230                         gear latch
## 1.47233                 delayed retraction
## 1.47237                       landing gear
## 1.47245                   instructor pilot
## 1.47252                    critical period
## 1.47267                          land crew
## 1.47268                         crew error
## 1.47275                weather conditiions
## 1.47279                    minimum crashed
## 1.47286                   downdraft missed
## 1.47294                     tree windshear
## 1.47300                         low height
## 1.47303                mountainous terrain
## 1.47307                    supply dropping
## 1.47308                   dropping mission
## 1.47311                          port wing
## 1.47315                        cargo plane
## 1.47316                       plane grazed
## 1.47332                contributory factor
## 1.47341                        fuel system
## 1.47344                   caused temporary
## 1.47345                     temporary loss
## 1.47348                       engine power
## 1.47353                   aircraft crashed
## 1.47360               transatlantic flight
## 1.47361                      flight record
## 1.47362                     record heavily
## 1.47363                     heavily loaded
## 1.47368                      pilots failed
## 1.47378                     slight descent
## 1.47379                    descent shortly
## 1.47385                       plane struck
## 1.47388                        power lines
## 1.47394             massachusetts turnpike
## 1.47397                      dead included
## 1.47402                        cargo plane
## 1.47403                     plane suffered
## 1.47404                suffered structural
## 1.47405                 structural failure
## 1.47408              thunderstorm activity
## 1.47409                   activity crashed
## 1.47415            approach misinterpreted
## 1.47418                  misread altimeter
## 1.47419                  altimeter reading
## 1.47422                    fatigue crashed
## 1.47425                        approach 10
## 1.47426                         10 minutes
## 1.47432                    unknown ditched
## 1.47438                         izu island
## 1.47439                island appoximately
## 1.47440                     appoximately 1
## 1.47441                             1 hour
## 1.47447                experiencing engine
## 1.47448                     engine trouble
## 1.47451                   aircraft crashed
## 1.47457                           en route
## 1.47462                gander newfoundland
## 1.47467                    outer propeller
## 1.47470                   aircraft crashed
## 1.47471                      crashed 1,450
## 1.47472                         1,450 feet
## 1.47473                         feet short
## 1.47482                          heavy fog
## 1.47483                           fog poor
## 1.47484                     poor judgement
## 1.47494                       poor weather
## 1.47495                 weather conditions
## 1.47496               conditions nantucket
## 1.47497                  nantucket airport
## 1.47505                  permit insturment
## 1.47506                insturment landings
## 1.47510                   foggy conditions
## 1.47513                   aircraft stalled
## 1.47521                   aircraft climbed
## 1.47527                operational ceiling
## 1.47531                        weight shot
## 1.47535                         soviet mig
## 1.47536                       mig fighters
## 1.47539                   aircraft crashed
## 1.47540                         crashed 35
## 1.47541                           35 miles
## 1.47542                         miles west
## 1.47545                        agana naval
## 1.47546                          naval air
## 1.47547                        air station
## 1.47550                        flight fire
## 1.47553                     unknown origin
## 1.47556                        cargo plane
## 1.47557                         plane lost
## 1.47563                      initial climb
## 1.47570                  maintain altitude
## 1.47575                   aircraft crashed
## 1.47580                    landing attempt
## 1.47581                   attempt improper
## 1.47582                  improper approach
## 1.47583                 approach procedure
## 1.47584                    procedure pilot
## 1.47585                        pilot error
## 1.47591                  incorrect forcast
## 1.47592                   forcast provided
## 1.47598                   aircraft crashed
## 1.47599                    crashed shortly
## 1.47610                     vfr conditions
## 1.47616                  52 stratofortress
## 1.47617             stratofortress bombers
## 1.47618                 bombers approached
## 1.47629                    aircraft rammed
## 1.47634                           900 feet
## 1.47644                           9 aboard
## 1.47645                          aboard 56
## 1.47646                             56 661
## 1.47653                           7 aboard
## 1.47654                          aboard 56
## 1.47655                             56 681
## 1.47658                    killed operator
## 1.47659                     operator error
## 1.47667                    aircraft failed
## 1.47670                      maintain safe
## 1.47671                    safe separation
## 1.47674                     vfr conditions
## 1.47675                 conditions crashed
## 1.47678                        mount oyama
## 1.47679                           oyama 15
## 1.47680                           15 miles
## 1.47681                    miles southwest
## 1.47686                     crew continued
## 1.47692                       minimum safe
## 1.47693                      safe altitude
## 1.47698                    wrong altimeter
## 1.47699                  altimeter setting
## 1.47700                   setting collided
## 1.47704                         french air
## 1.47705                          air force
## 1.47706                     force dassault
## 1.47707                   dassault mystãƒâ
## 1.47712                      aircraft dove
## 1.47721                      field located
## 1.47724                          triel sur
## 1.47725                          sur seine
## 1.47726                         seine west
## 1.47729                      paris crashed
## 1.47745                        cargo plane
## 1.47746                  plane disappeared
## 1.47750                  mediterranean sea
## 1.47755                      found crashed
## 1.47760                       flat terrain
## 1.47761                       terrain east
## 1.47782                   accident crashed
## 1.47786                           alto del
## 1.47787                          del cedro
## 1.47788                     cedro mountain
## 1.47789                 mountain premature
## 1.47790                  premature descent
## 1.47791                 descent navigation
## 1.47792                   navigation error
## 1.47793                         error lack
## 1.47796              navigation facilities
## 1.47805                           en route
## 1.47826               aircraft experienced
## 1.47827                experienced extreme
## 1.47828                 extreme turbulence
## 1.47832                      climb stalled
## 1.47854               uncontrolled descent
## 1.47858                 radio transmission
## 1.47862                   farewell crashed
## 1.47865                      placentia bay
## 1.47866                          bay 1,000
## 1.47867                         1,000 feet
## 1.47868                         feet short
## 1.47875                        cga landing
## 1.47886                reported indefinite
## 1.47887                     indefinite 200
## 1.47888                           200 feet
## 1.47889                    feet visibility
## 1.47890                       visibility 2
## 1.47891                            2 miles
## 1.47898                 precision approach
## 1.47916                       gca minimums
## 1.47925                         glide path
## 1.47953                       climbout gca
## 1.47969                      pilot advised
## 1.47970                        advised gca
## 1.47997                   final controller
## 1.48001           instructions approaching
## 1.48002                    approaching gca
## 1.48003                       gca minimums
## 1.48006               aircraft immediately
## 1.48007              immediately commenced
## 1.48008                 commenced dropping
## 1.48011                         glide path
## 1.48014                   emergency pullup
## 1.48020                  aircraft collided
## 1.48028                         rest 2,050
## 1.48029                         2,050 feet
## 1.48030                          feet east
## 1.48042                            26 feet
## 1.48045                       water midair
## 1.48046                   midair collision
## 1.48050                        italian air
## 1.48051                          air force
## 1.48056                   airliner drifted
## 1.48067                  collided hijacked
## 1.48070                            4 cuban
## 1.48071                       cuban rebels
## 1.48074                      plane crashed
## 1.48086                    preston airport
## 1.48089                               dc 3
## 1.48099                    foreign affairs
## 1.48108                   aircraft crashed
## 1.48112                     western slopes
## 1.48115                     mount porretta
## 1.48121                         2,690 feet
## 1.48122                           feet due
## 1.48126                   navagation error
## 1.48127                        error pilot
## 1.48128                        pilot error
## 1.48131                        cargo plane
## 1.48132                  plane disappeared
## 1.48133                     disappeared en
## 1.48134                           en route
## 1.48144                         cabo ruivo
## 1.48150                     north atlantic
## 1.48155                  emergency message
## 1.48156                message positioning
## 1.48161                         36 degrees
## 1.48162                         degrees 40
## 1.48163                         40 minutes
## 1.48166                         12 degrees
## 1.48170                        cargo plane
## 1.48171                         plane lost
## 1.48178                      crashed icing
## 1.48179                   icing turbulence
## 1.48180                 turbulence crashed
## 1.48183                         la rodilla
## 1.48184                         rodilla de
## 1.48185                              de la
## 1.48186                           la mujer
## 1.48187                       mujer muerta
## 1.48193                        madrid loss
## 1.48196                        control due
## 1.48201                  turbulence missed
## 1.48209                        snowy field
## 1.48210                      field landing
## 1.48213                   weather minimums
## 1.48218                    aircraft struck
## 1.48223                          heavy fog
## 1.48230                heavy thunderstorms
## 1.48236                    maintain height
## 1.48246                    aircraft struck
## 1.48249                     ground shortly
## 1.48258                uncontrollable loss
## 1.48263                         height due
## 1.48267                      sudden squall
## 1.48268                squall accompanying
## 1.48274               thunderstorm crashed
## 1.48281                           1 engine
## 1.48282                      engine failed
## 1.48283                       failed pilot
## 1.48284                        pilot error
## 1.48285                      error pilot's
## 1.48286                  pilot's incorrect
## 1.48287                 incorrect handling
## 1.48292                     flight crashed
## 1.48295                            mt pena
## 1.48296                        pena blanca
## 1.48299                           en route
## 1.48302                    pilot's attempt
## 1.48307                mountainous terrain
## 1.48310                   visual reference
## 1.48316                 weather conditions
## 1.48317             conditions restricting
## 1.48318             restricting visibility
## 1.48327                    dangerously low
## 1.48328                       low altitude
## 1.48331                    aircraft struck
## 1.48336                         mt holston
## 1.48337                    holston located
## 1.48338                         located 15
## 1.48339                           15 miles
## 1.48346                       ils approach
## 1.48349                           tri city
## 1.48350                       city airport
## 1.48351                    airport pilot's
## 1.48352                    pilot's failure
## 1.48357              intersection properly
## 1.48358                 properly resulting
## 1.48361                          flying 15
## 1.48362                           15 miles
## 1.48366                       outer marker
## 1.48380                inoperative compass
## 1.48387                       aircraft log
## 1.48388                         log twenty
## 1.48389                     twenty minutes
## 1.48393                             rio de
## 1.48394                         de janerio
## 1.48405                        10,000 feet
## 1.48408                     reaching kxndb
## 1.48409                     kxndb waypoint
## 1.48417                            3000 ft
## 1.48418                         ft galeaoa
## 1.48419                   galeaoa approach
## 1.48424                    normal position
## 1.48425                   position reports
## 1.48431                    plane descended
## 1.48434                      guanabara bay
## 1.48439                 extended nosewheel
## 1.48440                   nosewheel struck
## 1.48453                   aircraft crashed
## 1.48456                   flecheiras beach
## 1.48457                        beach short
## 1.48477                        pilot error
## 1.48483                   minimum altitude
## 1.48486                     final approach
## 1.48487                   approach aircrew
## 1.48488                    aircrew fatigue
## 1.48495                contributing factor
## 1.48496                        factor crew
## 1.48497                        crew flight
## 1.48498                        flight time
## 1.48499                      time exceeded
## 1.48502                   brazilian limits
## 1.48509                 german limitations
## 1.48512                        cargo plane
## 1.48513                      plane crashed
## 1.48516                       panther peak
## 1.48519                           8,500 ft
## 1.48522                           en route
## 1.48525                  aircraft overshot
## 1.48526                    overshot runway
## 1.48530                    missed approach
## 1.48531                 approach procedure
## 1.48536                    plane gradually
## 1.48537                gradually descended
## 1.48557                instrument approach
## 1.48558                 approach procedure
## 1.48561                pilot's temporarily
## 1.48562               temporarily confused
## 1.48563                    confused mental
## 1.48572                 critical situation
## 1.48573             situation effectuating
## 1.48578                      skill crashed
## 1.48582                       snow covered
## 1.48583                      covered field
## 1.48590              undetermined possibly
## 1.48591                       possibly hit
## 1.48594                        machine gun
## 1.48595                           gun fire
## 1.48598                           en route
## 1.48599                       route flying
## 1.48600                         flying vfr
## 1.48603                        cargo plane
## 1.48604                          plane ran
## 1.48608                      cloud covered
## 1.48609                         covered el
## 1.48610                        el callejon
## 1.48611                      callejon pass
## 1.48614                         7,000 feet
## 1.48626                          la culata
## 1.48627                        culata peak
## 1.48633                        13,500 feet
## 1.48634                        feet flying
## 1.48641              insufficient altitude
## 1.48646              apparently unfamiliar
## 1.48650                       pilot struck
## 1.48651                       struck trees
## 1.48656                        crashed 2.8
## 1.48657                          2.8 miles
## 1.48658                    miles northwest
## 1.48661                            wadi es
## 1.48662                             es sir
## 1.48663                        sir adverse
## 1.48664                    adverse weather
## 1.48665                 weather conditions
## 1.48668                        cargo plane
## 1.48669                      plane overran
## 1.48680                   flames windshear
## 1.48683                   aircraft crashed
## 1.48691                  emergency landing
## 1.48694                 experiencing icing
## 1.48697                     captain's poor
## 1.48698                      poor judgment
## 1.48705                    dangerous icing
## 1.48706                   icing conditions
## 1.48707                   conditions buddy
## 1.48708                        buddy holly
## 1.48709                    holly chartered
## 1.48723                       winter dance
## 1.48724                        dance party
## 1.48725                         party tour
## 1.48728                     clearlake iowa
## 1.48729                           iowa j.p
## 1.48733                  bopper richardson
## 1.48740                         flu talked
## 1.48741                      talked waylon
## 1.48742                    waylon jennings
## 1.48748                       seat ritchie
## 1.48749                     ritchie valens
## 1.48750                         valens won
## 1.48753                          coin toss
## 1.48760                       tommy allsup
## 1.48774                          coin toss
## 1.48781              deteriorating weather
## 1.48782                 weather conditions
## 1.48785                        pilot roger
## 1.48786                     roger peterson
## 1.48792                            fly ifr
## 1.48806                       snowy meadow
## 1.48807                           meadow 5
## 1.48808                            5 miles
## 1.48809                           miles nw
## 1.48815                          plane hit
## 1.48826                    singers ritchie
## 1.48827                     ritchie valens
## 1.48828                          valens 17
## 1.48829                           17 buddy
## 1.48830                        buddy holly
## 1.48831                           holly 22
## 1.48832                           22 jiles
## 1.48837                  bopper richardson
## 1.48838                      richardson 28
## 1.48846                   killed instantly
## 1.48860                  ground officially
## 1.48863                   pilot's decision
## 1.48874                   encountering ifr
## 1.48875                     ifr conditions
## 1.48876                 conditions existed
## 1.48884                            fly ifr
## 1.48890                   weather briefing
## 1.48894              pilot's unfamiliarity
## 1.48910                     story appeared
## 1.48914                         iowa globe
## 1.48915                      globe gazette
## 1.48920                           pilot al
## 1.48921                          al potter
## 1.48922                      potter flying
## 1.48931                      night claimed
## 1.48939                   aircraft shortly
## 1.48943                     crashed potter
## 1.48944                      potter stated
## 1.48947                      pilot radioed
## 1.48956                       losing power
## 1.48967                         la guardia
## 1.48968                    guardia airport
## 1.48971                 aircraft descended
## 1.48975                   minimum altitude
## 1.48981                         east river
## 1.48984                    aircraft struck
## 1.48990                    shallow descent
## 1.48993                            150 mph
## 1.48997                       landing gear
## 1.49000                     flaps extended
## 1.49001                 extended primarily
## 1.49004                     crash resulted
## 1.49013                   properly monitor
## 1.49014                  monitor essential
## 1.49015              essential instruments
## 1.49018               determining attitude
## 1.49019                       attitude due
## 1.49031                environment limited
## 1.49032                 limited experience
## 1.49042                 aircraft erroneous
## 1.49043                  erroneous setting
## 1.49047                captain's altimeter
## 1.49048                 altimeter possibly
## 1.49049         possibly misinterpretation
## 1.49057                  descent indicator
## 1.49063                           jet lost
## 1.49070                       engines torn
## 1.49075                       ploughed 300
## 1.49076                          300 yards
## 1.49082                      landed upside
## 1.49086                     trees embedded
## 1.49090                   mangled fuselage
## 1.49111                        cargo plane
## 1.49118                  maintain altitude
## 1.49123                     engine crashed
## 1.49128                  emergency landing
## 1.49129                    landing crashed
## 1.49130                    crashed shortly
## 1.49133                   takeoff inverted
## 1.49136                      trees failure
## 1.49140                           1 engine
## 1.49149                       landing gear
## 1.49150                   gear immediately
## 1.49154                   aircraft reached
## 1.49155                         reached v2
## 1.49156                         v2 failure
## 1.49167                    aircraft banked
## 1.49168                        banked left
## 1.49169                          left lost
## 1.49170                      lost altitude
## 1.49175                       trees engine
## 1.49176                     engine failure
## 1.49181                        cargo plane
## 1.49182                      plane crashed
## 1.49195                    poor visibility
## 1.49196              visibility conditions
## 1.49200               previously descended
## 1.49204                       low altitude
## 1.49213                       plane banked
## 1.49227                      ground strong
## 1.49228                        strong gust
## 1.49240                     final approach
## 1.49243                       land causing
## 1.49250                     ground crashed
## 1.49253                           en route
## 1.49260                      wing detached
## 1.49263                         flight due
## 1.49267                 structural failure
## 1.49268                     failure caused
## 1.49271                  severe vibrations
## 1.49272                     vibrations due
## 1.49275                 additional engines
## 1.49282                      special model
## 1.49283                    model sustained
## 1.49284               sustained structural
## 1.49285                 structural failure
## 1.49293                        cargo plane
## 1.49294                         plane lost
## 1.49295                       lost control
## 1.49299                         fire broke
## 1.49304                         cargo hold
## 1.49312                          aft belly
## 1.49313                  belly compartment
## 1.49314                 compartment caused
## 1.49320                    unguarded light
## 1.49321                         light bulb
## 1.49331                   compartment wall
## 1.49336                     hydraulic unit
## 1.49342                        wing center
## 1.49343                     center section
## 1.49348                          rear spar
## 1.49349                      spar igniting
## 1.49352                flammable hydraulic
## 1.49353                    hydraulic fluid
## 1.49354                     fluid exlpoded
## 1.49357                        caught fire
## 1.49360                           bahia de
## 1.49361                            de kino
## 1.49369                   exploded onboard
## 1.49372                        cargo plane
## 1.49373                     plane aircraft
## 1.49374                    aircraft flying
## 1.49377                instruments drifted
## 1.49378                      drifted north
## 1.49382                       normal track
## 1.49386                       strong winds
## 1.49391                          mt suphan
## 1.49400                   accurate bearing
## 1.49415                normal temperatures
## 1.49423                  altimeter reading
## 1.49424               reading calculations
## 1.49437                 controlled crashed
## 1.49441                        east slopes
## 1.49444                          sierra de
## 1.49445                       de valdemeca
## 1.49449                       diverted due
## 1.49452                       poor weather
## 1.49453                    weather joaquin
## 1.49454                      joaquin blume
## 1.49455                      blume spain's
## 1.49456                   spain's european
## 1.49457                european gymnastics
## 1.49458                gymnastics champion
## 1.49459                    champion killed
## 1.49460                 killed unfavorable
## 1.49461                unfavorable weather
## 1.49470                      planned route
## 1.49479                    aircraft struck
## 1.49480                     struck alfabia
## 1.49481                       alfabia peak
## 1.49484                         3,300 feet
## 1.49485                  feet insufficient
## 1.49486              insufficient altitude
## 1.49491                       normal climb
## 1.49492                        climb power
## 1.49493                power disintegrated
## 1.49496                         flight due
## 1.49499                  severe turbulence
## 1.49504                 thunderstorm icing
## 1.49507                  farmhand observed
## 1.49513                           ice fall
## 1.49524                        plane crash
## 1.49525                    crash involving
## 1.49526                  involving capital
## 1.49527                   capital airlines
## 1.49528                  airlines occurred
## 1.49531                      charleston wv
## 1.49538                pilot intentionally
## 1.49539               intentionally ground
## 1.49540                      ground looped
## 1.49548                   steep embankment
## 1.49549                  embankment caught
## 1.49550                        caught fire
## 1.49553                     burned landing
## 1.49559                         wet runway
## 1.49562              conditions conductive
## 1.49565                aquaplaning crashed
## 1.49574                           en route
## 1.49575                      route crashed
## 1.49588                 night undetermined
## 1.49596                           en route
## 1.49599                     plane carrying
## 1.49600                carrying nicaraguan
## 1.49601                  nicaraguan rebels
## 1.49608                     nicaraguan air
## 1.49609                          air force
## 1.49610                      force fighter
## 1.49611                     fighter thirty
## 1.49612                     thirty minutes
## 1.49618                       sheyma rivit
## 1.49619                        rivit amber
## 1.49620                      amber radioed
## 1.49621               radioed experiencing
## 1.49622             experiencing vibration
## 1.49634                      radio contact
## 1.49640                   aircraft crashed
## 1.49643                        sea shortly
## 1.49648                         sandy lake
## 1.49651                      single engine
## 1.49652                    engine aircraft
## 1.49653                   aircraft stalled
## 1.49677                  authorized person
## 1.49683                          left seat
## 1.49693                   accident crashed
## 1.49699                         cerro baco
## 1.49700                       baco located
## 1.49703                              12 km
## 1.49704                       km northwest
## 1.49718                             7 fuel
## 1.49719                         fuel tanks
## 1.49724                      wing exploded
## 1.49728                     storm ignition
## 1.49731                    gasoline vapors
## 1.49732                   vapors emanating
## 1.49735                          fuel tank
## 1.49736                          tank vent
## 1.49737                         vent pipes
## 1.49740                   static discharge
## 1.49750                      pilot ejected
## 1.49753                  parachuted safely
## 1.49760                      engine caught
## 1.49761                        caught fire
## 1.49769                      plane crashed
## 1.49773                   miyamori primary
## 1.49774                     primary school
## 1.49775                    school compound
## 1.49779           surrounding neighborhood
## 1.49780               neighborhood killing
## 1.49781                         killing 17
## 1.49795                    subsequent fire
## 1.49804                        158 persons
## 1.49805                         persons 28
## 1.49806                        28 families
## 1.49810                   homeless shortly
## 1.49815                        kuwait city
## 1.49816                       city airport
## 1.49822                   aircraft stalled
## 1.49828                           desert 6
## 1.49829                               6 km
## 1.49835                        cargo plane
## 1.49836                      plane crashed
## 1.49839                           en route
## 1.49840                 route navigational
## 1.49841                 navigational error
## 1.49844                      pilot entered
## 1.49847                       wrong valley
## 1.49853                    loaded aircraft
## 1.49861                    trainee captain
## 1.49862                  captain attempted
## 1.49870             prescribed limitations
## 1.49878                   engine overshoot
## 1.49885                         low height
## 1.49890                 prescribed minimum
## 1.49891                      minimum speed
## 1.49905                        violent yaw
## 1.49908                         sharp drop
## 1.49916                   training captain
## 1.49922               minimum requirements
## 1.49927                   engine overshoot
## 1.49931                       viscount 815
## 1.49932                       815 aircraft
## 1.49942                        crew failed
## 1.49951                      excessive yaw
## 1.49956              unintentional rolling
## 1.49957                   rolling maneuver
## 1.49965                    permit complete
## 1.49966                  complete recovery
## 1.49967                  recovery nineteen
## 1.49968                   nineteen minutes
## 1.49977                   aircraft entered
## 1.49982                          struck mt
## 1.49983                         mt monseny
## 1.49984                      monseny pilot
## 1.49988                  follow prescribed
## 1.49989             prescribed regulations
## 1.49992                 aircraft descended
## 1.49997                          crashed 5
## 1.49998                            5 miles
## 1.49999                        miles short
## 1.50010                           crew led
## 1.50013                      aircraft pass
## 1.50019                   marginal weather
## 1.50020                 weather conditions
## 1.50028              insufficient altitude
## 1.50031               published procedures
## 1.50034                        cargo plane
## 1.50040                             200 ft
## 1.50041                         ft stalled
## 1.50044                   crashed elevator
## 1.50045                   elevator control
## 1.50046                       control lost
## 1.50049                           aft link
## 1.50050                      link assembly
## 1.50059                   elevator control
## 1.50060                       control horn
## 1.50061                      horn assembly
## 1.50065                 improperly secured
## 1.50066                       secured bolt
## 1.50072                   flight explosion
## 1.50073                 explosion occurred
## 1.50077                    passenger cabin
## 1.50080                     male passenger
## 1.50090                          bomb fell
## 1.50101                     forced landing
## 1.50106                          poza rica
## 1.50110                         fire broke
## 1.50115                      cabin shortly
## 1.50121                        cargo plane
## 1.50122                     plane deviated
## 1.50133                    reasons unknown
## 1.50134                    unknown crashed
## 1.50143                          sao paulo
## 1.50144                      paulo airport
## 1.50147               undetermined crashed
## 1.50156                      adak improper
## 1.50157                  improper approach
## 1.50158                      approach crew
## 1.50159                         crew error
## 1.50160                        error pilot
## 1.50168                      visual flight
## 1.50169                       flight rules
## 1.50172                  hazardous terrain
## 1.50173                    terrain crashed
## 1.50174                    crashed shortly
## 1.50179                   gaining altitude
## 1.50184                         trees loss
## 1.50188                        engine crew
## 1.50192                   properly monitor
## 1.50193                  monitor altimeter
## 1.50196                  flight separation
## 1.50200                          left wing
## 1.50201                      wing resulted
## 1.50205                  aircraft crashing
## 1.50206                         crashing 3
## 1.50207                            3 miles
## 1.50208                    miles southeast
## 1.50211                      buffalo texas
## 1.50214                        design flaw
## 1.50215                        flaw caused
## 1.50223                 transfer propeller
## 1.50224                   propeller wobble
## 1.50228                  outboard nacelles
## 1.50231                    induced flutter
## 1.50253                               3 17
## 1.50254                            17 1960
## 1.50261                 government mission
## 1.50264                 supply contractors
## 1.50282                          heavy fog
## 1.50285                      plane crashed
## 1.50289                       hill crashed
## 1.50292                    approach crew's
## 1.50293                    crew's handling
## 1.50297                          plane led
## 1.50301                     premature loss
## 1.50308                     obstacles crew
## 1.50309                       crew fatigue
## 1.50310                    fatigue moments
## 1.50315                        left engine
## 1.50316                    engine exploded
## 1.50319                        caught fire
## 1.50325                          plane hit
## 1.50328                        12,000 volt
## 1.50329                     volt powerline
## 1.50332                       crash landed
## 1.50333                     landed upright
## 1.50334                    upright sliding
## 1.50335                         sliding 65
## 1.50336                            65 feet
## 1.50359                         5 cylinder
## 1.50363                        left engine
## 1.50364                      engine failed
## 1.50365                     failed leading
## 1.50373                      left engine's
## 1.50374                      engine's ring
## 1.50375                          ring cowl
## 1.50382                     excessive drag
## 1.50388                   sustained flight
## 1.50389                  flight impossible
## 1.50390             impossible maintenance
## 1.50391                maintenance records
## 1.50401                          oil leaks
## 1.50402                      leaks crashed
## 1.50405                        bucks elbow
## 1.50406                     elbow mountain
## 1.50410                       ils approach
## 1.50413            charlottesville airport
## 1.50414               airport navigational
## 1.50415              navigational omission
## 1.50416                 omission resulting
## 1.50430                      lone survivor
## 1.50435              navigational omission
## 1.50451               precision instrument
## 1.50452                  instrument flying
## 1.50453                  flying procedures
## 1.50456                contributing factor
## 1.50464                     pre occupation
## 1.50468                  captain resulting
## 1.50471                      mental stress
## 1.50472                      stress engine
## 1.50473                     engine failure
## 1.50478                      plane crashed
## 1.50479                          crashed 5
## 1.50480                          5 minutes
## 1.50486                        gudgeon pin
## 1.50487                        pin bearing
## 1.50492                           6 piston
## 1.50496                        left engine
## 1.50499                        cargo plane
## 1.50500                     plane exploded
## 1.50505                           en route
## 1.50509                        engine fire
## 1.50516                     fire detection
## 1.50519                     warning system
## 1.50540                          fuel feed
## 1.50541                        feed system
## 1.50544                           oil tank
## 1.50551                           2 engine
## 1.50552                        engine loss
## 1.50557                   icing conditions
## 1.50565                              45ã â
## 1.50568                approach apparently
## 1.50569                     apparently due
## 1.50573             excessive accumulation
## 1.50596                   aircraft crashed
## 1.50604                         29 degrees
## 1.50605                         degrees 13
## 1.50606                         13 minutes
## 1.50609                         88 degrees
## 1.50610                         degrees 40
## 1.50611                         40 minutes
## 1.50616                          108 miles
## 1.50617                         miles east
## 1.50618                     east southeast
## 1.50631                   orleans sabotage
## 1.50632                 sabotage explosion
## 1.50636                      dynamite bomb
## 1.50637                        bomb aboard
## 1.50640                 strongly suspected
## 1.50646                         proven due
## 1.50651                  physical evidence
## 1.50667                  national airlines
## 1.50668                     airlines crash
## 1.50671                          january 6
## 1.50672                             6 1960
## 1.50681                    crashed shortly
## 1.50684                        takeoff 2.5
## 1.50685                          2.5 miles
## 1.50688                     beirut airport
## 1.50689                 airport navigation
## 1.50690                   navigation error
## 1.50694                        flight fire
## 1.50699                           1 engine
## 1.50706                         start fire
## 1.50707                     fire emergency
## 1.50708                   emergency action
## 1.50712                resulting reduction
## 1.50723                      climb shortly
## 1.50729                  plane experienced
## 1.50732                       fire warning
## 1.50737                           2 engine
## 1.50738                        engine shut
## 1.50747                     midway airport
## 1.50751                     final approach
## 1.50754                    aircraft banked
## 1.50759                         45 degrees
## 1.50764                     excessive sink
## 1.50765                          sink rate
## 1.50769                   aircraft reached
## 1.50787                  climbing attitude
## 1.50791                  descent continued
## 1.50795                      plane crashed
## 1.50801                     mile southeast
## 1.50819                     final approach
## 1.50849                         24 causing
## 1.50854                       lift crashed
## 1.50857                         bald eagle
## 1.50858                     eagle mountain
## 1.50859                        mountain 13
## 1.50860                           13 miles
## 1.50861                        miles south
## 1.50868                       ils approach
## 1.50871              williamsport probable
## 1.50872                probable accidental
## 1.50873                  accidental caging
## 1.50877                   fluxgate compass
## 1.50878                    compass leading
## 1.50882                  erroneous heading
## 1.50883                 heading indication
## 1.50884               indication captain's
## 1.50885                  captain's failure
## 1.50890                   timely abandoned
## 1.50891                 abandoned approach
## 1.50898               survived disappeared
## 1.50899                     disappeared en
## 1.50900                           en route
## 1.50903                       landing gear
## 1.50904                         gear found
## 1.50907                       moron island
## 1.50910               undetermined crashed
## 1.50916                           en route
## 1.50917                         route crew
## 1.50918                         crew error
## 1.50921                      crew deviated
## 1.50924                    prescribe route
## 1.50927                    captain decided
## 1.50934                     imc conditions
## 1.50949                              50 km
## 1.50958                     intended route
## 1.50961                        cargo plane
## 1.50962                       plane cashed
## 1.50963                          cashed en
## 1.50964                           en route
## 1.50967                   reporting engine
## 1.50968                     engine trouble
## 1.50969                    trouble crashed
## 1.50976                   practice landing
## 1.50984                     balked landing
## 1.50985                   landing maneuver
## 1.50986                   maneuver carried
## 1.50991                       speed limits
## 1.50994                   safe directional
## 1.50995                directional control
## 1.51002                 critical situation
## 1.51018                simulated emergency
## 1.51019                 emergency exercise
## 1.51023                        power units
## 1.51024                  units inoperative
## 1.51027                   midair collision
## 1.51033                   vickers viscount
## 1.51037                      brazilian air
## 1.51038                          air force
## 1.51039                       force fokker
## 1.51042                         21 trainer
## 1.51056                 trainer parachuted
## 1.51061                          32 aboard
## 1.51077                      ramos failure
## 1.51093                   trainer aircraft
## 1.51101                      approach path
## 1.51105                   viscount shortly
## 1.51110                        cargo plane
## 1.51111                         plane lost
## 1.51115                           2 engine
## 1.51124                    crashed failure
## 1.51141                   marginal weather
## 1.51144                contributing factor
## 1.51150               overloaded condition
## 1.51170                    dangerously low
## 1.51171                       low altitude
## 1.51172                   altitude crashed
## 1.51177                        cargo plane
## 1.51178                      plane crashed
## 1.51181                  dropping supplies
## 1.51207                       wrong valley
## 1.51220                   aircraft stalled
## 1.51225                plane disintegrated
## 1.51230                        18,000 feet
## 1.51233                        crashed 1.5
## 1.51234                          1.5 miles
## 1.51235                    miles northwest
## 1.51238                      bolivia north
## 1.51239                     north carolina
## 1.51240                carolina detonation
## 1.51244                      dynamite bomb
## 1.51249                           dry cell
## 1.51250                     cell batteries
## 1.51256                              row 7
## 1.51260                    passenger cabin
## 1.51263                    plane continued
## 1.51269                         short time
## 1.51279                      plane crashed
## 1.51285                      flames julian
## 1.51286                       julian frank
## 1.51290                        purchased 1
## 1.51291                          1 million
## 1.51292                    million dollars
## 1.51299                 committing suicide
## 1.51315                  possibility frank
## 1.51321                     unwitting bomb
## 1.51322                       bomb carrier
## 1.51334                  national airlines
## 1.51335                     airlines crash
## 1.51338                        november 16
## 1.51339                            16 1959
## 1.51352                   aircraft crashed
## 1.51365                     level attitude
## 1.51368                     delayed arming
## 1.51372                         engine ice
## 1.51373                     ice protection
## 1.51374                 protection systems
## 1.51379                   icing conditions
## 1.51380                 conditions causing
## 1.51381                   causing eventual
## 1.51382                     eventual flame
## 1.51390                  condition existed
## 1.51393                    sufficient time
## 1.51400                 battery electrical
## 1.51401                  electrical energy
## 1.51402                  energy preventing
## 1.51409                 sufficient engines
## 1.51412                    maintain flight
## 1.51423                  attain sufficient
## 1.51424                sufficient airspeed
## 1.51433                feathered positions
## 1.51436                       wind milling
## 1.51441                      time multiple
## 1.51442                  multiple attempts
## 1.51451                 engines successful
## 1.51452                successful relights
## 1.51458                       auto feather
## 1.51459                     feather action
## 1.51460                   action initiated
## 1.51463                premature advancing
## 1.51467                    throttles prior
## 1.51470                     complete light
## 1.51479               insufficient battery
## 1.51480                 battery electrical
## 1.51481                  electrical energy
## 1.51484                           4 engine
## 1.51487                   eventually relit
## 1.51494                 successfully relit
## 1.51497                           3 engine
## 1.51501                   aircraft crashed
## 1.51510                      ankara turkey
## 1.51513                   aircraft crashed
## 1.51519                   esenboga airport
## 1.51520                          airport 6
## 1.51521                               6 nm
## 1.51522                           nm short
## 1.51528                    aircraft struck
## 1.51536                           3,500 ft
## 1.51540                    ankara mountain
## 1.51541                     mountain range
## 1.51547              unintentional descent
## 1.51551                 authorized minimum
## 1.51552                     minimum flight
## 1.51553                    flight altitude
## 1.51556                     final approach
## 1.51559                   esenboga airport
## 1.51571                          named orm
## 1.51572                         orm viking
## 1.51575                      heavy landing
## 1.51576                        landing led
## 1.51579                 structural failure
## 1.51588                     final approach
## 1.51589                      approach path
## 1.51590                     path resulting
## 1.51594                      heavy landing
## 1.51599                   major structural
## 1.51600                 structural failure
## 1.51601                   failure occurred
## 1.51605                          port wing
## 1.51606                          wing crew
## 1.51607                       crew fatigue
## 1.51608                       fatigue lack
## 1.51611                    proper training
## 1.51612                     training radio
## 1.51613                      radio contact
## 1.51625                         ocean poor
## 1.51626                       poor weather
## 1.51627                weather unqualified
## 1.51628                  unqualified pilot
## 1.51639                         9,000 feet
## 1.51642                     captain stated
## 1.51646                    engine exploded
## 1.51647                   exploded shortly
## 1.51659                   laguna huanacota
## 1.51662                              13 km
## 1.51663                           km south
## 1.51672                      girl survived
## 1.51679    injuries.investigators believed
## 1.51683                    maximum takeoff
## 1.51684                     takeoff weight
## 1.51693                   engine exploding
## 1.51694                   exploding midair
## 1.51695                   midair collision
## 1.51699                               dc 3
## 1.51706                        6d improper
## 1.51707                  improper piloting
## 1.51708                piloting procedures
## 1.51713              authorized instrument
## 1.51714                  instrument flight
## 1.51717                         navy pilot
## 1.51723                          usn plane
## 1.51724                    plane disobeyed
## 1.51725             disobeyed instructions
## 1.51726           instructions transmitted
## 1.51729                       rio approach
## 1.51730                   approach control
## 1.51733                           u.s navy
## 1.51734                     navy disagreed
## 1.51742                       pilot twenty
## 1.51748                               dc 3
## 1.51749                               3 35
## 1.51753                              r4 d6
## 1.51760                          navy band
## 1.51766                      plane crashed
## 1.51770                        swamp short
## 1.51774                   runway threshold
## 1.51775                    threshold icing
## 1.51779              horizontal stabilizer
## 1.51780                    stabilizer lost
## 1.51781                      lost altitude
## 1.51782                   altitude shortly
## 1.51790                    unknown crashed
## 1.51794                          jungle en
## 1.51795                           en route
## 1.51796                          route mid
## 1.51797                            mid air
## 1.51798                      air collision
## 1.51802                          japan air
## 1.51805                      defence force
## 1.51808                         86 fighter
## 1.51817                     planes crashed
## 1.51822                           86 pilot
## 1.51823                      pilot ejected
## 1.51824                     ejected safely
## 1.51828                  flight separation
## 1.51834                        design flaw
## 1.51835                        flaw caused
## 1.51841                         whirl mode
## 1.51844                 transfer propeller
## 1.51845                   propeller wobble
## 1.51849                  outboard nacelles
## 1.51852                    induced flutter
## 1.51864                       wing reduced
## 1.51865                  reduced stiffness
## 1.51882                     air turbulence
## 1.51885               contributing factors
## 1.51896                               9 29
## 1.51897                              29 59
## 1.51898                          59 forced
## 1.51899                     forced landing
## 1.51902                     engine failure
## 1.51929                          radio aid
## 1.51933               contributing factors
## 1.51936          intermittent overspeeding
## 1.51939                 propellers adverse
## 1.51940                    adverse weather
## 1.51944                communication tower
## 1.51945                         tower flew
## 1.51949                       hill shortly
## 1.51954                     engine failure
## 1.51955                        failure due
## 1.51959                      fatigue crack
## 1.51968                      plane drifted
## 1.51981                     aircraft pilot
## 1.51982                        pilot error
## 1.51983                    error incorrect
## 1.51994                      ground struck
## 1.51995                          struck mt
## 1.51996                           mt wuzhi
## 1.51997                      wuzhi located
## 1.51998                          located 8
## 1.51999                               8 km
## 1.52000                       km northeast
## 1.52004                     airport failed
## 1.52007                      gain altitude
## 1.52015                       hill crashed
## 1.52018                     final approach
## 1.52021                       pilot failed
## 1.52025                      proper action
## 1.52037                     final approach
## 1.52042                   pilot experience
## 1.52050                   midair collision
## 1.52067                    taking aircraft
## 1.52068                    aircraft failed
## 1.52079                    landing appoach
## 1.52082                        died aboard
## 1.52089                  fairchild crashed
## 1.52095                        bogoro peak
## 1.52096                       peak located
## 1.52099                               8 km
## 1.52100                           km short
## 1.52105                      approach crew
## 1.52106                         crew error
## 1.52117                    minimum ceiling
## 1.52118                 ceiling prescribed
## 1.52121                   aircraft crashed
## 1.52125                   explosion aboard
## 1.52126                  aboard detonation
## 1.52130                       hand grenade
## 1.52131                    grenade brought
## 1.52132                     brought aboard
## 1.52136                  russian immigrant
## 1.52139                 explosion occurred
## 1.52151                           8,000 ft
## 1.52152                              ft mt
## 1.52153                           mt marra
## 1.52154                   marra navigation
## 1.52155                   navigation error
## 1.52168                   position crashed
## 1.52169                        crashed due
## 1.52172                 structural failure
## 1.52177                  extremely violent
## 1.52178                 violent turbulence
## 1.52179            turbulence insufficient
## 1.52180           insufficient preparation
## 1.52187                    crew inadequate
## 1.52188            inadequate arrangements
## 1.52192                    secure carriage
## 1.52198                     pilots failure
## 1.52205                 prevailing weather
## 1.52206                 weather conditions
## 1.52211                              11 21
## 1.52212                              21 61
## 1.52215                   aircraft stalled
## 1.52218               reasons undetermined
## 1.52226                    effect recovery
## 1.52229                      plane crashed
## 1.52232                     hillside woods
## 1.52235                           en route
## 1.52236                         route poor
## 1.52237                  poor organization
## 1.52250                     flight crashed
## 1.52254                            sea 7.5
## 1.52255                          7.5 miles
## 1.52264                    holding pattern
## 1.52265                    pattern waiting
## 1.52277                    aircraft failed
## 1.52282                    intended flight
## 1.52283                        flight path
## 1.52291                         mt gilbert
## 1.52294                           9,646 ft
## 1.52302                     crew's failure
## 1.52308                  navigational aids
## 1.52313                aircraft's position
## 1.52328                  dangerous terrain
## 1.52331                contributing factor
## 1.52340                        air defense
## 1.52341                      defense radar
## 1.52367                      guanabara bay
## 1.52374                    airship crashed
## 1.52375                       crashed nose
## 1.52380                     atlantic ocean
## 1.52381                           ocean 10
## 1.52382                           10 miles
## 1.52394                           seam due
## 1.52398                     unknown factor
## 1.52403                   adhesive crashed
## 1.52407                       persian gulf
## 1.52410                           en route
## 1.52413              undetermined wreckage
## 1.52416                      found crashed
## 1.52421                       mt pichincha
## 1.52438                           2 engine
## 1.52449                  emergency descent
## 1.52455                      plane ditched
## 1.52470                     fuselage broke
## 1.52471                         broke free
## 1.52478                  pressure bulkhead
## 1.52482                          wing tore
## 1.52483                          tore free
## 1.52487                  engines separated
## 1.52490                       wing floated
## 1.52493                       3hrs serving
## 1.52497                          life raft
## 1.52505                      fuselage sank
## 1.52508                         10 minutes
## 1.52511                  impact passengers
## 1.52514                          rescued 6
## 1.52515                            6 hours
## 1.52519                   accident failure
## 1.52523                           2 engine
## 1.52524                   engine resulting
## 1.52527                  oil contamination
## 1.52528                 contamination loss
## 1.52531                         oil supply
## 1.52532                  supply subsequent
## 1.52533                    subsequent loss
## 1.52538                        2 propeller
## 1.52539                 propeller assembly
## 1.52548                   ditching crashed
## 1.52554                           9,000 ft
## 1.52557                    pilot misjudged
## 1.52560                 weather conditions
## 1.52567              deteriorating weather
## 1.52568                 weather conditions
## 1.52573                       maintain vfr
## 1.52576                    pilot attempted
## 1.52585                       minimum safe
## 1.52586                      safe climbing
## 1.52587                     climbing speed
## 1.52593                        twin engine
## 1.52594                    engine aircraft
## 1.52600                    danish football
## 1.52601               football association
## 1.52605                      initial climb
## 1.52608                         pilot lost
## 1.52609                       lost control
## 1.52618                           ocean 50
## 1.52619                          50 meters
## 1.52627                     daniish soccer
## 1.52628                 soccer association
## 1.52634                     pilot survived
## 1.52641                     pilot suffered
## 1.52642                   suffered spatial
## 1.52643             spatial disorientation
## 1.52646                         heavy rain
## 1.52649                  strong crosswinds
## 1.52663                contributing factor
## 1.52667                   accident crashed
## 1.52670                mountainous terrain
## 1.52671                      terrain north
## 1.52674                          lake kivu
## 1.52677                experiencing engine
## 1.52678                     engine failure
## 1.52679                      failure broke
## 1.52683                            mid air
## 1.52691                 experiencing heavy
## 1.52696                 helicopter crashed
## 1.52699                        forest home
## 1.52700                      home cemetery
## 1.52703          structural disintegration
## 1.52706                   flight initiated
## 1.52710                   fatigue fracture
## 1.52714                         main rotor
## 1.52715                        rotor blade
## 1.52722                          crew lost
## 1.52726                           1 engine
## 1.52729                           1,500 ft
## 1.52738                   aircraft crashed
## 1.52739                      crashed 3,300
## 1.52740                           3,300 ft
## 1.52741                           ft short
## 1.52745                     runway failure
## 1.52754                               dc 3
## 1.52755                          3 crashed
## 1.52758                     hayti mountain
## 1.52761                           en route
## 1.52764                           en route
## 1.52768                           4 engine
## 1.52769                      engine caught
## 1.52770                        caught fire
## 1.52773                 fire extinguishing
## 1.52774               extinguishing system
## 1.52780                        fire spread
## 1.52788                         fuel tanks
## 1.52789                     tanks exploded
## 1.52793                      plane crashed
## 1.52794                     crashed cashed
## 1.52797                           en route
## 1.52804                        engine fire
## 1.52805                       fire shortly
## 1.52809                      plane crashed
## 1.52815                      hilly terrain
## 1.52818                          el kelãƒâ
## 1.52821                        des sraghna
## 1.52824                        cargo plane
## 1.52830                      engine banked
## 1.52844                     engine failure
## 1.52853                     reason appears
## 1.52858                     defective fuel
## 1.52861                    ignition system
## 1.52874                      maintain safe
## 1.52875                        safe flight
## 1.52882                     engine remains
## 1.52883                    remains unknown
## 1.52886                   aircraft crashed
## 1.52890                     atlantic ocean
## 1.52894               unsuccessful landing
## 1.52895                    landing attempt
## 1.52900                 structural failure
## 1.52905                        control due
## 1.52908                 turbulence sensory
## 1.52909                   sensory illusion
## 1.52915                        flight crew
## 1.52924                   lightning strike
## 1.52927                         plane flew
## 1.52933                          mt belaya
## 1.52936                       poor weather
## 1.52937                       weather crew
## 1.52938                          crew flew
## 1.52941                   minimums crashed
## 1.52945                   storm separation
## 1.52954              aircraft overspeeding
## 1.52958                        3 propeller
## 1.52959                   propeller caused
## 1.52962                irregular operation
## 1.52966                 propeller governor
## 1.52967                governor detachment
## 1.52978                           4 engine
## 1.52989                  carrying american
## 1.52990                american servicemen
## 1.53002                   aircraft crashed
## 1.53005                       mt barrigada
## 1.53006                 barrigada bursting
## 1.53025                      crash failure
## 1.53033                published departure
## 1.53034               departure procedures
## 1.53046                           1,000 ft
## 1.53049                      plane crashed
## 1.53058                           3 engine
## 1.53074                           3 engine
## 1.53080                      residual fire
## 1.53081                     fire continued
## 1.53090                          fuel tank
## 1.53091                     tank resulting
## 1.53095                  explosion shortly
## 1.53100                      campbell lake
## 1.53105                      single engine
## 1.53106                    engine aircraft
## 1.53107                   aircraft stalled
## 1.53130                     injured engine
## 1.53131                     engine failure
## 1.53132                    failure crashed
## 1.53137                          moscow 11
## 1.53138                              11 nm
## 1.53139                           nm short
## 1.53143              runway malfunctioning
## 1.53146                  misread altimeter
## 1.53147                  altimeter crashed
## 1.53158                              40 km
## 1.53159                           km south
## 1.53162                        mexico city
## 1.53163                       city airport
## 1.53166                          dense fog
## 1.53167                        fog crashed
## 1.53171                     tyrrhenian sea
## 1.53176                 penetrating severe
## 1.53177                severe thunderstorm
## 1.53186                    aircraft struck
## 1.53202                                1 2
## 1.53205                           4 engine
## 1.53216                  feathered engines
## 1.53221                      4 experienced
## 1.53224              substantial momentary
## 1.53225                     momentary loss
## 1.53232                  intermittent loss
## 1.53237                     power resulted
## 1.53241                    aircraft yawing
## 1.53250                        stall speed
## 1.53253                      speed decayed
## 1.53257                      continued yaw
## 1.53260                      skidding left
## 1.53264                        stall speed
## 1.53269                          left wing
## 1.53270                       wing dropped
## 1.53273                       nose pitched
## 1.53278                    aircraft rolled
## 1.53279                        rolled left
## 1.53296                           150 feet
## 1.53297                     feet precluded
## 1.53298                 precluded recovery
## 1.53299                       recovery hit
## 1.53300                             hit mt
## 1.53301                         mt capanne
## 1.53304                           en route
## 1.53313                        cargo plane
## 1.53314                    plane separated
## 1.53320                           6,500 ft
## 1.53321                         ft fatigue
## 1.53326                         wing lower
## 1.53327                       lower attach
## 1.53328                       attach angle
## 1.53329                        angle bolts
## 1.53330                    bolts resulting
## 1.53335                        flight wing
## 1.53336                       wing failure
## 1.53337                    failure crashed
## 1.53341                  premature descent
## 1.53358                           low pass
## 1.53364               unacceptable crashed
## 1.53369                       snow showers
## 1.53376                   aircraft entered
## 1.53379                         steep left
## 1.53380                       left banking
## 1.53390                   apparent attempt
## 1.53399                intersecting valley
## 1.53403                 aircraft continued
## 1.53409                      ground rolled
## 1.53415                   crashed inverted
## 1.53428                         ifr flight
## 1.53429                        flight plan
## 1.53434                       vfr approach
## 1.53437                 instrument weather
## 1.53438                 weather conditions
## 1.53439                 conditions crashed
## 1.53445                     toledo express
## 1.53446                   express airfield
## 1.53447                   airfield landing
## 1.53448                      landing 5,800
## 1.53449                           5,800 ft
## 1.53453                   runway threshold
## 1.53454                  threshold sixteen
## 1.53461                polytechnic college
## 1.53462                        college san
## 1.53463                           san luis
## 1.53464                        luis obispo
## 1.53465                    obispo football
## 1.53466                      football team
## 1.53467                        team killed
## 1.53468                   killed premature
## 1.53469                     premature lift
## 1.53472                       partial loss
## 1.53479                           1 engine
## 1.53480                  engine overweight
## 1.53481                overweight aircraft
## 1.53484                 weather conditions
## 1.53491                          crash ten
## 1.53492                        ten minutes
## 1.53498                   copilot grabbing
## 1.53501                       air marshall
## 1.53512                           key west
## 1.53515                   shooting erupted
## 1.53519                       air marshall
## 1.53536                      initial climb
## 1.53539                      plane stalled
## 1.53545                     huge explosion
## 1.53546                  explosion crashed
## 1.53550                        mountain 20
## 1.53551                           20 miles
## 1.53552                        miles south
## 1.53561                     quito mariscal
## 1.53562                     mariscal sucre
## 1.53563                      sucre airport
## 1.53564                    airport crashed
## 1.53567                            mt baco
## 1.53570                           en route
## 1.53571                 route navigational
## 1.53572                 navigational error
## 1.53575                    adverse weather
## 1.53576                 weather conditions
## 1.53580                      engine caught
## 1.53581                        caught fire
## 1.53584                     crew initiated
## 1.53587                  emergency descent
## 1.53593                         wing broke
## 1.53603                           2 engine
## 1.53604                      engine failed
## 1.53607                           en route
## 1.53610                      aircraft lost
## 1.53611                      lost altitude
## 1.53612                   altitude crashed
## 1.53618                   burned starboard
## 1.53619                   starboard engine
## 1.53620                      engine failed
## 1.53625                    reasons unknown
## 1.53628                    domestic flight
## 1.53629                      flight cashed
## 1.53634                         heavy rain
## 1.53635                           rain 100
## 1.53636                          100 miles
## 1.53640                  destination pilot
## 1.53641                        pilot error
## 1.53642                       error flying
## 1.53643                         flying vfr
## 1.53646                    adverse weather
## 1.53647                 weather conditions
## 1.53650                   midair collision
## 1.53655                      staten island
## 1.53658                           5,000 ft
## 1.53667                         la guardia
## 1.53668                    guardia airport
## 1.53671                          runway 04
## 1.53675                          united dc
## 1.53676                               dc 8
## 1.53677                           8 struck
## 1.53680                     connie tearing
## 1.53685                 connie immediately
## 1.53686                immediately crashed
## 1.53692                        miller army
## 1.53693                           army air
## 1.53694                          air field
## 1.53697                      staten island
## 1.53708                           dc8s jet
## 1.53709                        jet engines
## 1.53712                    passengers fell
## 1.53719                  spinning fuselage
## 1.53720                      fuselage fell
## 1.53723                      staten island
## 1.53726                         united jet
## 1.53732                  emergency landing
## 1.53735                         la guardia
## 1.53736                    guardia airport
## 1.53741                  maintain altitude
## 1.53749                     brooklyn forty
## 1.53762                               dc 8
## 1.53770                               dc 8
## 1.53771                             8 died
## 1.53772                       died shortly
## 1.53777                        boy stephen
## 1.53778                      stephen baltz
## 1.53779                     baltz survived
## 1.53797                        united crew
## 1.53798                       crew entered
## 1.53801                       low altitude
## 1.53802                   altitude holding
## 1.53803                    holding pattern
## 1.53806                          500 miles
## 1.53819                          flew past
## 1.53822                   clearance limits
## 1.53825                 airspace allocated
## 1.53832                             2 vors
## 1.53836                               dc 8
## 1.53858                     provided extra
## 1.53859                        extra radar
## 1.53860                   radar assistance
## 1.53863                      aircraft lost
## 1.53870                      munich unable
## 1.53873                  maintain altitude
## 1.53876                   aircraft crashed
## 1.53879                          st paul's
## 1.53880                   paul's cathedral
## 1.53881                   cathedral church
## 1.53886                  crowded streetcar
## 1.53890                   business section
## 1.53894                     city breeching
## 1.53897                           gas main
## 1.53902                        fierce fire
## 1.53903                        fire thirty
## 1.53920                          fuel tank
## 1.53921                       tank booster
## 1.53922                       booster pump
## 1.53923                          pump fuel
## 1.53924                 fuel contamination
## 1.53925              contamination causing
## 1.53926                     causing engine
## 1.53927                     engine failure
## 1.53928                    failure crashed
## 1.53931                    takeoff failure
## 1.53936                           1 engine
## 1.53937                     engine shortly
## 1.53944                   v2 inappropriate
## 1.53945            inappropriate emergency
## 1.53946               emergency procedures
## 1.53949                          crew loss
## 1.53952                   control resulted
## 1.53955                         40 degrees
## 1.53956                      degrees flaps
## 1.53959                   selected causing
## 1.53964                        crash icing
## 1.53965                       icing unable
## 1.53968                      gain altitude
## 1.53971                   aircraft crashed
## 1.53974                       power cables
## 1.53977                    takeoff crashed
## 1.53986                      pilots tested
## 1.53987                    tested positive
## 1.54010                satisfactory mental
## 1.54013                 physical condition
## 1.54020                    aborted takeoff
## 1.54021                     takeoff caused
## 1.54029                    airport barrier
## 1.54030                      barrier fence
## 1.54037         unnecessary discontinuance
## 1.54049                        check pilot
## 1.54057                       pilot's seat
## 1.54060                    reached forward
## 1.54070                      action caused
## 1.54071                       caused power
## 1.54079               engines contributing
## 1.54080               contributing factors
## 1.54084                    marginally poor
## 1.54085                       poor weather
## 1.54086                       weather snow
## 1.54096                         pitot head
## 1.54097                          head heat
## 1.54106                    aborted barrier
## 1.54107                    barrier mission
## 1.54110                       aircraft hit
## 1.54117                       short runway
## 1.54120                       main landing
## 1.54121                      landing geart
## 1.54128               aircraft cartwheeled
## 1.54129                   cartwheeled slid
## 1.54133                   vehicle exploded
## 1.54138                    aircraft struck
## 1.54139                          struck mt
## 1.54140                      mt burangrang
## 1.54141                 burangrang attempt
## 1.54149                mountainous terrain
## 1.54158                 weather conditions
## 1.54161                severely restricted
## 1.54162              restricted visibility
## 1.54165               approaching argentia
## 1.54166                   argentia bristol
## 1.54167                      bristol field
## 1.54170                   aircraft crashed
## 1.54174                        trinity bay
## 1.54177                              50 km
## 1.54178                       km northeast
## 1.54186             aircraft disintegrated
## 1.54190                       air possibly
## 1.54194                   mechanical issue
## 1.54216                   aircraaft banked
## 1.54217                        banked left
## 1.54218                       left entered
## 1.54223                 eventually crashed
## 1.54231                  shore disappeared
## 1.54234                           en route
## 1.54245                   aircraft crashed
## 1.54265                       engine power
## 1.54271                   aircraft climbed
## 1.54274                           1,500 ft
## 1.54277                 aircraft completed
## 1.54278                        completed 3
## 1.54279                             3 left
## 1.54280                          left hand
## 1.54281                       hand circles
## 1.54284                 attitude increased
## 1.54293                    entire eighteen
## 1.54296                         u.s figure
## 1.54297                     figure skating
## 1.54298                       skating team
## 1.54299                        team killed
## 1.54300                     killed failure
## 1.54304                  aircraft's flying
## 1.54305                    flying controls
## 1.54306                  controls possibly
## 1.54307                   possibly jamming
## 1.54311                  outboard ailerons
## 1.54314                 unwanted extension
## 1.54318                   spoilers crashed
## 1.54327                           en route
## 1.54328                   route navigation
## 1.54329                   navigation error
## 1.54330                      error failure
## 1.54338                   prescribed route
## 1.54339                       route flying
## 1.54340                         flying vfr
## 1.54343                     ifr conditions
## 1.54344                 conditions crashed
## 1.54351                   aircraft crashed
## 1.54352                       crashed 13.6
## 1.54353                         13.6 miles
## 1.54354                    miles northeast
## 1.54357                        nãƒâ rnberg
## 1.54361                intentional descent
## 1.54364                    unknown reasons
## 1.54365                        reasons led
## 1.54372                       aircraft due
## 1.54375                  structural stress
## 1.54378               defective artificial
## 1.54379                 artificial horizon
## 1.54387                  electrical rudder
## 1.54390                       aileron trim
## 1.54393            physical incapacitation
## 1.54401                      plane crashed
## 1.54404                          la gotera
## 1.54405                        gotera hill
## 1.54416                      unknown icing
## 1.54417                    icing suspected
## 1.54423                        green cross
## 1.54424                      cross chilean
## 1.54425                     chilean soccer
## 1.54426                        soccer team
## 1.54427                        team killed
## 1.54428                    killed wreckage
## 1.54429                     wreckage found
## 1.54430                           found 54
## 1.54437                  aircraft impacted
## 1.54438                     impacted mount
## 1.54439                       mount parker
## 1.54440                     parker shortly
## 1.54446                      foggy weather
## 1.54447                 weather conditions
## 1.54450                           en route
## 1.54453                          fort lamy
## 1.54454                          lamy chad
## 1.54457                  marseilles france
## 1.54460                   airliner crashed
## 1.54466                      sahara desert
## 1.54470                      algeria libya
## 1.54471                       libya border
## 1.54472                  border detonation
## 1.54476                nitrocellulose bomb
## 1.54480                      night takeoff
## 1.54488                           500 feet
## 1.54504                     engine stalled
## 1.54514                    lisbon portugal
## 1.54517                   aircraft plunged
## 1.54521                     atlantic ocean
## 1.54535                        spiral dive
## 1.54543                            500 mph
## 1.54552                 artificial horizon
## 1.54556             instrument malfunction
## 1.54563                         steep left
## 1.54564                          left bank
## 1.54584                 correction crashed
## 1.54593                         approach 4
## 1.54594                               4 km
## 1.54595                           km short
## 1.54599                      runway crew's
## 1.54600                     crew's neglect
## 1.54603                     cockpit duties
## 1.54604                     duties pilot's
## 1.54605                pilot's inattention
## 1.54613               airplane encountered
## 1.54614           encountered difficulties
## 1.54617                     gaining height
## 1.54625                           2 engine
## 1.54626                      engine struck
## 1.54629                       tree located
## 1.54630                      located 1,200
## 1.54631                       1,200 meters
## 1.54632                        meters past
## 1.54638                 airplane continued
## 1.54641                         low height
## 1.54647                       tree causing
## 1.54650                          fuel tank
## 1.54657                         catch fire
## 1.54672                     night training
## 1.54673                  training exercise
## 1.54674                     exercise error
## 1.54688                      runway lights
## 1.54689                lights concentrated
## 1.54700                 adequate reference
## 1.54704                 flight instruments
## 1.54717                 obstacle clearance
## 1.54718                    clearance limit
## 1.54727                   ground reference
## 1.54730                      runway lights
## 1.54734              insufficient guidance
## 1.54754                       ground level
## 1.54767                 aircraft's landing
## 1.54768                     landing lights
## 1.54771                conributing factors
## 1.54772                    factors crashed
## 1.54778                    telegraph poles
## 1.54781                 final approach.the
## 1.54782                 approach.the pilot
## 1.54783                       pilot failed
## 1.54788                instrument approach
## 1.54789                approach procedures
## 1.54795                          plane ran
## 1.54801                       crash landed
## 1.54802                        landed crew
## 1.54808                          kazan hit
## 1.54809                       hit apporach
## 1.54810                    apporach lights
## 1.54817                         heavy rain
## 1.54822                    omaha hydraulic
## 1.54823             hydraulic difficulties
## 1.54835               aircraft experienced
## 1.54836           experienced asymmetrical
## 1.54837               asymmetrical reverse
## 1.54838                     reverse thrust
## 1.54846                  maintenance truck
## 1.54849                burned asymmetrical
## 1.54850                asymmetrical thrust
## 1.54854                    landing attempt
## 1.54855                        attempt due
## 1.54859                hydraulic emergency
## 1.54862                                1 2
## 1.54863                           2 thrust
## 1.54864                   thrust reversers
## 1.54865                   reversers failed
## 1.54868                        crew failed
## 1.54876                       pressure air
## 1.54877                         air bottle
## 1.54883                   reverse ejectors
## 1.54887                  extended position
## 1.54891                hydraulic emergency
## 1.54892                     emergency poor
## 1.54893                    poor evacuation
## 1.54894              evacuation procedures
## 1.54897                contributing factor
## 1.54909                     thrust reverse
## 1.54910                  reverse indicator
## 1.54911                   indicator lights
## 1.54914                   applying reverse
## 1.54915                     reverse thrust
## 1.54919                        crew's lack
## 1.54927               aircraft's hydraulic
## 1.54928                   hydraulic system
## 1.54934                  maintenance truck
## 1.54939                     reaching rabat
## 1.54949                        poor ground
## 1.54950                  ground visibility
## 1.54951              visibility conditions
## 1.54961                     plane overshot
## 1.54970               worsening conditions
## 1.54979                            u.s air
## 1.54980                          air force
## 1.54981                         force base
## 1.54989                 seeking permission
## 1.55006                   aircraft crashed
## 1.55014                        miles short
## 1.55020             aircraft disintegrated
## 1.55033                       design loads
## 1.55036                   aircraft entered
## 1.55041                 extreme turbulence
## 1.55047                lightning undershot
## 1.55052                           200 feet
## 1.55053                       feet crashed
## 1.55056                     burned absence
## 1.55061                      runway lights
## 1.55062                        lights lack
## 1.55067                        air traffic
## 1.55068                 traffic controller
## 1.55076                   aircraft crashed
## 1.55086                 sightseeing flight
## 1.55087                 flight inattention
## 1.55092                      duties pilots
## 1.55095                       2 companions
## 1.55102                      entire flight
## 1.55105                performed forbidden
## 1.55106                forbidden maneuvers
## 1.55107                maneuvers including
## 1.55115                       lost control
## 1.55119                   aircraft crashed
## 1.55123                      mountain18 nm
## 1.55124                       nm northeast
## 1.55127                 stravanger airport
## 1.55128                  airport deviation
## 1.55134                    unknown crashed
## 1.55150                     normal pattern
## 1.55156                    normal altitude
## 1.55160                        flight fire
## 1.55161                     fire initiated
## 1.55167                        severe fuel
## 1.55168                          fuel leak
## 1.55171                          fuel leak
## 1.55180                   carburetor drain
## 1.55181                         drain plug
## 1.55186                   aircraft crashed
## 1.55192                           field 10
## 1.55193                           10 miles
## 1.55194                         miles west
## 1.55197                     midway airport
## 1.55205                      midway headed
## 1.55208                          las vegas
## 1.55209                         vegas loss
## 1.55213                               5 16
## 1.55214                            16 inch
## 1.55215                         inch steel
## 1.55216                         steel bolt
## 1.55220                     elevator boost
## 1.55221                       boost system
## 1.55232                    upward position
## 1.55233                  position creating
## 1.55243            aircraft malfunctioning
## 1.55244           malfunctioning propeller
## 1.55254                  emergency landing
## 1.55258                      plane stalled
## 1.55263                   aircraft crashed
## 1.55267                      terrain 1,500
## 1.55268                       1,500 meters
## 1.55269                       meters short
## 1.55275                    adverse weather
## 1.55276                 weather conditions
## 1.55277                conditions probable
## 1.55282                      visual filght
## 1.55285                    adverse weather
## 1.55286                 weather conditions
## 1.55287                   conditions cargo
## 1.55288                        cargo plane
## 1.55289                      plane crashed
## 1.55292                   aircraft crashed
## 1.55296                      shannon river
## 1.55297                      river shortly
## 1.55308                 artificial horizon
## 1.55311                 aircraft's aileron
## 1.55312                       aileron tabs
## 1.55313                  tabs contributing
## 1.55314                contributing factor
## 1.55320                       crew fatigue
## 1.55323                   aircraft crashed
## 1.55332                       sale airport
## 1.55336                       landing gear
## 1.55340                    flaps partially
## 1.55341                 partially extended
## 1.55344                       plane struck
## 1.55350                        slight nose
## 1.55355                  misread altimeter
## 1.55356                  altimeter takeoff
## 1.55359                      initial climb
## 1.55360                     climb appeared
## 1.55367                  approximately 200
## 1.55368                           200 feet
## 1.55379               gradually increasing
## 1.55380                    increasing bank
## 1.55386                         90 degrees
## 1.55396                      short garbled
## 1.55397               garbled transmission
## 1.55398            transmission indicating
## 1.55399                   indicating alarm
## 1.55409                    gradual descent
## 1.55419                    aircraft struck
## 1.55422                  ground mechanical
## 1.55423                 mechanical failure
## 1.55427                    aileron primary
## 1.55428                    primary control
## 1.55429                     control system
## 1.55430                         system due
## 1.55434               improper replacement
## 1.55438                      aileron boost
## 1.55439                     boost assembly
## 1.55440                 assembly resulting
## 1.55446                    lateral control
## 1.55457                    effect recovery
## 1.55460                   aircraft crashed
## 1.55464               jungle approximately
## 1.55465                    approximately 9
## 1.55466                            9 miles
## 1.55470                destination airport
## 1.55475                   dag hammarskjãƒâ
## 1.55476                    hammarskjãƒâ ld
## 1.55477                              ld 56
## 1.55478                          56 killed
## 1.55487                      low resulting
## 1.55490                     striking trees
## 1.55496                     united nations
## 1.55497                   nations released
## 1.55507                       found rumors
## 1.55508                     rumors persist
## 1.55512                  accident alleging
## 1.55518                         shot prior
## 1.55526                       bomb onboard
## 1.55527                   onboard exploded
## 1.55530                      recent report
## 1.55533                         2011 sites
## 1.55534                        sites pilot
## 1.55535                      pilot fatigue
## 1.55542                   accident crashed
## 1.55548                        approach 18
## 1.55549                             18 kms
## 1.55552                     ankara airport
## 1.55560                      normal flying
## 1.55561                     flying pattern
## 1.55565                    normal altitude
## 1.55566                   altitude crashed
## 1.55569                         mt canigou
## 1.55574                  land navigational
## 1.55575                 navigational error
## 1.55578                      plane stalled
## 1.55585                     flight crashed
## 1.55591                     approach pilot
## 1.55592                        pilot error
## 1.55593                     error improper
## 1.55594                improper evaluation
## 1.55597                    distance flying
## 1.55601                   standard traffic
## 1.55602                    traffic pattern
## 1.55609                   observe altitude
## 1.55610                    altitude minima
## 1.55614                     final approach
## 1.55615                    approach failed
## 1.55618                      gain altitude
## 1.55622                    missed approach
## 1.55630                    automatic pitch
## 1.55631                   pitch coarsening
## 1.55632                    coarsening unit
## 1.55636                starboard propeller
## 1.55653                     critical stage
## 1.55657                       flight flown
## 1.55661                  military contract
## 1.55664                  procedural errors
## 1.55668                        crew caused
## 1.55673                          2 engines
## 1.55680                   aircraft crashed
## 1.55689                        post impact
## 1.55690                        impact fire
## 1.55696               command coordination
## 1.55699                    decision faulty
## 1.55700                   faulty judgement
## 1.55703             insufficient knowledge
## 1.55709                emergency situation
## 1.55715                 faulty maintenance
## 1.55716             maintenance procedures
## 1.55719                  carrier's license
## 1.55722                          revoked 6
## 1.55723                            6 weeks
## 1.55729                         missing en
## 1.55730                           en route
## 1.55734                      caribbean sea
## 1.55737                         pilot flew
## 1.55745                         mt ruapehu
## 1.55754                     pilot maneuver
## 1.55757                starboard propeller
## 1.55758                   propeller struck
## 1.55761                       rock outcrop
## 1.55765                   mountain bending
## 1.55768                         blade tips
## 1.55769                       tips forward
## 1.55772                  causing vibration
## 1.55782                   rapid structural
## 1.55783                 structural failure
## 1.55793                     charter flight
## 1.55800                     united nations
## 1.55801                     nations troops
## 1.55815                  salisbury airport
## 1.55822                    suddenly dipped
## 1.55829                      slow recovery
## 1.55836                            100 150
## 1.55837                             150 ft
## 1.55850                     port propeller
## 1.55851              propeller windmilling
## 1.55861                    aircraft rolled
## 1.55865                     dived inverted
## 1.55882                  successful single
## 1.55883                      single engine
## 1.55884                      engine forced
## 1.55885                     forced landing
## 1.55894                         power loss
## 1.55898                        port engine
## 1.55899                    engine evidence
## 1.55907                        port engine
## 1.55918                     rudder trimmer
## 1.55919                      trimmer check
## 1.55939                        left rudder
## 1.55940                        rudder trim
## 1.55941                       trim applied
## 1.55949                        port engine
## 1.55950                     engine failure
## 1.55954                     port propeller
## 1.55959                    apparent action
## 1.55969                   ensuing critical
## 1.55970                     critical speed
## 1.55971                          speed yaw
## 1.55982                      aircraft lost
## 1.55983                      lost altitude
## 1.55984                  altitude collided
## 1.55988                  eucalyptus forest
## 1.55992                    destroyed pilot
## 1.55993                        pilot error
## 1.55994                      error failure
## 1.56001                    adverse weather
## 1.56002                 weather conditions
## 1.56005                      night failure
## 1.56010                    climb procedure
## 1.56011                  procedure crashed
## 1.56012                          crashed 9
## 1.56013                          9 minutes
## 1.56019                         botany bay
## 1.56020                              bay 3
## 1.56021                            3 miles
## 1.56022                        miles south
## 1.56028                  flight structural
## 1.56029                 structural failure
## 1.56030                        failure due
## 1.56033                 turbulence crashed
## 1.56041                         steep dive
## 1.56046                  emergency landing
## 1.56047                     landing midair
## 1.56048                   midair collision
## 1.56055                        cargo plane
## 1.56056                       plane cashed
## 1.56061                      land shifting
## 1.56062                     shifting cargo
## 1.56068                  unconcrolled dive
## 1.56074                       snow covered
## 1.56075                      covered field
## 1.56078                    flight engineer
## 1.56079             engineer inadvertently
## 1.56080               inadvertently caused
## 1.56088                         40 degrees
## 1.56089                    degrees shortly
## 1.56095                   esenboga airport
## 1.56098                   aircraft assumed
## 1.56101                  excessively steep
## 1.56102                     steep climbing
## 1.56103                     climbing angle
## 1.56104                      angle stalled
## 1.56119                      pitch pointer
## 1.56123                 captain's director
## 1.56124                   director horizon
## 1.56132                  excessively steep
## 1.56133                        steep climb
## 1.56154                      correct pitch
## 1.56155                      pitch crashed
## 1.56156                    crashed shortly
## 1.56159                       initial lift
## 1.56165                      water takeoff
## 1.56169                  harbor improperly
## 1.56170                improperly executed
## 1.56171                   executed takeoff
## 1.56177                inadvertent descent
## 1.56186                          speed low
## 1.56187                          low angle
## 1.56188                   angle porpoising
## 1.56201                   surabaya airport
## 1.56204                       plane struck
## 1.56209                      plane crashed
## 1.56212                               3 km
## 1.56213                       km southwest
## 1.56225                     mineral waters
## 1.56226                 waters inattention
## 1.56230                           crew due
## 1.56233           unnecessary interactions
## 1.56237                       crew swerved
## 1.56250                      cargo plane's
## 1.56253                           wing tip
## 1.56254                         tip struck
## 1.56261                      plane crashed
## 1.56265                         tree pilot
## 1.56266                        pilot error
## 1.56271                discontinue takeoff
## 1.56277                           wing tip
## 1.56278                            tip hit
## 1.56294                        takeoff run
## 1.56295                        run crashed
## 1.56302                     engine failure
## 1.56306                        4 propeller
## 1.56313                    airplane banked
## 1.56318                         lost speed
## 1.56325                             fl 150
## 1.56328                      pilot radioed
## 1.56337                        bad weather
## 1.56350                    witnesses heard
## 1.56353                 engines accelerate
## 1.56357                       aircraft hit
## 1.56360                    hill separation
## 1.56364                      left elevator
## 1.56367               flight approximately
## 1.56368                   approximately 10
## 1.56369                         10 minutes
## 1.56375                   scheduled flight
## 1.56380                   aircraft crashed
## 1.56384                           san juan
## 1.56385                     juan mountains
## 1.56394                        cargo plane
## 1.56395                     plane declared
## 1.56400                    crashed shortly
## 1.56404                   faulty procedure
## 1.56415                           en route
## 1.56416                        route climb
## 1.56421                          san felix
## 1.56425                       low altitude
## 1.56440                          san felix
## 1.56441                         felix pass
## 1.56444                        la aguadita
## 1.56452                           9,000 ft
## 1.56458                   idlewild airport
## 1.56465                         1,500 feet
## 1.56484                        jamaica bay
## 1.56485                  bay approximately
## 1.56486                    approximately 3
## 1.56487                            3 miles
## 1.56488                    miles southwest
## 1.56492                      control tower
## 1.56495                     rudder control
## 1.56496                control malfunction
## 1.56502                    unwanted rudder
## 1.56503                  rudder deployment
## 1.56504                     deployment yaw
## 1.56505                       yaw sideslip
## 1.56526                      improper tool
## 1.56530                manufacturing plant
## 1.56535                       rudder servo
## 1.56536                       servo unit's
## 1.56537                      unit's wiring
## 1.56538                    wiring damaging
## 1.56546                      short circuit
## 1.56559                    captain putting
## 1.56565                           steep 45
## 1.56566                          45 degree
## 1.56567                        degree bank
## 1.56591                      gain altitude
## 1.56598                         half miles
## 1.56604                    aircraft struck
## 1.56605                       struck trees
## 1.56611                        tidal swamp
## 1.56620                    elevator spring
## 1.56621                         spring tab
## 1.56622                         tab caused
## 1.56632                   aircraft crashed
## 1.56636                     mountain error
## 1.56648                         low visual
## 1.56649                      visual flight
## 1.56650                     flight beneath
## 1.56653                         cloud base
## 1.56658              deteriorating weather
## 1.56659                 weather conditions
## 1.56662                        cargo plane
## 1.56663                      plane crashed
## 1.56666                          mt velino
## 1.56669                           en route
## 1.56670                    route premature
## 1.56671                  premature descent
## 1.56685                     parachute drop
## 1.56686                       drop mission
## 1.56694                    crashed crashed
## 1.56703                           6,800 ft
## 1.56706                           en route
## 1.56709                       poor weather
## 1.56712                   avoiding cumulus
## 1.56713                     cumulus clouds
## 1.56716               turbulent conditions
## 1.56728                     exact position
## 1.56731                     maintain exact
## 1.56732                     exact altitude
## 1.56733                      altitude lost
## 1.56738                           en route
## 1.56749                             ss t.l
## 1.56750                         t.l lenzen
## 1.56751                 lenzen supertanker
## 1.56752                supertanker sighted
## 1.56755                   midair explosion
## 1.56758                              00 30
## 1.56759                           30 local
## 1.56760                         local time
## 1.56766                         13 degrees
## 1.56767                         degrees 44
## 1.56770                        134 degrees
## 1.56771                         degrees 49
## 1.56775                  subsequent search
## 1.56779                     144,000 square
## 1.56780                       square miles
## 1.56781                        miles found
## 1.56785               undetermined crashed
## 1.56789                    rock embankment
## 1.56790                     embankment 328
## 1.56791                             328 ft
## 1.56792                           ft short
## 1.56795                   runway threshold
## 1.56802                          runway 23
## 1.56818                          main gear
## 1.56822                     wing separated
## 1.56829                        fire ensued
## 1.56832                pilot's misjudgment
## 1.56840                     final approach
## 1.56843               approaching boufarik
## 1.56844                       boufarik afb
## 1.56849                       poor weather
## 1.56850                 weather conditions
## 1.56853                       plane struck
## 1.56859                   mountain located
## 1.56862                            col des
## 1.56863                           des deux
## 1.56864                       deux bassins
## 1.56867                              38 km
## 1.56868                       km southeast
## 1.56871                  boufarik airfield
## 1.56872                   airfield crashed
## 1.56873                    crashed shortly
## 1.56879                              sea 1
## 1.56880                             1 mile
## 1.56881                      mile offshore
## 1.56895                         10 degrees
## 1.56910                          11,500 ft
## 1.56911                        ft mountain
## 1.56912                   mountain crashed
## 1.56916                       fog shrouded
## 1.56917                  shrouded mountain
## 1.56918                   mountain minutes
## 1.56924                          hong kong
## 1.56925                       kong airport
## 1.56934                    departing bahia
## 1.56935                       bahia solano
## 1.56940                            found 4
## 1.56941                             4 days
## 1.56944                           31 miles
## 1.56950                        bonito peak
## 1.56958                    plane descended
## 1.56961                           1,000 ft
## 1.56964             approaching portsmouth
## 1.56967                         low clouds
## 1.56972                           stuck st
## 1.56973                        st boniface
## 1.56978                       flames pilot
## 1.56979                        pilot error
## 1.56980                         error crew
## 1.56981                          crew flew
## 1.56984                       minimum safe
## 1.56985                      safe altitude
## 1.56988                      plane crashed
## 1.56996                experiencing engine
## 1.56997                      engine failue
## 1.56998                     failue minutes
## 1.57005                        trees short
## 1.57012                  approach approach
## 1.57020                 company procedures
## 1.57036                     plane abruptly
## 1.57037                   abruptly swerved
## 1.57046                       short period
## 1.57055                         nose wheel
## 1.57056                        wheel doors
## 1.57070                   landing allowing
## 1.57071                     allowing water
## 1.57078                  severely damaging
## 1.57083                        cargo plane
## 1.57084                      plane crashed
## 1.57085                    crashed shortly
## 1.57094                       poor weather
## 1.57095                  weather conditons
## 1.57098                    departing rhein
## 1.57099                         rhein main
## 1.57100                           main air
## 1.57101                           air base
## 1.57107                   distress message
## 1.57108                 message requesting
## 1.57111                  emergency landing
## 1.57116             aircraft disintegrated
## 1.57117               disintegrated losing
## 1.57120                          left wing
## 1.57125             undetermined emergency
## 1.57126                      emergency led
## 1.57129            explosive decompression
## 1.57140                           en route
## 1.57145                        kansas city
## 1.57148                      airliner fell
## 1.57151                             fl 390
## 1.57154                          crashed 6
## 1.57155                            6 miles
## 1.57156                        miles north
## 1.57157                    north northwest
## 1.57160                unionville missouri
## 1.57164                   explosion aboard
## 1.57165                      aboard caused
## 1.57166                  caused separation
## 1.57170                       tail section
## 1.57171                 section detonation
## 1.57175                      dynamite bomb
## 1.57180                      rear lavatory
## 1.57184                          towel bin
## 1.57188                         wash basin
## 1.57199                     commercial jet
## 1.57200                       jet airliner
## 1.57209                     carried aboard
## 1.57218                     insurance plot
## 1.57222                     alleged thomas
## 1.57223                        thomas doty
## 1.57224                      doty recently
## 1.57225                  recently arrested
## 1.57228                       armed robery
## 1.57237                      dynamite bomb
## 1.57246                         plane lost
## 1.57254                          crashed 7
## 1.57255                               7 km
## 1.57256                       km southeast
## 1.57264                       orly airport
## 1.57267                          nose rose
## 1.57280                       runway smoke
## 1.57281                     smoke streamed
## 1.57304                      runway lights
## 1.57320                       tail section
## 1.57323                         broke free
## 1.57329              aircraft's horizontal
## 1.57330              horizontal stabilizer
## 1.57333                 improperly trimmed
## 1.57334                        trimmed due
## 1.57341                         trim servo
## 1.57342                        servo motor
## 1.57345                        cargo plane
## 1.57346                       plane struck
## 1.57355                   aircraft crashed
## 1.57359                           1,400 ft
## 1.57360                            ft hill
## 1.57364                        approach 15
## 1.57365                           15 miles
## 1.57369                   runway threshold
## 1.57370           threshold nonfunctioning
## 1.57371                 nonfunctioning vor
## 1.57372                        vor station
## 1.57373               station insufficient
## 1.57374        insufficient meteorological
## 1.57375         meteorological information
## 1.57380                        flight crew
## 1.57381                crew malfunctioning
## 1.57382           malfunctioning automatic
## 1.57383                automatic direction
## 1.57384                   direction finder
## 1.57385                         finder due
## 1.57391                   poor atmospheric
## 1.57392             atmospheric conditions
## 1.57397                      named chateau
## 1.57398                         chateau de
## 1.57399                       de chantilly
## 1.57402                      plane crashed
## 1.57411                      adler airport
## 1.57421                  approach patterns
## 1.57434               aviation authorities
## 1.57435                   authorities lack
## 1.57445                mountainous regions
## 1.57452                uncontrollable dive
## 1.57455                             fl 290
## 1.57458                      crew reported
## 1.57459                    reported losing
## 1.57465                         plane lost
## 1.57466                      lost altitude
## 1.57478                   aircraft crashed
## 1.57482                       cotton field
## 1.57483                        field broke
## 1.57488                        caught fire
## 1.57491                   aircraft crashed
## 1.57497                       bombay india
## 1.57503                           3,600 ft
## 1.57504                              ft 50
## 1.57505                           50 miles
## 1.57506                          miles ene
## 1.57510               airport navigational
## 1.57511                 navigational error
## 1.57512                    error premature
## 1.57513                  premature descent
## 1.57514                       descent crew
## 1.57519            navigational facilities
## 1.57523                        cargo plane
## 1.57524                    plane descended
## 1.57530                   ocean attempting
## 1.57544                          2 engines
## 1.57552                       gradual loss
## 1.57557                      probable slow
## 1.57558                        slow psycho
## 1.57559                    psycho physical
## 1.57560                  physical reaction
## 1.57564                           crew due
## 1.57570               prevented perception
## 1.57577                   timely execution
## 1.57590                    vulture crashed
## 1.57594                     cockpit window
## 1.57599                         copilot en
## 1.57600                           en route
## 1.57603                   encountered poor
## 1.57604                       poor weather
## 1.57605                 weather conditions
## 1.57609                   airplane entered
## 1.57612                      narrow valley
## 1.57615                     low visibility
## 1.57618                     pilot realized
## 1.57631                   airplane stalled
## 1.57632                     stalled struck
## 1.57637                    crashed crashed
## 1.57647                        mountain 52
## 1.57648                              52 nm
## 1.57652                    bangkok airport
## 1.57656                 approach premature
## 1.57657                  premature descent
## 1.57658               descent navigational
## 1.57659                 navigational error
## 1.57660                      error shortly
## 1.57665                       fire warning
## 1.57666                 warning indication
## 1.57667                  indication caused
## 1.57678                           1 engine
## 1.57679                        engine fuel
## 1.57685                    flight returned
## 1.57690              landing approximately
## 1.57691                   approximately 40
## 1.57692                         40 minutes
## 1.57698                     engine landing
## 1.57699                   landing approach
## 1.57700                  approach appeared
## 1.57701                    appeared normal
## 1.57710                   runway threshold
## 1.57716                      landing flare
## 1.57722                   approximately 20
## 1.57723                            20 feet
## 1.57727                  runway centerline
## 1.57739                    aircraft banked
## 1.57742                     veered sharply
## 1.57746                       left initial
## 1.57747                     initial ground
## 1.57748                     ground contact
## 1.57754                          left wing
## 1.57755                           wing tip
## 1.57756                  tip approximately
## 1.57757                  approximately 550
## 1.57758                           550 feet
## 1.57765                  runway centerline
## 1.57768             aircraft progressively
## 1.57769        progressively disintegrated
## 1.57778                       struck heavy
## 1.57779                        heavy earth
## 1.57780                       earth moving
## 1.57781                   moving equipment
## 1.57782                   equipment parked
## 1.57783               parked approximately
## 1.57784                  approximately 970
## 1.57785                           970 feet
## 1.57789                  runway centerline
## 1.57809              landing configuration
## 1.57812              insufficient airspeed
## 1.57817                   maintain control
## 1.57818                     control struck
## 1.57829                  approach patterns
## 1.57832                      sochi airport
## 1.57839               aviation authorities
## 1.57845                       flight crews
## 1.57851                     flight control
## 1.57854                      crew training
## 1.57865                mountainous regions
## 1.57872               airplane encountered
## 1.57873           encountered difficulties
## 1.57876                     gaining height
## 1.57886                       wing crashed
## 1.57890                          11,200 ft
## 1.57891                        ft mountain
## 1.57892                       mountain 100
## 1.57893                          100 miles
## 1.57897                       deli dirfted
## 1.57906                     intended track
## 1.57907                     track rejected
## 1.57908                   rejected takeoff
## 1.57909                    takeoff overran
## 1.57910                     overran runway
## 1.57914                      sea incorrect
## 1.57915               incorrect stabilizer
## 1.57916                 stabilizer setting
## 1.57917                  setting stablizer
## 1.57918                  stablizer setting
## 1.57919                    setting changed
## 1.57927                   position delayed
## 1.57928                   delayed decision
## 1.57931                      abort takeoff
## 1.57945                    pilot corrected
## 1.57954                     wind indicator
## 1.57960                      parking apron
## 1.57963                      pilot applied
## 1.57976                     starboard wing
## 1.57977                        wing struck
## 1.57980                   helicopters cart
## 1.57981                       cart wheeled
## 1.57986                       flames pilot
## 1.57987                        pilot error
## 1.57988                         error poor
## 1.57989                        poor flight
## 1.57990                   flight technique
## 1.57991                   technique faulty
## 1.57992                    faulty judgment
## 1.58002                        main runway
## 1.58003                     runway crashed
## 1.58009                          san ramon
## 1.58013                    disaster relief
## 1.58014                     relief mission
## 1.58017                      plane clipped
## 1.58018                       clipped tree
## 1.58019                          tree tops
## 1.58024                   airliner crashed
## 1.58027                          burned 10
## 1.58028                         10 minutes
## 1.58034             khabarovsk airport.the
## 1.58035                   airport.the crew
## 1.58036                      crew reported
## 1.58041               experiencing shaking
## 1.58044                uncontrollable roll
## 1.58049                      aircraft lost
## 1.58055                     flight crashed
## 1.58061                  field malfunction
## 1.58065                  electric elevator
## 1.58066                      elevator trim
## 1.58067                           trim tab
## 1.58068                           tab unit
## 1.58073         aircraft uncontrollability
## 1.58076              subsequent structural
## 1.58077                 structural failure
## 1.58081                       wing crashed
## 1.58084                   approach crashed
## 1.58088                       fog shrouded
## 1.58089                    shrouded wooded
## 1.58090                      wooded ravine
## 1.58093                    broken overcast
## 1.58100                      fairchild air
## 1.58101                          air force
## 1.58102                         force base
## 1.58103                  base navigational
## 1.58104                 navigational error
## 1.58110                        left engine
## 1.58116                          sharp 180
## 1.58117                         180 degree
## 1.58125                    original flight
## 1.58126                        flight path
## 1.58136                       valley ahead
## 1.58137                     ahead narrowed
## 1.58170                           en route
## 1.58171                         route crew
## 1.58172                         crew error
## 1.58173                         error flew
## 1.58179                      cloud covered
## 1.58180                covered mountainous
## 1.58184                           en route
## 1.58187                        bad weather
## 1.58188                 weather conditions
## 1.58191                    airplane struck
## 1.58197                   mountain located
## 1.58204                          sela pass
## 1.58207                     fire developed
## 1.58212                           3 engine
## 1.58223                           1 engine
## 1.58224                    engine oversped
## 1.58228                    flight engineer
## 1.58229             engineer inadvertently
## 1.58230               inadvertently closed
## 1.58233                   firewall shutoff
## 1.58234                      shutoff valve
## 1.58239                           1 engine
## 1.58243                           1 engine
## 1.58251                           2 engine
## 1.58254               developed mechanical
## 1.58255                 mechanical trouble
## 1.58258                      plane ditched
## 1.58261                  sea approximately
## 1.58262                  approximately 560
## 1.58263                             560 nm
## 1.58267                    shannon ireland
## 1.58268                    ireland failure
## 1.58274                       4 aircraft's
## 1.58275                 aircraft's engines
## 1.58279                    improper action
## 1.58283                    flight engineer
## 1.58288                         3rd engine
## 1.58289               engine necessitating
## 1.58298                    airplane struck
## 1.58309                      house located
## 1.58317                               6 km
## 1.58321                          runway 28
## 1.58322                       28 threshold
## 1.58323                 threshold collided
## 1.58327                            rcaf cf
## 1.58328                            cf 101b
## 1.58329                        101b voodoo
## 1.58330                     voodoo fighter
## 1.58331                      fighter plane
## 1.58351                         speed taxi
## 1.58352                         taxi strip
## 1.58353                      strip cleared
## 1.58356                    voodoo aircraft
## 1.58367                      active runway
## 1.58370                    voodoo collided
## 1.58377                   viscount killing
## 1.58385                      voodoo caught
## 1.58386                        caught fire
## 1.58395                         1,200 feet
## 1.58401                     ejected safely
## 1.58405                     final approach
## 1.58408                        seville san
## 1.58409                          san pablo
## 1.58410                      pablo airport
## 1.58420                     mayday message
## 1.58421                  message reporting
## 1.58425                    aircraft caught
## 1.58426                        caught fire
## 1.58427                       fire shortly
## 1.58440                       hill located
## 1.58441                          located 4
## 1.58442                               4 km
## 1.58443                           km short
## 1.58446                   runway threshold
## 1.58447                  threshold crashed
## 1.58461                frequency whistling
## 1.58462                    whistling noise
## 1.58467                inspection revealed
## 1.58475                          lower aft
## 1.58476                         aft corner
## 1.58480                       rear service
## 1.58481                       service door
## 1.58482                        door pillow
## 1.58493                          air noise
## 1.58507                         4,000 feet
## 1.58510                          door blew
## 1.58514                    ensuing outward
## 1.58515                       outward rush
## 1.58518                        air ejected
## 1.58521                   flight attendant
## 1.58529                undetected insecure
## 1.58530                  insecure latching
## 1.58534                       rear service
## 1.58535                       service door
## 1.58536                     door resulting
## 1.58540                 inflight explosive
## 1.58541            explosive decompression
## 1.58546                   flight attendant
## 1.58550                   aircraft crashed
## 1.58556                        test flight
## 1.58557                      flight rudder
## 1.58558                    rudder controls
## 1.58559                controls improperly
## 1.58560               improperly installed
## 1.58561                  installed crashed
## 1.58564                           1,800 ft
## 1.58565                        ft mountain
## 1.58566                        mountain 12
## 1.58567                           12 miles
## 1.58571                            da nang
## 1.58572                       nang airport
## 1.58573               airport navigational
## 1.58574                 navigational error
## 1.58577                       poor weather
## 1.58578                 weather conditions
## 1.58589                     ground crashed
## 1.58596                      storm stalled
## 1.58601                       approach 0.5
## 1.58602                          0.5 miles
## 1.58606                       outer marker
## 1.58611                aircraft penetrated
## 1.58616                    whistling swans
## 1.58619                           6,000 ft
## 1.58625                          13 pounds
## 1.58626                      pounds struck
## 1.58629                       leading edge
## 1.58633                    left horizontal
## 1.58634              horizontal stabilizer
## 1.58635               stabilizer weakening
## 1.58645                      aircraft lost
## 1.58646                       lost control
## 1.58652                            mid air
## 1.58655                 crashed separation
## 1.58659             horizontal stabilizers
## 1.58670                     whistling swan
## 1.58671                        swan midair
## 1.58672                   midair collision
## 1.58691                      pilots failed
## 1.58694                  maintain adequate
## 1.58695                  adequate lookouts
## 1.58703                overshoot procedure
## 1.58710                      control tower
## 1.58718                  aircraft proceded
## 1.58728                            la cruz
## 1.58729                          cruz peak
## 1.58734             navigation instruments
## 1.58739                           1,000 ft
## 1.58740                            ft past
## 1.58743                      ils touchdown
## 1.58751                              25 ft
## 1.58757                   visual reference
## 1.58758                   reference caused
## 1.58767                       landing gear
## 1.58770                       retracted 20
## 1.58771                         20 degrees
## 1.58772                      degrees flaps
## 1.58773                     flaps selected
## 1.58776                        climb power
## 1.58777                      power applied
## 1.58780                           3,500 ft
## 1.58787                           6 degree
## 1.58788                        degree left
## 1.58789                          left bank
## 1.58794                          135 knots
## 1.58800                       2 propellers
## 1.58801                  propellers struck
## 1.58806                       aircraft hit
## 1.58815                        crew failed
## 1.58818                    follow approved
## 1.58819                approved procedures
## 1.58820               procedures technique
## 1.58821                 technique employed
## 1.58832                     fog conditions
## 1.58837                adequately reported
## 1.58838                   reported crashed
## 1.58841                         heavy rain
## 1.58844                           en route
## 1.58845                        route pilot
## 1.58846                        pilot error
## 1.58847                       error flight
## 1.58852                     ifr conditions
## 1.58853                 conditions crashed
## 1.58854                          crashed 9
## 1.58855                            9 miles
## 1.58856                        miles short
## 1.58866                      named estevao
## 1.58867                    estevao ribeiro
## 1.58868                      ribeiro baiao
## 1.58869                      baiao parente
## 1.58872                   aircraft crashed
## 1.58876                       ils approach
## 1.58879                    burbank airport
## 1.58880             airport incapacitation
## 1.58887                       heart attack
## 1.58903                    recover stalled
## 1.58906                          crashed 8
## 1.58907                            8 miles
## 1.58916                   lightning twelve
## 1.58917                      twelve killed
## 1.58918                   killed including
## 1.58919                including civilians
## 1.58922                    civilian houses
## 1.58923                       houses burnt
## 1.58924                      burnt crashed
## 1.58925                      crashed short
## 1.58929                    runway striking
## 1.58930                     striking trees
## 1.58933                 aircraft descended
## 1.58937                prescribed altitude
## 1.58940               undetermined reasons
## 1.58943                      pilot carried
## 1.58947                        final stage
## 1.58953                       normal glide
## 1.58954                         glide path
## 1.58957                insufficient engine
## 1.58958                       engine power
## 1.58976                horizontal distance
## 1.58994                     vertical speed
## 1.58995                          speed hit
## 1.59004                   approach crashed
## 1.59007                          mt renoso
## 1.59010                           7,450 ft
## 1.59011                            ft crew
## 1.59012                       crew fatigue
## 1.59013                 fatigue inadequate
## 1.59014             inadequate preparation
## 1.59018                     flight entered
## 1.59019                     entered cruise
## 1.59026                 speed navigational
## 1.59027                navigational errors
## 1.59028                      errors failed
## 1.59031                      maintain safe
## 1.59032                      safe altitude
## 1.59033                    altitude decent
## 1.59034                     decent started
## 1.59035                started prematurely
## 1.59039                       takeoff roll
## 1.59042                       pilot pulled
## 1.59051                    aircraft banked
## 1.59067                 weather conditions
## 1.59079                  crippled airliner
## 1.59080                   airliner crashed
## 1.59095                  emergency landing
## 1.59098                        steady rain
## 1.59099                       rain control
## 1.59108                      manoeuvre due
## 1.59109                            due top
## 1.59115                        left engine
## 1.59116                     engine crashed
## 1.59121                          salt lake
## 1.59126                   emergency decent
## 1.59129                     training crews
## 1.59130                         crews lack
## 1.59135                undetermined reason
## 1.59138                        cargo plane
## 1.59139                      plane crashed
## 1.59148                uncontrollable loss
## 1.59151                    altitude caused
## 1.59154                       adverse wind
## 1.59155                    wind conditions
## 1.59169                 aircraft continued
## 1.59170                   continued flying
## 1.59185                            90 feet
## 1.59186                      feet suddenly
## 1.59187                   suddenly pitched
## 1.59193                       ground icing
## 1.59197              horizontal stabilizer
## 1.59204                      pitch control
## 1.59205                    control crashed
## 1.59206                         crashed en
## 1.59207                           en route
## 1.59211                          ocean 231
## 1.59212                          231 miles
## 1.59213                         miles east
## 1.59216                      atlantic city
## 1.59219                      jersey midair
## 1.59220                   midair collision
## 1.59226                  military aircraft
## 1.59229                     planes crashed
## 1.59233                  heavily populated
## 1.59236               destroying buildings
## 1.59237                   buildings houses
## 1.59240                  vehicles fourteen
## 1.59241                    fourteen killed
## 1.59260                    military flight
## 1.59261                    flight training
## 1.59262                      training zone
## 1.59263                     zone extending
## 1.59267                   approach pattern
## 1.59271                  civilian aircraft
## 1.59274                  viscount aircraft
## 1.59278                         ifr flight
## 1.59279                        flight plan
## 1.59285                     vfr conditions
## 1.59300                    aircraft struck
## 1.59301                    struck approach
## 1.59302                    approach lights
## 1.59303                       lights 1,170
## 1.59304                         1,170 feet
## 1.59308                   runway threshold
## 1.59309                  threshold climbed
## 1.59313                           200 feet
## 1.59317              crashed approximately
## 1.59318                approximately 1,900
## 1.59319                         1,900 feet
## 1.59327                          left edge
## 1.59330                         runway 28l
## 1.59331                   28l continuation
## 1.59335                instrument approach
## 1.59338                    adequate visual
## 1.59339                   visual reference
## 1.59344                authorized minimums
## 1.59345                minimums inadequate
## 1.59346              inadequate monitoring
## 1.59350                instrument approach
## 1.59354                     par controller
## 1.59358                contributing factor
## 1.59361                      plane stalled
## 1.59366                   aircraft crashed
## 1.59367                         crashed 37
## 1.59368                           37 miles
## 1.59369                         miles west
## 1.59370                     west southwest
## 1.59379                encountering severe
## 1.59380                  severe turbulence
## 1.59383                 aircraft initially
## 1.59384                  initially entered
## 1.59400                         speed dive
## 1.59411                     aircraft broke
## 1.59432                 extreme turbulence
## 1.59433               turbulence condition
## 1.59437                    flying attitude
## 1.59442                   excessive stress
## 1.59457                 considerably worse
## 1.59462                     engines idling
## 1.59465                           girl ran
## 1.59470                        2 propeller
## 1.59475                     ramp personnel
## 1.59476                  personnel suicide
## 1.59477                    suicide crashed
## 1.59480                            mt boca
## 1.59485                    landing limited
## 1.59486                 limited visibility
## 1.59487              visibility crosswinds
## 1.59488            crosswinds contributing
## 1.59491                 navigational error
## 1.59492                      error crashed
## 1.59493                        crashed 200
## 1.59499                   runway threshold
## 1.59503                         dust storm
## 1.59506                        plane broke
## 1.59510                        caught fire
## 1.59511                          fire crew
## 1.59512                         crew error
## 1.59513                    error attempted
## 1.59518                   weather minimums
## 1.59532                        pilot randy
## 1.59533                       randy hughes
## 1.59537                   instrument rated
## 1.59538                         rated lost
## 1.59539                       lost control
## 1.59551                          45 degree
## 1.59552                    degree downward
## 1.59553                  downward attitude
## 1.59559                      ground singer
## 1.59560                       singer patsy
## 1.59561                        patsy cline
## 1.59562                           cline 30
## 1.59563                          30 killed
## 1.59568                   hawkshaw hawkins
## 1.59569                         hawkins 39
## 1.59570                          39 cowboy
## 1.59571                       cowboy copas
## 1.59572                           copas 49
## 1.59575                    cline's manager
## 1.59576                      manager randy
## 1.59577                       randy hughes
## 1.59578                          hughes 35
## 1.59579                          35 clineã
## 1.59580                           clineã â
## 1.59581                                â â
## 1.59584                      friend dottie
## 1.59585                        dottie west
## 1.59586                       west offered
## 1.59597                        kansas city
## 1.59598                        city kansas
## 1.59601                     nashville west
## 1.59605                     persuade cline
## 1.59611                      car believing
## 1.59615                        safer cline
## 1.59620                        return home
## 1.59636                         west cline
## 1.59637                    cline allegedly
## 1.59638                     allegedly told
## 1.59639                          told west
## 1.59650                leave noninstrument
## 1.59651                noninstrument pilot
## 1.59652                    pilot attempted
## 1.59653                   attempted visual
## 1.59654                      visual flight
## 1.59657                    adverse weather
## 1.59658                 weather conditions
## 1.59659               conditions resulting
## 1.59665                   control judgment
## 1.59671                  initiating flight
## 1.59675                   existing weather
## 1.59676                 weather conditions
## 1.59677                  conditions struck
## 1.59678                      struck 14,250
## 1.59679                          14,250 ft
## 1.59680                    ft chachacomani
## 1.59681                  chachacomani peak
## 1.59682                        peak flight
## 1.59687                     ifr conditions
## 1.59690                   marginal weather
## 1.59691                 weather conditions
## 1.59694                  severe turbulence
## 1.59697                        cargo plane
## 1.59698                      plane crashed
## 1.59701                experiencing engine
## 1.59702                     engine trouble
## 1.59703                       trouble tthe
## 1.59704                      tthe airplane
## 1.59705                    airplane struck
## 1.59710                           mt matto
## 1.59711                      matto located
## 1.59712                         located 28
## 1.59713                              28 km
## 1.59714                       km southwest
## 1.59717                      cuneo crashed
## 1.59720                         monte vale
## 1.59721                      vale rotonote
## 1.59722                        rotonote 53
## 1.59723                           53 miles
## 1.59724                    miles southeast
## 1.59734                    land navigation
## 1.59735                   navigation error
## 1.59736                   error descending
## 1.59743                    maintain visual
## 1.59744                     visual contact
## 1.59748                        ground poor
## 1.59749                       poor weather
## 1.59750                 weather conditions
## 1.59751                 conditions failure
## 1.59754                         notify atc
## 1.59762                     flight crashed
## 1.59766                       snow covered
## 1.59767                      covered field
## 1.59768                       field whille
## 1.59769                          whille en
## 1.59770                           en route
## 1.59773                      pitch control
## 1.59774                  control mechanism
## 1.59779                             4 prop
## 1.59780                        prop failed
## 1.59781                    failed creating
## 1.59784                        severe drag
## 1.59811                   airplane entered
## 1.59815                      speed descent
## 1.59824                    recover control
## 1.59830                        crew pulled
## 1.59837                         low clouds
## 1.59840                            150 200
## 1.59841                         200 metres
## 1.59844                    elevators broke
## 1.59852                   airplane crashed
## 1.59853                    crashed crashed
## 1.59856                         approach 6
## 1.59857                               6 km
## 1.59858                            km west
## 1.59869                  aircraft returned
## 1.59876                           2 caught
## 1.59877                        caught fire
## 1.59880                     crew feathered
## 1.59893                     house improper
## 1.59894                improper feathering
## 1.59895               feathering procedure
## 1.59898                      aircraft flew
## 1.59904                           6,500 ft
## 1.59905                      ft navigation
## 1.59906                   navigation error
## 1.59907                         error crew
## 1.59908                        crew choose
## 1.59913                   prohibited route
## 1.59919                   altitude crashed
## 1.59923                       orange grove
## 1.59929                         sand storm
## 1.59942                           en route
## 1.59945                   aircraft crashed
## 1.59960                          14,000 ft
## 1.59963                          18,000 ft
## 1.59970                         54 degrees
## 1.59971                         degrees 14
## 1.59972                         14 minutes
## 1.59975                        134 degrees
## 1.59976                         degrees 41
## 1.59977                         41 minutes
## 1.59990                    evidence cashed
## 1.59991                          cashed 25
## 1.59992                           25 miles
## 1.59995                amritsar structural
## 1.59996                 structural failure
## 1.60020                   improper rigging
## 1.60024                      rudder bungee
## 1.60025                      bungee system
## 1.60026                     system crashed
## 1.60029                       mt kaolokung
## 1.60038                    aircraft struck
## 1.60043                            mt pãƒâ
## 1.60044                           pãƒâ rez
## 1.60045                        rez located
## 1.60046                         located 42
## 1.60047                              42 km
## 1.60051                    airport crashed
## 1.60054              totkomlos bekessamson
## 1.60057                           en route
## 1.60062                   accidentally hit
## 1.60069                  phosphorus mortar
## 1.60070                       mortar shell
## 1.60071                        shell fired
## 1.60075                       british army
## 1.60076                          army unit
## 1.60077                       unit setting
## 1.60093                      plane crashed
## 1.60094                    crashed crashed
## 1.60099                   initial approach
## 1.60102                          heavy fog
## 1.60103                          fog error
## 1.60113                       fly visually
## 1.60116                unfavorable weather
## 1.60117                 weather conditions
## 1.60122                         pilot lost
## 1.60123                       lost control
## 1.60137                       crashed poor
## 1.60138                      poor decision
## 1.60149                severe thunderstorm
## 1.60150               thunderstorm crashed
## 1.60159               aircraft experienced
## 1.60160                  experienced heavy
## 1.60161                         heavy rain
## 1.60162                    rain turbulence
## 1.60165                 extreme downdrafts
## 1.60175                      plane crashed
## 1.60179                       kaimai range
## 1.60182                           2,460 ft
## 1.60185                           300 feet
## 1.60189                     nearest summit
## 1.60190                   summit premature
## 1.60191                  premature descent
## 1.60197                 command misleading
## 1.60198                 misleading forcast
## 1.60199                       forcast lack
## 1.60202                      dme equipment
## 1.60206                    airport crashed
## 1.60207                          crashed 2
## 1.60208                            2 miles
## 1.60209                        miles short
## 1.60215                 approach premature
## 1.60216                  premature descent
## 1.60217                    descent crashed
## 1.60223                        cargo plane
## 1.60224                      plane crashed
## 1.60228                       fog shrouded
## 1.60229                  shrouded mountain
## 1.60232                   aircraft crashed
## 1.60236                        arabian sea
## 1.60243                        tokyo japan
## 1.60259                       lost control
## 1.60267                  severe turbulence
## 1.60270                         heavy rain
## 1.60275                          vfr rules
## 1.60278                    airplane struck
## 1.60284                   mountain located
## 1.60287                       ibicarãƒâ 25
## 1.60288                              25 km
## 1.60289                       km southwest
## 1.60292                     videira struck
## 1.60298                   initial approach
## 1.60304                  accident resulted
## 1.60307                  exceptionally bad
## 1.60308                        bad weather
## 1.60309                 weather conditions
## 1.60323                      lyon approach
## 1.60337                 lightning dazzling
## 1.60342                  causing temporary
## 1.60343                temporary blindness
## 1.60346         appreciably incapacitating
## 1.60352                      aircraft lost
## 1.60361                    gain sufficient
## 1.60362                sufficient altitude
## 1.60363                   altitude entered
## 1.60373                      field causing
## 1.60381                          earth dam
## 1.60393                  timely assessment
## 1.60397                        power plant
## 1.60398                  plant malfunction
## 1.60402                  improper judgment
## 1.60408                      single engine
## 1.60409                   engine emergency
## 1.60410                emergency operation
## 1.60411                  operation crashed
## 1.60414                  mountains shortly
## 1.60420                 hachijo navigation
## 1.60421                   navigation error
## 1.60424                    wrong departure
## 1.60425                    departure route
## 1.60429                       landing gear
## 1.60460                    fuel starvation
## 1.60469                         river neva
## 1.60470                       neva shortly
## 1.60476                   aircraft crashed
## 1.60480                    wooded hillside
## 1.60481                        hillside 32
## 1.60482                              32 km
## 1.60483                        km northwes
## 1.60486                       kutaisa crew
## 1.60487                         crew error
## 1.60488                          error vfr
## 1.60489                         vfr flight
## 1.60494                            mid air
## 1.60495                      air collision
## 1.60496                 collision occurred
## 1.60497             occurred approximately
## 1.60498                  approximately 700
## 1.60499                          700 miles
## 1.60500                         miles east
## 1.60503                      miami florida
## 1.60504                    florida refugee
## 1.60505                     refugee flight
## 1.60506                       flight prior
## 1.60511                     zurich airport
## 1.60516               authorization taxied
## 1.60517                        taxied half
## 1.60544                           crash 10
## 1.60545                         10 minutes
## 1.60548                           18 miles
## 1.60549                          miles wsw
## 1.60552                     zurich braking
## 1.60557                       fog clearing
## 1.60558                 clearing procedure
## 1.60559               procedure overheated
## 1.60567                       wheel flange
## 1.60568                   flange splitting
## 1.60572                         burst tire
## 1.60577                     hydraulic line
## 1.60586                     ultimately led
## 1.60595                     aircraft forty
## 1.60608                     humilikon died
## 1.60616                         steep dive
## 1.60624                    unknown crashed
## 1.60627                             pic de
## 1.60628                              de la
## 1.60629                        la roquette
## 1.60637             perpignan navigational
## 1.60638                 navigational error
## 1.60645                     crew continued
## 1.60654                         6,000 feet
## 1.60659                      real position
## 1.60672                         57 minutes
## 1.60678                          dover afb
## 1.60681                      crew informed
## 1.60682                    informed ground
## 1.60686                    position flying
## 1.60692                        14,000 feet
## 1.60695              unknown circumstances
## 1.60709                           1,440 km
## 1.60710                            km east
## 1.60717                         jersey sar
## 1.60718                     sar operations
## 1.60723               eventually suspended
## 1.60737                            10 crew
## 1.60741                          found due
## 1.60758                  certainty crashed
## 1.60759                    crashed shortly
## 1.60768                           30 dairy
## 1.60769                         dairy cows
## 1.60772                 helicopter crashed
## 1.60778                     burned fatigue
## 1.60779                    fatigue failure
## 1.60783                        drive quill
## 1.60784                        quill shaft
## 1.60785                          shaft due
## 1.60791                 lubrication system
## 1.60795                   aft transmission
## 1.60796              transmission assembly
## 1.60797                   assembly crashed
## 1.60809                      aswan failure
## 1.60817                published procedure
## 1.60823              insufficient altitude
## 1.60826                 limited visibility
## 1.60830                      stalling test
## 1.60833                   aircraft entered
## 1.60836                     stable stalled
## 1.60837                  stalled condition
## 1.60846                      aircraft flew
## 1.60850                        safe flying
## 1.60851                    flying altitude
## 1.60854                          hit trees
## 1.60858                      approach line
## 1.60861                          fog wrong
## 1.60862                   wrong indication
## 1.60866                  pilot's altimeter
## 1.60870                instrument approach
## 1.60871                   approach landing
## 1.60872                    landing carried
## 1.60877                 minimum conditions
## 1.60880                   aircraft crashed
## 1.60883                          5 minutes
## 1.60886                     leaving dorval
## 1.60887                     dorval airport
## 1.60890                     montreal icing
## 1.60894                       pitot system
## 1.60900                      vertical gyro
## 1.60906                unnoticed extension
## 1.60910                         pitch trim
## 1.60911                   trim compensator
## 1.60914                        cargo plane
## 1.60915                     plane impacted
## 1.60918                      vertical rock
## 1.60922                          12,500 ft
## 1.60923                           ft pilot
## 1.60926                   command executed
## 1.60927                  executed improper
## 1.60930                   flight decisions
## 1.60935                     exercised poor
## 1.60936                      poor judgment
## 1.60953                    holding pattern
## 1.60962                      control tower
## 1.60963                     tower received
## 1.60966                     mayday message
## 1.60977                         crashed 10
## 1.60978                           10 miles
## 1.60979                    miles southwest
## 1.60983                    castle delaware
## 1.60990                lightning lightning
## 1.60991                  lightning induced
## 1.60992                   induced ignition
## 1.60995                          fuel tank
## 1.60996                        tank vapors
## 1.61007                lightning discharge
## 1.61008                    discharge wicks
## 1.61015                     commercial jet
## 1.61016                      jet airliners
## 1.61021                      named clipper
## 1.61022                  clipper tradewind
## 1.61025                        cargo plane
## 1.61026                       plane struck
## 1.61031                           en route
## 1.61034                   wrong estimation
## 1.61038                         wind speed
## 1.61041                 direction resulted
## 1.61045                   navigation error
## 1.61050                        aircraft 42
## 1.61051                              42 nm
## 1.61055                       approved air
## 1.61056                          air route
## 1.61059               contributing factors
## 1.61064                   weather forecast
## 1.61065                     forecast prior
## 1.61068                   takeoff personal
## 1.61069                   personal worries
## 1.61070                    worries fatigue
## 1.61075                  oxygen inadequate
## 1.61076                  inadequate charts
## 1.61079                       maps crashed
## 1.61080                    crashed shortly
## 1.61089                         no2 engine
## 1.61090                  engine propellers
## 1.61091                 propellers touched
## 1.61103                       safe landing
## 1.61108                       lockheed air
## 1.61109                       air terminal
## 1.61112                    burbank failure
## 1.61120                      positive rate
## 1.61126               premature retraction
## 1.61130                       landing gear
## 1.61140                     pilot reported
## 1.61143                     localized fire
## 1.61156                     airfield close
## 1.61161                    aircraft struck
## 1.61167                       landing gear
## 1.61168                          gear left
## 1.61169                        left engine
## 1.61183                    subsequent fire
## 1.61184                          fire crew
## 1.61187                  possibly overcome
## 1.61195                        cargo plane
## 1.61196                      plane crashed
## 1.61197                      crashed short
## 1.61204                  approach improper
## 1.61205                       improper ifr
## 1.61206                      ifr procedure
## 1.61207                procedure descended
## 1.61215                        steep climb
## 1.61218                             200 ft
## 1.61219                         ft stalled
## 1.61222                   crashed striking
## 1.61228                           runway 6
## 1.61229                          6 pilot's
## 1.61230                    pilot's failure
## 1.61233                      properly load
## 1.61236                 aircraft resulting
## 1.61239              insufficient elevator
## 1.61240             elevator effectiveness
## 1.61245                  unwanted pitching
## 1.61246                    pitching motion
## 1.61249                   aircraft stalled
## 1.61260                    liftoff crashed
## 1.61266                           en route
## 1.61267                       route struck
## 1.61268                       struck trees
## 1.61272                     mountain ridge
## 1.61279                     land continued
## 1.61280                   continued flight
## 1.61285                     ifr conditions
## 1.61288                   aircraft crashed
## 1.61291                 lake pontchartrain
## 1.61292                   pontchartrain 19
## 1.61293                           19 miles
## 1.61294                    miles northeast
## 1.61298              orleans international
## 1.61299              international airport
## 1.61300                    airport shortly
## 1.61305                 mechanical failure
## 1.61306                failure uncommanded
## 1.61307              uncommanded extension
## 1.61311                         pitch trim
## 1.61312                   trim compensator
## 1.61313            compensator degradation
## 1.61316                 aircraft stability
## 1.61317          stability characteristics
## 1.61323              abnormal longitudinal
## 1.61324                  longitudinal trim
## 1.61325                     trim component
## 1.61326                component positions
## 1.61327           positions malfunctioning
## 1.61328               malfunctioning pitch
## 1.61329                         pitch trim
## 1.61330                   trim compensator
## 1.61331                    compensator ran
## 1.61332                           ran past
## 1.61343                         river dike
## 1.61344                         dike broke
## 1.61351              flames malfunctioning
## 1.61352           malfunctioning propeller
## 1.61353                 propeller reverser
## 1.61354                 reverser excessive
## 1.61355                    excessive speed
## 1.61358               insufficient braking
## 1.61361                   aircraft crashed
## 1.61364                       mt glungezer
## 1.61371                           gorge 10
## 1.61372                           10 miles
## 1.61373                          miles ese
## 1.61381                    holding pattern
## 1.61384                    pilot descended
## 1.61388                       minimum safe
## 1.61389                      safe altitude
## 1.61393                   apparent attempt
## 1.61398                    overcast flying
## 1.61399                         flying vfr
## 1.61402                     ifr conditions
## 1.61405                   aircraft crashed
## 1.61408                         genoa peak
## 1.61415                     vfr conditions
## 1.61419                    missed approach
## 1.61425                 captain's decision
## 1.61432                   weather improved
## 1.61438                  alternate airport
## 1.61441                    adverse weather
## 1.61442                 weather conditions
## 1.61445                  pilot's deviation
## 1.61448                     prescribed vfr
## 1.61449                         vfr flight
## 1.61450                  flight procedures
## 1.61455                     visual landing
## 1.61456                   landing approach
## 1.61459                    adverse weather
## 1.61460                 weather conditions
## 1.61466                 abandoned approach
## 1.61469        geographical disorientation
## 1.61475                   minimum altitude
## 1.61476                altitude prescribed
## 1.61486                         named city
## 1.61489                        los angeles
## 1.61494                    barrackpore afs
## 1.61499                       bagdogra afs
## 1.61504                   aircraft crashed
## 1.61508                      hooghly river
## 1.61509                      river crashed
## 1.61514                    missed apporach
## 1.61515                  apporach improper
## 1.61516                 improper operation
## 1.61521                powerplant controls
## 1.61522                   controls crashed
## 1.61525                     final approach
## 1.61526                   approach evasive
## 1.61527                   evasive maneuver
## 1.61532                            mid air
## 1.61533                      air collision
## 1.61537                    aircraft caused
## 1.61542                       lose control
## 1.61551                        cargo plane
## 1.61552                     plane suddenly
## 1.61553                   suddenly pitched
## 1.61557                      crashed short
## 1.61561                        runway loss
## 1.61564                   balancing forces
## 1.61568                 horizontal surface
## 1.61575                       aircraft due
## 1.61578                      ice accretion
## 1.61579                  accretion causing
## 1.61584                         pitch nose
## 1.61593                    effect recovery
## 1.61594                    recovery struck
## 1.61599                  approaching miles
## 1.61600                         miles city
## 1.61605                      freezing rain
## 1.61610                     vor instrument
## 1.61611                instrument approach
## 1.61616                obstructing terrain
## 1.61619               reasons undetermined
## 1.61623                instrument approach
## 1.61626                    adverse weather
## 1.61627                 weather conditions
## 1.61630                  aircraft suffered
## 1.61631                    suffered engine
## 1.61632                     engine failure
## 1.61637                 crashed carburetor
## 1.61638                   carburetor icing
## 1.61639                     icing improper
## 1.61640                 improper emergency
## 1.61641               emergency procedures
## 1.61642                 procedures alcohol
## 1.61643                 alcohol impairment
## 1.61646                      plane crashed
## 1.61649                     final approach
## 1.61650                   approach failure
## 1.61653                 discontinue visual
## 1.61654                    visual approach
## 1.61660                 minimum visibility
## 1.61661              visibility conditions
## 1.61662                conditions required
## 1.61668                 maneuvers involved
## 1.61669                involved abnormally
## 1.61670                    abnormally wide
## 1.61671                    wide initiation
## 1.61675                           wind leg
## 1.61683                        unsafe path
## 1.61695                           en route
## 1.61696                        route 1,120
## 1.61697                           1,120 nm
## 1.61701                      san francisco
## 1.61705                     pilot reported
## 1.61710                           bad fire
## 1.61715                           2 engine
## 1.61716                     engine crashed
## 1.61721                       airport flew
## 1.61724                whiteout conditions
## 1.61727                        crashed atc
## 1.61733                     unsafe weather
## 1.61734                 weather conditions
## 1.61735                 conditions crashed
## 1.61739                              sea 4
## 1.61740                               4 nm
## 1.61748                    dhahran airport
## 1.61758                         steep dive
## 1.61761                         crashed 26
## 1.61762                           26 miles
## 1.61768                      san francisco
## 1.61769           francisco internatiional
## 1.61770             internatiional airport
## 1.61781                laboratory analysis
## 1.61784                     skipper's shot
## 1.61794                 francisco gonzales
## 1.61815                     pilot gonzales
## 1.61816                        gonzales 27
## 1.61823                philippine yachting
## 1.61824                      yachting team
## 1.61828                      1960 olympics
## 1.61831                     purchased life
## 1.61832                     life insurance
## 1.61833                 insurance policies
## 1.61834                  policies totaling
## 1.61835                   totaling 105,000
## 1.61836                      105,000 prior
## 1.61840                     flight crashed
## 1.61844                          sand dune
## 1.61853                          heavy fog
## 1.61854                       fog improper
## 1.61855                       improper ifr
## 1.61856                     ifr procedures
## 1.61866                          clark air
## 1.61867                          air force
## 1.61868                         force base
## 1.61871                 aircraft contacted
## 1.61874                    perimeter fence
## 1.61875                        fence 3,500
## 1.61876                           3,500 ft
## 1.61883                     runway causing
## 1.61892                          crash 300
## 1.61893                             300 ft
## 1.61894                            ft left
## 1.61898                      runway center
## 1.61899                        center line
## 1.61900                         line wrong
## 1.61901                     wrong approach
## 1.61902             approach configuration
## 1.61908                        flying crew
## 1.61937                    pilot continued
## 1.61940                            fly vfr
## 1.61943               unfavourable weather
## 1.61947                   jagged shoreline
## 1.61952                     visibility due
## 1.61955                         heavy rain
## 1.61974                 training witnesses
## 1.61975                 witnesses reported
## 1.61978                     plane exploded
## 1.62006                      cabin crashed
## 1.62010                            red sea
## 1.62013                      plane crashed
## 1.62019                         rice paddy
## 1.62022                          san chiao
## 1.62023                      chiao village
## 1.62024                      village north
## 1.62025                    north northeast
## 1.62031                   pilot discovered
## 1.62034                        left engine
## 1.62041                        abrupt left
## 1.62047                          kung kuan
## 1.62048                      kuan military
## 1.62049                       military air
## 1.62050                           air base
## 1.62056                       lost control
## 1.62061                 mountains probable
## 1.62065                            5 miles
## 1.62066                         miles west
## 1.62070                      accident site
## 1.62073                          kung kuan
## 1.62074                      kuan military
## 1.62075                       military air
## 1.62076                           air base
## 1.62079                        miles south
## 1.62080                    south southwest
## 1.62083                           shui nan
## 1.62084                        nan airport
## 1.62098                     flight pattern
## 1.62111                        pilot found
## 1.62115                        left engine
## 1.62122                        abrupt left
## 1.62128                          kung kuan
## 1.62129                      kuan military
## 1.62130                       military air
## 1.62131                           air base
## 1.62136                           shui nan
## 1.62137                        nan airport
## 1.62143                       lost control
## 1.62154                     engines failed
## 1.62158                      plane ditched
## 1.62159                          ditched 1
## 1.62160                             1 mile
## 1.62161                      mile offshore
## 1.62168                    cruise altitude
## 1.62171                          plane hit
## 1.62172                     hit turbulence
## 1.62173              turbulence downdrafts
## 1.62178                   passenger's seat
## 1.62179                          seat belt
## 1.62180                        belt failed
## 1.62181                     failed killing
## 1.62186                      plane crashed
## 1.62187                          crashed 2
## 1.62188                            2 miles
## 1.62189                    miles northeast
## 1.62196                uncontrollable fire
## 1.62199                     unknown origin
## 1.62205                    passenger floor
## 1.62208                eventually involved
## 1.62211                    passenger cabin
## 1.62214                     passenger died
## 1.62217                       free falling
## 1.62223                        4 emergency
## 1.62224                   emergency escape
## 1.62225                      escape window
## 1.62236                       onboard fire
## 1.62239                    ignition source
## 1.62249                    plane's battery
## 1.62255                passenger's luggage
## 1.62256                     luggage caused
## 1.62259                       fire testing
## 1.62260                   testing revealed
## 1.62261                    revealed lethal
## 1.62262                     lethal amounts
## 1.62275                      lower baggage
## 1.62276                baggage compartment
## 1.62282                 flying erratically
## 1.62286                    fire eventually
## 1.62287                  eventually burned
## 1.62301                          landed 17
## 1.62302                            17 feet
## 1.62303                         feet short
## 1.62307                   runway threshold
## 1.62308                     threshold tore
## 1.62312                       landing gear
## 1.62313                          gear slid
## 1.62316                        caught fire
## 1.62317                         fire pilot
## 1.62318                    pilot misjudged
## 1.62319                 misjudged altitude
## 1.62328                   aircraft crashed
## 1.62332                  intense rainstorm
## 1.62335                        dense woods
## 1.62336                          woods 6.5
## 1.62337                          6.5 miles
## 1.62338                        miles south
## 1.62342                  nashville airport
## 1.62347                        return trip
## 1.62350                batesville arkansas
## 1.62354                        searchers 2
## 1.62355                             2 days
## 1.62360                   wreckage country
## 1.62361                    country western
## 1.62362                     western singer
## 1.62363                         singer jim
## 1.62364                         jim reeves
## 1.62365                          reeves 40
## 1.62369                       manager dean
## 1.62370                        dean manuel
## 1.62373                      killed reeves
## 1.62381                          2 minutes
## 1.62387                    apparently lost
## 1.62388                        lost visual
## 1.62389                   visual reference
## 1.62395                experienced spatial
## 1.62396             spatial disorientation
## 1.62397               disorientation pilot
## 1.62398                        pilot error
## 1.62399                          error vfr
## 1.62400                         vfr flight
## 1.62403                    adverse weather
## 1.62404                 weather conditions
## 1.62405                  conditions struck
## 1.62406                      struck huayna
## 1.62407                        huayna hill
## 1.62410                       poor weather
## 1.62417                     imc conditions
## 1.62421                    altitude unsafe
## 1.62430                        huayna pass
## 1.62438                    direct approach
## 1.62443                   standard traffic
## 1.62444                    traffic pattern
## 1.62447                   airliner crashed
## 1.62451                    wooded hillside
## 1.62454                  controller lacked
## 1.62463                       flight blame
## 1.62476                           atc lack
## 1.62479                   radar facilities
## 1.62480               facilities premature
## 1.62481                  premature descent
## 1.62482               descent inexperience
## 1.62488                        poor flight
## 1.62489                    flight planning
## 1.62490                    planning struck
## 1.62498                  nighttime landing
## 1.62499                    landing attempt
## 1.62500                    attempt crashed
## 1.62503                            mt nova
## 1.62504                      nova deviated
## 1.62509                    unknown reasons
## 1.62512                        cargo plane
## 1.62513                      plane touched
## 1.62520                 crashed improperly
## 1.62521                  improperly loaded
## 1.62522                       loaded cargo
## 1.62525                        cargo plane
## 1.62526                         plane left
## 1.62541                    departing palma
## 1.62542                           palma de
## 1.62543                        de mallorca
## 1.62546                   airliner crashed
## 1.62549                        mt alcazaba
## 1.62550                        alcazaba 20
## 1.62551                           20 miles
## 1.62552                          miles sse
## 1.62555                   granada deviated
## 1.62560                         unknown en
## 1.62561                           en route
## 1.62564               airplane encountered
## 1.62565                 encountered strong
## 1.62566                  strong downdrafts
## 1.62569                 severe turbulences
## 1.62570                turbulences causing
## 1.62575                    fail instructed
## 1.62594                          hit avala
## 1.62595                         avala hill
## 1.62596                           hill 600
## 1.62597                             600 ft
## 1.62601                     peak exploding
## 1.62604                     flames crashed
## 1.62607                           en route
## 1.62610                    pilot continued
## 1.62611                      continued vfr
## 1.62612                         vfr flight
## 1.62615                    adverse weather
## 1.62616                 weather conditions
## 1.62619                   aircraft crashed
## 1.62622                     rising terrain
## 1.62623                        terrain 9.7
## 1.62624                          9.7 miles
## 1.62625                        miles south
## 1.62626                    south southwest
## 1.62629                          mc carran
## 1.62630                       carran field
## 1.62640                  airport captain's
## 1.62641        captain's misinterpretation
## 1.62644                    approach charts
## 1.62645                     charts leading
## 1.62648                  premature descent
## 1.62651                obstructing terrain
## 1.62656                        legal court
## 1.62657                      court battles
## 1.62660                       u.s district
## 1.62661                     district court
## 1.62662                        court judge
## 1.62663                    judge concluded
## 1.62667                     landing charts
## 1.62668                    charts provided
## 1.62678                   accident crashed
## 1.62685                maneuvers descended
## 1.62686              descended prematurely
## 1.62687                 prematurely struck
## 1.62690                           ground 2
## 1.62691                               2 km
## 1.62692                           km short
## 1.62696                        runway crew
## 1.62697                       crew mistook
## 1.62698                     mistook lights
## 1.62699               lights perpendicular
## 1.62705                      runway lights
## 1.62708              descended prematurely
## 1.62711                    captain decided
## 1.62720                           4 engine
## 1.62721                    engine pressure
## 1.62722                     pressure ratio
## 1.62723                         ratio read
## 1.62729                      amber warning
## 1.62730                      warning light
## 1.62731                   light indicating
## 1.62732                  indicating thrust
## 1.62733                    thrust reversal
## 1.62737                           2 engine
## 1.62747                 aircraft continued
## 1.62750                        travel past
## 1.62753                       runway limit
## 1.62758                           4 engine
## 1.62759                      engine struck
## 1.62762                       steam roller
## 1.62765                     aircraft burst
## 1.62768                 flames malfunction
## 1.62773                           2 engine
## 1.62774                     engine reverse
## 1.62775                   reverse thruster
## 1.62778                malfunction allowed
## 1.62784                     forward thrust
## 1.62788                           2 engine
## 1.62798                   reverse position
## 1.62804                    aircraft struck
## 1.62807                         empty fuel
## 1.62808                          fuel drum
## 1.62820                       plane lifted
## 1.62826                       lost control
## 1.62831                      plane crashed
## 1.62835                    andes mountains
## 1.62839                     explosion blew
## 1.62846                aircraft detonation
## 1.62853                       tail section
## 1.62857                    passenger cabin
## 1.62862                     insurance plot
## 1.62865                      suspected hit
## 1.62868                   mountain shortly
## 1.62880                           1 engine
## 1.62883                      pilot decided
## 1.62895                       poor weather
## 1.62908                      avoid terrain
## 1.62914                          fish pond
## 1.62922                        sea failure
## 1.62925                      maintain safe
## 1.62926                        safe single
## 1.62927                      single engine
## 1.62928                       engine speed
## 1.62936                        left engine
## 1.62941                    poor visibility
## 1.62942              visibility prevailing
## 1.62963              maintenance personnel
## 1.62969              correct discrepancies
## 1.62970               discrepancies logged
## 1.62974                       aircraft log
## 1.62975                           log book
## 1.62976                  book individually
## 1.62979           collectively contributed
## 1.62988                        cargo plane
## 1.62989                         plane flew
## 1.62999                          san bruno
## 1.63000                        bruno range
## 1.63005               undetermined reasons
## 1.63006                   reasons deviated
## 1.63015                     rising terrain
## 1.63018                 downdraft activity
## 1.63021                turbulence affected
## 1.63024                   climb capability
## 1.63028              aircraft sufficiently
## 1.63031                    prevent terrain
## 1.63032                  terrain clearance
## 1.63033                   clearance cashed
## 1.63038                        cargo plane
## 1.63039                      plane crashed
## 1.63045                  turrialba volcano
## 1.63048                           en route
## 1.63051                        cargo plane
## 1.63052                       plane veered
## 1.63057                       struck trees
## 1.63062                          land loss
## 1.63067                   night instrument
## 1.63068                instrument approach
## 1.63071                    adverse weather
## 1.63074               undetermined reasons
## 1.63081                       crashed fuel
## 1.63082                    fuel starvation
## 1.63083                    starvation fuel
## 1.63084                      fuel selector
## 1.63085                selector positioned
## 1.63089                         empty tank
## 1.63108                     plane deviated
## 1.63114              controller instructed
## 1.63125                  captain continued
## 1.63130                    airplane struck
## 1.63133                         ground 75m
## 1.63134                          75m short
## 1.63142                     runway crossed
## 1.63147                       struck trees
## 1.63148                      trees shortly
## 1.63157                          left bank
## 1.63158                    bank attempting
## 1.63163                      mcconnell air
## 1.63164                          air force
## 1.63165                         force base
## 1.63170                   distress message
## 1.63175                      plane crashed
## 1.63186                     houses remains
## 1.63196                           1 engine
## 1.63204                asymmetrical thrust
## 1.63205                   thrust condition
## 1.63215                         drag chute
## 1.63220                   105 thunderchief
## 1.63224                       departing kc
## 1.63225                             kc 135
## 1.63228                         drag chute
## 1.63232                    accidently left
## 1.63236                     runway crashed
## 1.63243                        caught fire
## 1.63246                    poor visibility
## 1.63247                  visibility struck
## 1.63248                          struck mt
## 1.63249                          mt helmos
## 1.63250                     helmos located
## 1.63253                       kalãƒâ vryta
## 1.63254                           vryta 40
## 1.63255                              40 km
## 1.63256                       km southeast
## 1.63262                     improper climb
## 1.63265                      aircraft flew
## 1.63269                          12,000 ft
## 1.63270                        ft mountain
## 1.63274                         la melosas
## 1.63279                         andes crew
## 1.63283                      follow flight
## 1.63284                        flight plan
## 1.63292                   aircraft crashed
## 1.63293                    crashed shortly
## 1.63299                     taking evasive
## 1.63300                     evasive action
## 1.63303                          avoid pan
## 1.63304                       pan american
## 1.63305                    american flight
## 1.63306                         flight 212
## 1.63309                         boeing 707
## 1.63319               separated vertically
## 1.63322                approximately 1,000
## 1.63323                         1,000 feet
## 1.63332               controllers involved
## 1.63335                        eal captain
## 1.63342                potential collision
## 1.63360                               dc 7
## 1.63366                   unusual attitude
## 1.63367                 attitude resulting
## 1.63370             spatial disorientation
## 1.63374                     crew placement
## 1.63389                          eal plane
## 1.63394                   evasive maneuver
## 1.63404                        cargo plane
## 1.63405                         plane lost
## 1.63409                           1 engine
## 1.63421                      plane crashed
## 1.63422                    crashed fatigue
## 1.63423                   fatigue fracture
## 1.63427              crankshaft inadequate
## 1.63428             inadequate maintenance
## 1.63431                 inspection crashed
## 1.63432                       crashed crew
## 1.63433                         crew error
## 1.63434                    error premature
## 1.63435                  premature descent
## 1.63436                    descent crashed
## 1.63442                           en route
## 1.63443                      route failure
## 1.63447                    rudder assembly
## 1.63448                   assembly crashed
## 1.63454                  forested mountain
## 1.63455                     mountain slope
## 1.63458                        mt tangcong
## 1.63459                      tangcong vaca
## 1.63460                   vaca misjudgment
## 1.63477                      plane crashed
## 1.63481                        snowy field
## 1.63489                   elevator control
## 1.63492                     engine trouble
## 1.63493              trouble communication
## 1.63502                    takeoff failure
## 1.63505                      corroded skin
## 1.63509                      bottom center
## 1.63510                        center line
## 1.63518                 structural failure
## 1.63524              aerial disintegration
## 1.63531                    plane undershot
## 1.63534                         runway hit
## 1.63537                    snowdrift broke
## 1.63541                        caught fire
## 1.63542                       fire crashed
## 1.63545                             pan de
## 1.63546                          de azucar
## 1.63547                        azucar peak
## 1.63548                            peak 35
## 1.63549                              35 nm
## 1.63552                 bucaramanga flying
## 1.63557                     ifr conditions
## 1.63564                       u.s canadian
## 1.63565                 canadian maneuvers
## 1.63566                  maneuvers crashed
## 1.63573                        lowari pass
## 1.63574                       pass stalled
## 1.63580                             sea 10
## 1.63581                              10 nm
## 1.63587                     tangier reason
## 1.63588                     reason unknown
## 1.63591                         plane flew
## 1.63597                           4,200 ft
## 1.63603                  beirut structural
## 1.63604                 structural failure
## 1.63610                   aircraft crashed
## 1.63617              deteriorating weather
## 1.63618                  weather condtions
## 1.63619                 condtions crashing
## 1.63620                     crashing 3,000
## 1.63621                         3,000 feet
## 1.63622                         feet short
## 1.63628                    aircraft struck
## 1.63631                  approach lighting
## 1.63639                      safe approach
## 1.63640                      approach path
## 1.63651                         low clouds
## 1.63654                    poor visibility
## 1.63657                  pilot disregarded
## 1.63660                       approach ban
## 1.63661                        ban applied
## 1.63665                  operations manual
## 1.63668                        cargo plane
## 1.63669                         plane flew
## 1.63672                         mt rainier
## 1.63675                          10,200 ft
## 1.63678               improper correlation
## 1.63682                  aircraft position
## 1.63687                obstructing terrain
## 1.63695                         vfr flight
## 1.63696                        flight plan
## 1.63699                 instrument weather
## 1.63700                 weather conditions
## 1.63723                            low run
## 1.63729                      applied power
## 1.63741                    aircraft struck
## 1.63744                    tractor located
## 1.63745                         located 50
## 1.63746                          50 meters
## 1.63750                        runway edge
## 1.63751                       edge heavily
## 1.63752                    heavily damaged
## 1.63755                      plane crashed
## 1.63759                       western edge
## 1.63763                    diversion canal
## 1.63767                        rodeo gorge
## 1.63768                     gorge decision
## 1.63774                         las palmas
## 1.63780                 weather conditions
## 1.63783                   aircraft crashed
## 1.63787                 approach.the plane
## 1.63788                    plane descended
## 1.63796                        normal rate
## 1.63800                    aircraft struck
## 1.63805                  aircraft exceeded
## 1.63808                recommended descent
## 1.63809                       descent rate
## 1.63813                       final stages
## 1.63818                    reasons unknown
## 1.63821                 helicopters flying
## 1.63824                  formation crashed
## 1.63827                            mid air
## 1.63830                   benning military
## 1.63831                      military base
## 1.63832                           base ten
## 1.63833                         ten aboard
## 1.63834                        aboard 8760
## 1.63837                           8 aboard
## 1.63838                        aboard 8840
## 1.63839                        8840 killed
## 1.63840                     killed crashed
## 1.63841                    crashed shortly
## 1.63847                            el toro
## 1.63848                        toro marine
## 1.63849                       marine corps
## 1.63850                          corps air
## 1.63851                        air station
## 1.63852                      station bound
## 1.63861                         1,000 feet
## 1.63864                       plane failed
## 1.63874                     rising terrain
## 1.63885                      san francisco
## 1.63886            francisco international
## 1.63887              international airport
## 1.63891                           4 engine
## 1.63892               engine disintegrated
## 1.63893              disintegrated tearing
## 1.63896                            25 feet
## 1.63903                  emergency landing
## 1.63909                         travis air
## 1.63910                          air force
## 1.63911                         force base
## 1.63923                         travis air
## 1.63924                          air force
## 1.63925                         force base
## 1.63933                         plain view
## 1.63939                          nose gear
## 1.63940                     gear collapsed
## 1.63941                 collapsed improper
## 1.63942                   improper turbine
## 1.63943                      turbine rotor
## 1.63944                  rotor positioning
## 1.63947                    engine assembly
## 1.63953                   serviceable worn
## 1.63959                      named clipper
## 1.63960                 clipper friendship
## 1.63963                      aircraft slid
## 1.63980                       landing gear
## 1.63981                        gear wheels
## 1.63986            braking ineffectiveness
## 1.63989                     plane carrying
## 1.63990              carrying paratroopers
## 1.63991               paratroopers climbed
## 1.63994                           2,000 ft
## 1.64001                    crashed fatigue
## 1.64002                   fatigue fracture
## 1.64005                            2 bolts
## 1.64013              horizontal stabilizer
## 1.64014                stabilizer resulted
## 1.64018                     abnormal pitch
## 1.64023                      stall crashed
## 1.64031                     almaza airport
## 1.64034                       tail section
## 1.64035                  section separated
## 1.64042                      bomb exploded
## 1.64046              passenger compartment
## 1.64052                   saboteur ignited
## 1.64072                   insurance scheme
## 1.64075               aircraft experienced
## 1.64082                           2 engine
## 1.64091                           3 engine
## 1.64097                     north atlantic
## 1.64098                       atlantic 100
## 1.64099                          100 miles
## 1.64100                    miles northeast
## 1.64109                      plane crashed
## 1.64113                      water shortly
## 1.64119                       pilot failed
## 1.64122                    maintain flying
## 1.64123                       flying speed
## 1.64128                 prematurely failed
## 1.64131                      abort takeoff
## 1.64132                   takeoff selected
## 1.64133                     selected wrong
## 1.64134                       wrong runway
## 1.64135                    runway relative
## 1.64138                    wind improperly
## 1.64139                  improperly loaded
## 1.64140                    loaded aircraft
## 1.64141                   aircraft crashed
## 1.64146                       penay island
## 1.64150                    domestic flight
## 1.64153                          plane hit
## 1.64154                             hit mt
## 1.64155                          mt madiac
## 1.64158                           7,000 ft
## 1.64161                          rain wind
## 1.64164                         low clouds
## 1.64168                           2 engine
## 1.64172                        cargo plane
## 1.64173                       plane caught
## 1.64174                        caught fire
## 1.64185                          fuel tank
## 1.64186                     tank explosion
## 1.64187                   explosion caused
## 1.64192             descend uncontrollably
## 1.64197                         30 minutes
## 1.64207                        mato grosso
## 1.64211                        left engine
## 1.64219                          left wing
## 1.64222                       engine broke
## 1.64235                      plane crashed
## 1.64238                      lake michigan
## 1.64239                      michigan 19.5
## 1.64240                         19.5 miles
## 1.64241                         miles east
## 1.64244                        lake forest
## 1.64245                    forest illinois
## 1.64254                             fl 350
## 1.64260                 continuous descent
## 1.64264                       average rate
## 1.64267                approximately 2,000
## 1.64268                         2,000 feet
## 1.64273                        35,000 feet
## 1.64282                       clean flight
## 1.64283               flight configuration
## 1.64284           configuration officially
## 1.64295               dispatched illegally
## 1.64299                      operating cvr
## 1.64302                  misread altimeter
## 1.64315                           6,000 ft
## 1.64328                     excessive sink
## 1.64329                          sink rate
## 1.64330                     rate excessive
## 1.64331                     excessive sink
## 1.64332                          sink rate
## 1.64338                    possibly caused
## 1.64341                      727 accidents
## 1.64344                    succession lake
## 1.64345                      lake michigan
## 1.64346                         michigan 8
## 1.64347                               8 16
## 1.64348                              16 65
## 1.64349                      65 cincinnati
## 1.64350                      cincinnati 11
## 1.64351                               11 8
## 1.64352                               8 65
## 1.64353                            65 salt
## 1.64354                          salt lake
## 1.64355                          lake city
## 1.64356                            city 11
## 1.64357                              11 11
## 1.64358                              11 65
## 1.64361                          tokyo bay
## 1.64362                              bay 2
## 1.64363                                2 4
## 1.64364                               4 66
## 1.64368                          salt lake
## 1.64371                 cincinnati crashes
## 1.64374              officially attributed
## 1.64379                       727 training
## 1.64380                   training manuals
## 1.64390             flying characteristics
## 1.64407                        avoid heavy
## 1.64408                      heavy weather
## 1.64411                 positioning flight
## 1.64412                    flight suddenly
## 1.64413                 suddenly descended
## 1.64419             atmospheric conditions
## 1.64440                         pilot lost
## 1.64441                       lost control
## 1.64449                 cumulonimbus cloud
## 1.64452                      plane crashed
## 1.64455                        kowloon bay
## 1.64461                            kai tak
## 1.64462                        tak airport
## 1.64463                      airport pilot
## 1.64464                        pilot error
## 1.64465                  error commander's
## 1.64466               commander's decision
## 1.64476                    engines failure
## 1.64482                 functioning engine
## 1.64490                           3 engine
## 1.64491                     engine takeoff
## 1.64492                   takeoff decision
## 1.64498                directional control
## 1.64503                    pilot misjudged
## 1.64504                 misjudged altitude
## 1.64517                           land vfr
## 1.64518                        vfr flilght
## 1.64521                    adverse weather
## 1.64522                 weather conditions
## 1.64523                     conditions hit
## 1.64524                           hit tree
## 1.64525                          tree tops
## 1.64530                        mt kantakan
## 1.64531                      kantakan shot
## 1.64535                   communist ground
## 1.64536                        ground fire
## 1.64537                       fire crashed
## 1.64540                           en route
## 1.64541                      route crashed
## 1.64544                       mountains 32
## 1.64545                           32 miles
## 1.64546                    miles southwest
## 1.64555                      landing pilot
## 1.64560                   disoriented crew
## 1.64568              descending navigation
## 1.64569                   navigation error
## 1.64574                      named clipper
## 1.64575               clipper constitution
## 1.64576              constitution collided
## 1.64582               uncontrolled descent
## 1.64585                         cago plane
## 1.64593                     crashed midair
## 1.64594                   midair collision
## 1.64598                         douglas dc
## 1.64599                               dc 3
## 1.64602                           piper pa
## 1.64603                              pa 18
## 1.64604                        18 eighteen
## 1.64605                    eighteen killed
## 1.64609                               dc 3
## 1.64614                         piper shot
## 1.64618                   communist ground
## 1.64619                        ground fire
## 1.64622                    aircraft veered
## 1.64631                         pilot lost
## 1.64632                       lost control
## 1.64635                    crashed failure
## 1.64643                        rudder trim
## 1.64644                           trim tab
## 1.64648                    proper position
## 1.64655                  flight undetected
## 1.64656              undetected deflection
## 1.64660                        rudder trim
## 1.64661                           trim tab
## 1.64667             unsuccessfull attempts
## 1.64672                   heathrow airport
## 1.64690                      suddenly dove
## 1.64697                        steep angle
## 1.64698                        angle pilot
## 1.64699                        pilot error
## 1.64700                          error low
## 1.64701                     low visibility
## 1.64702                    visibility crew
## 1.64703                       crew fatigue
## 1.64704             fatigue disorientation
## 1.64705                disorientation lack
## 1.64718               incorrect indication
## 1.64725                      plane crashed
## 1.64737                   civilians aboard
## 1.64738                    aboard included
## 1.64741                          hand ball
## 1.64742                          ball team
## 1.64743                   team disappeared
## 1.64753                   distress message
## 1.64754                  message reporting
## 1.64761                           3 engine
## 1.64766                   aircraft crashed
## 1.64767                      crashed short
## 1.64773                    visual approach
## 1.64776              deteriorating weather
## 1.64777                 weather conditions
## 1.64778                 conditions failure
## 1.64782                        flight crew
## 1.64785                   properly monitor
## 1.64788                  aircraft's height
## 1.64794              deteriorating weather
## 1.64795                 weather conditions
## 1.64796               conditions resulting
## 1.64800                     excessive sink
## 1.64801                          sink rate
## 1.64802                     rate excessive
## 1.64803                     excessive sink
## 1.64804                          sink rate
## 1.64812                      727 accidents
## 1.64815                    succession lake
## 1.64816                      lake michigan
## 1.64817                         michigan 8
## 1.64818                               8 16
## 1.64819                              16 65
## 1.64820                      65 cincinnati
## 1.64821                      cincinnati 11
## 1.64822                               11 8
## 1.64823                               8 65
## 1.64824                            65 salt
## 1.64825                          salt lake
## 1.64826                          lake city
## 1.64827                            city 11
## 1.64828                              11 11
## 1.64829                              11 65
## 1.64832                          tokyo bay
## 1.64833                              bay 2
## 1.64834                                2 4
## 1.64835                               4 66
## 1.64839                          salt lake
## 1.64842                 cincinnati crashes
## 1.64845              officially attributed
## 1.64850                       727 training
## 1.64851                   training manuals
## 1.64861             flying characteristics
## 1.64871                      plane crashed
## 1.64874                           en route
## 1.64875                       route flight
## 1.64879                   prohibited route
## 1.64882                    adverse weather
## 1.64883                     weather flight
## 1.64884                         flight vfr
## 1.64887                     ifr conditions
## 1.64888                 conditions crashed
## 1.64892                        ice covered
## 1.64893                       covered lake
## 1.64894                          lake kilp
## 1.64895                          kilp yavr
## 1.64900                     land premature
## 1.64901                  premature descent
## 1.64904                    approach sudden
## 1.64905                      sudden change
## 1.64911                   aircraft crashed
## 1.64912                      crashed short
## 1.64920                      runway lights
## 1.64921                         lights 335
## 1.64922                           335 feet
## 1.64923                         feet short
## 1.64927                     runway causing
## 1.64930                       main landing
## 1.64931                       landing gear
## 1.64943                       descent rate
## 1.64946                   approach failure
## 1.64953                      timely action
## 1.64958                  excessive descent
## 1.64959                       descent rate
## 1.64963                   landing approach
## 1.64964                 approach excessive
## 1.64965                     excessive sink
## 1.64966                          sink rate
## 1.64974                      727 accidents
## 1.64977                    succession lake
## 1.64978                      lake michigan
## 1.64979                         michigan 8
## 1.64980                               8 16
## 1.64981                              16 65
## 1.64982                      65 cincinnati
## 1.64983                      cincinnati 11
## 1.64984                               11 8
## 1.64985                               8 65
## 1.64986                            65 salt
## 1.64987                          salt lake
## 1.64988                          lake city
## 1.64989                            city 11
## 1.64990                              11 11
## 1.64991                              11 65
## 1.64994                          tokyo bay
## 1.64995                              bay 2
## 1.64996                                2 4
## 1.64997                               4 66
## 1.65001                          salt lake
## 1.65004                 cincinnati crashes
## 1.65007              officially attributed
## 1.65012                       727 training
## 1.65013                   training manuals
## 1.65023             flying characteristics
## 1.65031                     corrected bill
## 1.65032                     bill linderman
## 1.65033                       linderman 45
## 1.65034                        45 champion
## 1.65035                     champion rodeo
## 1.65036                       rodeo cowboy
## 1.65037                     cowboy killled
## 1.65040                      plane crashed
## 1.65041                         crashed 13
## 1.65042                           13 miles
## 1.65043                         miles east
## 1.65046                       palm springs
## 1.65047                    springs airport
## 1.65048                    airport shortly
## 1.65058               conditions requiring
## 1.65066               instrument reference
## 1.65069                    proper attitude
## 1.65070               attitude information
## 1.65073                   visual reference
## 1.65078                 aircraft avoidance
## 1.65088               cruise configuration
## 1.65094                          55 degree
## 1.65095                    degree nosedown
## 1.65096                  nosedown vertical
## 1.65097                      vertical left
## 1.65098                          left bank
## 1.65099                      bank attitude
## 1.65100                   attitude spatial
## 1.65101             spatial disorientation
## 1.65105                    pilot resulting
## 1.65111                    control crashed
## 1.65115                            hill 22
## 1.65116                           22 miles
## 1.65117                        miles south
## 1.65120                          salt lake
## 1.65121                          lake city
## 1.65129                    poor visibility
## 1.65134                           aboout 1
## 1.65135                             1 mile
## 1.65136                          mile east
## 1.65141                  mountain judgment
## 1.65151                         vfr flight
## 1.65154                   existing weather
## 1.65155                 weather conditions
## 1.65158                terrain environment
## 1.65159                 environment midair
## 1.65160                   midair collision
## 1.65163                        11,000 feet
## 1.65164                   feet misjudgment
## 1.65167                altitude separation
## 1.65173                            eal 853
## 1.65178                   optical illusion
## 1.65179                   illusion created
## 1.65184                       slope effect
## 1.65187                         cloud tops
## 1.65188                     tops resulting
## 1.65192                   evasive maneuver
## 1.65196                            eal 853
## 1.65197                           853 crew
## 1.65201                reactionary evasive
## 1.65202                   evasive maneuver
## 1.65206                             twa 42
## 1.65207                            42 crew
## 1.65210                         707 landed
## 1.65215                          losing 25
## 1.65216                            25 feet
## 1.65220                          left wing
## 1.65232                      51 passengers
## 1.65233                  passengers aboard
## 1.65240                      46 passengers
## 1.65243                             1 crew
## 1.65246                         aboard eal
## 1.65247                            eal 853
## 1.65250                 killed misjudgment
## 1.65253                altitude separation
## 1.65264                   optical illusion
## 1.65265                   illusion created
## 1.65270                       slope effect
## 1.65273                         cloud tops
## 1.65274                     tops resulting
## 1.65278                   evasive maneuver
## 1.65282                 constellation crew
## 1.65286                reactionary evasive
## 1.65287                   evasive maneuver
## 1.65291                        boeing crew
## 1.65292                       crew crashed
## 1.65296                    terrain shortly
## 1.65301            undetermined mechanical
## 1.65302                 mechanical failure
## 1.65303                  failure suspected
## 1.65306                           en route
## 1.65309                       poor weather
## 1.65312                       plane struck
## 1.65313                       struck trees
## 1.65317                     mountain slope
## 1.65324                          flat spin
## 1.65325                       spin crashed
## 1.65328                       burned power
## 1.65329                        power stall
## 1.65343                successful recovery
## 1.65346                  impossible midair
## 1.65347                   midair collision
## 1.65351                    garuda aircraft
## 1.65359              approaching palembang
## 1.65360                palembang seventeen
## 1.65361                     seventeen died
## 1.65365                   aircraft crashed
## 1.65366                        crashed due
## 1.65369                     engine failure
## 1.65370                        failure due
## 1.65377                      cylinder head
## 1.65382                       aircraft hit
## 1.65388                       mountain 3.4
## 1.65389                             3.4 km
## 1.65392                      shamurat crew
## 1.65402                     minima weather
## 1.65403                 weather conditions
## 1.65404                 conditions crashed
## 1.65405                    crashed shortly
## 1.65411                         plane rose
## 1.65415                             100 ft
## 1.65421                      shallow water
## 1.65424                     engine failure
## 1.65425                failure maintenance
## 1.65426                  maintenance error
## 1.65429             inadequate inspections
## 1.65430                inspections crashed
## 1.65434                         mountain 5
## 1.65435                          5 minutes
## 1.65441                          las cayee
## 1.65450                           1,000 ft
## 1.65463                       minimum safe
## 1.65464                      safe altitude
## 1.65469                         mont blanc
## 1.65475                              2 vor
## 1.65483                          passed mt
## 1.65484                           mt blanc
## 1.65485               blanc miscalculation
## 1.65503                aircraft's position
## 1.65504                     position hambi
## 1.65505                       hambi bhabha
## 1.65506                      bhabha father
## 1.65509                    india's nuclear
## 1.65510                    nuclear program
## 1.65511                     program killed
## 1.65516                 named kanchenjunga
## 1.65517               kanchenjunga remains
## 1.65518                      remains found
## 1.65519                            found 7
## 1.65520                             7 2017
## 1.65521                        2017 struck
## 1.65522                       struck trees
## 1.65523                     trees inverted
## 1.65524                        inverted 10
## 1.65525                         10 minutes
## 1.65532                       khe airfield
## 1.65533                  airfield evidence
## 1.65543                           2 engine
## 1.65544                     engine crashed
## 1.65549                          heavy fog
## 1.65552                   aircraft stalled
## 1.65559                       low altitude
## 1.65560                altitude instrument
## 1.65561             instrument malfunction
## 1.65564                   jetliner crashed
## 1.65567                          7.5 miles
## 1.65568                          miles ese
## 1.65571                tokyo international
## 1.65572               international haneda
## 1.65573                     haneda airport
## 1.65585                       vfr approach
## 1.65594                              2 000
## 1.65595                             000 ft
## 1.65602             undetermined excessive
## 1.65603                     excessive sink
## 1.65604                          sink rate
## 1.65612                      727 accidents
## 1.65615                    succession lake
## 1.65616                      lake michigan
## 1.65617                         michigan 8
## 1.65618                               8 16
## 1.65619                              16 65
## 1.65620                      65 cincinnati
## 1.65621                      cincinnati 11
## 1.65622                               11 8
## 1.65623                               8 65
## 1.65624                            65 salt
## 1.65625                          salt lake
## 1.65626                          lake city
## 1.65627                            city 11
## 1.65628                              11 11
## 1.65629                              11 65
## 1.65632                          tokyo bay
## 1.65633                              bay 2
## 1.65634                                2 4
## 1.65635                               4 66
## 1.65639                          salt lake
## 1.65642                 cincinnati crashes
## 1.65645              officially attributed
## 1.65650                       727 training
## 1.65651                   training manuals
## 1.65661             flying characteristics
## 1.65669                  corrected crashed
## 1.65673                         terrain 12
## 1.65674                           12 miles
## 1.65675                         miles west
## 1.65684                   navigation error
## 1.65685                  error abandonment
## 1.65689                       ils approach
## 1.65704                    poor visibility
## 1.65707                      fog undershot
## 1.65714               concrete obstruction
## 1.65717                       poor weather
## 1.65718                 weather conditions
## 1.65719                    conditions lack
## 1.65722               information supplied
## 1.65729                    true conditions
## 1.65732                 surface visibility
## 1.65738                 minimum prescribed
## 1.65742                      night landing
## 1.65743                       landing lack
## 1.65746                  proper monitoring
## 1.65749                 possibly incorrect
## 1.65750                  incorrect setting
## 1.65762                     landing lights
## 1.65770                       final stages
## 1.65776                   foggy conditions
## 1.65782                   departed vorkuta
## 1.65783                    vorkuta airport
## 1.65784                      airport bound
## 1.65789                      crew reported
## 1.65799                    engine detached
## 1.65802                      plane crashed
## 1.65806                 lake approximately
## 1.65807                    approximately 1
## 1.65808                             1 hour
## 1.65816                      engine failed
## 1.65820                       fire erupted
## 1.65828                     crew attempted
## 1.65840                        engine fell
## 1.65843                           te plane
## 1.65844                       plane rolled
## 1.65851                      plane crashed
## 1.65861                      night takeoff
## 1.65864                         heavy snow
## 1.65867                       plane veered
## 1.65880                     crew attempted
## 1.65895                    aircraft struck
## 1.65898                         snow drift
## 1.65902                          left main
## 1.65903                       main landing
## 1.65904                       landing gear
## 1.65907                       pilot banked
## 1.65917                        3 propeller
## 1.65924                   airplane crashed
## 1.65927                        caught fire
## 1.65941                        cargo plane
## 1.65942                       plane struck
## 1.65943                       struck trees
## 1.65954                       land failure
## 1.65963                   company's minima
## 1.65964                  minima subsequent
## 1.65965                 subsequent belated
## 1.65966                   belated decision
## 1.65971                    missed approach
## 1.65972                 approach procedure
## 1.65975                    aircraft struck
## 1.65978                    approach lights
## 1.65982                           sea wall
## 1.65986                    landing attempt
## 1.65989                    pilot initiated
## 1.65992                         steep rate
## 1.66002                     final approach
## 1.66006                     lower altitude
## 1.66007                      altitude poor
## 1.66008                    poor visibility
## 1.66009                     visibility due
## 1.66012                       illusive fog
## 1.66013                     fog conditions
## 1.66014                  conditions misled
## 1.66023                   aircraft crashed
## 1.66026                            mt fuji
## 1.66029                encountering severe
## 1.66030                  severe turbulence
## 1.66034                      pilot decided
## 1.66046               aircraft encountered
## 1.66047                 encountered severe
## 1.66050                     air turbulence
## 1.66063                        cargo plane
## 1.66064                         plane flew
## 1.66067                          mt parnon
## 1.66070                              27 km
## 1.66071                            km east
## 1.66078                    aircraft struck
## 1.66079                       struck power
## 1.66080                       power cables
## 1.66081                     cables stalled
## 1.66087                     portland canal
## 1.66091                    pilot misjudged
## 1.66092                 misjudged altitude
## 1.66095                      clearance vfr
## 1.66096                         vfr flight
## 1.66099                    adverse weather
## 1.66100                weather conditiions
## 1.66101                conditiions crashed
## 1.66104                         sand dunes
## 1.66105                     dunes improper
## 1.66106                  improper approach
## 1.66114                      icing descent
## 1.66121                        safe flight
## 1.66122                    flight altitude
## 1.66126                     final approach
## 1.66129                        cargo plane
## 1.66130                      plane crashed
## 1.66135                   aircraft crashed
## 1.66140                    landing attempt
## 1.66143                  ardmore municipal
## 1.66144                  municipal airport
## 1.66158                      minute change
## 1.66169                      plane crashed
## 1.66173              ground incapacitation
## 1.66180                       heart attack
## 1.66183                       final stages
## 1.66194                     standing heart
## 1.66195                    heart condition
## 1.66198                   diabetes managed
## 1.66203                    pilot's license
## 1.66208                    medical records
## 1.66211                     pilot reported
## 1.66216                       losing power
## 1.66228                       ocean engine
## 1.66229                     engine failure
## 1.66237                      found crashed
## 1.66240                          12,600 ft
## 1.66241                              ft mt
## 1.66242                         mt talsula
## 1.66243                      talsula pilot
## 1.66244                        pilot error
## 1.66245                  error incorrectly
## 1.66246               incorrectly selected
## 1.66249                  route incorrectly
## 1.66250             incorrectly calculated
## 1.66253                  climb performance
## 1.66262                       total weight
## 1.66265             takeoff underestimated
## 1.66277                       route engine
## 1.66278                     engine failure
## 1.66279                     failure caused
## 1.66284                      crash shortly
## 1.66294                           2 pinion
## 1.66295                       pinion drive
## 1.66296                        drive shaft
## 1.66297                       shaft thrust
## 1.66298                     thrust bearing
## 1.66299                     bearing cashed
## 1.66302                       poor weather
## 1.66303                weather misjudgment
## 1.66307                  terrain clearance
## 1.66317                  severe turbulence
## 1.66320                       strong gusty
## 1.66321                        gusty winds
## 1.66326                     reverse thrust
## 1.66329                  simulated failure
## 1.66333                           4 engine
## 1.66338                    condition arose
## 1.66342                     rapid rearward
## 1.66343                  rearward movement
## 1.66347                        power level
## 1.66348                    level generated
## 1.66351                      inertia force
## 1.66357                       thrust brake
## 1.66358                        brake lever
## 1.66365                       reverse idle
## 1.66366                        idle detent
## 1.66372                    minimum control
## 1.66373                      control speed
## 1.66374                  speed essentially
## 1.66375               essentially required
## 1.66383                   thrust imbalance
## 1.66390                uncontrollable roll
## 1.66391                   roll accompanied
## 1.66403                   direction ensued
## 1.66409                     reverse thrust
## 1.66414            eliminated insufficient
## 1.66415                  insufficient time
## 1.66429                precarious attitude
## 1.66435                      ground struck
## 1.66436                    struck mountain
## 1.66437                     mountain slope
## 1.66441                       level flight
## 1.66442                         flight vfr
## 1.66443                         vfr flight
## 1.66446                    adverse weather
## 1.66447                 weather conditions
## 1.66448                 conditions weather
## 1.66449                 weather conditions
## 1.66454                        low ceiling
## 1.66455                       ceiling rain
## 1.66456                       rain showers
## 1.66457               showers thunderstorm
## 1.66458              thunderstorm activity
## 1.66465                       poor weather
## 1.66466                 weather conditions
## 1.66469                        cargo plane
## 1.66470                       plane struck
## 1.66475                       mt planchãƒâ
## 1.66478                    peteroa located
## 1.66481                             200 km
## 1.66482                           km south
## 1.66490                       found struck
## 1.66495                   aircraft stalled
## 1.66499                   emergency single
## 1.66500                      single engine
## 1.66501                    engine approach
## 1.66504                     engines failed
## 1.66508                 approach continued
## 1.66517                       shallow pond
## 1.66523                    fuel starvation
## 1.66524           starvation mismanagement
## 1.66527                           fuel pro
## 1.66528                         pro golfer
## 1.66529                        golfer tony
## 1.66530                          tony lema
## 1.66534                         wife betty
## 1.66542                  buick promotional
## 1.66543                   promotional tour
## 1.66546                     cargo aircraft
## 1.66554               recommended altitude
## 1.66558                  reached mountains
## 1.66568                    proper crossing
## 1.66572                   secondary factor
## 1.66578                  navigational aids
## 1.66584                     aircraft broke
## 1.66588                         flight due
## 1.66595                        squall line
## 1.66600                        wing failed
## 1.66601                       failed pilot
## 1.66602                     pilot operated
## 1.66603                  operated aircraft
## 1.66608                  avoidable weather
## 1.66609                     weather hazard
## 1.66610                     hazard crashed
## 1.66616                           en route
## 1.66617                      route ditched
## 1.66630                   caused excessive
## 1.66631                     excessive fuel
## 1.66632                   fuel consumption
## 1.66633               consumption decision
## 1.66641                   engines impaired
## 1.66653                  emergency daytime
## 1.66654                    daytime landing
## 1.66680                     engine failure
## 1.66683                        jet fighter
## 1.66684                    fighter crashed
## 1.66688                    village crashed
## 1.66692                   glacial crevasse
## 1.66695                juneau undetermined
## 1.66699                      plane crashed
## 1.66705                    landing attempt
## 1.66708                  ljubljana airport
## 1.66711                     crew's failure
## 1.66714                      follow proper
## 1.66715                     proper landing
## 1.66716                 landing procedures
## 1.66717              procedures improperly
## 1.66718                     improperly set
## 1.66719                      set altimeter
## 1.66720                  altimeter captain
## 1.66721                     captain failed
## 1.66738                        crew failed
## 1.66741                        cross check
## 1.66742                   check altimeters
## 1.66743                  altimeters struck
## 1.66750                     engine failure
## 1.66755                     failed attempt
## 1.66761                           1 engine
## 1.66762                engine necessitated
## 1.66763              necessitated ditching
## 1.66768                         plane sank
## 1.66771                          5 minutes
## 1.66774                  passenger refused
## 1.66783                        cargo plane
## 1.66784                       plane struck
## 1.66785                       struck trees
## 1.66798                  emergency landing
## 1.66799                   landing material
## 1.66800                   material failure
## 1.66801                 failure consisting
## 1.66804                    fatigue failure
## 1.66816                   governor control
## 1.66817                       control unit
## 1.66833                        maximum rpm
## 1.66851                          dome ring
## 1.66855                        maximum low
## 1.66856                          low pitch
## 1.66857                      pitch setting
## 1.66858                        setting i.e
## 1.66864                   runway propeller
## 1.66870                          150 miles
## 1.66873                     longreach fire
## 1.66881                          2 engines
## 1.66889                  emergency descent
## 1.66892                          left wing
## 1.66893                         wing broke
## 1.66908                        plane broke
## 1.66912                            mid air
## 1.66915                   crashed loosened
## 1.66916                     loosened bolts
## 1.66917                          bolts led
## 1.66924                    oil lubricating
## 1.66925                   lubricating unit
## 1.66926                       unit causing
## 1.66937                  fire subsequently
## 1.66940                  locking mechanism
## 1.66950                   future accidents
## 1.66956                      plane crashed
## 1.66959                    salmon mountain
## 1.66967                   pilots evidently
## 1.66972                     maintain 9,000
## 1.66973                         9,000 feet
## 1.66979                       aircraft hit
## 1.66985                         3,830 foot
## 1.66986                         foot level
## 1.66990                         4,090 foot
## 1.66991                         foot ridge
## 1.66994                     crew's descent
## 1.66998                    clearance limit
## 1.67004            surrounding obstructing
## 1.67005                obstructing terrain
## 1.67008                    reasons unknown
## 1.67014                               dc 9
## 1.67022                          plane hit
## 1.67023                           hit hong
## 1.67024                          hong kong
## 1.67025                      kong mountain
## 1.67028                 helicopter crashed
## 1.67037                         tail rotor
## 1.67038                      rotor failure
## 1.67039                    failure fatigue
## 1.67040                   fatigue fracture
## 1.67045                    observed flying
## 1.67046                         flying low
## 1.67049                     emitting smoke
## 1.67062                      exploding 125
## 1.67063                          125 miles
## 1.67064                         miles east
## 1.67069                      plane crashed
## 1.67086                        cargo plane
## 1.67087                      plane crashed
## 1.67098                 altitude clearance
## 1.67099                    clearance limit
## 1.67102                    reasons unknown
## 1.67103                    unknown crashed
## 1.67107                   approach descent
## 1.67110                obstructing terrain
## 1.67113                   aircraft crashed
## 1.67117                          desert 20
## 1.67118                         20 minutes
## 1.67137                   scheduled report
## 1.67145                   explosive device
## 1.67149                       hand luggage
## 1.67168                    follow assigned
## 1.67169                     assigned route
## 1.67174                    wooded hillside
## 1.67175              hillside insufficient
## 1.67176            insufficient evaluation
## 1.67180                 weather conditions
## 1.67189                       crew crashed
## 1.67197                         rice paddy
## 1.67205                        left engine
## 1.67206                     engine shortly
## 1.67211                         la pedrera
## 1.67212                    pedrera airport
## 1.67217                      initial climb
## 1.67220                   seaplane stalled
## 1.67226                      rio caquetãƒâ
## 1.67227                  caquetãƒâ crashed
## 1.67234                       takeoff roll
## 1.67237                    poor visibility
## 1.67238                   visibility crash
## 1.67239                       crash landed
## 1.67240                       landed short
## 1.67248                          fog pilot
## 1.67249                        pilot error
## 1.67250                     error presence
## 1.67253                unauthorized person
## 1.67257                cockpit distracting
## 1.67260                         pilot lack
## 1.67263                cockpit supervision
## 1.67264                   supervision poor
## 1.67265                       poor weather
## 1.67266                    weather crashed
## 1.67270                    southern slopes
## 1.67273                     tajumbina peak
## 1.67276                          11,600 ft
## 1.67279                   approaching cali
## 1.67280                          cali lack
## 1.67283                 cockpit discipline
## 1.67284               discipline consuming
## 1.67285                  consuming alcohol
## 1.67286                    alcohol shortly
## 1.67294                  recommended route
## 1.67295                  route incorrectly
## 1.67296               incorrectly reported
## 1.67297                 reported positions
## 1.67298               positions continuing
## 1.67299                     continuing vfr
## 1.67302                     ifr conditions
## 1.67303                  conditions flying
## 1.67306                       minimum safe
## 1.67307                      safe altitude
## 1.67311                       vfr approach
## 1.67314                        cargo plane
## 1.67315                    plane undershot
## 1.67316                   undershot runway
## 1.67319                             1 mile
## 1.67324                     radar approach
## 1.67329                      night crashed
## 1.67332                  numerous thatched
## 1.67333                      thatched roof
## 1.67334                        roof houses
## 1.67335                     houses crashed
## 1.67342                   marginal weather
## 1.67345                 limited visibility
## 1.67346                 visibility crashed
## 1.67350                   explosion aboard
## 1.67353                   aircraft crashed
## 1.67354                        crashed due
## 1.67357                              18 km
## 1.67361                       runway pilot
## 1.67362                        pilot error
## 1.67363                      error crashed
## 1.67366                   approach landing
## 1.67367                      landing short
## 1.67371                  runway collapsing
## 1.67374                       landing gear
## 1.67375                       gear awkward
## 1.67376                    awkward landing
## 1.67377                  landing technique
## 1.67378                technique resulting
## 1.67381                     excessive rate
## 1.67384                  sink contributing
## 1.67385               contributing factors
## 1.67386                    factors include
## 1.67387                     include narrow
## 1.67388                      narrow runway
## 1.67389                      runway uneven
## 1.67390                      uneven runway
## 1.67391               runway necessitating
## 1.67392              necessitating landing
## 1.67402                   marginal weather
## 1.67403                 weather conditions
## 1.67416                   reverse position
## 1.67428                        ground loop
## 1.67433                       aircraft ran
## 1.67443                          left wing
## 1.67444                          wing tank
## 1.67445                      tank ruptured
## 1.67448                        caught fire
## 1.67449                      fire probable
## 1.67450                   probable failure
## 1.67454                      reverse pitch
## 1.67455                      pitch control
## 1.67456                  control mechanism
## 1.67457                  mechanism crashed
## 1.67462                        runway loss
## 1.67467                       low altitude
## 1.67468                  altitude improper
## 1.67469                   improper loading
## 1.67483                     gravity limits
## 1.67489                   aircraft crashed
## 1.67505                            2 blade
## 1.67506                   blade penetrated
## 1.67511               structural integrity
## 1.67515               fuselage malfunction
## 1.67519                    hydraulic pitch
## 1.67520                      pitch control
## 1.67521                  control mechanism
## 1.67522           mechanism uncontrollable
## 1.67523        uncontrollable overspeeding
## 1.67524             overspeeding propeller
## 1.67525               propeller separation
## 1.67528                    flight omission
## 1.67532                      torque piston
## 1.67533                   piston nitriding
## 1.67534                  nitriding process
## 1.67541                    quality control
## 1.67546                   omission crashed
## 1.67554                      approach crew
## 1.67555                         crew error
## 1.67565                       fast descent
## 1.67569                       low altitude
## 1.67575                erroneously decided
## 1.67594                     houses failure
## 1.67599                      engine midair
## 1.67600                   midair collision
## 1.67601                   collision twenty
## 1.67607                               dc 9
## 1.67612                 beechcraft failure
## 1.67616                               dc 9
## 1.67617                             9 crew
## 1.67626                               dc 9
## 1.67632                            300 mph
## 1.67635                       low altitude
## 1.67638                  airspace occupied
## 1.67645                contributing factor
## 1.67652                    excessive speed
## 1.67656                               dc 9
## 1.67657                              9 atc
## 1.67658                        atc systems
## 1.67659                 systems inadequate
## 1.67662                separate controlled
## 1.67665               uncontrolled traffic
## 1.67671                        faa imposed
## 1.67674                      maximum speed
## 1.67677                          250 knots
## 1.67680                          10,000 ft
## 1.67683                          sea level
## 1.67684                      level crashed
## 1.67689                           en route
## 1.67692                    aircraft struck
## 1.67695                 northwestern slope
## 1.67698                    stukel mountain
## 1.67702                       takeoff loss
## 1.67705                        control due
## 1.67708                      ice accretion
## 1.67711                  airframe surfaces
## 1.67719                           de icing
## 1.67720                        icing fluid
## 1.67723                      applied prior
## 1.67726                       takeoff flew
## 1.67729                  colcanin mountain
## 1.67732                          heavy fog
## 1.67735                           en route
## 1.67738                  aircraft collided
## 1.67743                        caught fire
## 1.67744                            fire 50
## 1.67745                           50 miles
## 1.67752                      engine caught
## 1.67753                        caught fire
## 1.67754                       fire crashed
## 1.67762                   captain suffered
## 1.67765                       heart attack
## 1.67773                     regain control
## 1.67776                    aircraft flight
## 1.67777                        flight 9877
## 1.67782                       provide crew
## 1.67783                      crew training
## 1.67787                    captain trainee
## 1.67791                    flight engineer
## 1.67792                   engineer trainee
## 1.67797                    flight engineer
## 1.67798                engineer instructor
## 1.67804                routine proficiency
## 1.67805                  proficiency check
## 1.67808                    flight departed
## 1.67813                              00 40
## 1.67817                    captain trainee
## 1.67821                          left seat
## 1.67825                      check captain
## 1.67832                              00 43
## 1.67835                       crew advised
## 1.67852                           runway 1
## 1.67855                      tower cleared
## 1.67871                     normal takeoff
## 1.67876                              00 47
## 1.67879                      crew reported
## 1.67882                           base leg
## 1.67885                           runway 1
## 1.67889                 controller cleared
## 1.67896              subsequent discussion
## 1.67897                discussion revealed
## 1.67908                   approach execute
## 1.67912                       stop landing
## 1.67918                          runway 19
## 1.67921                   tower controller
## 1.67922                controller observed
## 1.67923                    observed flight
## 1.67924                        flight 9877
## 1.67928                       shallow left
## 1.67937                       normal final
## 1.67938                     final approach
## 1.67943                     bank increased
## 1.67946                   approximately 60
## 1.67947                         60 degrees
## 1.67953                       aircraft hit
## 1.67956                        power lines
## 1.67957                lines approximately
## 1.67958                approximately 2,300
## 1.67959                         2,300 feet
## 1.67960                         feet short
## 1.67963                         1,100 feet
## 1.67964                          feet west
## 1.67968                   runway threshold
## 1.67971                               dc 8
## 1.67972                          8 crashed
## 1.67983                      motel complex
## 1.67984                   complex improper
## 1.67985               improper supervision
## 1.67997                     power controls
## 1.68004                    captain trainee
## 1.68012                   landing approach
## 1.68013                   approach ditched
## 1.68017                            ocean 2
## 1.68018                               2 km
## 1.68021                      shore crashed
## 1.68033                    unknown crashed
## 1.68038              thunderstorm activity
## 1.68046                     flight crashed
## 1.68052                    landing attempt
## 1.68053               attempt misjudgement
## 1.68061                    pilots exceeded
## 1.68064                          duty time
## 1.68067                            3 hours
## 1.68081                           50 hours
## 1.68082                       hours flying
## 1.68083                        flying time
## 1.68087                  britannia stalled
## 1.68090                    crashed shortly
## 1.68096                      plane crashed
## 1.68111               demonstration flight
## 1.68112                  flight overloaded
## 1.68115                       de havilland
## 1.68118                     piper collided
## 1.68125                         la guardia
## 1.68126                    guardia airport
## 1.68141                clearance congested
## 1.68142                  congested traffic
## 1.68143                    traffic pattern
## 1.68144                 pattern inadequate
## 1.68145                 inadequate spacing
## 1.68150               contributing factors
## 1.68157                      piper crashed
## 1.68158                      crashed short
## 1.68164                whiteout conditions
## 1.68165                conditions improper
## 1.68166                improper procedures
## 1.68171                   whiteout weather
## 1.68172                 weather conditions
## 1.68175                       plane rolled
## 1.68181                   crashed inverted
## 1.68182                   inverted failure
## 1.68187                  training maneuver
## 1.68196                    adequate flight
## 1.68197                     flight control
## 1.68198                    control crashed
## 1.68206                        land series
## 1.68212                           crew due
## 1.68217                    carbon monoxide
## 1.68218                     monoxide fumes
## 1.68219                   fumes difficulty
## 1.68227                           crew due
## 1.68234                   aircraft crashed
## 1.68239                    landing attempt
## 1.68240                       attempt loss
## 1.68246                  starboard engines
## 1.68247                  engines resulting
## 1.68250               control difficulties
## 1.68251                  difficulties fuel
## 1.68252                    fuel starvation
## 1.68253                     starvation due
## 1.68256                   inadvertent fuel
## 1.68257                      fuel transfer
## 1.68258               transfer inadvertent
## 1.68259                   inadvertent fuel
## 1.68260                      fuel transfer
## 1.68266                   scale sufficient
## 1.68279                      tank expected
## 1.68283                    sufficient fuel
## 1.68289                      fuel selector
## 1.68290                    selector levers
## 1.68301             incorrectly positioned
## 1.68319                  recognize crashed
## 1.68322                     final approach
## 1.68323                   approach crashed
## 1.68327           residential neighborhood
## 1.68338                     engine failure
## 1.68341                    pilot attempted
## 1.68344                 overshoot maneuver
## 1.68351                        port engine
## 1.68360                    minimum control
## 1.68361                      control speed
## 1.68362                    speed resulting
## 1.68370                  airport buildings
## 1.68380                      fuel crashing
## 1.68384                     swamp wreckage
## 1.68390                          jungle 10
## 1.68391                            10 days
## 1.68395                      plane crashed
## 1.68399                    aborted takeoff
## 1.68400                     takeoff caused
## 1.68408                         catch fire
## 1.68411                     flight crashed
## 1.68416                        flight fire
## 1.68417                     fire destroyed
## 1.68420                      pitch control
## 1.68421                    control systems
## 1.68422                  systems incorrect
## 1.68423             incorrect installation
## 1.68427                       valve caused
## 1.68428                         caused hot
## 1.68429                            hot air
## 1.68432                   ignite hydraulic
## 1.68433                    hydraulic fluid
## 1.68436                      fire resulted
## 1.68439                       engine bleed
## 1.68440                          bleed air
## 1.68441                        air flowing
## 1.68448                       return valve
## 1.68453                       air delivery
## 1.68454                     delivery valve
## 1.68458                    auxiliary power
## 1.68459                         power unit
## 1.68463                  reverse direction
## 1.68469                     plenum chamber
## 1.68472          temperatures sufficiently
## 1.68478                  acoustics linings
## 1.68483                            mid air
## 1.68484                      air collision
## 1.68485                 collision occurred
## 1.68499                       river marine
## 1.68500                       marine corps
## 1.68501                          corps air
## 1.68502                       air facility
## 1.68503                   facility located
## 1.68509                            camp le
## 1.68510                     le jeune.tower
## 1.68511              jeune.tower personnel
## 1.68515               continuously monitor
## 1.68521                              ch 53
## 1.68528                    positive action
## 1.68533                            mid air
## 1.68534                      air collision
## 1.68535                  collision crashed
## 1.68538                           en route
## 1.68539                      route ditched
## 1.68549                       typhoon crew
## 1.68553                      follow proper
## 1.68554                    proper approach
## 1.68555                approach procedures
## 1.68563                  approach properly
## 1.68568                   pilot mishandled
## 1.68575                   minimum altitude
## 1.68576                   altitude crashed
## 1.68582                       poor weather
## 1.68583                      weather pilot
## 1.68584                        pilot error
## 1.68585                     error decision
## 1.68588                            fly vfr
## 1.68591                     rugged terrain
## 1.68594                     ifr conditions
## 1.68595                  conditions midair
## 1.68596                   midair collision
## 1.68605                  asheville airport
## 1.68613                            8 miles
## 1.68619                         6,000 feet
## 1.68620                       feet seventy
## 1.68631                      cessna killed
## 1.68632                   killed deviation
## 1.68635                      ifr clearance
## 1.68639                       cessna pilot
## 1.68640                    pilot confusing
## 1.68641             confusing transmission
## 1.68645                           atc lack
## 1.68648             secondary surveillance
## 1.68649                 surveillance radar
## 1.68650                         radar john
## 1.68653                    mcnaughton navy
## 1.68654                     navy secretary
## 1.68655                secretary designate
## 1.68656                   designate killed
## 1.68663                        son crashed
## 1.68664                      crashed 2,500
## 1.68665                         2,500 feet
## 1.68674                      ivato airport
## 1.68677                           fog lost
## 1.68678                         lost power
## 1.68682                       left engines
## 1.68694                  emergency landing
## 1.68697                    poor visibility
## 1.68698                  visibility struck
## 1.68704                           phou pha
## 1.68705                            pha bon
## 1.68706                          bon range
## 1.68711                    holding pattern
## 1.68712                pattern encountered
## 1.68713                 encountered strong
## 1.68714                  strong turbulence
## 1.68717                 downdrafts crashed
## 1.68718                         crashed en
## 1.68719                           en route
## 1.68720                       route unable
## 1.68723                  maintain altitude
## 1.68729                   aircraft crashed
## 1.68730                      crashed 4,000
## 1.68731                         4,000 feet
## 1.68732                          feet past
## 1.68741                    aircraft struck
## 1.68746                           1,700 ft
## 1.68747                        ft exploded
## 1.68750                   disintegrated 10
## 1.68751                         10 minutes
## 1.68757                            da nang
## 1.68762                             fl 290
## 1.68774                   explosive device
## 1.68780                            seat 4a
## 1.68785                    severly damaged
## 1.68788                   aircraft causing
## 1.68797                 structurally break
## 1.68801                      fl150 crashed
## 1.68802                         crashed en
## 1.68803                           en route
## 1.68804                      route crashed
## 1.68810                  approach improper
## 1.68811                improper procedures
## 1.68817                 aircraft descended
## 1.68825                     southern slope
## 1.68830                     hill descended
## 1.68834                  assigned altitude
## 1.68837                    reasons unknown
## 1.68838                    unknown actress
## 1.68839                       actress june
## 1.68840                      june thorburn
## 1.68841                        thorburn 36
## 1.68842                          36 killed
## 1.68843                     killed shortly
## 1.68846                        reaching v1
## 1.68849                          nose gear
## 1.68850                          gear tire
## 1.68851                          tire blew
## 1.68852                       blew causing
## 1.68853                     causing severe
## 1.68854                   severe vibration
## 1.68857                       crew aborted
## 1.68867                           sea loss
## 1.68870                directional control
## 1.68871                 control developing
## 1.68878                         nose wheel
## 1.68879                        wheel tread
## 1.68880                    tread inability
## 1.68887                    adequate runway
## 1.68888                    runway distance
## 1.68895               differential braking
## 1.68896                   braking impaired
## 1.68897               impaired performance
## 1.68903                          tail wind
## 1.68904                     wind component
## 1.68907                    aircraft weight
## 1.68915            aircraft's acceleration
## 1.68916               acceleration stoping
## 1.68917                stoping performance
## 1.68922                       takeoff roll
## 1.68925                          loud bang
## 1.68931                    aircraft passed
## 1.68934                        delta plane
## 1.68942                   aircraft overran
## 1.68954                           twa crew
## 1.68957                 abort successfully
## 1.68963                     speed attained
## 1.68964                     attained prior
## 1.68968                    attempted abort
## 1.68973           understandably initiated
## 1.68979                   officer's belief
## 1.68988                     delta aircraft
## 1.68989                   aircraft stopped
## 1.68996                contributing factor
## 1.69003                         delta crew
## 1.69018             carefully ascertaining
## 1.69031                      safe distance
## 1.69038                    aircraft taking
## 1.69045                      plane climbed
## 1.69048                             700 ft
## 1.69054              ground malfunctioning
## 1.69055          malfunctioning artificial
## 1.69056                 artificial horizon
## 1.69061                    aircraft struck
## 1.69064                         tree short
## 1.69073                    snow procedural
## 1.69074                  procedural errors
## 1.69083                    adverse weather
## 1.69086                    visual approach
## 1.69087                 approach conducted
## 1.69093              deteriorating weather
## 1.69094                 weather conditions
## 1.69097                 adequate altimeter
## 1.69098                    altimeter cross
## 1.69099                    cross reference
## 1.69106                   visual reference
## 1.69109                  partially lighted
## 1.69110                  lighted irregular
## 1.69111                  irregular terrain
## 1.69121                  illusionary sense
## 1.69124                   adequate terrain
## 1.69125                  terrain clearance
## 1.69128                   aircraft crashed
## 1.69139                         light rain
## 1.69142                     low visibility
## 1.69151                  scheduled landing
## 1.69154                           qui nhon
## 1.69157                        cargo plane
## 1.69158                      plane crashed
## 1.69159                   crashed inverted
## 1.69165                         plane flew
## 1.69168                          10,500 ft
## 1.69169                         ft carpish
## 1.69170                   carpish mountain
## 1.69171                        mountain 30
## 1.69172                           30 miles
## 1.69175                        tingo maria
## 1.69178                        twin engine
## 1.69179                    engine aircraft
## 1.69189                         icy waters
## 1.69192                        lake monona
## 1.69195                          heavy fog
## 1.69209                undetermined singer
## 1.69210                        singer otis
## 1.69211                       otis redding
## 1.69212                         redding 26
## 1.69213                          26 killed
## 1.69224                           bar kays
## 1.69225                          kays band
## 1.69226                       band trumpet
## 1.69227                     trumpet player
## 1.69228                         player ben
## 1.69229                         ben cauley
## 1.69236                        cargo plane
## 1.69237                      plane crashed
## 1.69249                        pre takeoff
## 1.69250                    takeoff control
## 1.69251                      control check
## 1.69252                    check resulting
## 1.69258              elevators immobilized
## 1.69262                     control batten
## 1.69265                       poor weather
## 1.69272                    pilot requested
## 1.69275                          runway 18
## 1.69276                        18 approach
## 1.69279                      pilot decided
## 1.69284                    visual approach
## 1.69290                        3 diverging
## 1.69291                    diverging roads
## 1.69316                         royal thai
## 1.69317                           thai air
## 1.69318                          air force
## 1.69319                         force fuel
## 1.69320                       fuel storage
## 1.69324                          runway 18
## 1.69335                     pilot realized
## 1.69342                         wrong road
## 1.69360                       nose slipped
## 1.69371                           1 engine
## 1.69372                         engine hit
## 1.69377                         200 meters
## 1.69391                        glide slope
## 1.69399                               4 km
## 1.69405                         crew added
## 1.69406                      added takeoff
## 1.69407                      takeoff power
## 1.69412                    missed approach
## 1.69413            approach simultaneously
## 1.69417                        engine lost
## 1.69418                         lost power
## 1.69429                      aircraft lost
## 1.69430                      lost altitude
## 1.69431                    altitude rolled
## 1.69432                          rolled 40
## 1.69433                         40 degrees
## 1.69441                       snow covered
## 1.69442                      covered field
## 1.69449                     runway entered
## 1.69452               uncontrolled descent
## 1.69455                         crashed 92
## 1.69456                              92 km
## 1.69468                 determined crashed
## 1.69472                     mountain south
## 1.69475                            dong ha
## 1.69476                        ha airfield
## 1.69479                       aircraft hit
## 1.69480                             hit mt
## 1.69481                           mt tobin
## 1.69482                          tobin 300
## 1.69483                             300 ft
## 1.69489                         slid 1,000
## 1.69490                           1,000 ft
## 1.69497                 mountain turbulent
## 1.69498               turbulent conditions
## 1.69499                  conditions caused
## 1.69502               uncontrolled descent
## 1.69505                          salt lake
## 1.69506                       lake control
## 1.69507                     control center
## 1.69514                     vector request
## 1.69515                   request informed
## 1.69523                        storm cells
## 1.69543             turbulence encountered
## 1.69547                    hazardous worse
## 1.69559               turbulent conditions
## 1.69560              conditions apparently
## 1.69561                  apparently caused
## 1.69564               uncontrolled descent
## 1.69589                 weather conditions
## 1.69596                         flight ice
## 1.69597                      ice accretion
## 1.69601                    lifting surface
## 1.69605               aircraft accompanied
## 1.69610                  severe turbulence
## 1.69617                   aircraft control
## 1.69626                     regain control
## 1.69632                   lifting surfaces
## 1.69637                    approved design
## 1.69638                      design limits
## 1.69656                  subsequent impact
## 1.69660                     ground touched
## 1.69669                     runway bounced
## 1.69670                    bounced crashed
## 1.69673                     landing lights
## 1.69678                     sea inadequate
## 1.69679             inadequate supervision
## 1.69698                    extended visual
## 1.69699                   visual reference
## 1.69713                   aircraft overran
## 1.69721                    parked aircraft
## 1.69727                  buildings failure
## 1.69730                  evaluate existing
## 1.69731                  existing terminal
## 1.69732                   terminal weather
## 1.69733                weather information
## 1.69741                      land vanished
## 1.69750                           en route
## 1.69764                       rohtang pass
## 1.69767                        august 2003
## 1.69779                        august 2005
## 1.69787                  premature descent
## 1.69788                        descent due
## 1.69791                        bad weather
## 1.69792                  weather resulting
## 1.69801                            july 15
## 1.69802                            15 2012
## 1.69809                      dakka glacier
## 1.69814                 aircraft descended
## 1.69818                  glideslope struck
## 1.69819                       struck trees
## 1.69823                        house short
## 1.69830                       poor weather
## 1.69831                      weather pilot
## 1.69837                        fly crashed
## 1.69841                       mekong river
## 1.69842                       river engine
## 1.69843                     engine failure
## 1.69847                emergency situation
## 1.69850                  emergency descent
## 1.69853                        plane broke
## 1.69861                 passenger survived
## 1.69862                      survived fuel
## 1.69863                          fuel leak
## 1.69866                 aircraft attempted
## 1.69874                       plane landed
## 1.69885                       enemy ground
## 1.69886                        ground fire
## 1.69907                    aircraft struck
## 1.69913                    dormant volcano
## 1.69916                     crew initiated
## 1.69922             incorrectly identified
## 1.69926                         flying vfr
## 1.69927                         vfr cashed
## 1.69933                  flight structural
## 1.69934                 structural failure
## 1.69935                        failure due
## 1.69938                          air loads
## 1.69939                    loads exceeding
## 1.69942                    design strength
## 1.69948                  thunderstorm cell
## 1.69949                       cell crashed
## 1.69953                       hill shortly
## 1.69960                       indian ocean
## 1.69961                       ocean island
## 1.69969                  correct departure
## 1.69970                departure procedure
## 1.69991                        spiral dive
## 1.69997                          12,000 ft
## 1.70000                    dive apparently
## 1.70001                  apparently caused
## 1.70002                  caused structural
## 1.70003                  structural damage
## 1.70009                  aircraft plunging
## 1.70012                        st george's
## 1.70013                   george's channel
## 1.70014                         channel 10
## 1.70015                           10 miles
## 1.70016                         miles east
## 1.70022                     causal factors
## 1.70027                      metal fatigue
## 1.70028                  fatigue corrosion
## 1.70029                  corrosion flutter
## 1.70030                  flutter vibration
## 1.70034                        bird strike
## 1.70035                      strike midair
## 1.70036                   midair collision
## 1.70043                    landing pattern
## 1.70046                 collision resulted
## 1.70056                       fuel pouring
## 1.70067                       safe landing
## 1.70079                               dc 9
## 1.70080                       9 inadequacy
## 1.70083                        current vfr
## 1.70084                      vfr standards
## 1.70087                               dc 9
## 1.70088                             9 crew
## 1.70099                  congested traffic
## 1.70100                    traffic pattern
## 1.70101                     pattern soviet
## 1.70102                   soviet cosmonaut
## 1.70103                     cosmonaut yuri
## 1.70104                       yuri gagarin
## 1.70105                         gagarin 34
## 1.70120                   military fighter
## 1.70126              crashed approximately
## 1.70127                   approximately 30
## 1.70128                           30 miles
## 1.70129                         miles east
## 1.70132                     moscow shortly
## 1.70142                           2 engine
## 1.70143                      engine caught
## 1.70144                        caught fire
## 1.70155                       fire shutoff
## 1.70156                     shutoff handle
## 1.70159                     fire continued
## 1.70170                           2 engine
## 1.70171                        engine fell
## 1.70182                          wing tank
## 1.70183                      tank exploded
## 1.70184                   exploded crashed
## 1.70188                         approach 5
## 1.70189                          5 minutes
## 1.70193                destination failure
## 1.70198                           wing due
## 1.70206                   inaugural flight
## 1.70209                   aircraft crashed
## 1.70213                        mountain en
## 1.70214                           en route
## 1.70220                            mid air
## 1.70221                      air collision
## 1.70222                 collision occurred
## 1.70230                           1,000 ft
## 1.70231                        ft altitude
## 1.70240                   strijdom airport
## 1.70241                    airport climbed
## 1.70247                             600 ft
## 1.70251                 descended crashing
## 1.70259                            3 miles
## 1.70263                  runway procedural
## 1.70264                  procedural errors
## 1.70267                    takeoff takeoff
## 1.70268                 takeoff conditions
## 1.70271                     total darkness
## 1.70275                    external visual
## 1.70276                   visual reference
## 1.70277               reference stabilizer
## 1.70278                    stabilizer trim
## 1.70279                    trim improperly
## 1.70280                     improperly set
## 1.70281                        set spatial
## 1.70282             spatial disorientation
## 1.70288                     takeoff duties
## 1.70289                     duties crashed
## 1.70292                           en route
## 1.70295            encountering turbulence
## 1.70296                turbulence possibly
## 1.70297                   possibly leading
## 1.70314                      airliner flew
## 1.70329                       winds lifted
## 1.70332                          port wing
## 1.70333                       wing forcing
## 1.70336                     starboard wing
## 1.70339                            past 90
## 1.70340                         90 degrees
## 1.70343                     stall resulted
## 1.70347                   unusual attitude
## 1.70348                  attitude pitching
## 1.70355                  recovery maneuver
## 1.70358                     starboard wing
## 1.70362                stressed separating
## 1.70375                   aircraft crashed
## 1.70379                      field pilot's
## 1.70380                   pilot's decision
## 1.70389                     severe weather
## 1.70390                     weather visual
## 1.70391                  visual perception
## 1.70403                   lightning strike
## 1.70404                        strike shot
## 1.70408                         enemy fire
## 1.70413                      evacuate kham
## 1.70414                           kham duc
## 1.70415                      duc civilians
## 1.70418                     aircraft shook
## 1.70419                    shook violently
## 1.70420                  violently crashed
## 1.70436                helicopter suddenly
## 1.70437                 suddenly descended
## 1.70444                     erratic action
## 1.70448                         main rotor
## 1.70449                       rotor blades
## 1.70456                        faulty main
## 1.70457                         main rotor
## 1.70458                        rotor blade
## 1.70459                       blade damper
## 1.70460                      damper caused
## 1.70465                       rotor blades
## 1.70470               reasons undetermined
## 1.70477                   aircraft crashed
## 1.70482                  vertical attitude
## 1.70483                         attitude 5
## 1.70484                          5 minutes
## 1.70487                         takeoff 20
## 1.70488                              20 nm
## 1.70492                    airport crashed
## 1.70493                      crashed 1,200
## 1.70494                       1,200 meters
## 1.70495                       meters short
## 1.70505                        caught fire
## 1.70508                         heavy rain
## 1.70512                     night approach
## 1.70513                  approach improper
## 1.70514                       improper ifr
## 1.70515                      ifr operation
## 1.70516                  operation misused
## 1.70522                    flaps descended
## 1.70525                    decision height
## 1.70530                      named clipper
## 1.70531                  clipper caribbean
## 1.70534                      aircraft flew
## 1.70540                       mt jaiskibel
## 1.70546                    wrong direction
## 1.70549                            mid air
## 1.70550                      air collision
## 1.70556                             900 ft
## 1.70557                              ft 66
## 1.70558                           66 16202
## 1.70559                           16202 66
## 1.70560                           66 16592
## 1.70561                           16592 66
## 1.70562                           66 16601
## 1.70563                    16601 passenger
## 1.70564           passenger inadvertentlly
## 1.70567                          air stair
## 1.70568                         stair door
## 1.70571                      flight safety
## 1.70572                       safety chain
## 1.70573                       chain failed
## 1.70576                     passenger fell
## 1.70580                      cargo plane's
## 1.70581                       plane's left
## 1.70582                          left wing
## 1.70583                        wing struck
## 1.70588                       plane struck
## 1.70592                       planes burst
## 1.70605                   building failure
## 1.70609                          port flap
## 1.70610                     flap operating
## 1.70611                      operating rod
## 1.70612                            rod due
## 1.70615                 fatigue permitting
## 1.70618                         port flaps
## 1.70626                     rolling moment
## 1.70634                 controlled crashed
## 1.70639                    aborted landing
## 1.70640                    landing attempt
## 1.70643                    poor visibility
## 1.70646                       blowing dust
## 1.70647                       dust failure
## 1.70653                   maintain minimum
## 1.70654                   minimum altitude
## 1.70657                    reasons unknown
## 1.70658                       unknown poor
## 1.70659                     poor judgement
## 1.70667                     fourth landing
## 1.70670                        cargo plane
## 1.70671                    plane descended
## 1.70674                       mimimum safe
## 1.70675                      safe altitude
## 1.70678                       struck trees
## 1.70681                     crashed struck
## 1.70684                      mountain lost
## 1.70687                        sea crashed
## 1.70690                         approach 7
## 1.70691                            7 miles
## 1.70692                        miles north
## 1.70696                 runway positioning
## 1.70699                     final approach
## 1.70706                 standard procedure
## 1.70707                  procedure delayed
## 1.70708                  delayed detection
## 1.70712                         vor radial
## 1.70713                      radial midair
## 1.70714                   midair collision
## 1.70724                    forward baggage
## 1.70725                baggage compartment
## 1.70737                       convair lack
## 1.70740                     vfr separation
## 1.70741               separation inability
## 1.70745                       convair crew
## 1.70752                    sufficient time
## 1.70756                     evasive action
## 1.70764                      radar traffic
## 1.70765                 traffic advisories
## 1.70766                  advisories visual
## 1.70767                   visual detection
## 1.70768             detection capabalities
## 1.70771              substantially reduced
## 1.70774                 heavy accumulation
## 1.70777                      insect smears
## 1.70784                         haze smoke
## 1.70787                          sun glare
## 1.70790                     aircraft broke
## 1.70798                          21,000 ft
## 1.70799                         ft failure
## 1.70803              aircraft's electrical
## 1.70804                      electrical dc
## 1.70805                       dc generator
## 1.70806                  generator control
## 1.70807                     control system
## 1.70808                     system crashed
## 1.70813                     kanawha county
## 1.70814                     county airport
## 1.70817                    poor visibility
## 1.70830                        shallow fog
## 1.70831                      fog overlying
## 1.70834                    approach lights
## 1.70835                lights unrecognized
## 1.70836                  unrecognized loss
## 1.70839               altitude orientation
## 1.70843                      final portion
## 1.70849                      shallow dense
## 1.70850                          dense fog
## 1.70851                 fog disorientation
## 1.70852              disorientation caused
## 1.70855                    rapid reduction
## 1.70859                    ground guidance
## 1.70860                   guidance segment
## 1.70879                         main rotor
## 1.70880                        rotor blade
## 1.70884               helicopter separated
## 1.70888                        central hub
## 1.70891                      aircraft spun
## 1.70897                          tail cone
## 1.70898                       cone sheared
## 1.70901                metallurgical fault
## 1.70907                         main rotor
## 1.70908                        rotor blade
## 1.70909                      blade spindle
## 1.70910                    spindle fatigue
## 1.70911                     fatigue origin
## 1.70916               substandard hardness
## 1.70919                    inadequate shot
## 1.70920                       shot peening
## 1.70923                         main rotor
## 1.70924                        rotor blade
## 1.70925                      blade spindle
## 1.70926                    spindle ditched
## 1.70930                  mediterranean sea
## 1.70935                      plane crashed
## 1.70944                  emergency landing
## 1.70949                           1 engine
## 1.70950                      engine failed
## 1.70953                    takeoff crashed
## 1.70959                       poor weather
## 1.70960                  weather conditons
## 1.70963                    flying raindeer
## 1.70964                   raindeer hunters
## 1.70968                  mountain location
## 1.70981                        caught fire
## 1.70982                       fire crashed
## 1.70985                approach descending
## 1.70989                       ground short
## 1.70993                   runway deviation
## 1.70997                  prescribed flight
## 1.70998                       flight rules
## 1.71003                    visual approach
## 1.71006                    adverse weather
## 1.71007                 weather conditions
## 1.71008                  conditions midair
## 1.71009                   midair collision
## 1.71010                    collision pilot
## 1.71013                      cessna failed
## 1.71024                       piper killed
## 1.71027                   airliner crashed
## 1.71031                  mediterranean sea
## 1.71032                             sea 10
## 1.71033                           10 miles
## 1.71034                        miles south
## 1.71037                       nice airport
## 1.71042                  emergency landing
## 1.71043                         landing 21
## 1.71044                         21 minutes
## 1.71060                        fire aboard
## 1.71070                     final approach
## 1.71073                       aircraft hit
## 1.71074                          hit trees
## 1.71082                        caught fire
## 1.71083                       fire crashed
## 1.71086                         rio grande
## 1.71087                          grande de
## 1.71088                         de terraba
## 1.71091                               7 km
## 1.71092                            km west
## 1.71115                      field located
## 1.71116                          located 7
## 1.71117                               7 km
## 1.71118                       km southwest
## 1.71122                     airport engine
## 1.71123                     engine failure
## 1.71133                  emergency landing
## 1.71137                      engine failed
## 1.71147                      approach path
## 1.71148                       path control
## 1.71154                   airplane crashed
## 1.71158                      field located
## 1.71166                   aircraft crashed
## 1.71167                         crashed en
## 1.71168                           en route
## 1.71172                  pilot transmitted
## 1.71175                   mayday reporting
## 1.71182                           2 engine
## 1.71191                         crashed 20
## 1.71192                           20 miles
## 1.71202                  emergency landing
## 1.71206                   aircraft crashed
## 1.71209                     moose mountain
## 1.71213                 approach execution
## 1.71218                  standard approach
## 1.71219                 approach premature
## 1.71220                  premature descent
## 1.71228               determine accurately
## 1.71238                standard instrument
## 1.71239                instrument approach
## 1.71245            supplement navigational
## 1.71246                  navigational aids
## 1.71253                       plane landed
## 1.71257                     shallow waters
## 1.71260                      san francisco
## 1.71261                      francisco bay
## 1.71262                            bay 2.5
## 1.71263                           2.5 mile
## 1.71264                         mile short
## 1.71268                         runway 28l
## 1.71271                         107 people
## 1.71272                      people aboard
## 1.71275                   safely evacuated
## 1.71293                   coupled approach
## 1.71301                 pressure altimeter
## 1.71309                     accurate radio
## 1.71310                    radio altimeter
## 1.71317                     captain looked
## 1.71323                           200 feet
## 1.71336                      applied power
## 1.71347                        cross check
## 1.71350                           raw data
## 1.71351                         data glide
## 1.71352                        glide slope
## 1.71353                      slope signals
## 1.71370               improper application
## 1.71374              prescribed procedures
## 1.71379                  automatic coupled
## 1.71380                        coupled ils
## 1.71381                       ils approach
## 1.71387              prescribed procedures
## 1.71400               infrequent operation
## 1.71404                   installed flight
## 1.71405                    flight director
## 1.71408                   autopilot system
## 1.71412                       result japan
## 1.71413                          japan air
## 1.71414                          air lines
## 1.71415                      lines changed
## 1.71418                training procedures
## 1.71421                     stress command
## 1.71422           command responsibilities
## 1.71423              responsibilities crew
## 1.71424                  crew coordination
## 1.71427                    transition time
## 1.71440                      san francisco
## 1.71441                      francisco bay
## 1.71442                             bay 55
## 1.71443                           55 hours
## 1.71447                  accident repaired
## 1.71451                         united air
## 1.71452                          air lines
## 1.71453                     lines facility
## 1.71456                    eventually flow
## 1.71477                          dense fog
## 1.71480                 aircraft descended
## 1.71481              descended prematurely
## 1.71485                          left wing
## 1.71486                       wing clipped
## 1.71489                              30 ft
## 1.71490                           ft light
## 1.71491                         light pole
## 1.71498                       fire station
## 1.71499                        station 1.8
## 1.71500                          1.8 miles
## 1.71501                    miles northwest
## 1.71505                   runway threshold
## 1.71513                  adjacent elevated
## 1.71514                   elevated western
## 1.71515                 western embankment
## 1.71523                    spewing flaming
## 1.71524                   flaming wreckage
## 1.71529                      traffic lanes
## 1.71530                     lanes improper
## 1.71531                       improper ifr
## 1.71532                      ifr operation
## 1.71533                operation misjudged
## 1.71534                 misjudged altitude
## 1.71535                   altitude crashed
## 1.71536                    crashed shortly
## 1.71545                     engines failed
## 1.71546                       failed broke
## 1.71550                  severe turbulence
## 1.71553                        11,500 feet
## 1.71554                       feet failure
## 1.71564                       pre existing
## 1.71565                   existing fatigue
## 1.71566                     fatigue cracks
## 1.71578                        flight crew
## 1.71579                      crew improper
## 1.71580               improper maintenance
## 1.71581              maintenance incorrect
## 1.71582                  incorrect weather
## 1.71583                    weather forcast
## 1.71584                         forcast en
## 1.71585                           en route
## 1.71589                          york city
## 1.71592                   airliner crashed
## 1.71596                      caribbean sea
## 1.71606                  maiquetia airport
## 1.71609                   sensory illusion
## 1.71610                  illusion produced
## 1.71614                        town lights
## 1.71621                      named clipper
## 1.71622                      clipper malay
## 1.71625                   aircraft crashed
## 1.71631                           snow 2.5
## 1.71632                          2.5 miles
## 1.71633                        miles short
## 1.71640                instrument approach
## 1.71641              approach continuation
## 1.71647                    minimum descent
## 1.71648                   descent altitude
## 1.71651                obstructing terrain
## 1.71660                   establish visual
## 1.71661                   visual reference
## 1.71665                    ground improper
## 1.71666                       improper ifr
## 1.71667                      ifr operation
## 1.71668                  operation misread
## 1.71673                   read instruments
## 1.71676                        cargo plane
## 1.71677                      plane crashed
## 1.71687                    snowstorm pilot
## 1.71690                  command continued
## 1.71691                      continued vfr
## 1.71692                         vfr flight
## 1.71695                    adverse weather
## 1.71696                 weather conditions
## 1.71704                 weather conditions
## 1.71711                stickshaker sounded
## 1.71712                    sounded shortly
## 1.71717                   aircraft rotated
## 1.71720                     climbed slowly
## 1.71724                     wing contacted
## 1.71727                       snow covered
## 1.71728                     covered ground
## 1.71729                          ground 94
## 1.71730                            94 feet
## 1.71731                          feet left
## 1.71735                extended centerline
## 1.71741                         2,760 feet
## 1.71747                    aircraft rolled
## 1.71748                    rolled inverted
## 1.71758                  attempted takeoff
## 1.71765                 retracted position
## 1.71775                 inadequate cockpit
## 1.71776                  cockpit checklist
## 1.71782                     warning system
## 1.71783                  system inadequacy
## 1.71787                       cold weather
## 1.71788                 weather operations
## 1.71791                ineffective control
## 1.71792                  control practices
## 1.71795             manufacturer's service
## 1.71796                  service bulletins
## 1.71800                   stresses imposed
## 1.71811                        air traffic
## 1.71812                    traffic control
## 1.71813                   control deadline
## 1.71814                   deadline crashed
## 1.71828                           en route
## 1.71831                   aircraft crashed
## 1.71835                instrument approach
## 1.71845                     hangar spacial
## 1.71846             spacial disorientation
## 1.71850                  crew precipitated
## 1.71858                    approach lights
## 1.71863                         flying ifr
## 1.71866                   visual reference
## 1.71870                      ground struck
## 1.71876                      mountain west
## 1.71879                            soto la
## 1.71880                          la marina
## 1.71883                   marginal weather
## 1.71886                      radio contact
## 1.71893                              11 34
## 1.71894                           34 local
## 1.71895                           local 30
## 1.71896                             30 dme
## 1.71897                          dme south
## 1.71900                       port hedland
## 1.71903                moderate turbulence
## 1.71909                 descending rapidly
## 1.71910                   rapidly wreckage
## 1.71913                           found 28
## 1.71914                           28 miles
## 1.71915                        miles south
## 1.71918                       port hedland
## 1.71926                  crack originating
## 1.71930                          bolt hole
## 1.71934                          wing spar
## 1.71946                incorrect procedure
## 1.71954                      oversize bush
## 1.71961                         lower spar
## 1.71962                          spar boom
## 1.71963                     boom resulting
## 1.71973                  hairline fracture
## 1.71976                 helicopter crashed
## 1.71983               uncontrolled descent
## 1.71984                   descent moisture
## 1.71988                     servo cylinder
## 1.71989                      cylinder vent
## 1.71990                         vent ports
## 1.71991                        ports froze
## 1.71992                      froze causing
## 1.71995                       pilot valves
## 1.71996                       valves ports
## 1.72000                inoperative causing
## 1.72003                      pitch control
## 1.72008                encountered extreme
## 1.72009                 extreme turbulence
## 1.72014                           en route
## 1.72019                 aircraft descended
## 1.72023                        glide slope
## 1.72031                        house short
## 1.72035                   runway incorrect
## 1.72036                  incorrect setting
## 1.72043                pilot inadvertently
## 1.72044             inadvertently allowing
## 1.72052                        glide slope
## 1.72056                        final stage
## 1.72072                   effected crashed
## 1.72073                   crashed clipping
## 1.72074                      clipping tree
## 1.72075                          tree tops
## 1.72076                         tops short
## 1.72082                         light snow
## 1.72088                  excessive descent
## 1.72099                    reasons unknown
## 1.72100              unknown possibilities
## 1.72101              possibilities include
## 1.72104                  altimeter failure
## 1.72110                instrument approach
## 1.72111                     approach chart
## 1.72124                       santa monica
## 1.72125                         monica bay
## 1.72126                              bay 6
## 1.72127                            6 miles
## 1.72128                        miles short
## 1.72134                     fuselage broke
## 1.72137                           3 pieces
## 1.72144                           20 hours
## 1.72145                          hours sas
## 1.72157                       vor approach
## 1.72164              controlling authority
## 1.72172                       landing gear
## 1.72173                         gear light
## 1.72178                  crew coordination
## 1.72181              inadequate monitoring
## 1.72184                  aircraft position
## 1.72190                  unplanned descent
## 1.72198                       named sverre
## 1.72199                      sverre viking
## 1.72200                      viking struck
## 1.72205                       poor weather
## 1.72208                           en route
## 1.72211                   aircraft crashed
## 1.72214                       santa monica
## 1.72215                         monica bay
## 1.72216                        bay shortly
## 1.72220                      night takeoff
## 1.72223                       poor weather
## 1.72234                        3 generator
## 1.72235              generator inoperative
## 1.72240                     allowed united
## 1.72255                  repair facilities
## 1.72258                      aircraft flew
## 1.72264                           41 hours
## 1.72268              inoperative generator
## 1.72269                  generator passing
## 1.72286                      crew reported
## 1.72289                       fire warning
## 1.72294                           1 engine
## 1.72308                determined shutting
## 1.72313                           1 engine
## 1.72316                              itã â
## 1.72317                                â â
## 1.72320                  generator tripped
## 1.72324                        2 generator
## 1.72325                generator resulting
## 1.72332                   electrical power
## 1.72341                   electrical power
## 1.72344                    battery standby
## 1.72345                 standby electrical
## 1.72346                  electrical system
## 1.72355                function electrical
## 1.72356                   electrical power
## 1.72360                      voltage level
## 1.72363                   approximately 50
## 1.72364                           50 volts
## 1.72367             restored approximately
## 1.72379                        2 generator
## 1.72385                  power restoration
## 1.72399               functioning attitude
## 1.72400                attitude indicators
## 1.72407                        2 generator
## 1.72408                  generator tripped
## 1.72417                   inside reference
## 1.72425              spatially disoriented
## 1.72429                   plane eventually
## 1.72439                      pacific ocean
## 1.72440                         ocean 11.3
## 1.72441                         11.3 miles
## 1.72442                         miles west
## 1.72450                             950 ft
## 1.72462               attitude orientation
## 1.72466                   night instrument
## 1.72467               instrument departure
## 1.72472               attitude instruments
## 1.72479                   electrical power
## 1.72491                    generator power
## 1.72499                 standby electrical
## 1.72500                   electrical power
## 1.72501                       power system
## 1.72512                  unproven scenario
## 1.72523              inadvertent placement
## 1.72527                     battery switch
## 1.72535                    flight engineer
## 1.72540                      remove galley
## 1.72541                       galley loads
## 1.72545                    generator buses
## 1.72548                    galley switches
## 1.72561                  flight engineer's
## 1.72562                   engineer's upper
## 1.72563                        upper panel
## 1.72566                    close proximity
## 1.72570                     battery switch
## 1.72576                   flight engineerã
## 1.72577                        engineerã â
## 1.72578                                â â
## 1.72590                     battery switch
## 1.72593                  flight designated
## 1.72594               designated gambler's
## 1.72595                  gambler's special
## 1.72596                       special flew
## 1.72599                         mt whitney
## 1.72602                          11,770 ft
## 1.72605                           11 miles
## 1.72606                         miles west
## 1.72609                          lone pine
## 1.72610                      pine deviated
## 1.72616               authorized resulting
## 1.72624                        ifr weather
## 1.72625                 weather conditions
## 1.72629                mountainous terrain
## 1.72640                   radio navigation
## 1.72641                    navigation aids
## 1.72642                      aids aircraft
## 1.72643                 aircraft recovered
## 1.72644                        recovered 8
## 1.72645                                8 8
## 1.72646                               8 69
## 1.72647                         69 crashed
## 1.72652                     engine failure
## 1.72657                       plane passed
## 1.72664                       belly landed
## 1.72674                      creek crashed
## 1.72678                          sierra de
## 1.72679                        de luquillo
## 1.72680                 luquillo mountains
## 1.72689                        atc trainee
## 1.72692                mountainous terrain
## 1.72695                     ifr conditions
## 1.72698                 adequate clearance
## 1.72699                 clearance altitude
## 1.72702                        cargo plane
## 1.72705                         missing en
## 1.72706                           en route
## 1.72709                        santa maria
## 1.72713                     azores islands
## 1.72714                    islands crashed
## 1.72718                  pilot experienced
## 1.72719                experienced spatial
## 1.72720             spatial disorientation
## 1.72730                    aircraft struck
## 1.72731                  struck electrical
## 1.72732                   electrical power
## 1.72733                        power lines
## 1.72741                        la trinidad
## 1.72742                   trinidad section
## 1.72746                       city takeoff
## 1.72747               takeoff calculations
## 1.72751              erroneous information
## 1.72752                 information faulty
## 1.72753                 faulty temperature
## 1.72754                 temperature sensor
## 1.72758                         runway san
## 1.72759                      san francisco
## 1.72760                   francisco giants
## 1.72761                     giants pitcher
## 1.72762                     pitcher nestor
## 1.72763                      nestor chavez
## 1.72764                          chavez 22
## 1.72765                          22 killed
## 1.72768                         sand storm
## 1.72782                              2 3km
## 1.72787                           2 missed
## 1.72788                  missed approaches
## 1.72814                         wing broke
## 1.72819                   aircraft crashed
## 1.72824                    pilot descended
## 1.72827                       minimum safe
## 1.72828                      safe altitude
## 1.72833                      runway lights
## 1.72839                contributing factor
## 1.72842                      pilot fatigue
## 1.72843                    fatigue crashed
## 1.72860                        shallow fog
## 1.72861                      fog overlying
## 1.72864                    approach lights
## 1.72865                     lights failure
## 1.72871                discontinue descent
## 1.72880                    decision height
## 1.72881                    height improper
## 1.72882                       improper ifr
## 1.72883                      ifr operation
## 1.72884         operation misunderstanding
## 1.72887            instructions exercising
## 1.72890                      poor judgment
## 1.72891                      judgment poor
## 1.72892                          poor crew
## 1.72893                  crew coordination
## 1.72894                 coordination pilot
## 1.72895                      pilot fatigue
## 1.72912                         babia gora
## 1.72913                     gora mountains
## 1.72916                  aircraft deviated
## 1.72920                       normal route
## 1.72923                          heavy fog
## 1.72926                    unknown reasons
## 1.72936                     vertical climb
## 1.72943                        rotor speed
## 1.72947                   aircraft touched
## 1.72961                       rotor blades
## 1.72973                     cargo aircraft
## 1.72974                   aircraft crashed
## 1.72981                      reported fire
## 1.72987                       left landing
## 1.72988                       landing gear
## 1.72989                        gear caused
## 1.72997                  emergency landing
## 1.73004                       stop control
## 1.73011                           1 engine
## 1.73012                        engine loss
## 1.73018                          left main
## 1.73019                          main gear
## 1.73020                        gear brakes
## 1.73021                      brakes caused
## 1.73032             evacuation overheating
## 1.73036                   starter selector
## 1.73037                     selector relay
## 1.73047                          2 engines
## 1.73053                        wire bundle
## 1.73057                     relay provided
## 1.73065                       initial fire
## 1.73079                       north korean
## 1.73080                         korean mig
## 1.73081                            mig jet
## 1.73082                       jet fighters
## 1.73087              reconnaissance flight
## 1.73090                    plane developed
## 1.73091                  developed landing
## 1.73092                       landing gear
## 1.73093                       gear trouble
## 1.73102                        pilot chose
## 1.73117                  accident occurred
## 1.73120                      plane crashed
## 1.73124                        congo river
## 1.73125                       river leased
## 1.73129                      congolese air
## 1.73130                          air force
## 1.73133                    fuel exhaustion
## 1.73136                   aircraft crashed
## 1.73139                    adverse weather
## 1.73140                 weather conditions
## 1.73141               conditions windshear
## 1.73152                          low level
## 1.73155                       lost control
## 1.73158                  severe downdrafts
## 1.73161                    aircraft struck
## 1.73170                     forced landing
## 1.73179                       landing gear
## 1.73198                       cliff lifted
## 1.73205                    parked aircraft
## 1.73208                       struck trees
## 1.73209                         trees lost
## 1.73210                       lost control
## 1.73221                         field flap
## 1.73222                     flap asymmetry
## 1.73226                       final stages
## 1.73230                      flight landed
## 1.73231                       landed short
## 1.73239                  wall misjudgement
## 1.73255                        final phase
## 1.73259                   landing approach
## 1.73274                          plane hit
## 1.73284                       poor weather
## 1.73285                 weather conditions
## 1.73286               conditions excessive
## 1.73287                    excessive speed
## 1.73290                        wide radius
## 1.73300                 designated descent
## 1.73305                     rising terrain
## 1.73306                   terrain vanished
## 1.73307                        vanished en
## 1.73308                           en route
## 1.73316                   aircraft stating
## 1.73335                         soviet air
## 1.73336                          air force
## 1.73337                        force plane
## 1.73338                     plane carrying
## 1.73339                        carrying 91
## 1.73340                    91 paratroopers
## 1.73341              paratroopers collided
## 1.73345                 passenger airliner
## 1.73351                              il 14
## 1.73352                           14 pilot
## 1.73353                      pilot changed
## 1.73354                   changed altitude
## 1.73359                        avoid storm
## 1.73360                       storm clouds
## 1.73361                      clouds twenty
## 1.73367                              il 14
## 1.73375                    passenger plane
## 1.73376                       plane struck
## 1.73379                        mountian 34
## 1.73380                              34 km
## 1.73383                         talas crew
## 1.73384                         crew error
## 1.73401                 aircraft descended
## 1.73406                      vertical dive
## 1.73407                      dive crashing
## 1.73411                    ground unwanted
## 1.73412                    unwanted change
## 1.73415                  longitudinal trim
## 1.73424                       speed flight
## 1.73425                   flight condition
## 1.73431                  physical capacity
## 1.73439                 initiating element
## 1.73443                  accident sequence
## 1.73448            specifically determined
## 1.73454                    aircraft flight
## 1.73455                     flight control
## 1.73456                     control system
## 1.73464                     flight control
## 1.73465                    control systems
## 1.73478                   control collided
## 1.73484                      cloud covered
## 1.73485                   covered mountain
## 1.73486                    mountain summit
## 1.73491                           10 miles
## 1.73498                    crashed weather
## 1.73509                         plane flew
## 1.73512                    wake turbulence
## 1.73519                         12 minutes
## 1.73526               intersection takeoff
## 1.73529                       tower warned
## 1.73533                    wake turbulence
## 1.73537                 recently departing
## 1.73538                      departing jet
## 1.73541                 sightseeing flight
## 1.73542                    flight collided
## 1.73549                     engine failure
## 1.73550                    failure failure
## 1.73553                     valve assembly
## 1.73554                     assembly pilot
## 1.73557                  command exercised
## 1.73558                     exercised poor
## 1.73559                      poor judgment
## 1.73560               judgment unwarranted
## 1.73561                    unwarranted low
## 1.73562                         low flying
## 1.73563                       flying crash
## 1.73564                       crash landed
## 1.73569                  emergency landing
## 1.73576                   electrical panel
## 1.73577                          panel led
## 1.73581                         cabin fire
## 1.73582                       fire crashed
## 1.73586                    missed approach
## 1.73587                 approach procedure
## 1.73592                directional control
## 1.73598               intentional shutdown
## 1.73602                    pumps supplying
## 1.73603                supplying hydraulic
## 1.73604                 hydraulic pressure
## 1.73611             concurrent restoration
## 1.73618                           4 engine
## 1.73621                contributing factor
## 1.73628                    hydraulic fluid
## 1.73629                         fluid loss
## 1.73630                     loss emergency
## 1.73631                emergency procedure
## 1.73637            operating configuration
## 1.73649                propeller separated
## 1.73653                    left engine.the
## 1.73654                   engine.the blade
## 1.73655                    blade punctured
## 1.73658                  fuselage severing
## 1.73659                  severing elevator
## 1.73662                   aileron controls
## 1.73670                      plane anymore
## 1.73680                        cargo plane
## 1.73681                      plane crashed
## 1.73688                      plane crashed
## 1.73710                        cargo plane
## 1.73711                      plane crashed
## 1.73714              unknown circumstances
## 1.73717                     final approach
## 1.73720                     moscow vnukovo
## 1.73723                        flying crew
## 1.73724                        crew failed
## 1.73729                       landing gear
## 1.73732                   crew encountered
## 1.73735                     minima weather
## 1.73736                 weather conditions
## 1.73739                         low clouds
## 1.73743             mountains.the airplane
## 1.73744                    airplane struck
## 1.73752                      single engine
## 1.73753                       engine plane
## 1.73760                      rainy weather
## 1.73766                     building storm
## 1.73767                        storm front
## 1.73768                      front fighter
## 1.73769                      fighter rocky
## 1.73770                     rocky marciano
## 1.73771                        marciano 45
## 1.73772                          45 killed
## 1.73780                            fly ifr
## 1.73785                           35 hours
## 1.73788                       night flying
## 1.73789                  flying experience
## 1.73797                        newton iowa
## 1.73803                      flying barely
## 1.73804                         barely 100
## 1.73805                           100 feet
## 1.73814                       rolling bank
## 1.73817                 clouds reappearing
## 1.73826                      plane crashed
## 1.73830                           lone oak
## 1.73831                           oak tree
## 1.73838                         corn field
## 1.73844                         des moines
## 1.73845                    moines marciano
## 1.73855                     birthday party
## 1.73856                        party pilot
## 1.73857                    pilot attempted
## 1.73858                attempted operation
## 1.73861                 experience ability
## 1.73862                      ability level
## 1.73863                    level continued
## 1.73864                      continued vfr
## 1.73865                         vfr flight
## 1.73868                    adverse weather
## 1.73869                 weather conditions
## 1.73870                 conditions spatial
## 1.73871             spatial disorientation
## 1.73874                      plane crashed
## 1.73878                        hillside 24
## 1.73879                              24 km
## 1.73885                       poor weather
## 1.73889                   approach failure
## 1.73895                       reduce speed
## 1.73900                      weather worse
## 1.73905                    minimum crashed
## 1.73909                       meking river
## 1.73918                        lowe clouds
## 1.73924                        fuel twelve
## 1.73935                       machine guns
## 1.73936                      guns hijacked
## 1.73939                       tame ecuador
## 1.73942                          47 planes
## 1.73945                     hijackers shot
## 1.73955                    aircraft landed
## 1.73958                         tumaco tco
## 1.73959                       tco colombia
## 1.73970                hijackers continued
## 1.73973                        panama city
## 1.73974                      city tocument
## 1.73975                   tocument airport
## 1.73976                        airport pty
## 1.73980                          31 minute
## 1.73981                   minute refueling
## 1.73982                     refueling stop
## 1.73986                       47 continued
## 1.73989                       kingston kin
## 1.73990                        kin jamaica
## 1.73993                         plane left
## 1.73994                      left kingston
## 1.73997                              21 00
## 1.74001                          71 minute
## 1.74002                   minute refueling
## 1.74003                     refueling stop
## 1.74006                     flight finally
## 1.74007                     finally landed
## 1.74012                     hijackers told
## 1.74013                    told passengers
## 1.74031                    anti government
## 1.74032                   government riots
## 1.74040                       ecuador flew
## 1.74044                        mountain 30
## 1.74045                           30 miles
## 1.74056                       severe storm
## 1.74057                       storm midair
## 1.74058                   midair collision
## 1.74061                           2,500 ft
## 1.74064                      piper crashed
## 1.74071                               dc 9
## 1.74077                        land eighty
## 1.74080                      killed aboard
## 1.74083                               dc 9
## 1.74088                   piper inadequate
## 1.74089                     inadequate vfr
## 1.74090                     vfr separation
## 1.74096                         atc system
## 1.74103                          mixed vfr
## 1.74104                            vfr ifr
## 1.74105                        ifr traffic
## 1.74106                     traffic landed
## 1.74107                       landed short
## 1.74118                   faulty altimiter
## 1.74124                    fifteen minutes
## 1.74127                    leaving londina
## 1.74130                        port engine
## 1.74135                  aircraft returned
## 1.74140                      plane crashed
## 1.74149                     failed landing
## 1.74150                    landing attempt
## 1.74163                   accident crashed
## 1.74173                  inclement weather
## 1.74179                instrument approach
## 1.74180                approach procedures
## 1.74181                   procedures pilot
## 1.74182                        pilot error
## 1.74183                       error midair
## 1.74184                   midair collision
## 1.74188                          4e landed
## 1.74189                      landed safely
## 1.74192                               dc 4
## 1.74193                          4 crashed
## 1.74194                    crashed killing
## 1.74204                ground misconstrued
## 1.74205          misconstrued instructions
## 1.74211                               dc 4
## 1.74217                    plane undershot
## 1.74225                         mile short
## 1.74226                      short hitting
## 1.74239                   forward fuselage
## 1.74240                    fuselage struck
## 1.74243                 railway embankment
## 1.74250                         hit 15,500
## 1.74251                          15,500 ft
## 1.74252                              ft mt
## 1.74253                     mt choquetanga
## 1.74261                    bolivian soccer
## 1.74262                        soccer team
## 1.74265                   strongest killed
## 1.74268                        cargo plane
## 1.74269                      plane crashed
## 1.74274                     approach short
## 1.74278                     runway crashed
## 1.74290                   aircraft carrier
## 1.74293                     engine failure
## 1.74296                      plane crashed
## 1.74297                      crashed 1,090
## 1.74298                       1,090 mshort
## 1.74307               propeller accidently
## 1.74308               accidently feathered
## 1.74312                           de icing
## 1.74313                       icing system
## 1.74316                  activated causing
## 1.74321                      lose altitude
## 1.74324                      crash crashed
## 1.74332                       poor weather
## 1.74337                     inadequate pre
## 1.74338                         pre flight
## 1.74339                flight preparations
## 1.74346                   marginal weather
## 1.74349                    pilot descended
## 1.74353                   minimum altitude
## 1.74356                      pilot exposed
## 1.74376                       duty crashed
## 1.74379                     approach icing
## 1.74380                       icing struck
## 1.74381                       struck trees
## 1.74385                    northwest slope
## 1.74388                         pilot knob
## 1.74389                      knob mountain
## 1.74394                         rock cliff
## 1.74399                      aircraft fell
## 1.74400                          fell 38ft
## 1.74407                   captain exceeded
## 1.74410                   clearance limits
## 1.74418                         severe lee
## 1.74421                 mountain downdraft
## 1.74425              altitude insufficient
## 1.74430                   aircraft crashed
## 1.74433                           burned 8
## 1.74434                            8 miles
## 1.74437                      lagos airport
## 1.74446                   unknown possibly
## 1.74447              possibly insufficient
## 1.74448            insufficient monitoring
## 1.74451                 equipment allowing
## 1.74460                    unsafe altitude
## 1.74471                           3,000 ft
## 1.74474                  aircraft suddenly
## 1.74475                     suddenly nosed
## 1.74479                              sea 3
## 1.74480                          3 minutes
## 1.74497                 french authorities
## 1.74502                          vfr rated
## 1.74503                        rated pilot
## 1.74504                    pilot continued
## 1.74505                   continued flight
## 1.74508                       poor weather
## 1.74509                   weather airframe
## 1.74510                     airframe icing
## 1.74511                       icing caused
## 1.74514                          left wing
## 1.74521                      aircraft lost
## 1.74522                       lost control
## 1.74532                      deicing boots
## 1.74533                      boots crashed
## 1.74534                      crashed short
## 1.74540                     approach icing
## 1.74543                   aircraft crashed
## 1.74546                             mt pan
## 1.74547                             pan 25
## 1.74548                           25 miles
## 1.74549                           miles sw
## 1.74558                        flight crew
## 1.74559                      crew deviated
## 1.74563                       proper track
## 1.74569                       minimum safe
## 1.74570                      safe altitude
## 1.74573                       approach atc
## 1.74574                           atc lost
## 1.74575                       lost contact
## 1.74579                   aircraft shortly
## 1.74599                   explosive device
## 1.74615                      blast damaged
## 1.74618              aircraft's hydraulics
## 1.74623                   airborne overran
## 1.74631                     school crashed
## 1.74634                  approaching luang
## 1.74635                      luang prabang
## 1.74636                    prabang airport
## 1.74639                          thick fog
## 1.74642                    plane developed
## 1.74643                  developed trouble
## 1.74648                           4 engine
## 1.74657                     plane returned
## 1.74668                       ferry flight
## 1.74677                   aircraft started
## 1.74684                         nose yawed
## 1.74695                           1 engine
## 1.74696                       engine power
## 1.74699                   aircraft rotated
## 1.74704                        27deg flaps
## 1.74709                    aircraft banked
## 1.74710                           banked 4
## 1.74713                          6 degrees
## 1.74720                   airspeed dropped
## 1.74731                          tree tops
## 1.74732                        tops banked
## 1.74733                          banked 10
## 1.74736                         15 degrees
## 1.74739                 crashed unexpected
## 1.74744                    external visual
## 1.74745                   visual reference
## 1.74753                directional control
## 1.74760                  instrument flying
## 1.74761                   flying windshear
## 1.74764                  aircraft carrying
## 1.74765              carrying paratroopers
## 1.74766               paratroopers crashed
## 1.74772                        fog crashed
## 1.74776                         lagoon 400
## 1.74777                          400 yards
## 1.74778                         yards past
## 1.74791                      plane pitched
## 1.74795                  stalled windshear
## 1.74796            windshear precipitation
## 1.74799                    turbulence flew
## 1.74803                          10,500 ft
## 1.74804                        ft mountain
## 1.74813                  command adversely
## 1.74814                 adversely affected
## 1.74819            efficiency contributing
## 1.74820               contributing factors
## 1.74821                        factors atc
## 1.74822                          atc error
## 1.74823                 error navigational
## 1.74824                  navigational aids
## 1.74829                   aircraft crashed
## 1.74830                      crashed short
## 1.74840             encountering windshear
## 1.74841                  windshear crashed
## 1.74844                          vega hill
## 1.74845                       hill located
## 1.74848                            km east
## 1.74859                   carrying mexican
## 1.74860                mexican journalists
## 1.74861               journalists covering
## 1.74864              presidential campaign
## 1.74865                   campaign crashed
## 1.74876                  premature descent
## 1.74879                  aircraft suffered
## 1.74882                   airframe failure
## 1.74885                           en route
## 1.74886                      route fatigue
## 1.74887                   fatigue fracture
## 1.74890                    wing attachment
## 1.74891                 attachment fitting
## 1.74892                      fitting bolts
## 1.74893                          bolts faa
## 1.74894                    faa replacement
## 1.74895                   replacement time
## 1.74896                      time exceeded
## 1.74897                  exceeded collided
## 1.74901                       snow covered
## 1.74902                      covered rocky
## 1.74903                     rocky mountain
## 1.74904                     mountain slope
## 1.74905                           slope 40
## 1.74906                              40 km
## 1.74907                       km northeast
## 1.74910                    batagay airport
## 1.74916                        1020 meters
## 1.74923                descent prematurely
## 1.74928                       poor weather
## 1.74929                 weather conditions
## 1.74932                    airplane struck
## 1.74933                        struck tree
## 1.74934                          tree tops
## 1.74935                       tops stalled
## 1.74941                       snow covered
## 1.74942                       covered hill
## 1.74943                       hill located
## 1.74947                  vladeasa mountain
## 1.74948                     mountain range
## 1.74951                              73 km
## 1.74952                       km southeast
## 1.74955                     oradea airport
## 1.74956                    airport crashed
## 1.74960                            storm 8
## 1.74961                          8 minutes
## 1.74980                      ground severe
## 1.74981                  severe turbulence
## 1.74984                    adverse weather
## 1.74985                 weather conditions
## 1.74986                 conditions crashed
## 1.74995                           5,000 ft
## 1.74996                              ft 32
## 1.74997                              32 km
## 1.74998                       km northeast
## 1.75001                  samarkand airport
## 1.75002          airport misidentification
## 1.75009                        air traffic
## 1.75010                 traffic controller
## 1.75011                 controller crashed
## 1.75015                       island sound
## 1.75025                          york fuel
## 1.75026                    fuel exhaustion
## 1.75027               exhaustion resulting
## 1.75030                  inadequate flight
## 1.75031                 flight preparation
## 1.75036                   flight decisions
## 1.75042                    command crashed
## 1.75054             overspeeding propeller
## 1.75062                      crew reported
## 1.75063                    reported losing
## 1.75076                  descended rapidly
## 1.75082                  sea featherweight
## 1.75083                featherweight boxer
## 1.75084                       boxer carlos
## 1.75085                        carlos cruz
## 1.75091                       puerto rican
## 1.75092                      rican women's
## 1.75093                   women's national
## 1.75094                national volleyball
## 1.75095                    volleyball team
## 1.75096                        team killed
## 1.75097                     killed crashed
## 1.75100              unknown circumstances
## 1.75103                          9 minutes
## 1.75109                      crew reported
## 1.75110                   reported trouble
## 1.75114                   aircraft's cabin
## 1.75115                     cabin pressure
## 1.75126                      crew reported
## 1.75134                          aft cargo
## 1.75135                         cargo hold
## 1.75143                          crew lost
## 1.75144                  lost navigational
## 1.75145           navigational instruments
## 1.75148                   electrical power
## 1.75151                     cockpit filled
## 1.75157                      plane crashed
## 1.75161                  forest detonation
## 1.75165                   explosive device
## 1.75169                       rear section
## 1.75173                    passenger cabin
## 1.75174                      cabin shortly
## 1.75182                  altimeter trigger
## 1.75192                     package mailed
## 1.75196                    israeli address
## 1.75199             palestinian extremists
## 1.75200                 extremists crashed
## 1.75201                          crashed 3
## 1.75202                               3 km
## 1.75203                           km short
## 1.75210                          snow bank
## 1.75211                bank disintegration
## 1.75216                           1 engine
## 1.75217                     engine turbine
## 1.75218                      turbine wheel
## 1.75219                      wheel crashed
## 1.75222                        guajara bay
## 1.75223                          bay short
## 1.75242                      avoid workers
## 1.75246                         runway ran
## 1.75250                   runway attempted
## 1.75258                      gain altitude
## 1.75264                  structures trucks
## 1.75268                           u.s navy
## 1.75269                           navy jet
## 1.75270                           jet flew
## 1.75275                 turbulence crashed
## 1.75278                           en route
## 1.75279                    route continued
## 1.75280                      continued vfr
## 1.75281                         vfr flight
## 1.75284                    adverse weather
## 1.75285                 weather conditions
## 1.75286                 conditions spatial
## 1.75287             spatial disorientation
## 1.75290                   aircraft crashed
## 1.75296                 radiosonde weather
## 1.75297                    weather balloon
## 1.75305                   aircraft crashed
## 1.75306                        crashed 9.7
## 1.75307                             9.7 km
## 1.75308                           km short
## 1.75326                         fire alarm
## 1.75327                    alarm connected
## 1.75340                    flight engineer
## 1.75341               engineer immediately
## 1.75342               immediately switched
## 1.75349                    hydraulic pumps
## 1.75363                   transfer actions
## 1.75367                       power supply
## 1.75371                        left engine
## 1.75377                    impact controls
## 1.75378                   controls started
## 1.75394                    expect recovery
## 1.75407                     crew descended
## 1.75408              descended prematurely
## 1.75421                    cauayan isabela
## 1.75429                mountainous terrain
## 1.75433                     bomb explosion
## 1.75437                      rear lavatory
## 1.75441                     aircraft broke
## 1.75445                       tail section
## 1.75446                    section crashed
## 1.75449                experiencing engine
## 1.75454                      initial climb
## 1.75455                      climb crashed
## 1.75462                     dirt strip.the
## 1.75463                 strip.the probable
## 1.75472                    pilot persisted
## 1.75490              deteriorating weather
## 1.75491                 weather conditions
## 1.75500                 safely discontinue
## 1.75509                    maintain visual
## 1.75510                   visual reference
## 1.75514                significant terrain
## 1.75526                         st maarten
## 1.75530                    poor visibility
## 1.75538                         st maarten
## 1.75544                           san juan
## 1.75545                        juan puerto
## 1.75546                        puerto rico
## 1.75560                         st maarten
## 1.75567                           3 missed
## 1.75568                     missed landing
## 1.75569                   landing attempts
## 1.75572                         st maarten
## 1.75581                          st thomas
## 1.75595                         crew chose
## 1.75600                           st croix
## 1.75606                           st croix
## 1.75609                       aircraft ran
## 1.75618                             sea 35
## 1.75619                           35 miles
## 1.75622                      shore sinking
## 1.75625                           5,000 ft
## 1.75628                     water improper
## 1.75629                improper management
## 1.75635                     crew continued
## 1.75636             continued unsuccessful
## 1.75637              unsuccessful attempts
## 1.75642                         st maarten
## 1.75645                  insufficient fuel
## 1.75646                      fuel remained
## 1.75651                  alternate airport
## 1.75654                contributing factor
## 1.75657                       rain showers
## 1.75661                   approaching zone
## 1.75667                    crew inadequate
## 1.75668                 inadequate warning
## 1.75677                    airplane struck
## 1.75678                       struck trees
## 1.75684                     mountain slope
## 1.75685                      slope located
## 1.75695                    flight controls
## 1.75700                       aircraft hit
## 1.75703                        runway hard
## 1.75704                    hard collapsing
## 1.75707                          nose gear
## 1.75715                        flight fire
## 1.75718                     unknown origin
## 1.75726                    flight controls
## 1.75731                 visibility control
## 1.75738                          plane ran
## 1.75744                           wing tip
## 1.75745                         tip struck
## 1.75748                          rock pile
## 1.75752                  plane cartwheeled
## 1.75755                   aircraft cleared
## 1.75759                 instrument landing
## 1.75760                      landing broke
## 1.75763                   scattered clouds
## 1.75766                           400 feet
## 1.75767                       feet landing
## 1.75768                      landing short
## 1.75772                    runway crashing
## 1.75782                     fire illusions
## 1.75783                 illusions produced
## 1.75789                        visual cues
## 1.75793                  circling approach
## 1.75796                  unlighted terrain
## 1.75806                    approach lights
## 1.75810                    visual approach
## 1.75811                     approach aides
## 1.75812                  aides possibility
## 1.75815                    altimeter error
## 1.75816                       error united
## 1.75817                        united auto
## 1.75818                      auto worker's
## 1.75819                 worker's president
## 1.75820                   president walter
## 1.75821                     walter reuther
## 1.75822                         reuther 63
## 1.75826                        wife killed
## 1.75830                    oskar stronorov
## 1.75831                  stronorov william
## 1.75832                    william wolfman
## 1.75835                      pilots george
## 1.75836                       george evans
## 1.75839                     joseph karrafa
## 1.75844                    airplane banked
## 1.75845                        banked left
## 1.75846                          left lost
## 1.75847                        lost height
## 1.75857                           km short
## 1.75860                   runway threshold
## 1.75861                    threshold pilot
## 1.75862                        pilot error
## 1.75868                       plane banked
## 1.75879                      pilot stalled
## 1.75887                       low altitude
## 1.75897                   aircraft climbed
## 1.75903                   dekalb peachtree
## 1.75904                  peachtree airport
## 1.75907                      plane touched
## 1.75919                      mile striking
## 1.75922                 automobile killing
## 1.75923                          killing 5
## 1.75924                           5 people
## 1.75925                        people loss
## 1.75928                   effective engine
## 1.75929                       engine power
## 1.75933                      improper fuel
## 1.75943                untrained personnel
## 1.75946                contributing factor
## 1.75955                    error undershot
## 1.75956                   undershot runway
## 1.75964                     failed landing
## 1.75965                   landing attempts
## 1.75966                      attempts crew
## 1.75967                         crew error
## 1.75970                       hand grenade
## 1.75971                   grenade exploded
## 1.75972                    exploded inside
## 1.75975                    passenger cabin
## 1.75980                     safe emergency
## 1.75981                  emergency landing
## 1.75987                               9 sq
## 1.75988                              sq ft
## 1.75989                            ft hole
## 1.75993                    fuselage struck
## 1.75996                          15,000 ft
## 1.75997                        ft mountain
## 1.75998                   mountain located
## 1.76004                 huaricanga crashed
## 1.76007                      trees shortly
## 1.76013                      pilot rotated
## 1.76016                           v2 speed
## 1.76020                      reduced power
## 1.76024                     copilot raised
## 1.76027                   landing gear.the
## 1.76030                          main gear
## 1.76038                  retracted causing
## 1.76045                     runway surface
## 1.76046                        surface due
## 1.76049                      heavy traffic
## 1.76057                      planned route
## 1.76060                    aircraft failed
## 1.76065                    assigned airway
## 1.76071                     cloud obscured
## 1.76072                  obscured montseny
## 1.76073                  montseny mountain
## 1.76082                    assigned airway
## 1.76089           malfunctioning equipment
## 1.76113                   approximately 60
## 1.76114                            60 feet
## 1.76122             inadvertently deployed
## 1.76123                   deployed causing
## 1.76136                           4 engine
## 1.76144                    captain decided
## 1.76153                         plane lost
## 1.76157                           3 engine
## 1.76164                         steep dive
## 1.76167                crashed inadvertent
## 1.76168             inadvertent deployment
## 1.76184                         air faulty
## 1.76185                      faulty design
## 1.76190                     spoiler handle
## 1.76196                    unrelated tasks
## 1.76197                         tasks lift
## 1.76207                    crash mcdonnell
## 1.76208                  mcdonnell douglas
## 1.76209                     douglas denied
## 1.76214                        design flaw
## 1.76218                        faa decided
## 1.76223            airworthiness directive
## 1.76224                directive requiring
## 1.76227                    warning placard
## 1.76246                   issued requiring
## 1.76249                        safety lock
## 1.76252              installed disappeared
## 1.76258                           en route
## 1.76262                  final destination
## 1.76265                            peru 40
## 1.76266                         40 minutes
## 1.76275                     field hospital
## 1.76278                earthquake stricken
## 1.76279                      stricken peru
## 1.76280                         peru cargo
## 1.76281                        cargo plane
## 1.76284                    unarrested rate
## 1.76287                        descent due
## 1.76295                instrument altitude
## 1.76296                altitude references
## 1.76306                     visual contact
## 1.76309          meteorological conditions
## 1.76320                    precision radar
## 1.76321                     radar approach
## 1.76322                   approach inbound
## 1.76326                    decision height
## 1.76327                       height broke
## 1.76335                    thunderstorm 50
## 1.76336                           50 miles
## 1.76337                        miles south
## 1.76340                          las vegas
## 1.76341                      vegas crashed
## 1.76350                       strong winds
## 1.76353                     flight crashed
## 1.76354                    crashed shortly
## 1.76361                           3 engine
## 1.76362                      engine failed
## 1.76363                  failed procedural
## 1.76364                   procedural error
## 1.76368                 emergency occurred
## 1.76371                    flaps retracted
## 1.76374                      aircraft lost
## 1.76375                      lost altitude
## 1.76384                 improper execution
## 1.76392                        flight crew
## 1.76395               contributing factors
## 1.76398                   improper loading
## 1.76404               improper maintenance
## 1.76405             maintenance procedures
## 1.76408                  company personnel
## 1.76409                  personnel crashed
## 1.76412                      yuan mountain
## 1.76421                          thick fog
## 1.76424              thunderstorm activity
## 1.76425                      activity shot
## 1.76430                     rocket grenade
## 1.76431                    grenade crashed
## 1.76434                      jungled hills
## 1.76435                      hills shortly
## 1.76445                     minimum sector
## 1.76446                    sector altitude
## 1.76449                 continued directly
## 1.76452                     gauhati struck
## 1.76453                       struck trees
## 1.76458                haringvreter island
## 1.76461                     pilot suffered
## 1.76462                   suffered spatial
## 1.76463             spatial disorientation
## 1.76468                           fog bank
## 1.76474                      ifr qualified
## 1.76477                         plane lost
## 1.76478                       lost control
## 1.76483                         30 minutes
## 1.76489               undetermined crashed
## 1.76494                      fl270 crashed
## 1.76501                  captain descended
## 1.76504                mountainous terrain
## 1.76509                      position poor
## 1.76510                        poor flight
## 1.76511                    flight planning
## 1.76512                 planning erroneous
## 1.76515                   flight decisions
## 1.76518                  navigation errors
## 1.76524                        flying crew
## 1.76525                        crew caused
## 1.76538                 accident resulting
## 1.76542                  controlled flight
## 1.76545                   terrain rejected
## 1.76546                   rejected takeoff
## 1.76547                       takeoff lost
## 1.76548                       lost control
## 1.76551                       crashed loss
## 1.76554                      pitch control
## 1.76555                     control caused
## 1.76563                    asphalt covered
## 1.76564                     covered object
## 1.76568                       leading edge
## 1.76577                    horizontal spar
## 1.76578                           spar web
## 1.76579                         web access
## 1.76580                        access door
## 1.76588                 stabilizer crashed
## 1.76594                           mt knuku
## 1.76595                    knuku mountains
## 1.76598                  mueggenaes island
## 1.76604                           1,500 ft
## 1.76605                               ft 2
## 1.76606                            2 miles
## 1.76615                         20 minutes
## 1.76616                       minutes flew
## 1.76625                            da nang
## 1.76628                       poor weather
## 1.76629                 weather conditions
## 1.76632                     charter planes
## 1.76641                         logan utah
## 1.76654                      n464m decided
## 1.76659                       scenic route
## 1.76674                          5,165 lbs
## 1.76675                           lbs flew
## 1.76679                         box canyon
## 1.76680                  canyon confronted
## 1.76683                     steeply rising
## 1.76684                     rising terrain
## 1.76690                         sharp bank
## 1.76698                   narrowing valley
## 1.76701                   stalled crashing
## 1.76705               mountainous forested
## 1.76709                        mt trelease
## 1.76710                  trelease numerous
## 1.76719                      football team
## 1.76727                          123 total
## 1.76728                        total hours
## 1.76732                         martin 404
## 1.76735                         copilot 30
## 1.76736                           30 hours
## 1.76737                  hours intentional
## 1.76738              intentional operation
## 1.76745                    mountain valley
## 1.76746                       valley route
## 1.76760                obstructing terrain
## 1.76761                      terrain ahead
## 1.76770                   factors included
## 1.76771                included overloaded
## 1.76772              overloaded conditions
## 1.76773                    conditions lack
## 1.76777                    flight planning
## 1.76780             minimum qualifications
## 1.76786                    aircraft struck
## 1.76789                     mountain ridge
## 1.76790                            ridge 6
## 1.76791                          6 minutes
## 1.76797                   taipei deviation
## 1.76802                         flying ifr
## 1.76808                   aircraft crashed
## 1.76812                    mountainside 20
## 1.76813                         20 minutes
## 1.76818                      nascar driver
## 1.76819                      driver curtis
## 1.76820                      curtis turner
## 1.76821                          turner 46
## 1.76827                         pro golfer
## 1.76828                    golfer clarence
## 1.76829                      clarence king
## 1.76830                         king tuner
## 1.76839                      blood alcohol
## 1.76842                     0.17 alcoholic
## 1.76843               alcoholic impairment
## 1.76848                  judgment evidence
## 1.76855                       severe heart
## 1.76856                       heart attack
## 1.76857                       attack prior
## 1.76861                   accident shortly
## 1.76867                           1 engine
## 1.76868                      engine failed
## 1.76884                      plane crashed
## 1.76885                        crashed 1.2
## 1.76886                          1.2 miles
## 1.76894                 carrying employees
## 1.76898                     anglo american
## 1.76899               american corporation
## 1.76905                        cargo plane
## 1.76912                       ground 5,000
## 1.76913                           5,000 ft
## 1.76914                           ft short
## 1.76918                         runway fog
## 1.76919                            fog low
## 1.76920                        low ceiling
## 1.76921                    ceiling spatial
## 1.76922             spatial disorientation
## 1.76923            disorientation improper
## 1.76924                       improper ifr
## 1.76925                      ifr operation
## 1.76928                        cargo plane
## 1.76929                      plane crashed
## 1.76936                  emergency landing
## 1.76942                   aircraft crashed
## 1.76945                         mile short
## 1.76948                          runway 11
## 1.76957                         fog thirty
## 1.76962                          5 coaches
## 1.76966                marshall university
## 1.76967                university football
## 1.76968                      football team
## 1.76973                    killed improper
## 1.76974                improper procedures
## 1.76975                procedures executed
## 1.76979                       crew descent
## 1.76982                    minimum descent
## 1.76983                   descent altitude
## 1.76987              nonprecision approach
## 1.76990                  adverse operating
## 1.76991               operating conditions
## 1.76994                     visual contact
## 1.76998                 runway environment
## 1.77022            cockpit instrumentation
## 1.77023               instrumentation data
## 1.77028                   altimetry system
## 1.77029                       system error
## 1.77030                      error crashed
## 1.77045                          nha trang
## 1.77046                          trang air
## 1.77047                           air base
## 1.77052                   military charter
## 1.77053                    charter overran
## 1.77058                        takeoff hit
## 1.77061                      ils localizer
## 1.77062                  localizer support
## 1.77063                  support structure
## 1.77072            acceleration undetected
## 1.77079                           v1 speed
## 1.77082                     reached caused
## 1.77086                       main landing
## 1.77087                       landing gear
## 1.77088                        gear wheels
## 1.77089                   wheels remaining
## 1.77090                   remaining locked
## 1.77100                         icy runway
## 1.77101                         runway due
## 1.77106                  hydraulic failure
## 1.77107                    failure crashed
## 1.77111                          jungle 15
## 1.77112                           15 miles
## 1.77119                     pilot prepared
## 1.77126                       poor weather
## 1.77127                 weather conditions
## 1.77130                     hydraulic gust
## 1.77131                          gust lock
## 1.77132                        lock system
## 1.77136                        cargo plane
## 1.77137                    plane activated
## 1.77140                     flight causing
## 1.77151                   neutral position
## 1.77158                     upper position
## 1.77170              malfunctioning switch
## 1.77171                       switch valve
## 1.77181                           2 engine
## 1.77182                      engine failed
## 1.77185                        takeoff due
## 1.77188                    fuel starvation
## 1.77196                       lost control
## 1.77199                    crashed crashed
## 1.77200                          crashed 4
## 1.77201                              4 kms
## 1.77202                          kms short
## 1.77210                       poor weather
## 1.77220                        limited due
## 1.77226                     crew continued
## 1.77232                    minimum descent
## 1.77233                   descent altitude
## 1.77239               published procedures
## 1.77242               aircraft experienced
## 1.77245                       hard landing
## 1.77253                      crew executed
## 1.77261                       main landing
## 1.77262                       landing gear
## 1.77267                    aircraft veered
## 1.77275                      runway passed
## 1.77279                  airport perimeter
## 1.77280                    perimeter fence
## 1.77281                      fence crossed
## 1.77284                      paved highway
## 1.77289               embankment captain's
## 1.77293                improper techniques
## 1.77300                   bounce generated
## 1.77304                    poorly executed
## 1.77305                  executed approach
## 1.77310                     pilot declared
## 1.77317                        position 65
## 1.77318                        65 nautical
## 1.77319                     nautical miles
## 1.77320                        miles north
## 1.77331                       31 occupants
## 1.77334                      found ditched
## 1.77338                       ocean mayday
## 1.77339                    mayday received
## 1.77349                      plane crashed
## 1.77357                         erevan due
## 1.77360                        poor flight
## 1.77361                 flight preparation
## 1.77368                        crew failed
## 1.77373                        pre takeoff
## 1.77374                  takeoff checklist
## 1.77381                        flaps prior
## 1.77388               published procedures
## 1.77389                 procedures crashed
## 1.77390                          crashed 7
## 1.77391                              7 kms
## 1.77398                 sandstorm decision
## 1.77406                   company minimums
## 1.77413                       night midair
## 1.77414                   midair collision
## 1.77417                           3,000 ft
## 1.77418                          ft failed
## 1.77427                         boeing 707
## 1.77428                         707 landed
## 1.77429                      landed safely
## 1.77435                      cessna system
## 1.77436                   system permitted
## 1.77437                      permitted vfr
## 1.77438                      vfr operation
## 1.77444                 reduced visibility
## 1.77447                       crew decided
## 1.77464                     flight changed
## 1.77470                   received reports
## 1.77473                  improving weather
## 1.77476                      plane crashed
## 1.77491                         glide path
## 1.77494                          left wing
## 1.77495                           wing tip
## 1.77498                       landing gear
## 1.77499                        gear struck
## 1.77502                   ground first.the
## 1.77503                     first.the crew
## 1.77504                     crew neglected
## 1.77507               published procedures
## 1.77517                    minimum descent
## 1.77518                   descent altitude
## 1.77522                      approach path
## 1.77523                       path crashed
## 1.77527                    andes mountains
## 1.77530                experiencing engine
## 1.77531                     engine trouble
## 1.77532                    trouble crashed
## 1.77540                mountainous terrain
## 1.77541                   terrain thirteen
## 1.77544                   france's nuclear
## 1.77545                    nuclear weapons
## 1.77546                    weapons experts
## 1.77557                altitude clearances
## 1.77560                         8,000 feet
## 1.77561                          feet till
## 1.77562                       till montãƒâ
## 1.77563                      montãƒâ limar
## 1.77566                         5,000 feet
## 1.77567                          feet till
## 1.77568                        till orange
## 1.77569                  orange descending
## 1.77570             descending prematurely
## 1.77571             prematurely controlled
## 1.77572                  controlled flight
## 1.77575                    terrain crashed
## 1.77576                         crashed 15
## 1.77577                              15 km
## 1.77578                           km short
## 1.77582                       runway icing
## 1.77585                       engine bleed
## 1.77586                       bleed valves
## 1.77593                         anti icing
## 1.77594                       icing system
## 1.77598                  ineffective crash
## 1.77599                       crash landed
## 1.77606                 hijacker detonated
## 1.77607                 detonated grenades
## 1.77622                 grenade explosions
## 1.77623                   explosions crash
## 1.77624                       crash landed
## 1.77627                          cruces de
## 1.77628                            de daji
## 1.77629                      daji mountain
## 1.77641                     merida aileron
## 1.77642               aileron oscillations
## 1.77643             oscillations coincided
## 1.77646                     flap extension
## 1.77649                 crew misunderstood
## 1.77650              misunderstood aileron
## 1.77651               aileron oscillations
## 1.77654                  asymmetrical flap
## 1.77655                     flap extension
## 1.77662                   airspeed dropped
## 1.77665                          172 knots
## 1.77669                   aileron suddenly
## 1.77670                 suddenly deflected
## 1.77671                  deflected causing
## 1.77674                          left roll
## 1.77677                 aircraft undershot
## 1.77684                       hinge moment
## 1.77685                    moment reversal
## 1.77689                    ailerons caused
## 1.77692                       icing cashed
## 1.77696                        mountain 15
## 1.77697                         15 minutes
## 1.77703                       poor weather
## 1.77704                 weather conditions
## 1.77705              conditions controlled
## 1.77706                  controlled flight
## 1.77709                        terrain hit
## 1.77719                     wreckage found
## 1.77720                            found 6
## 1.77721                             6 days
## 1.77724                  controlled flight
## 1.77732                    training flight
## 1.77733                    flight suddenly
## 1.77734                    suddenly rolled
## 1.77743                           missed 3
## 1.77744                           3 engine
## 1.77745                         engine ils
## 1.77746                       ils approach
## 1.77747                   approach failure
## 1.77751                    aircraft rudder
## 1.77752                   rudder hydraulic
## 1.77753                 hydraulic actuator
## 1.77754                   actuator support
## 1.77755                    support fitting
## 1.77763                        left rudder
## 1.77764                     rudder control
## 1.77765                     control stress
## 1.77766                   stress corrosion
## 1.77767                   corrosion cracks
## 1.77768                     cracks crashed
## 1.77771                 approach resulting
## 1.77774                 structural failure
## 1.77779                         outer wing
## 1.77784                              13 m2
## 1.77785                        m2 detached
## 1.77789                      upper surface
## 1.77797                   approach causing
## 1.77803             uncontrollable crashed
## 1.77807                         rice field
## 1.77808                      field moments
## 1.77814                           basa air
## 1.77815                           air base
## 1.77818              floridablanca climbed
## 1.77821                             200 ft
## 1.77822                          ft banked
## 1.77826                       left stalled
## 1.77832                     ground failure
## 1.77846               aircraft experienced
## 1.77847                 experienced engine
## 1.77848                     engine failure
## 1.77853                       crashed fuel
## 1.77854                    fuel starvation
## 1.77855                    starvation fuel
## 1.77856                      fuel selector
## 1.77857                selector positioned
## 1.77860                       tanks pilots
## 1.77861                pilots unfamilarity
## 1.77867                             1 hour
## 1.77870                      type aircraft
## 1.77871                   aircraft shortly
## 1.77876                     guatemala city
## 1.77877                            city la
## 1.77878                          la aurora
## 1.77879                     aurora airport
## 1.77884                      crew declared
## 1.77890                      engine failed
## 1.77893                    captain elected
## 1.77899                      airplane lost
## 1.77900                        lost height
## 1.77906                      hilly terrain
## 1.77907                    terrain located
## 1.77908                         located 24
## 1.77909                              24 km
## 1.77910                           km south
## 1.77914                       capital city
## 1.77917                   aircraft crashed
## 1.77922                     rijeka airport
## 1.77926                         heavy rain
## 1.77927                         rain storm
## 1.77932                      rapid descent
## 1.77935                    aircraft landed
## 1.77936                   landed extremely
## 1.77937                     extremely hard
## 1.77941                     runway causing
## 1.77944                          left wing
## 1.77953                         slid 2,300
## 1.77954                           2,300 ft
## 1.77959                    flames improper
## 1.77960                  improper handling
## 1.77966                    engine controls
## 1.77967                   controls optical
## 1.77968                   optical illusion
## 1.77969                       illusion due
## 1.77973                       intense rain
## 1.77982                        cargo plane
## 1.77983                         plane lost
## 1.77991                          crashed 2
## 1.77992                               2 km
## 1.77998                     flight crashed
## 1.78008             thunderstorm continued
## 1.78009                      continued vfr
## 1.78010                         vfr flight
## 1.78013                    adverse weather
## 1.78014                 weather conditions
## 1.78015                 conditions entered
## 1.78016                 entered instrument
## 1.78017                 instrument weather
## 1.78026                     mountain world
## 1.78027                          world war
## 1.78028                             war ii
## 1.78029                            ii hero
## 1.78032                      western movie
## 1.78033                         movie star
## 1.78034                         star audie
## 1.78035                       audie murphy
## 1.78036                          murphy 46
## 1.78037                          46 killed
## 1.78040                               dc 9
## 1.78045                             fl 330
## 1.78048                      radar control
## 1.78052                           la artcc
## 1.78059                           en route
## 1.78062                            el toro
## 1.78065                     vfr visibility
## 1.78077                        15,150 feet
## 1.78080                     planes crashed
## 1.78084                        san gabriel
## 1.78085                  gabriel mountains
## 1.78096                     forward canopy
## 1.78107                      safety unhurt
## 1.78112                      killed aboard
## 1.78115                               dc 9
## 1.78116                          9 failure
## 1.78131                            f4 crew
## 1.78134                      request radar
## 1.78135                     radar advisory
## 1.78136                   advisory service
## 1.78147             inoperable transponder
## 1.78148            transponder allegations
## 1.78159                aerobatics maneuver
## 1.78160                   maneuver shortly
## 1.78166                   aircraft crashed
## 1.78172                       beach houses
## 1.78173                       houses 4,980
## 1.78174                         4,980 feet
## 1.78175                         feet short
## 1.78179                   runway captain's
## 1.78180              captain's intentional
## 1.78181                intentional descent
## 1.78186                    adverse weather
## 1.78187                 weather conditions
## 1.78198                        1st officer
## 1.78199                officer disappeared
## 1.78202                           en route
## 1.78203                          route met
## 1.78207           undisclosed catastrophic
## 1.78208                 catastrophic event
## 1.78214                       sea believed
## 1.78225                    aircraft struck
## 1.78226                       struck putre
## 1.78227                     putre mountain
## 1.78233                        18,000 feet
## 1.78234                      feet improper
## 1.78235                    improper flight
## 1.78236                    flight planning
## 1.78239                        imc weather
## 1.78246                        gain height
## 1.78266                      ocean failure
## 1.78276                      elavator gust
## 1.78277                         gust locks
## 1.78280                   aircraft crashed
## 1.78283                   yokotsu mountain
## 1.78287              approach navigational
## 1.78288                 navigational error
## 1.78291                       strong winds
## 1.78292                       winds caused
## 1.78293                      caused flight
## 1.78296                      drift crashed
## 1.78312                            vor dme
## 1.78313                       dme approach
## 1.78316                      manila runway
## 1.78317                          runway 24
## 1.78320                     cargo aircraft
## 1.78321                    aircraft struck
## 1.78322                       struck mount
## 1.78323                      mount kamunay
## 1.78329                         2,525 feet
## 1.78330                            feet 20
## 1.78331                           20 miles
## 1.78332                         miles east
## 1.78333                     east northeast
## 1.78337                         manila vor
## 1.78343                      improper crew
## 1.78344                  crew coordination
## 1.78349                  premature descent
## 1.78354                    irkutsk airport
## 1.78357                    aircraft landed
## 1.78358                       landed short
## 1.78365                     excessive rate
## 1.78370                          left wing
## 1.78371                     wing separated
## 1.78375                        plane burst
## 1.78378                  flames procedural
## 1.78379                  procedural errors
## 1.78385                     aircraft speed
## 1.78388                              32 km
## 1.78394                   prescribed speed
## 1.78398                     vertical speed
## 1.78410                  correct touchdown
## 1.78415                     violent impact
## 1.78419                     runway surface
## 1.78422                     plane carrying
## 1.78423                 carrying parachute
## 1.78424                 parachute trainees
## 1.78425                   trainees crashed
## 1.78435                     final approach
## 1.78441                        engine fire
## 1.78455                          japan air
## 1.78458                      defense force
## 1.78461                        86f fighter
## 1.78462                   fighter collided
## 1.78469                   aircraft crashed
## 1.78473                      fighter pilot
## 1.78474                      pilot ejected
## 1.78475                     ejected safely
## 1.78479                      hundred sixty
## 1.78488                      fighter pilot
## 1.78496               involuntary homicide
## 1.78499                      fighter pilot
## 1.78509                         received 3
## 1.78516               providing sufficient
## 1.78517             sufficient supervision
## 1.78523                    aircraft struck
## 1.78524                    struck approach
## 1.78525                    approach lights
## 1.78534             takeoff miscalculation
## 1.78538                      runway length
## 1.78541                  takeoff reference
## 1.78542                    reference speed
## 1.78545                     crew erroneous
## 1.78546              erroneous information
## 1.78554                      named clipper
## 1.78555                    clipper america
## 1.78558                helicopter carrying
## 1.78559                  carrying american
## 1.78560                    american troops
## 1.78564                   exercise crashed
## 1.78572                     flames fatigue
## 1.78573                    fatigue failure
## 1.78577                        rotor blade
## 1.78578                          blade led
## 1.78584                 structural failure
## 1.78588                   aircraft crashed
## 1.78591                          dense fog
## 1.78600                airport discontinue
## 1.78601                    discontinue vor
## 1.78602                       vor approach
## 1.78603                 approach attempted
## 1.78606                    maintain visual
## 1.78607                      visual flight
## 1.78610                     ifr conditions
## 1.78616                obstructing terrain
## 1.78617                 terrain disappeard
## 1.78623                        miles short
## 1.78635                      approach crew
## 1.78636                         crew error
## 1.78637                         error crew
## 1.78638                          crew flew
## 1.78641                 prescribed minimum
## 1.78642                  minimum altitiude
## 1.78645                   aircraft crashed
## 1.78651                    chikat mountain
## 1.78661               precision instrument
## 1.78662                 instrument landing
## 1.78665                   juneau municipal
## 1.78666                  municipal airport
## 1.78667                    airport display
## 1.78670              misleading navigation
## 1.78671             navigation information
## 1.78677                  premature descent
## 1.78680                 obstacle clearance
## 1.78681                 clearance altitude
## 1.78698                  aircraft collided
## 1.78702                    bridge shearing
## 1.78709                      double engine
## 1.78710                     engine failure
## 1.78715                     forced landing
## 1.78723                    water injection
## 1.78724                   injection system
## 1.78733               inadvertently filled
## 1.78741                        cargo plane
## 1.78742                      plane crashed
## 1.78752                     kiev generator
## 1.78753                   generator failed
## 1.78754                     failed forcing
## 1.78764                   aborted attempts
## 1.78771                      plane crashed
## 1.78778                          sveti duh
## 1.78779                           duh peak
## 1.78783                     rila mountains
## 1.78786                           en route
## 1.78789                  giving directions
## 1.78795                       atc confused
## 1.78801                   turkish aircraft
## 1.78825                        engine fire
## 1.78832                        wing struck
## 1.78833                       struck trees
## 1.78840                      amazon jungle
## 1.78843                           en route
## 1.78846                   distress message
## 1.78869                      rear pressure
## 1.78870                  pressure bulkhead
## 1.78871                  bulkhead ruptured
## 1.78874                        19,000 feet
## 1.78877                   airplane rapidly
## 1.78878                      rapidly nosed
## 1.78891                     suspected leak
## 1.78910                 explosion occurred
## 1.78913                      tnt explosive
## 1.78914                   explosive device
## 1.78921                         cabin wall
## 1.78925                     passenger seat
## 1.78934                    blast destroyed
## 1.78937                    flight controls
## 1.78940                    airplane rolled
## 1.78954                  sightseeing plane
## 1.78955                      plane crashed
## 1.78958                          rain snow
## 1.78959                     snow continued
## 1.78960                      continued vfr
## 1.78961                         vfr flight
## 1.78964                    adverse weather
## 1.78965                 weather conditions
## 1.78966                   conditions pilot
## 1.78967                  pilot transmitted
## 1.78975                 weather conditions
## 1.78978                   aircraft crashed
## 1.78981                       burned short
## 1.78987                             girl 6
## 1.78991                              boy 3
## 1.78996                 survivors collided
## 1.78999                        wires poles
## 1.79004                      land improper
## 1.79005                       improper ifr
## 1.79006                      ifr operation
## 1.79007                operation descended
## 1.79010                        mda crashed
## 1.79011                      crashed short
## 1.79023                         heavy rain
## 1.79024                      rain collided
## 1.79031                      land improper
## 1.79032                       improper ifr
## 1.79033                      ifr operation
## 1.79034                operation descended
## 1.79037                          mda pilot
## 1.79038                      pilot fatigue
## 1.79041                     plane carrying
## 1.79042              carrying paratroopers
## 1.79043               paratroopers crashed
## 1.79047                       ligurian sea
## 1.79050                           20 miles
## 1.79051                         miles west
## 1.79054                       pisa shortly
## 1.79060                         san giusto
## 1.79061                     giusto airport
## 1.79064                  flight structural
## 1.79065                 structural failure
## 1.79070                      plane crashed
## 1.79079                     padang unknown
## 1.79083                      plane crashed
## 1.79095                     runway stalled
## 1.79098                    unknown reasons
## 1.79101                      plane crashed
## 1.79113                          hong kong
## 1.79114                    kong detonation
## 1.79118                   explosive device
## 1.79119                     device crashed
## 1.79134              deteriorating weather
## 1.79135                 weather conditions
## 1.79146                      vertical rate
## 1.79151                      crashed icing
## 1.79152                       icing midair
## 1.79153                   midair collision
## 1.79156                               dc 9
## 1.79157                        9 descended
## 1.79163                      killed aboard
## 1.79168                               dc 9
## 1.79169                           9 landed
## 1.79174                     aboard injured
## 1.79175                 injured inadequacy
## 1.79178                     atc facilities
## 1.79187               aircraft experienced
## 1.79190                     forced landing
## 1.79199                       fuel strayed
## 1.79207                      mountain crew
## 1.79208                         crew error
## 1.79209                      error crashed
## 1.79212                    adverse weather
## 1.79213                 weather conditions
## 1.79214                 conditions shortly
## 1.79219                 technicians failed
## 1.79224              maintenance procedure
## 1.79232                    aileron control
## 1.79233                     control cables
## 1.79237                 properly connected
## 1.79253                   heavy turbulence
## 1.79256                   lightning caused
## 1.79273                          left wing
## 1.79276                   aircraft crashed
## 1.79279                mountainous terrain
## 1.79285                   german passenger
## 1.79288                    female teenager
## 1.79289                  teenager survived
## 1.79300                             9 days
## 1.79301                       days juliane
## 1.79302                    juliane koepcke
## 1.79306                  broken collarbone
## 1.79313                     unknown amount
## 1.79335                      jungle canopy
## 1.79338              miraculously survived
## 1.79342                     minor injuries
## 1.79356                       mother maria
## 1.79357                      maria koepcke
## 1.79362                   leading peruvian
## 1.79363             peruvian ornithologist
## 1.79366                        dead rescue
## 1.79367                       rescue crews
## 1.79368                     crews searched
## 1.79374                    success koepcke
## 1.79381                      koepcke found
## 1.79405                          ninth day
## 1.79415                       waited hours
## 1.79418                    local lumbermen
## 1.79419                 lumbermen returned
## 1.79437                    refused insects
## 1.79440                        buried eggs
## 1.79455                    poured gasoline
## 1.79464                       london daily
## 1.79465                         daily mail
## 1.79468                         counted 35
## 1.79469                           35 worms
## 1.79518                       hour journey
## 1.79527                     lumber station
## 1.79537                   aircraft crashed
## 1.79540                              40 km
## 1.79541                       km northwest
## 1.79547                       fire onboard
## 1.79550                           en route
## 1.79553                   aircraft crashed
## 1.79560                       land failure
## 1.79565                     minimum flight
## 1.79566                    flight altitude
## 1.79570                       final stages
## 1.79574                    visual approach
## 1.79583                  controlled flight
## 1.79586                        terrain due
## 1.79590                  premature descent
## 1.79593                 limited visibility
## 1.79594                 visibility causing
## 1.79602                        mda crashed
## 1.79603                    crashed shortly
## 1.79606                     leaving bogota
## 1.79610                   explosion aboard
## 1.79613                    aircraft struck
## 1.79620            thunderstorms operating
## 1.79625                scheduled passenger
## 1.79626                 passenger airliner
## 1.79627                       airliner run
## 1.79633                      plane crashed
## 1.79643                      forward cargo
## 1.79644                         cargo hold
## 1.79647                   flight attendant
## 1.79648                       attendant 22
## 1.79652                      vesna vulovic
## 1.79653                       vulovic fell
## 1.79654                        fell 33,330
## 1.79655                        33,330 feet
## 1.79659                       tail section
## 1.79669              temporarily paralyzed
## 1.79683                            27 days
## 1.79688                          16 months
## 1.79706                 croatian extremist
## 1.79710                         january 27
## 1.79711                            27 1997
## 1.79712                            1997 25
## 1.79717                        crash vesna
## 1.79718                      vesna vulovic
## 1.79719                   vulovic returned
## 1.79723                         crash site
## 1.79739                       medical team
## 1.79747                       hospital due
## 1.79751                      compass error
## 1.79761                     forced landing
## 1.79762                        landing due
## 1.79765                    fuel starvation
## 1.79779                   aircraft crashed
## 1.79787                    time overloaded
## 1.79788             overloaded disappeared
## 1.79791                           en route
## 1.79792                     route wreckage
## 1.79793                     wreckage found
## 1.79794                            found 3
## 1.79795                             3 days
## 1.79805                  controlled flight
## 1.79808                        terrain due
## 1.79812                  premature descent
## 1.79813                       descent shot
## 1.79817                           en route
## 1.79818                     route aircraft
## 1.79826                     final approach
## 1.79829                      albany county
## 1.79830                     county airport
## 1.79833                         light snow
## 1.79837                   miles visibility
## 1.79841                     pilot reported
## 1.79844                malfunctioning left
## 1.79845                     left propeller
## 1.79846                   propeller cruise
## 1.79847                       cruise pitch
## 1.79848                         pitch lock
## 1.79854                        engine shut
## 1.79871                      lose altitude
## 1.79874                      plane crashed
## 1.79875                          crashed 4
## 1.79876                            4 miles
## 1.79877                        miles short
## 1.79885                       family house
## 1.79886                      house killing
## 1.79893                       cruise pitch
## 1.79894                         pitch lock
## 1.79895                     lock inability
## 1.79903                     left propeller
## 1.79912                   minimum approach
## 1.79913                  approach altitude
## 1.79925                       prop remains
## 1.79926               remains undetermined
## 1.79929                    aircraft struck
## 1.79932                     mountain ridge
## 1.79935                        approach 50
## 1.79936                           50 miles
## 1.79940                    dubai incorrect
## 1.79941              incorrect information
## 1.79945                    outdated flight
## 1.79946                        flight plan
## 1.79949                   aircraft crashed
## 1.79952                   shamsam mountain
## 1.79958                    visual approach
## 1.79959                         approach 4
## 1.79960                            4 miles
## 1.79961                           miles sw
## 1.79965                 airport controlled
## 1.79966                  controlled flight
## 1.79969                    terrain crashed
## 1.79972                mountainous terrain
## 1.79973                         terrain 50
## 1.79974                           50 miles
## 1.79975                        miles north
## 1.79978                             rio de
## 1.79979                         de janeiro
## 1.79985                    crew mistakenly
## 1.79986                   mistakenly tuned
## 1.79989                     adf instrument
## 1.79993                          wrong ndb
## 1.79994                        ndb causing
## 1.80001                     wrong approach
## 1.80002                      approach path
## 1.80009             inappropriate altitude
## 1.80014                     visibility due
## 1.80025                contributing factor
## 1.80026                     factor crashed
## 1.80032                           en route
## 1.80035              thunderstorm activity
## 1.80036                      activity loss
## 1.80039                        control due
## 1.80046              thunderstorm activity
## 1.80047                     activity float
## 1.80048                     float equipped
## 1.80049               equipped sightseeing
## 1.80050             sightseeing helicopter
## 1.80051             helicopter encountered
## 1.80052             encountered turbulence
## 1.80058                    blades flapping
## 1.80062                         steep nose
## 1.80070                     aircraft broke
## 1.80079                    aborted takeoff
## 1.80080                    takeoff partial
## 1.80081                       partial loss
## 1.80084                      braking power
## 1.80085                          power due
## 1.80089               incorrect reassembly
## 1.80095                     braking system
## 1.80098                        cargo plane
## 1.80099                       plane struck
## 1.80104                       poor weather
## 1.80105                 weather conditions
## 1.80108                      pilot elected
## 1.80113                  cruising altitude
## 1.80114                     altitude lower
## 1.80121                          save time
## 1.80124                    continue flying
## 1.80127                     vfr conditions
## 1.80128                     conditions hit
## 1.80129                          hit trees
## 1.80135                      mountain pass
## 1.80140                        fog crashed
## 1.80145                      plane entered
## 1.80150                        severe wind
## 1.80151                     wind windshear
## 1.80152                      windshear atc
## 1.80153                          atc error
## 1.80154                      error current
## 1.80155                    current weather
## 1.80165                       plane cashed
## 1.80168                           mt lunga
## 1.80180                    airport traffic
## 1.80181                traffic regulations
## 1.80186                      named antonio
## 1.80187                  antonio pigafetta
## 1.80188                   pigafetta struck
## 1.80193                        rio orinoco
## 1.80196                           en route
## 1.80197                        route metal
## 1.80198                      metal fatigue
## 1.80205                          blade led
## 1.80220                     military plane
## 1.80229                         baltic sea
## 1.80232                   weather research
## 1.80235                         crew didnã
## 1.80236                            didnã â
## 1.80237                                â â
## 1.80242               barometric altimeter
## 1.80255                    actual altitude
## 1.80266                          thick fog
## 1.80269                       crew couldnã
## 1.80270                          couldnã â
## 1.80271                                â â
## 1.80281                    dangerously low
## 1.80282                       low altitude
## 1.80285                   aircraft crashed
## 1.80289               kindergarten killing
## 1.80290                         killing 23
## 1.80291                        23 children
## 1.80300                              il 14
## 1.80303               mistakenly installed
## 1.80308                      24 structural
## 1.80309                 structural failure
## 1.80315                          wings due
## 1.80319                      fatigue crack
## 1.80323                        center wing
## 1.80324                       wing section
## 1.80325                   section overshot
## 1.80330                          heavy fog
## 1.80338                    landing crashed
## 1.80345                          north sea
## 1.80346                         sea island
## 1.80350                     island crashed
## 1.80357                    fatigue failure
## 1.80361                         tail rotor
## 1.80362                        rotor blade
## 1.80363                        blade grips
## 1.80366                        cargo plane
## 1.80367                       plane cashed
## 1.80370                      trees shortly
## 1.80377                     engines failed
## 1.80378                   failed refueling
## 1.80379                 refueling directly
## 1.80385                allowing sufficient
## 1.80386                    sufficient time
## 1.80394                   practicing touch
## 1.80400                   aircraft crashed
## 1.80407                    wake turbulence
## 1.80411                              dc 10
## 1.80417                    trailing vortex
## 1.80418                   vortex generated
## 1.80422                    preceding heavy
## 1.80423                          heavy jet
## 1.80429                   involuntary loss
## 1.80437                     final approach
## 1.80442                  expect turbulence
## 1.80449             sufficient information
## 1.80452                evaluate accurately
## 1.80462                    vortex existing
## 1.80463                       existing faa
## 1.80464                     faa procedures
## 1.80467                    controlling vfr
## 1.80468                         vfr flight
## 1.80478                   vortex encounter
## 1.80487                      radar vectors
## 1.80493                     vfr conditions
## 1.80496                        crew failed
## 1.80507                    airplane struck
## 1.80513                   mountain located
## 1.80523                        cargo plane
## 1.80524                       plane struck
## 1.80525                          struck el
## 1.80526                         el ovejero
## 1.80527                   ovejero mountain
## 1.80528                      mountain shot
## 1.80532                         enemy fire
## 1.80533                            fire 60
## 1.80534                           60 miles
## 1.80535                        miles north
## 1.80538                     saigon shortly
## 1.80544                   aircraft crashed
## 1.80545                      crashed short
## 1.80549                      runway indian
## 1.80550                   indian officials
## 1.80551                  officials claimed
## 1.80561              prescribed procedures
## 1.80566              instrument references
## 1.80570                     visual contact
## 1.80574                    runway japanese
## 1.80575             japanese investigators
## 1.80576              investigators claimed
## 1.80579                        false glide
## 1.80580                         glide path
## 1.80581                        path signal
## 1.80591                      plane crashed
## 1.80594                           en route
## 1.80599                          hong kong
## 1.80600                    kong detonation
## 1.80604                   explosive device
## 1.80608                    passenger cabin
## 1.80617                        thai police
## 1.80618                  police lieutenant
## 1.80619                 lieutenant accused
## 1.80626                      acquitted due
## 1.80631                sufficient evidence
## 1.80634                      plane crashed
## 1.80638                      field shortly
## 1.80644                   heathrow airport
## 1.80647                   airplane stalled
## 1.80651                     wing's leading
## 1.80652                       leading edge
## 1.80653                       edge devices
## 1.80656              retracted prematurely
## 1.80659                    takeoff failure
## 1.80665                  maintain adequate
## 1.80666                     adequate speed
## 1.80669                    noise abatement
## 1.80670               abatement procedures
## 1.80671               procedures premature
## 1.80672               premature retraction
## 1.80676               slats incapacitation
## 1.80680                        captain due
## 1.80685                arterial hemorrhage
## 1.80697                    landing attempt
## 1.80698                       attempt lost
## 1.80699                       lost control
## 1.80702                       crashed crew
## 1.80703                         crew error
## 1.80728                   midair collision
## 1.80731                   aircraft crashed
## 1.80734                     lake winnebago
## 1.80744                    detect visually
## 1.80750                    sufficient time
## 1.80753                   initiate evasive
## 1.80754                     evasive action
## 1.80760                   passenger killed
## 1.80763                      plane ditched
## 1.80767                             sea 14
## 1.80768                           14 miles
## 1.80771                        gran canana
## 1.80772                      canana island
## 1.80776                   approach reasons
## 1.80777                    reasons unknown
## 1.80778                    unknown crashed
## 1.80794                     skagon airport
## 1.80795               airport navigational
## 1.80796                 navigational error
## 1.80807                       alcohol shot
## 1.80811                         enemy fire
## 1.80812                            fire 60
## 1.80813                           60 miles
## 1.80814                        miles north
## 1.80820                        takeoff run
## 1.80823                     loud explosion
## 1.80836                   airborne overran
## 1.80843                      shallow water
## 1.80855                      killed midair
## 1.80856                   midair collision
## 1.80857                collision seventeen
## 1.80858                   seventeen aboard
## 1.80861                             hk 134
## 1.80868                             hk 107
## 1.80869                         107 killed
## 1.80870                     killed crashed
## 1.80880                         wrong flap
## 1.80881                       flap setting
## 1.80897                          arms fire
## 1.80898                       fire shortly
## 1.80904                          soc trang
## 1.80905                          trang air
## 1.80906                           air base
## 1.80909                          cargo bay
## 1.80910                              bay 6
## 1.80911                              6 hot
## 1.80912                            hot air
## 1.80913                        air leaking
## 1.80917                   air conditioning
## 1.80918                conditioning system
## 1.80919                      system melted
## 1.80920                  melted insulation
## 1.80923                    cabling causing
## 1.80926                      short circuit
## 1.80930                 stabilizing system
## 1.80931                     system melting
## 1.80932                 melting insulation
## 1.80933                 insulation ignited
## 1.80934                  ignited flammable
## 1.80935                    flammable fluid
## 1.80941                uncontrollable fire
## 1.80944                eventually weakened
## 1.80950                          tail fell
## 1.80953                       lost control
## 1.80966                   aircraft crashed
## 1.80980                           1 engine
## 1.80981                     engine failure
## 1.80989                     pilot reversed
## 1.80995               weather deteriorated
## 1.81002                      clipped trees
## 1.81007                         ridge lost
## 1.81008                       lost control
## 1.81016                      pilot's error
## 1.81025                       poor weather
## 1.81031                   aircraft crashed
## 1.81032                   crashed trailing
## 1.81033                     trailing heavy
## 1.81034                        heavy smoke
## 1.81035                         smoke fire
## 1.81036                        fire caused
## 1.81039               spontaneous ignition
## 1.81042                  passenger baggage
## 1.81047                         vfr flight
## 1.81050                    aircraft struck
## 1.81051                          struck mt
## 1.81052                          mt giluwe
## 1.81055                        14,346 feet
## 1.81061                           1 engine
## 1.81062                      engine failed
## 1.81067                    aircraft banked
## 1.81068                        banked left
## 1.81069                          left lost
## 1.81070                        lost height
## 1.81071                     height touched
## 1.81085                     gear collapsed
## 1.81089                           nose hit
## 1.81092                     ground crashed
## 1.81096                     wing separated
## 1.81100                    fuselage caused
## 1.81106                     fatigue cracks
## 1.81110                       root crashed
## 1.81113                           en route
## 1.81118                 limited visibility
## 1.81121                          world war
## 1.81122                             war ii
## 1.81123                         ii vintage
## 1.81124                   vintage sabrejet
## 1.81125                   sabrejet fighter
## 1.81126                    fighter leaving
## 1.81132                  executive airport
## 1.81143                      farrell's ice
## 1.81144                          ice cream
## 1.81145                       cream parlor
## 1.81148                      freeport blvd
## 1.81149                        blvd twenty
## 1.81155                   ground including
## 1.81156                       including 12
## 1.81157                        12 children
## 1.81192                       normal angle
## 1.81197                    airborne sooner
## 1.81206                     ground crashed
## 1.81207                         crashed 23
## 1.81208                           23 miles
## 1.81215                  emergency landing
## 1.81218                     flight ditched
## 1.81221                          black sea
## 1.81222                        sea shortly
## 1.81227                  accident occurred
## 1.81235                 ground controllers
## 1.81236               controllers received
## 1.81239                   distress message
## 1.81240                      message prior
## 1.81246               investigation failed
## 1.81256                       mortar shell
## 1.81265                         plane left
## 1.81266                    left montevideo
## 1.81267                   montevideo bound
## 1.81270                     santiago chile
## 1.81271                     chile carrying
## 1.81275                   christians rugby
## 1.81276                         rugby team
## 1.81279                    leaving mendoza
## 1.81287                    copilot radioed
## 1.81294                requested clearance
## 1.81300                         head winds
## 1.81312                    plane descended
## 1.81322                         crew found
## 1.81340                     wingtip struck
## 1.81346                      wing detached
## 1.81352                    aircraft taking
## 1.81360                      fuselage slid
## 1.81364                     mountain slope
## 1.81372                    andes mountains
## 1.81378                        12,000 feet
## 1.81386                              12 22
## 1.81387                              22 72
## 1.81390                    passengers died
## 1.81396                         october 30
## 1.81397                       30 survivors
## 1.81398                 survivors resorted
## 1.81403                         stay alive
## 1.81408                        movie alive
## 1.81416                      aircraft flew
## 1.81420                         rotor zone
## 1.81423                      mountain wave
## 1.81435                   aircraft crashed
## 1.81439                       outer marker
## 1.81450                       poor weather
## 1.81451                 weather conditions
## 1.81452                  conditions sudden
## 1.81453              sudden incapacitation
## 1.81459                    reasons unknown
## 1.81460               unknown contributing
## 1.81466               airport's instrument
## 1.81467                 instrument landing
## 1.81468                     landing system
## 1.81491                   chugach mountain
## 1.81492                     mountain range
## 1.81498                   prescribed route
## 1.81504                         vfr flight
## 1.81505                   flight louisiana
## 1.81506              louisiana congressman
## 1.81509                     house majority
## 1.81510                    majority leader
## 1.81511                        leader hale
## 1.81512                         hale boggs
## 1.81513                       boggs alaska
## 1.81514                 alaska congressman
## 1.81515                   congressman nick
## 1.81516                        nick begich
## 1.81520                        aide killed
## 1.81523                    unknown crashed
## 1.81537                    poor visibility
## 1.81538              visibility controlled
## 1.81539                  controlled flight
## 1.81546                    lenakel airport
## 1.81547                         airport en
## 1.81548                           en route
## 1.81551                          port vila
## 1.81570                        twin engine
## 1.81571                    engine airplane
## 1.81572                    airplane struck
## 1.81573                       struck trees
## 1.81574                        trees pilot
## 1.81575                        pilot error
## 1.81576                      error crashed
## 1.81581                  severe turbulence
## 1.81582                  turbulence faulty
## 1.81583                  faulty indication
## 1.81586                      radio compass
## 1.81587                  compass plummeted
## 1.81600                     losing control
## 1.81604                       tower visual
## 1.81605                    visual approach
## 1.81610                        minima shot
## 1.81614                         enemy fire
## 1.81618                       mekong delta
## 1.81619                       delta region
## 1.81622                       crew elected
## 1.81627                        plovdiv due
## 1.81635                      aircraft flew
## 1.81639                       mountain atc
## 1.81640                          atc error
## 1.81641                   error improperly
## 1.81642                  improperly loaded
## 1.81643                    loaded aircraft
## 1.81644                    aircraft weight
## 1.81651                      aircraft lost
## 1.81652                      lost altitude
## 1.81660                  copilot responded
## 1.81664                     captain's gear
## 1.81669                   reaching forward
## 1.81676                     ground spoiler
## 1.81677                     spoiler handle
## 1.81683                        gear handle
## 1.81687                  immediately ahead
## 1.81691                    spoiler control
## 1.81692                       control late
## 1.81693                         late night
## 1.81694                     night partying
## 1.81708                           300 feet
## 1.81712                     plane suddenly
## 1.81713                   suddenly plunged
## 1.81718                       crashed loss
## 1.81721               control precipitated
## 1.81724                 abnormal maneuvers
## 1.81734                  visibility crew's
## 1.81735                        crew's loss
## 1.81738              situational awareness
## 1.81739                  awareness spatial
## 1.81740             spatial disorientation
## 1.81741         disorientation immediately
## 1.81749           visibility configuration
## 1.81750              configuration crashed
## 1.81756                       poor weather
## 1.81757                 weather conditions
## 1.81758              conditions controlled
## 1.81759                  controlled flight
## 1.81764                   aircraft crashed
## 1.81769            nonprecision instrument
## 1.81770                instrument approach
## 1.81773                         runway 31l
## 1.81776                  accident occurred
## 1.81782                  approximately 1.5
## 1.81783                          1.5 miles
## 1.81784                    miles southeast
## 1.81791                         runway 31l
## 1.81794                   reaching mimimum
## 1.81795                    mimimum descent
## 1.81796                   descent altitude
## 1.81799                       pilot raised
## 1.81811                      stall warning
## 1.81812                       warning horn
## 1.81813                       horn sounded
## 1.81821                      plane crashed
## 1.81822                         crashed 17
## 1.81833                    subsequent fire
## 1.81836                  captain's failure
## 1.81839                  exercise positive
## 1.81840                    positive flight
## 1.81841                  flight management
## 1.81849                 precision approach
## 1.81855             critical deterioration
## 1.81858                 airspeed resulting
## 1.81865                       level flight
## 1.81871                     maintained u.s
## 1.81872                 u.s representative
## 1.81875                    illinois george
## 1.81876                     george collins
## 1.81877                     collins killed
## 1.81878                        killed wife
## 1.81883                        howard hunt
## 1.81884                       hunt dorothy
## 1.81885                       dorothy hunt
## 1.81890                      delta convair
## 1.81891                     convair taxing
## 1.81894                         runway 27l
## 1.81899                          heavy fog
## 1.81905                      north central
## 1.81906                         central dc
## 1.81907                               dc 9
## 1.81918                               dc 9
## 1.81928                        caught fire
## 1.81929                           fire ten
## 1.81930                         ten people
## 1.81934                          45 aboard
## 1.81937                               dc 9
## 1.81944                          88 aboard
## 1.81953             ambiguous instructions
## 1.81957                         delta crew
## 1.81971                             cv 880
## 1.81975                             cv 880
## 1.81976                           880 crew
## 1.81980              request clarification
## 1.81984          controller's instructions
## 1.81985               instructions crashed
## 1.81993                          night hit
## 1.82001                    fornebu airport
## 1.82006                 aircraft descended
## 1.82017                             2,5ã â
## 1.82024               accident.pilot error
## 1.82032                       landing gear
## 1.82041                       landing gear
## 1.82042                         gear light
## 1.82050                    holding pattern
## 1.82060               inadvertently pushed
## 1.82064                     yoke releasing
## 1.82070                   ground reference
## 1.82074               nighttime conditions
## 1.82077                 aircraft gradually
## 1.82078                gradually descended
## 1.82084                    everglades 18.7
## 1.82085                         18.7 miles
## 1.82086                         miles west
## 1.82087                     west northwest
## 1.82099                 flight instruments
## 1.82103                            final 4
## 1.82104                          4 minutes
## 1.82116                     prevent impact
## 1.82132                 planes apparitions
## 1.82136                     captain robert
## 1.82137                        robert loft
## 1.82140                    flight engineer
## 1.82141                       engineer don
## 1.82142                           don repo
## 1.82149                  eastern employees
## 1.82156                         flight 401
## 1.82163                         flight 401
## 1.82186                          total 103
## 1.82189                     flight crashed
## 1.82190                    crashed moments
## 1.82199                           2 engine
## 1.82202                       losing power
## 1.82207                           3 engine
## 1.82208                  engine overloaded
## 1.82211                          4,193 lbs
## 1.82212                     lbs inadequate
## 1.82213             inadequate maintenance
## 1.82214             maintenance inspection
## 1.82217                    previous damage
## 1.82224                    taxing accident
## 1.82225                       accident led
## 1.82229                    engine failures
## 1.82230                  failures baseball
## 1.82231                    baseball player
## 1.82232                     player roberto
## 1.82233                   roberto clemente
## 1.82234                        clemente 38
## 1.82235                          38 killed
## 1.82236                    killed clemente
## 1.82241                     relief mission
## 1.82244                   deliver supplies
## 1.82247                 earthquake victims
## 1.82250                  nicaragua landing
## 1.82253                    poor visibility
## 1.82254              visibility turbulence
## 1.82259                        cargo plane
## 1.82269                          sink rate
## 1.82282                          sink rate
## 1.82286                      plane crashed
## 1.82296                        ridge short
## 1.82302                        plane broke
## 1.82310                       fire crashed
## 1.82322                      safe altitude
## 1.82326             insufficient attention
## 1.82331                         flying vfr
## 1.82337                       snow covered
## 1.82342                   marginal weather
## 1.82343                 weather conditions
## 1.82350                        spiral dive
## 1.82375                       plane landed
## 1.82395                       landing gear
## 1.82396                     gear collapsed
## 1.82408                       aircraft ran
## 1.82417                        caught fire
## 1.82418                          fire wake
## 1.82419                    wake turbulence
## 1.82425                        cargo plane
## 1.82426                      plane crashed
## 1.82429                         burned ten
## 1.82430                          ten miles
## 1.82434                destination airport
## 1.82435                    airport crashed
## 1.82439                  kyrenia mountains
## 1.82443                approach controlled
## 1.82444                  controlled flight
## 1.82449                       plane struck
## 1.82452                       ground short
## 1.82462                   jammed tailplane
## 1.82463                 tailplane official
## 1.82466                    unknown crashed
## 1.82473                         main rotor
## 1.82474                        rotor pylon
## 1.82475                      pylon support
## 1.82476                       support link
## 1.82477                        link failed
## 1.82478                         failed due
## 1.82481                    fatigue causing
## 1.82482                   causing complete
## 1.82483                   complete failure
## 1.82487                         main rotor
## 1.82488                         rotor flew
## 1.82491                     cerro horqueta
## 1.82492                  horqueta mountain
## 1.82493                mountain controlled
## 1.82494                  controlled flight
## 1.82499                           en route
## 1.82506                   aircraft drifted
## 1.82509                  israeli territory
## 1.82510                      territory due
## 1.82513                   strong tailwinds
## 1.82520                    israeli phantom
## 1.82521                   phantom fighters
## 1.82527                         fire broke
## 1.82532                     crew attempted
## 1.82537                  emergency landing
## 1.82547                       flames cairo
## 1.82548                     cairo approach
## 1.82549                   approach control
## 1.82550                      control radar
## 1.82557                   aircraft entered
## 1.82563                       plane banked
## 1.82564                          banked 60
## 1.82565                         60 degrees
## 1.82572                     ground crashed
## 1.82587                 determined crashed
## 1.82590                           en route
## 1.82591                           route 45
## 1.82592                              45 km
## 1.82593                            km east
## 1.82596                     nabire crashed
## 1.82597                      crashed broke
## 1.82611                        glide slope
## 1.82612                        slope icing
## 1.82615                   tailplane midair
## 1.82616                   midair collision
## 1.82637                         atc sector
## 1.82638                    sector boundary
## 1.82643                        barely hear
## 1.82646                  marina controller
## 1.82652                     contact menhir
## 1.82653                     menhir control
## 1.82656                  pilot erroneously
## 1.82662                     contact menhir
## 1.82663                     menhir control
## 1.82668                         nantes vor
## 1.82680                       convair crew
## 1.82685                 request permission
## 1.82691                         360 degree
## 1.82702                     marina control
## 1.82718                   convair collided
## 1.82722                               dc 9
## 1.82725                             cv 990
## 1.82726                           990 lost
## 1.82729                   outboard portion
## 1.82733                          left wing
## 1.82741                  emergency landing
## 1.82744                       cognac chãƒâ
## 1.82745                  chãƒâ teaubernard
## 1.82746                    teaubernard air
## 1.82747                           air base
## 1.82750                               dc 9
## 1.82751                             9 lost
## 1.82752                       lost control
## 1.82757                        air traffic
## 1.82758                    traffic control
## 1.82759                     control system
## 1.82768                 military personnel
## 1.82775               civilian controllers
## 1.82785                           wing tip
## 1.82786                         tip struck
## 1.82787                       struck power
## 1.82788                        power lines
## 1.82800                        caught fire
## 1.82801                      fire multiple
## 1.82802                    multiple errors
## 1.82811                       trainees due
## 1.82819                    alcohol crashed
## 1.82826                         cargo hold
## 1.82827                       hold crashed
## 1.82834           snowstorm malfunctioning
## 1.82835          malfunctioning navigation
## 1.82836               navigation equipment
## 1.82837             equipment navigational
## 1.82838                 navigational error
## 1.82845                        3c collided
## 1.82849                      nasa research
## 1.82850                       research jet
## 1.82858                      moffett naval
## 1.82859                          naval air
## 1.82860                        air station
## 1.82863                  ground controller
## 1.82864              controller mistakenly
## 1.82868                  planes permission
## 1.82878                         nasa plane
## 1.82879                      plane settled
## 1.82886                              3 300
## 1.82887                             300 ft
## 1.82893                     planes crashed
## 1.82905                          11 aboard
## 1.82912                 chartered american
## 1.82913                  american canadian
## 1.82914                      canadian tour
## 1.82915                       tour group's
## 1.82916                      group's plane
## 1.82917                      plane crashed
## 1.82922                plane disintegrated
## 1.82926                  emergency descent
## 1.82929                       crashed 84km
## 1.82932             semipalatins collision
## 1.82936                     foreign object
## 1.82937                     object causing
## 1.82938                     causing damage
## 1.82944                     aircraft broke
## 1.82948                             fl 300
## 1.82949                     300 detonation
## 1.82961                   hijacker crashed
## 1.82962                    crashed shortly
## 1.82971                        ground fire
## 1.82974                        crew failed
## 1.82985                       plane struck
## 1.82990                          crashed 5
## 1.82991                               5 km
## 1.82992                       km southeast
## 1.82997                      plane crashed
## 1.83000                        caught fire
## 1.83003                      hitting power
## 1.83004                        power lines
## 1.83008                    landing attempt
## 1.83017                        minima crew
## 1.83018                         crew error
## 1.83026                  aircraft attained
## 1.83031                   attitude stalled
## 1.83034                       crashed loss
## 1.83041                           1 engine
## 1.83045                     critical stage
## 1.83052                        steep climb
## 1.83072                        plane broke
## 1.83083                          killing 8
## 1.83084                           8 people
## 1.83088                        injuring 60
## 1.83092                     pilot possibly
## 1.83093                  possibly startled
## 1.83097                    close encounter
## 1.83101                         mirage jet
## 1.83102                  jet photographing
## 1.83105                             tu 144
## 1.83106                    144 overreacted
## 1.83107                overreacted causing
## 1.83110                   compressor stall
## 1.83124                  aircraft's design
## 1.83125                    design capacity
## 1.83130                        cargo plane
## 1.83135                instrument approach
## 1.83138                          runway 14
## 1.83142                        speed brake
## 1.83143                        brake lever
## 1.83146                         45 degrees
## 1.83149                   inboard spoilers
## 1.83150               spoilers deactivated
## 1.83158                     spoiler switch
## 1.83159                       switch cover
## 1.83170                     spoiler switch
## 1.83171                       switch cover
## 1.83176                    inboard spoiler
## 1.83177                    spoiler causing
## 1.83185                    plane descended
## 1.83192                          70 meters
## 1.83195                    struck approach
## 1.83196                    approach lights
## 1.83199                       aircraft hit
## 1.83205                        approach 32
## 1.83206                             32 kms
## 1.83220                   takeoff overshot
## 1.83228                     house bursting
## 1.83231                  flames controlled
## 1.83232                  controlled flight
## 1.83235                         terrain 53
## 1.83236                              53 km
## 1.83237                           km south
## 1.83242                     crew descended
## 1.83246                      safe altitude
## 1.83253                     forced landing
## 1.83256                experiencing engine
## 1.83257                     engine failure
## 1.83258                   failure complete
## 1.83259               complete destruction
## 1.83269               manufacturing defect
## 1.83270                        defect fire
## 1.83271                        fire aboard
## 1.83284                  emergency descent
## 1.83290                    heavily damaged
## 1.83295                      fire fighters
## 1.83298                  rescue passengers
## 1.83309                   reach passengers
## 1.83312                       fire started
## 1.83322                   electrical short
## 1.83325                discarded cigarette
## 1.83328                   aircraft crashed
## 1.83329                         crashed 30
## 1.83335                       faaa airport
## 1.83346                 instrument failure
## 1.83347                   failure diverted
## 1.83350                    crews attention
## 1.83358                      named clipper
## 1.83359                     clipper winged
## 1.83360                       winged racer
## 1.83363                   aircraft crashed
## 1.83372                         heavy rain
## 1.83380                       outer marker
## 1.83383                 aircraft descended
## 1.83387                        glide slope
## 1.83388                      slope entered
## 1.83393                         heavy rain
## 1.83403                       ground short
## 1.83409               aircraft's encounter
## 1.83416                 captain's decision
## 1.83423                instrument approach
## 1.83427                  thunderstorm lack
## 1.83431                    timely issuance
## 1.83435                     severe weather
## 1.83436                    weather warning
## 1.83440                   national weather
## 1.83441                    weather service
## 1.83444                  plane experienced
## 1.83445                 experienced engine
## 1.83446                      engine faiure
## 1.83455                         ocean fuel
## 1.83456                    fuel starvation
## 1.83457                    starvation rear
## 1.83458                     rear auxillary
## 1.83459                    auxillary tanks
## 1.83462                serviced overloaded
## 1.83463                overloaded improper
## 1.83464                    improper center
## 1.83469                     flight crashed
## 1.83475                       ils approach
## 1.83478                    adverse weather
## 1.83479                 weather conditions
## 1.83487                   monitor altitude
## 1.83491                  recognize passage
## 1.83498                  approach decision
## 1.83499                    decision height
## 1.83503             unstabilized precision
## 1.83504                 precision approach
## 1.83505                 approach conducted
## 1.83508                   rapidly changing
## 1.83509            changing meteorological
## 1.83510          meteorological conditions
## 1.83511                    conditions poor
## 1.83512                   poor positioning
## 1.83521                   atc questionable
## 1.83522           questionable information
## 1.83527                    flight director
## 1.83530               aircraft experienced
## 1.83533                    missing landing
## 1.83534                   landing attempts
## 1.83546                       minimum safe
## 1.83547                      safe altitude
## 1.83551                     visual contact
## 1.83558                       wing clipped
## 1.83559                      clipped trees
## 1.83563                   aircraft crashed
## 1.83570                  runway attempting
## 1.83575          meteorological conditions
## 1.83586                       plane struck
## 1.83589                  mountain shrouded
## 1.83596                          dondon 21
## 1.83597                              21 km
## 1.83598                           km south
## 1.83602                 airport controlled
## 1.83603                  controlled flight
## 1.83606                    terrain crashed
## 1.83618                  emergency landing
## 1.83619                       landing left
## 1.83620                        left engine
## 1.83621                     engine failure
## 1.83622                     failure struck
## 1.83627                          heavy fog
## 1.83628                         fog flying
## 1.83629                         flying vfr
## 1.83632                     ifr conditions
## 1.83633                 conditions crashed
## 1.83636                           el cable
## 1.83637                     cable mountain
## 1.83643                           fog crew
## 1.83644                        crew failed
## 1.83647                   follow departure
## 1.83648               departure procedures
## 1.83655                           5,000 ft
## 1.83660                           3,000 ft
## 1.83663                          plane hit
## 1.83668                    airborne rolled
## 1.83672                   crashed inverted
## 1.83678                        flying crew
## 1.83679                        crew failed
## 1.83682                    follow approach
## 1.83683                approach procedures
## 1.83689                    unsafe altitude
## 1.83696                      atc clearance
## 1.83701                  crew coordination
## 1.83704                      wrong planned
## 1.83705                   planned approach
## 1.83708                       crew fatigue
## 1.83711                    plane porpoised
## 1.83722                          2 minutes
## 1.83725                  peak acceleration
## 1.83726                acceleration forces
## 1.83734                  design tolerances
## 1.83738            aircraft's longitudinal
## 1.83739               longitudinal control
## 1.83740                     control system
## 1.83745                conditions produced
## 1.83748              critical relationship
## 1.83751                     control forces
## 1.83754                  aircraft response
## 1.83755                       response hit
## 1.83756                       hit mountain
## 1.83759                           3,500 ft
## 1.83762                       level flight
## 1.83763                        flight 15.5
## 1.83764                         15.5 miles
## 1.83765                         miles east
## 1.83770                       fog improper
## 1.83771                       improper ifr
## 1.83772                      ifr operation
## 1.83773                operation descended
## 1.83778                mountainous terrain
## 1.83781                captain's deviation
## 1.83784                approved instrument
## 1.83785                instrument approach
## 1.83786                approach procedures
## 1.83795                   flight descended
## 1.83801              unreliable navigation
## 1.83802                 navigation signals
## 1.83805                obstructing terrain
## 1.83808                    aircraft struck
## 1.83809                     struck moganik
## 1.83810                   moganik mountain
## 1.83813                           6,300 ft
## 1.83816              descending controlled
## 1.83817                  controlled flight
## 1.83822                      plane crashed
## 1.83826                           tree 200
## 1.83827                          200 yards
## 1.83828                         yards past
## 1.83839             natchitoches louisiana
## 1.83840                louisiana municipal
## 1.83841                  municipal airport
## 1.83847                     crash reported
## 1.83864                         pecan tree
## 1.83865                      tree catching
## 1.83873                       ground pilot
## 1.83874                       pilot failed
## 1.83878                      avoid objects
## 1.83879               objects obstructions
## 1.83880                 obstructions pilot
## 1.83883                    severe coronary
## 1.83884                    coronary artery
## 1.83885                     artery disease
## 1.83886                        disease ran
## 1.83887                              ran 3
## 1.83888                            3 miles
## 1.83898                       heart attack
## 1.83899                      attack singer
## 1.83900                         singer jim
## 1.83901                          jim croce
## 1.83902                           croce 30
## 1.83903                          30 killed
## 1.83908                accompanist maurice
## 1.83909                 maurice muehleisen
## 1.83910               muehleisen publicist
## 1.83911                    publicist kenny
## 1.83912                      kenny cortese
## 1.83913                       cortese road
## 1.83914                       road manager
## 1.83915                     manager dennis
## 1.83916                        dennis rast
## 1.83917                      rast comedian
## 1.83918                    comedian george
## 1.83919                     george stevens
## 1.83922                       pilot robert
## 1.83923                      robert elliot
## 1.83924                     elliot croce's
## 1.83925                    croce's company
## 1.83942                   aircraft flew100
## 1.83943                      flew100 miles
## 1.83948                       struck black
## 1.83949                         black fork
## 1.83950                      fork mountain
## 1.83951                       mountain 600
## 1.83952                           600 feet
## 1.83959                            peak 91
## 1.83960                           91 miles
## 1.83961                        miles north
## 1.83964                    texarkana heavy
## 1.83965                heavy thunderstorms
## 1.83975                  captain's attempt
## 1.83989                  navigational aids
## 1.84001                        pre planned
## 1.84002                      planned route
## 1.84005               adequate positioning
## 1.84006            positioning information
## 1.84009                       crew started
## 1.84012                       takeoff roll
## 1.84023                    runway distance
## 1.84024                 distance remaining
## 1.84032                               dc 3
## 1.84033                          3 climbed
## 1.84034                     climbed slowly
## 1.84035                     slowly entered
## 1.84044                       flames power
## 1.84045                         power loss
## 1.84051                        engines due
## 1.84054           maintenance deficiencies
## 1.84057                 fuel contamination
## 1.84060                   aircraft crashed
## 1.84061                    crashed shortly
## 1.84075                           1,200 ft
## 1.84078                    aircraft banked
## 1.84092                    finally crashed
## 1.84093             crashed malfunctioning
## 1.84094          malfunctioning artificial
## 1.84095                 artificial horizon
## 1.84098                        cargo plane
## 1.84099                       plane struck
## 1.84111                         crew error
## 1.84119                   aircraft plunged
## 1.84124                           1,500 ft
## 1.84125                      ft electrical
## 1.84126                 electrical failure
## 1.84132                          main gyro
## 1.84137                      santos dumont
## 1.84138                     dumont airport
## 1.84146                     power occurred
## 1.84150                           v1 speed
## 1.84153                        reached due
## 1.84156                       poor braking
## 1.84157                     braking action
## 1.84158                   action emergency
## 1.84159                   emergency brakes
## 1.84166                  command retracted
## 1.84169                       landing gear
## 1.84180                      aircraft slid
## 1.84183                      guanabara bay
## 1.84186                   aircraft crashed
## 1.84193             experiencing hydraulic
## 1.84202                      1engine smoke
## 1.84208                uncontrollable fire
## 1.84212                        cargo plane
## 1.84213                       plane caused
## 1.84218                        nitric acid
## 1.84221                    sawdust packing
## 1.84225                         cargo hold
## 1.84230                      named clipper
## 1.84231                     clipper titian
## 1.84232                titian overspeeding
## 1.84236                   starboard engine
## 1.84237                      engine caused
## 1.84242                disintegrate pieces
## 1.84243                      pieces struck
## 1.84246                  fuselage breaking
## 1.84249                     window causing
## 1.84250                      causing rapid
## 1.84251                    rapid explosive
## 1.84252            explosive decompression
## 1.84258                    gardner sitting
## 1.84261                           seat 17h
## 1.84270                       plane landed
## 1.84271                      landed safely
## 1.84283                    flight engineer
## 1.84289                autothrottle system
## 1.84294                   circuit breakers
## 1.84303                   rotational speed
## 1.84307                       engine's low
## 1.84308                       low pressure
## 1.84309                pressure compressor
## 1.84314                engine overspeeding
## 1.84320                        engine flew
## 1.84326                           en route
## 1.84327                       route flying
## 1.84332                      ifr conditons
## 1.84335                   aircraft crashed
## 1.84339                       wing touched
## 1.84344                      landing short
## 1.84348                        runway crew
## 1.84349                         crew error
## 1.84355                    missed approach
## 1.84360                        sudden dive
## 1.84368                      short circuit
## 1.84369                   circuit occurred
## 1.84373                      elevator trim
## 1.84374                        trim system
## 1.84377                   phosphorus bombs
## 1.84383                     aircraft prior
## 1.84391                      named clipper
## 1.84392                  clipper celestial
## 1.84393               celestial ammunition
## 1.84394                ammunition exploded
## 1.84406                       outer marker
## 1.84409                 aircraft continued
## 1.84416                       mt mellaline
## 1.84417                       mellaline 20
## 1.84418                             20 kms
## 1.84427                         2,300 feet
## 1.84430                          rain crew
## 1.84431                         crew error
## 1.84434                      pilot started
## 1.84444                     runway crashed
## 1.84447                     takeoff engine
## 1.84448                     engine failure
## 1.84451                  defective turbine
## 1.84452                      turbine blade
## 1.84453                       blade failed
## 1.84454                   failed resulting
## 1.84457                  violent vibration
## 1.84466                          fuel line
## 1.84472                        flight fire
## 1.84476                           1 engine
## 1.84477                      engine failed
## 1.84481                               dc 3
## 1.84485                     final approach
## 1.84486                   approach shortly
## 1.84491                           2 engine
## 1.84504               ditched successfully
## 1.84508                 swimming passenger
## 1.84509                  passenger drowned
## 1.84510                    drowned crashed
## 1.84511                          crashed 2
## 1.84512                            2 miles
## 1.84513                        miles short
## 1.84517                      runway upside
## 1.84526                         heavy rain
## 1.84527                       rain crashed
## 1.84528                      crashed short
## 1.84532                      runway failed
## 1.84535                    maintain flying
## 1.84536                       flying speed
## 1.84537                     speed improper
## 1.84538                       improper ifr
## 1.84539                      ifr operation
## 1.84540                operation premature
## 1.84541                  premature descent
## 1.84544                      safe approach
## 1.84545                     approach slope
## 1.84548               reasons undetermined
## 1.84551                        cargo plane
## 1.84552                          plane hit
## 1.84555                        mountain en
## 1.84556                           en route
## 1.84559                         plane dove
## 1.84563                         ground 100
## 1.84564                         100 meters
## 1.84568                       outer marker
## 1.84572                     approach icing
## 1.84576              horizontal stabilizer
## 1.84579                    domestic flight
## 1.84580                     flight crashed
## 1.84583                        mt gabinete
## 1.84586                              34 km
## 1.84587                       km northwest
## 1.84592                           en route
## 1.84598                scheduled passenger
## 1.84599                   passenger flight
## 1.84600                     flight crashed
## 1.84603                           en route
## 1.84606                             la paz
## 1.84607                       paz wreckage
## 1.84610                      found crashed
## 1.84615                  cruising altitude
## 1.84618                        plane yawed
## 1.84619                         yawed left
## 1.84620                       left pitched
## 1.84621                       pitched nose
## 1.84625                    crashed shortly
## 1.84630                        icing frost
## 1.84638                  rotation resulted
## 1.84642                         stall crew
## 1.84643                         crew error
## 1.84646                   aircraft crashed
## 1.84652                       ils approach
## 1.84655                          pago pago
## 1.84656                 pago international
## 1.84657              international airport
## 1.84669                     excessive rate
## 1.84672                    descent causing
## 1.84679                        trees short
## 1.84683                   runway windshear
## 1.84684                  windshear sensory
## 1.84685                   sensory illusory
## 1.84686                illusory inadequate
## 1.84687              inadequate monitoring
## 1.84690                 flight instruments
## 1.84701                       descent rate
## 1.84723                      named clipper
## 1.84724                    clipper raidant
## 1.84727                           16 month
## 1.84735                          seat belt
## 1.84740                        twin engine
## 1.84741                   engine turboprop
## 1.84742                      turboprop hit
## 1.84750                           5,000 ft
## 1.84754                       ils approach
## 1.84760              pennsylvania salesman
## 1.84761                    salesman samuel
## 1.84762                        samuel byck
## 1.84763                     byck attempted
## 1.84766                      hijack flight
## 1.84767                         flight 523
## 1.84778                        white house
## 1.84781                     kill president
## 1.84782                  president richard
## 1.84783                      richard nixon
## 1.84788                     security guard
## 1.84811                     security guard
## 1.84823                      ground severe
## 1.84824                  severe turbulence
## 1.84825                turbulence possibly
## 1.84826                    possibly caused
## 1.84831                     ropes securing
## 1.84832                     securing cargo
## 1.84837                    gravity shifted
## 1.84838                    shifted causing
## 1.84847                            found 2
## 1.84848                             2 days
## 1.84852                   aircraft crashed
## 1.84853                    crashed shortly
## 1.84858                       orly airport
## 1.84861                       paris france
## 1.84862                    france climbing
## 1.84867                      aircraft lost
## 1.84870                         rear cargo
## 1.84871                         cargo door
## 1.84872                     door resulting
## 1.84875            explosive decompression
## 1.84881                        cabin floor
## 1.84884                     control cables
## 1.84887                      aircraft lost
## 1.84888                       lost control
## 1.84902              service subcontractor
## 1.84906                    flight engineer
## 1.84907                 engineer neglected
## 1.84912                  locking mechanism
## 1.84916                 recently installed
## 1.84917                 installed viewport
## 1.84924                   latched properly
## 1.84930                   service bulletin
## 1.84931                bulletin stipulated
## 1.84935                        locking pin
## 1.84942               mistakenly shortened
## 1.84943                  shortened causing
## 1.84955                            june 12
## 1.84956                            12 1972
## 1.84959                  american airlines
## 1.84960                        airlines dc
## 1.84961                              dc 10
## 1.84962                            10 lost
## 1.84965                         cargo door
## 1.84966                       door shortly
## 1.84972                   detroit michigan
## 1.84976                      engine thrust
## 1.84983                        land safely
## 1.84992                 latching mechanism
## 1.84996                      door fifiteen
## 1.84997               fifiteen journalists
## 1.84998                 journalists aboard
## 1.85002                         asian tour
## 1.85007                      hanoi airport
## 1.85010                   aircraft crashed
## 1.85013                    unknown reasons
## 1.85016                   aircraft crashed
## 1.85019                       poleta ridge
## 1.85026                    white mountains
## 1.85029                           6,100 ft
## 1.85032                 wolper productions
## 1.85035                         movie crew
## 1.85050                     vfr conditions
## 1.85064                      safe distance
## 1.85067                  hazardous terrain
## 1.85068                   terrain collapse
## 1.85072                       main landing
## 1.85073                       landing gear
## 1.85076                    taxing ruptured
## 1.85079                          wing fuel
## 1.85080                          fuel tank
## 1.85081                       tank causing
## 1.85086                   aircraft crashed
## 1.85096                 engines overheated
## 1.85097               overheated resulting
## 1.85106                      carrying gold
## 1.85107                        gold miners
## 1.85108                        miners fuel
## 1.85109                 fuel contamination
## 1.85110                  contamination jet
## 1.85113                  fuel contaminated
## 1.85116                  aviation gasoline
## 1.85125                          hong kong
## 1.85128                     denpassar bali
## 1.85134                      plane crashed
## 1.85137                          mt mesehe
## 1.85140                           4,000 ft
## 1.85141                         ft killing
## 1.85144                   aboard premature
## 1.85145                premature execution
## 1.85155                        263 degrees
## 1.85156                   degrees outbound
## 1.85157                     outbound track
## 1.85179                   steady condition
## 1.85180                 condition external
## 1.85183              internal interference
## 1.85184               interference causing
## 1.85187               incorrect indication
## 1.85191                automatic direction
## 1.85192                   direction finder
## 1.85197                      named clipper
## 1.85198                     clipper climax
## 1.85201                   aircraft crashed
## 1.85207                    heavy vibration
## 1.85214                           4 engine
## 1.85215                  engine structural
## 1.85216                 structural failure
## 1.85219                       turbine disc
## 1.85225                     engine crashed
## 1.85228                 takeoff inadequate
## 1.85229               inadequate preflight
## 1.85230              preflight preparation
## 1.85233                      planning lack
## 1.85238                   aircraft misused
## 1.85239                      misused flaps
## 1.85240                         flaps gust
## 1.85241                          gust lock
## 1.85242                       lock engaged
## 1.85243                     engaged struck
## 1.85246                   mountain shortly
## 1.85249                    takeoff failure
## 1.85255                     minimum safety
## 1.85256                    safety altitude
## 1.85257            altitude overconfidence
## 1.85261                   crew distraction
## 1.85265                      tourist guide
## 1.85271                        cargo plane
## 1.85272                       plane struck
## 1.85273                       struck trees
## 1.85279                     final approach
## 1.85280                     approach icing
## 1.85281                        icing pilot
## 1.85282                        pilot blood
## 1.85283                      blood alcohol
## 1.85288                           en route
## 1.85291                          left wing
## 1.85292                     wing separated
## 1.85298                      plane crashed
## 1.85304           undiscovered preexisting
## 1.85305                preexisting fatigue
## 1.85306                     fatigue cracks
## 1.85314                          left wing
## 1.85326               positive aerodynamic
## 1.85327                  aerodynamic loads
## 1.85328                      loads created
## 1.85331                moderate turbulence
## 1.85332                 turbulence crashed
## 1.85335            approach incapacitation
## 1.85339                           crew due
## 1.85342                    carbon monoxide
## 1.85345                        cargo plane
## 1.85346                     plane suffered
## 1.85349                     engine failure
## 1.85357                      aircraft lost
## 1.85358                       lost control
## 1.85364                  tailplane failure
## 1.85365                    failure failure
## 1.85371                     tailplane spar
## 1.85372                       spar causing
## 1.85375                     left tailplane
## 1.85380                     detach crashed
## 1.85387                          3 engines
## 1.85388                     engines failed
## 1.85389                  failed mechanical
## 1.85390                 mechanical failure
## 1.85391                        failure due
## 1.85394               improper maintenance
## 1.85395             maintenance procedures
## 1.85396            procedures insufficient
## 1.85397              insufficient training
## 1.85400                         cabin crew
## 1.85401                       crew crashed
## 1.85405                   fatigue fracture
## 1.85409                swachplate assembly
## 1.85410                assembly inadequate
## 1.85411             inadequate maintenance
## 1.85416                        cargo plane
## 1.85417                      plane crashed
## 1.85423                           7,000 ft
## 1.85424                         ft shortly
## 1.85430                        cargo plane
## 1.85438                        air missile
## 1.85439                     missile struck
## 1.85444                         mont apica
## 1.85445                      apica located
## 1.85446                         located 67
## 1.85447                              67 km
## 1.85448                       km southwest
## 1.85451                     saint honorãƒâ
## 1.85452                   honorãƒâ airport
## 1.85455                   aircraft crashed
## 1.85467                        bad weather
## 1.85470                   navigation error
## 1.85471                       error caused
## 1.85478                         wrong city
## 1.85485                      rainy weather
## 1.85490                  trujillo mountain
## 1.85491                  mountain wreckage
## 1.85492                     wreckage found
## 1.85493                            found 2
## 1.85494                           2 months
## 1.85502                        crew divert
## 1.85505                   cumanãƒâ airport
## 1.85513                     change heading
## 1.85516                       plane struck
## 1.85519                            peak la
## 1.85520                          la gloria
## 1.85521                   gloria located10
## 1.85522                       located10 km
## 1.85523                       km northeast
## 1.85526                   porlamar airport
## 1.85530                         night time
## 1.85531                      time approach
## 1.85534                  kisangani airport
## 1.85537                      plane crashed
## 1.85540              unknown circumstances
## 1.85546                   runway threshold
## 1.85547                  threshold crashed
## 1.85555                       poor weather
## 1.85556                 weather conditions
## 1.85567                        strong gust
## 1.85572                   aircraft pitched
## 1.85582                       steep spiral
## 1.85583                        spiral dive
## 1.85589                     sea detonation
## 1.85593                   explosive device
## 1.85597                          aft cargo
## 1.85598                         cargo hold
## 1.85601           palestinian organization
## 1.85602               organization claimed
## 1.85603             claimed responsibility
## 1.85610                        cabin floor
## 1.85611                     floor damaging
## 1.85616                    rudder controls
## 1.85619                      aircraft flew
## 1.85624                       struck trees
## 1.85625                          trees 3.3
## 1.85626                          3.3 miles
## 1.85627                        miles short
## 1.85636                   fog flightcrew's
## 1.85637                  flightcrew's lack
## 1.85640                 altitude awareness
## 1.85647                       approach due
## 1.85650                       poor cockpit
## 1.85651                 cockpit discipline
## 1.85659                  follow prescribed
## 1.85660              prescribed procedures
## 1.85680                instrument approach
## 1.85685                           50 knots
## 1.85690                           500 feet
## 1.85694                     final approach
## 1.85695                       approach fix
## 1.85696                       fix hijacked
## 1.85697                hijacked detonation
## 1.85701                      hand grenades
## 1.85705              passenger compartment
## 1.85709                      pilot refused
## 1.85714                        hanoi north
## 1.85715                      north vietnam
## 1.85718                 aircraft attempted
## 1.85721                      land executed
## 1.85724                    missed approach
## 1.85735                         1,000 feet
## 1.85740                   takeoff cruising
## 1.85746                           1 engine
## 1.85755                  severe vibrations
## 1.85760                         crew chose
## 1.85767                             900 ft
## 1.85786                        ditched 700
## 1.85787                           700 feet
## 1.85788                      feet offshore
## 1.85791                           en route
## 1.85794                        cargo plane
## 1.85795                         plane lost
## 1.85803                     ground failure
## 1.85810                      fight fatigue
## 1.85811                   fatigue fracture
## 1.85812                fracture inadequate
## 1.85813             inadequate maintenance
## 1.85816                   inspection pilot
## 1.85817                      pilot refused
## 1.85818                    refused weather
## 1.85819                   weather briefing
## 1.85820                      briefing flew
## 1.85823                       blind canyon
## 1.85824                       canyon icing
## 1.85825                   icing conditions
## 1.85826               conditions continued
## 1.85827                      continued vfr
## 1.85828                         vfr flight
## 1.85831                    adverse weather
## 1.85832                 weather conditions
## 1.85833                  conditions midair
## 1.85834                   midair collision
## 1.85842                             mil mi
## 1.85843                              mi 8t
## 1.85846                       poor weather
## 1.85850                             2 prop
## 1.85856                      engine failed
## 1.85862                      aircraft lost
## 1.85863                      lost altitude
## 1.85867                         180 degree
## 1.85872                     forced landing
## 1.85878                         rice field
## 1.85881                   aircraft stalled
## 1.85888                         wing flaps
## 1.85894                       fatal boeing
## 1.85895                         boeing 747
## 1.85896                       747 accident
## 1.85899                      occur stalled
## 1.85904                    crashed crashed
## 1.85909                      plane crashed
## 1.85915                  approximately 270
## 1.85916                            270 mph
## 1.85922                     dulles airport
## 1.85925                    crew's decision
## 1.85930                   aircraft reached
## 1.85933                   approach segment
## 1.85939                     terrain marked
## 1.85943                           en route
## 1.85944                        route chart
## 1.85949                       descent lack
## 1.85954                     atc procedures
## 1.85960                 approach clearance
## 1.85966                           44 miles
## 1.85973                  unpublished route
## 1.85977                    defined minimum
## 1.85978                  minimum altitudes
## 1.85979               altitudes inadequate
## 1.85980               inadequate depiction
## 1.85983              altitude restrictions
## 1.85987                       profile view
## 1.85991                     approach chart
## 1.85995                            vor dme
## 1.85996                       dme approach
## 1.85999                          runway 12
## 1.86002               dulles international
## 1.86003              international airport
## 1.86006                   aircraft stalled
## 1.86026                        flight crew
## 1.86027                        crew failed
## 1.86038                         attack low
## 1.86039                          low speed
## 1.86040                        speed stall
## 1.86044                  descending spiral
## 1.86052                      flight crew's
## 1.86053                    crew's improper
## 1.86054                  improper reaction
## 1.86057                 erroneous airspeed
## 1.86060                   mach indications
## 1.86070                        pitot heads
## 1.86073                  atmospheric icing
## 1.86074                     icing contrary
## 1.86077               standard operational
## 1.86078             operational procedures
## 1.86081                        flight crew
## 1.86087                         pitot head
## 1.86088                       head heaters
## 1.86092                          2 crashed
## 1.86097                         antonov 12
## 1.86100                    irkutsk airport
## 1.86103                        atc cleared
## 1.86109                   takeoff crossing
## 1.86112                         12s flight
## 1.86113                        flight path
## 1.86117                          12 landed
## 1.86118                      landed safely
## 1.86119                      safely eleven
## 1.86120                  eleven passengers
## 1.86123                             2 crew
## 1.86124                        crew killed
## 1.86131                  aircraft impacted
## 1.86132                     impacted mount
## 1.86133                    mount anjimalai
## 1.86136                           4,355 ft
## 1.86142                     crew descended
## 1.86146                      safe altitude
## 1.86147                       altitude due
## 1.86151                     position error
## 1.86152                    error resulting
## 1.86159                      weather radar
## 1.86160                  radar disappeared
## 1.86161                     disappeared en
## 1.86162                           en route
## 1.86165                         found shot
## 1.86172                        air missile
## 1.86173                    missile overran
## 1.86186                      elevator lock
## 1.86195                          runway 05
## 1.86198                    maturin airport
## 1.86203                       plane struck
## 1.86208                          mt zamuro
## 1.86209                          zamuro 20
## 1.86210                              20 km
## 1.86214                    airport crashed
## 1.86217                    lotru mountains
## 1.86218                       mountains 22
## 1.86219                              22 km
## 1.86220                           km south
## 1.86225                        drifting 20
## 1.86226                              20 km
## 1.86233                   turbulence wrong
## 1.86234                    wrong decisions
## 1.86240                        flying crew
## 1.86245                     wrong approach
## 1.86246             approach configuration
## 1.86247              configuration causing
## 1.86258                      tikal airport
## 1.86275                   mountain located
## 1.86284                        flight fire
## 1.86285                          fire shot
## 1.86290                        sam missile
## 1.86291                    missile crashed
## 1.86298                           en route
## 1.86299                     route improper
## 1.86300                    improper flight
## 1.86301                    flight planning
## 1.86306                mountainous terrain
## 1.86309                    adverse weather
## 1.86310                 weather conditions
## 1.86314                 reduced visibility
## 1.86318                       route midair
## 1.86319                   midair collision
## 1.86323                              dhc 6
## 1.86327                         cessna 150
## 1.86330                         2,200 feet
## 1.86333                approaching ontario
## 1.86334                    ontario airport
## 1.86335                     airport twelve
## 1.86336                      twelve aboard
## 1.86344                      cessna killed
## 1.86350                       flight crews
## 1.86358                    sufficient time
## 1.86361                   initiate evasive
## 1.86362                     evasive action
## 1.86374                      closure angle
## 1.86384                       twin otter's
## 1.86385                     otter's flight
## 1.86386                        flight crew
## 1.86389                     acquire visual
## 1.86390                     visual contact
## 1.86393                     radar reported
## 1.86394                   reported traffic
## 1.86395                   traffic directly
## 1.86396                     directly ahead
## 1.86401                   aircraft crashed
## 1.86405                       ground 1,360
## 1.86406                       1,360 meters
## 1.86407                        meters past
## 1.86410                   runway threshold
## 1.86413                         120 meters
## 1.86420                        center line
## 1.86427                   ferihegy airport
## 1.86428                       airport poor
## 1.86429                       poor weather
## 1.86430                        weather fog
## 1.86431                       fog nightime
## 1.86432                nightime conditions
## 1.86433                    conditions lack
## 1.86436                  crew coordination
## 1.86440             spatial disorientation
## 1.86441         disorientation contributed
## 1.86445                        accident en
## 1.86446                           en route
## 1.86451                           sam neua
## 1.86454                   crew encountered
## 1.86455                   encountered poor
## 1.86456                       poor weather
## 1.86457                 weather conditions
## 1.86461                    airplane struck
## 1.86467                   mountain located
## 1.86473                           sam neua
## 1.86474                        neua flying
## 1.86475                         flying vfr
## 1.86478                        ifr weather
## 1.86482                 electrical failure
## 1.86488                 aircraft initiated
## 1.86502                  extended downwind
## 1.86503                       downwind leg
## 1.86508                   aircraft crashed
## 1.86532                       lost control
## 1.86538                  suffering spatial
## 1.86539             spatial disorientation
## 1.86546                           vfr mode
## 1.86550                        marmara sea
## 1.86554                   visual reference
## 1.86580                       ils approach
## 1.86583                      abandoned due
## 1.86586             intermittent operation
## 1.86590                       aircraft ils
## 1.86591                      ils localizer
## 1.86592                 localizer receiver
## 1.86593               receiver instruments
## 1.86602                     houston tracon
## 1.86603                  tracon monitoring
## 1.86606                 surveillance radar
## 1.86609                               dc 3
## 1.86610                        3 descended
## 1.86616                          left wing
## 1.86617                      wing collided
## 1.86622                         power line
## 1.86623                         line tower
## 1.86624                      tower located
## 1.86625                        located 1.8
## 1.86626                          1.8 miles
## 1.86627                        miles short
## 1.86631                     runway fifteen
## 1.86632                       fifteen feet
## 1.86641                 aircraft continued
## 1.86644                           650 feet
## 1.86649                    ground inverted
## 1.86650                  inverted improper
## 1.86653                   flight decisions
## 1.86658                       improper ifr
## 1.86659                      ifr operation
## 1.86663                           2 engine
## 1.86664                      engine caught
## 1.86665                        caught fire
## 1.86666                       fire shortly
## 1.86671                   aircraft crashed
## 1.86675                         rice field
## 1.86676                            field 3
## 1.86677                            3 miles
## 1.86678                        miles short
## 1.86686                 emergency approach
## 1.86691                    airport slammed
## 1.86700                           5,000 ft
## 1.86709                        snow shower
## 1.86712                        cargo plane
## 1.86713                         plane lost
## 1.86730                      crashed short
## 1.86734                        runway fuel
## 1.86735                 fuel contamination
## 1.86736                contamination water
## 1.86739                       fuel minutes
## 1.86749                        wing struck
## 1.86754                          crew lost
## 1.86755                       lost control
## 1.86763                      plane crashed
## 1.86777                     engine trouble
## 1.86778                  trouble attempted
## 1.86790                        houses shot
## 1.86795                          hand held
## 1.86796                       held surface
## 1.86799                        air missile
## 1.86802                   north vietnamese
## 1.86803                  vietnamese forces
## 1.86804                          forces 25
## 1.86805                           25 miles
## 1.86806                           miles sw
## 1.86811                    aircraft struck
## 1.86819                       ils approach
## 1.86822                       poor weather
## 1.86823                       weather crew
## 1.86824                         crew error
## 1.86825                         error crew
## 1.86826                     crew descended
## 1.86830                       minimum safe
## 1.86831                      safe altitude
## 1.86836                   position unknown
## 1.86837              unknown circumstances
## 1.86838              circumstances crashed
## 1.86843                        crew failed
## 1.86848                    flight properly
## 1.86852                       total weight
## 1.86858                          449 kilos
## 1.86887                      initial climb
## 1.86895                    aircraft struck
## 1.86900                       mt constance
## 1.86903                   olympic national
## 1.86904                      national park
## 1.86905                        park faulty
## 1.86906                   faulty clearance
## 1.86920                  aircraft reported
## 1.86926                            tan son
## 1.86927                           son nhut
## 1.86928                       nhut airbase
## 1.86929                         airbase 15
## 1.86930                         15 minutes
## 1.86945                     crashed landed
## 1.86949                         rice paddy
## 1.86950                          paddy 1.5
## 1.86951                          1.5 miles
## 1.86959                     evacuating 243
## 1.86960                     243 vietnamese
## 1.86961                 vietnamese orphans
## 1.86962                   orphans pressure
## 1.86963                   pressure failure
## 1.86964                        failure due
## 1.86968                        faulty rear
## 1.86969                       rear loading
## 1.86970                       loading ramp
## 1.86971                        ramp caused
## 1.86972               caused decompression
## 1.86977                     severed rudder
## 1.86980                    elevator cables
## 1.86986                  hydraulic systems
## 1.86987                  systems resulting
## 1.86993                      pitch control
## 1.86994                      control worst
## 1.86995                       worst single
## 1.86998                         combat u.s
## 1.86999                       u.s military
## 1.87000                  military aviation
## 1.87001                  aviation disaster
## 1.87009             uncontrollable descent
## 1.87015                  inverted attitude
## 1.87022                    burned cracking
## 1.87026                      rotor spindle
## 1.87027                   spindle assembly
## 1.87035                         main rotor
## 1.87038                      bomb exploded
## 1.87043                      rear lavatory
## 1.87044                   lavatory causing
## 1.87052                       plane landed
## 1.87053                      landed safely
## 1.87056                    aircraft landed
## 1.87059                    excessive speed
## 1.87067                         300 meters
## 1.87071                     runway overran
## 1.87074                     runway crossed
## 1.87084                   aircraft crashed
## 1.87088                    approach lights
## 1.87091                         runway 22l
## 1.87098                       ils approach
## 1.87102                  runway aircraft's
## 1.87103               aircraft's encounter
## 1.87106                         heavy rain
## 1.87111                strong thunderstorm
## 1.87115                    located astride
## 1.87118                      ils localizer
## 1.87126                       descent rate
## 1.87129                     approach light
## 1.87130                   light towers.the
## 1.87131            towers.the flightcrew's
## 1.87132               flightcrew's delayed
## 1.87133                delayed recognition
## 1.87140                       descent rate
## 1.87146                        visual cues
## 1.87151                  flight instrument
## 1.87152               instrument reference
## 1.87156                      adverse winds
## 1.87165                successful approach
## 1.87175                  responded rapidly
## 1.87182    flight instruments.contributing
## 1.87192                         runway 22l
## 1.87202                        air traffic
## 1.87203                    traffic control
## 1.87204                  control personnel
## 1.87211                     severe weather
## 1.87212                     weather hazard
## 1.87213                     hazard existed
## 1.87217                      approach path
## 1.87218                       path crashed
## 1.87222                  emergency landing
## 1.87223                    landing fatigue
## 1.87224                   fatigue fracture
## 1.87228                      cylinder head
## 1.87229                     head standpipe
## 1.87230                   standpipe cutoff
## 1.87231                       cutoff flush
## 1.87236                           oil tank
## 1.87237                      tank improper
## 1.87238               improper maintenance
## 1.87241                        cargo plane
## 1.87242                       plane barely
## 1.87257                               dc 6
## 1.87260                   planes destroyed
## 1.87263                    aircraft struck
## 1.87275                standard trajectory
## 1.87279                    missed approach
## 1.87280            approach misinformation
## 1.87281            misinformation supplied
## 1.87284                       crew stalled
## 1.87299                    pilot attempted
## 1.87311                           wing hit
## 1.87317                      plane crashed
## 1.87320                      pilot decided
## 1.87337                     plane properly
## 1.87350                           wing tip
## 1.87354                           4 engine
## 1.87355                      engine struck
## 1.87358                      mountain peak
## 1.87361                         2,400 feet
## 1.87366                     wing separated
## 1.87370                      plane crashed
## 1.87374                        ravine crew
## 1.87375                         crew error
## 1.87384                        ilopango el
## 1.87385                        el salvador
## 1.87391                    adverse weather
## 1.87392                 weather conditions
## 1.87406                      pacific ocean
## 1.87409                   aircraft climbed
## 1.87413                           100 feet
## 1.87416                         runway 35l
## 1.87438                       rain showers
## 1.87444                   northern portion
## 1.87450               aircraft's encounter
## 1.87451              encounter immediately
## 1.87456                   severe windshear
## 1.87464                 precluded recovery
## 1.87467                       level flight
## 1.87470                      crew deviated
## 1.87474                   approach pattern
## 1.87479                   terrain obscured
## 1.87482                          clouds 28
## 1.87483                              28 km
## 1.87488                    plane descended
## 1.87494                  crashed windshear
## 1.87497                   airliner crashed
## 1.87501                        sandy knoll
## 1.87502                           knoll 10
## 1.87503                           10 miles
## 1.87504                           miles ne
## 1.87512             damascus international
## 1.87513              international airport
## 1.87514                    airport failure
## 1.87522                     minimum flight
## 1.87523                    flight altitude
## 1.87527                   landing attempts
## 1.87530                   aircraft crashed
## 1.87533                  sevuokuk mountain
## 1.87542                    gambell airport
## 1.87545               flightcrew's failure
## 1.87550                 prescribed company
## 1.87551                 company instrument
## 1.87552                instrument approach
## 1.87553                approach procedures
## 1.87560                    adverse weather
## 1.87561                 weather conditions
## 1.87564                 aircraft descended
## 1.87568                         glide path
## 1.87573                        radio tower
## 1.87574                        tower short
## 1.87590                    pilot navigator
## 1.87593                      radio officer
## 1.87594                   officer received
## 1.87595                         received 3
## 1.87601                     plane collided
## 1.87605                        radio tower
## 1.87614                     minimum flight
## 1.87615                    flight altitude
## 1.87622                             fl 115
## 1.87627                   scattered clouds
## 1.87633                         cloud bank
## 1.87642                     steep climbing
## 1.87649                        tail struck
## 1.87650                       struck trees
## 1.87651                      trees control
## 1.87657                   aircraft crashed
## 1.87658                   crashed inverted
## 1.87659                    inverted landed
## 1.87660                       landed short
## 1.87663                       struck trees
## 1.87669                       poor weather
## 1.87670                        weather vfr
## 1.87671                         vfr flight
## 1.87674                 weather conditions
## 1.87679                   aircraft crashed
## 1.87683                  mediterranean sea
## 1.87689                      ils localizer
## 1.87698                   visible approach
## 1.87705                     crew attempted
## 1.87722                       outer marker
## 1.87725                     crew descended
## 1.87731                     wing contacted
## 1.87734                      building crew
## 1.87735                         crew error
## 1.87736                    error attempted
## 1.87741                 minimumns improper
## 1.87742                  improper approach
## 1.87746                         storm crew
## 1.87747                         crew error
## 1.87748                 error misalignment
## 1.87760                   landing approach
## 1.87768               immediately initiate
## 1.87774                      safe altitude
## 1.87777                    reasons unknown
## 1.87788                           300 feet
## 1.87796                terrain surrounding
## 1.87802              determined overloaded
## 1.87805                    aircraft landed
## 1.87806                       landed short
## 1.87814                       ils approach
## 1.87819                 helicopter crashed
## 1.87823                         main rotor
## 1.87824                       rotor failed
## 1.87831                     crew attempted
## 1.87838                          los track
## 1.87847                       struck mount
## 1.87848                      mount apshara
## 1.87851                       2,250 meters
## 1.87852                     meters crashed
## 1.87855                 mountainous jungle
## 1.87858                    poor visibility
## 1.87861                         heavy rain
## 1.87862                       rain crashed
## 1.87873                    kharkov airport
## 1.87874                        airport air
## 1.87875                        air traffic
## 1.87876                    traffic control
## 1.87877                   control reported
## 1.87880                          wrong qnh
## 1.87881                        qnh setting
## 1.87885                          crew crew
## 1.87888                   ground proximity
## 1.87889                 proximity warnings
## 1.87890                   warnings crashed
## 1.87891                    crashed shortly
## 1.87894                    takeoff stalled
## 1.87895                    stalled crashed
## 1.87896                      crashed icing
## 1.87897                      icing crashed
## 1.87898                         crashed 15
## 1.87899                              15 ft
## 1.87905                     cloud obscured
## 1.87906                     obscured jebel
## 1.87907                        jebel hilal
## 1.87908                     hilal mountain
## 1.87912                   israeli occupied
## 1.87913                     occupied sinai
## 1.87914                    sinai peninsula
## 1.87915                     peninsula race
## 1.87916                           race car
## 1.87917                         car driver
## 1.87918                      driver graham
## 1.87919                        graham hill
## 1.87920                            hill 46
## 1.87937                    elstree airport
## 1.87938                    airport crashed
## 1.87941                mountains continued
## 1.87942                      continued vfr
## 1.87943                         vfr flight
## 1.87946                    adverse weather
## 1.87947                 weather conditions
## 1.87950                     aircraft broke
## 1.87954                             fl 370
## 1.87960                  desert detonation
## 1.87964                   explosive device
## 1.87968                      forward cargo
## 1.87969                  cargo compartment
## 1.87970                compartment crashed
## 1.87971                      crashed short
## 1.87979                    pilot descended
## 1.87982                 published minimums
## 1.87986                           low fuel
## 1.87987                    fuel inadequate
## 1.87988               inadequate preflight
## 1.87989                 preflight planning
## 1.87990                  planning improper
## 1.87991                       improper ifr
## 1.87992                      ifr operation
## 1.87998                      plane entered
## 1.87999                     entered clouds
## 1.88002                artificial horizons
## 1.88003                    horizons failed
## 1.88006                       plane rolled
## 1.88017                         95 degrees
## 1.88018                  degrees descended
## 1.88021                    crashed crashed
## 1.88024              unknown circumstances
## 1.88027                        cargo plane
## 1.88034                          san borja
## 1.88039                           2 engine
## 1.88040                      engine failed
## 1.88047                      plane crashed
## 1.88050                          trees 1.2
## 1.88051                          1.2 miles
## 1.88052                         miles past
## 1.88058                 runway malfunction
## 1.88065                           2 engine
## 1.88066                     engine landing
## 1.88067                       landing gear
## 1.88068                   gear malfunction
## 1.88072                   improper landing
## 1.88073                  landing procedure
## 1.88076                      aircraft lost
## 1.88077                      lost altitude
## 1.88082                        wing struck
## 1.88083                       struck trees
## 1.88087                      plane crashed
## 1.88091               chillacocha mountain
## 1.88092                     mountain range
## 1.88095                           9.000 ft
## 1.88098                           en route
## 1.88110               subsequent collision
## 1.88118                orographic currents
## 1.88119               currents encountered
## 1.88128                   approach reasons
## 1.88129                    reasons unknown
## 1.88130                    unknown crashed
## 1.88135                        cargo plane
## 1.88136                      plane crashed
## 1.88140                       ocean engine
## 1.88141                     engine failure
## 1.88151                    propeller blade
## 1.88152                    blade separated
## 1.88153                  separated causing
## 1.88156                     engine failure
## 1.88159                   aircraft circled
## 1.88168                  emergency landing
## 1.88174                           planeã â
## 1.88175                                â â
## 1.88191                        flight crew
## 1.88192                         crew opted
## 1.88197                         nearby van
## 1.88198                           van nuys
## 1.88199                       nuys airport
## 1.88202                           en route
## 1.88206                      engine failed
## 1.88210                   aircraft crashed
## 1.88214                       woodley golf
## 1.88218                         mile short
## 1.88224                           van nuys
## 1.88227                    aircraft plowed
## 1.88232                unoccupied building
## 1.88240                  portable bungalow
## 1.88255               crashed asymmetrical
## 1.88256             asymmetrical refueling
## 1.88260                        plane pilot
## 1.88261                        pilot error
## 1.88262                      error crashed
## 1.88272                   emergency forced
## 1.88273                 forced unscheduled
## 1.88274             unscheduled feathering
## 1.88280               undetermined reasons
## 1.88281                     reasons engine
## 1.88282                     engine failure
## 1.88285               undetermined reasons
## 1.88286                    reasons crashed
## 1.88287                      crashed short
## 1.88291                     runway crashed
## 1.88297                           en route
## 1.88302                   aircraft plunged
## 1.88307                             fl 260
## 1.88310                darkness electrical
## 1.88311                   electrical power
## 1.88312                      power failure
## 1.88315                      compass gyros
## 1.88318                         auto pilot
## 1.88319                       pilot caused
## 1.88324                       lose control
## 1.88328                    plane continued
## 1.88329                      continued vfr
## 1.88330                         vfr flight
## 1.88334                    adverse weather
## 1.88335                    weather crashed
## 1.88344                         heavy rain
## 1.88347                      plane overran
## 1.88354                    excessive speed
## 1.88357                   captain's faulty
## 1.88358                   faulty judgement
## 1.88372                       stop landing
## 1.88379                     fast touchdown
## 1.88383              unstabilized approach
## 1.88384                approach structural
## 1.88385                 structural failure
## 1.88389                  flight separation
## 1.88394                       wing fatigue
## 1.88395                     fatigue cracks
## 1.88396                  cracks attributed
## 1.88399                         stress due
## 1.88406                    critical sooner
## 1.88411                    cracks remained
## 1.88412                remained undetected
## 1.88419          manufacturer's inspection
## 1.88420                 inspection program
## 1.88426             insufficiently fatigue
## 1.88427                   fatigue fracture
## 1.88430                          tail boom
## 1.88431                      boom fuselage
## 1.88432                fuselage attachment
## 1.88433                 attachment fitting
## 1.88434                      fitting pilot
## 1.88437                       4 passengers
## 1.88444                         2,200 feet
## 1.88473                         11 degrees
## 1.88476                       aircraft ran
## 1.88487                  localizer antenna
## 1.88496                       aircraft hit
## 1.88505                    ground bursting
## 1.88510                  captain's actions
## 1.88522                insufficient runway
## 1.88523                   runway remaining
## 1.88528                  touchdown unknown
## 1.88548                             1 fuel
## 1.88549                          fuel tank
## 1.88554                          left wing
## 1.88562                     crash ignition
## 1.88565                         fuel vapor
## 1.88570                             1 tank
## 1.88577                        motor drive
## 1.88578                         drive fuel
## 1.88579                         fuel valve
## 1.88584                    wake turbulence
## 1.88588                        mig fighter
## 1.88589                      fighter plane
## 1.88592                   rudder deflected
## 1.88593                  deflected sharply
## 1.88597               propellers feathered
## 1.88598                  feathered causing
## 1.88615                       hijacker set
## 1.88632                  aircraft collided
## 1.88635                          mount san
## 1.88636                         san carlos
## 1.88643                    radar equipment
## 1.88647                           3 engine
## 1.88648                      engine failed
## 1.88652                       takeoff roll
## 1.88656                         plane left
## 1.88657                         left agana
## 1.88658                        agana naval
## 1.88659                          naval air
## 1.88660                        air station
## 1.88668                     struck terrain
## 1.88677                   climb capability
## 1.88681                     crew retracted
## 1.88693                     rising terrain
## 1.88702                        3 propeller
## 1.88703                propeller feathered
## 1.88707                    aircraft lifted
## 1.88716                  automobile struck
## 1.88722                     killed stalled
## 1.88744             palestinian terrorists
## 1.88749                     entebbe uganda
## 1.88757                      commando raid
## 1.88760                      israeli armed
## 1.88761                       armed forces
## 1.88766                    hostages caught
## 1.88767                        caught fire
## 1.88773                           3 engine
## 1.88774                      engine failed
## 1.88782                           4 engine
## 1.88790                           4 engine
## 1.88796                      aircraft lost
## 1.88797                       lost control
## 1.88802                     zlatãƒâ piesky
## 1.88803                        piesky lake
## 1.88819                        cargo plane
## 1.88820                    plane continued
## 1.88821                 continued straight
## 1.88826                   mountain crashed
## 1.88827                         crashed 15
## 1.88828                         15 minutes
## 1.88834                      engine caught
## 1.88835                        caught fire
## 1.88836                       fire crashed
## 1.88839                           en route
## 1.88840                       route struck
## 1.88845                      mt chimborazo
## 1.88846              chimborazo controlled
## 1.88847                  controlled filght
## 1.88852                       hijacker set
## 1.88864                  aircraft suffered
## 1.88865                suffered structural
## 1.88866                 structural failure
## 1.88872                severe thunderstorm
## 1.88875                     starboard wing
## 1.88876                    wing horizontal
## 1.88877              horizontal stabilizer
## 1.88880                      vertical tail
## 1.88881                           tail fin
## 1.88882                      fin separated
## 1.88886                   aircraft crashed
## 1.88891                    cruise altitude
## 1.88892                    altitude failed
## 1.88895                  maintain adequate
## 1.88896                     adequate rotor
## 1.88897                        rotor speed
## 1.88898                      speed crashed
## 1.88904                         mile short
## 1.88910                         heavy rain
## 1.88919                          lajes air
## 1.88920                           air base
## 1.88925                   venezuelan choir
## 1.88926                       choir orfeon
## 1.88927               orfeon universitario
## 1.88928               universitario killed
## 1.88934                   properly aligned
## 1.88943                   approach weather
## 1.88944                 weather conditions
## 1.88948                     hurricane emmy
## 1.88952                     primary factor
## 1.88956                    accident midair
## 1.88957                   midair collision
## 1.88960                          fl187 atc
## 1.88961                          atc error
## 1.88962                        error forty
## 1.88968                         antonov 18
## 1.88972                      yak violation
## 1.88975                   separation rules
## 1.88976                 rules contributing
## 1.88980                insufficient visual
## 1.88981                   visual alertness
## 1.88993                 situation analysis
## 1.88994                     analysis based
## 1.88997                         air ground
## 1.88998                       ground radio
## 1.88999               radio communications
## 1.89000              communications midair
## 1.89001                   midair collision
## 1.89004                        planes flew
## 1.89017                           time atc
## 1.89018                          atc error
## 1.89019                   error negligence
## 1.89022                operations improper
## 1.89031                   hundred thirteen
## 1.89032                    thirteen deaths
## 1.89036                               dc 9
## 1.89044                       entire shift
## 1.89052                       found guilty
## 1.89055                criminal negligence
## 1.89067                                3 1
## 1.89068                                1 2
## 1.89084                        air traffic
## 1.89085                    traffic control
## 1.89086                     control system
## 1.89089                    aircraft struck
## 1.89090                          struck mt
## 1.89091                        mt karatepa
## 1.89099                     crew attempted
## 1.89105                      wrong airport
## 1.89106                    airport landing
## 1.89112                      antalya crash
## 1.89113                       crash landed
## 1.89116                     rugged terrain
## 1.89117                      terrain broke
## 1.89124                     swamp possilbe
## 1.89125                     possilbe cabin
## 1.89126                     cabin pressure
## 1.89138                        cargo plane
## 1.89139                       plane struck
## 1.89140                          struck mt
## 1.89141                           mt kenya
## 1.89146                     land descended
## 1.89147              descended prematurely
## 1.89148                    prematurely ten
## 1.89149                        ten minutes
## 1.89157                  aircraft reported
## 1.89160                   explosion aboard
## 1.89168                  overcast trailing
## 1.89169                     trailing smoke
## 1.89172                   aircraft crashed
## 1.89176                      caribbean sea
## 1.89177                     sea detonation
## 1.89181                   explosive device
## 1.89192                uncontrollable fire
## 1.89203                        cargo plane
## 1.89204                       plane failed
## 1.89211                        trees poles
## 1.89227                       soccer field
## 1.89228                          field 560
## 1.89229                         560 meters
## 1.89247                  acceleration crew
## 1.89248                       crew fatigue
## 1.89251                     aircraft crash
## 1.89252                       crash landed
## 1.89258                  emergency landing
## 1.89262                      engine failed
## 1.89267                      fatigue crack
## 1.89270                     compressor led
## 1.89273                 engine destruction
## 1.89274               destruction severing
## 1.89277                         fuel lines
## 1.89282                        fire spread
## 1.89292                        fuel supply
## 1.89323                 abrupt application
## 1.89329                 engine autofeather
## 1.89334                      plane crashed
## 1.89337                        cargo plane
## 1.89342                       curacao port
## 1.89343                            port au
## 1.89344                          au prince
## 1.89347                   airliner crashed
## 1.89350                mountainous terrain
## 1.89356                         kozani due
## 1.89359                       poor weather
## 1.89362                 larissa controlled
## 1.89363                  controlled flight
## 1.89366                  terrain premature
## 1.89367                  premature descent
## 1.89373                 artificial horizon
## 1.89374                    horizon failure
## 1.89375                     failure caused
## 1.89383                        exceed bank
## 1.89384                         bank angle
## 1.89385                       angle limits
## 1.89390                      plane crashed
## 1.89391                      crashed short
## 1.89397                     rain windshear
## 1.89400                    aircraft's rate
## 1.89405                     descent flight
## 1.89406                        flight path
## 1.89407                         path angle
## 1.89408                    angle increased
## 1.89414              windshear encountered
## 1.89417                    visual approach
## 1.89420                    minimum descent
## 1.89421                   descent altitude
## 1.89424                        flight crew
## 1.89430              flightpath deviations
## 1.89437                  visual references
## 1.89444                    homogeneous fog
## 1.89448                   kinesthetic cues
## 1.89452                 adversely affected
## 1.89456                 aircraft's forward
## 1.89457                     forward center
## 1.89460                  gravity resulting
## 1.89464                  improperly loaded
## 1.89465                    loaded aircraft
## 1.89468                        cargo plane
## 1.89469                      plane crashed
## 1.89474                  takeoff deviation
## 1.89485                        pilot error
## 1.89495                          heavy fog
## 1.89498                     crew continued
## 1.89503                    decision height
## 1.89509                    obtained visual
## 1.89510                     visual contact
## 1.89522                         minima 700
## 1.89532                     survey fllight
## 1.89533                   fllight deviated
## 1.89537                   approach pattern
## 1.89542                      mount ostraya
## 1.89545                   aircraft crashed
## 1.89553                    landing attempt
## 1.89554                       attempt lack
## 1.89557                 altitude awareness
## 1.89560             disorientation leading
## 1.89564               uncontrolled descent
## 1.89565                       descent crew
## 1.89572                  navigational aids
## 1.89573                        aids struck
## 1.89578                         mt pintado
## 1.89579                    pintado located
## 1.89580                         located 25
## 1.89581                              25 km
## 1.89582                           km north
## 1.89586                    airport shortly
## 1.89598                       palm springs
## 1.89599                  springs municipal
## 1.89600                  municipal airport
## 1.89603                         light rain
## 1.89604                         rain bound
## 1.89607                          las vegas
## 1.89608                       vegas nevada
## 1.89611                      plane climbed
## 1.89614                         9,000 feet
## 1.89620                     runway heading
## 1.89623                      flew directly
## 1.89632                         9,700 feet
## 1.89633                        feet flight
## 1.89634                      flight crew's
## 1.89635           crew's misinterpretation
## 1.89639                      ifr clearance
## 1.89640                   clearance issued
## 1.89644                       palm springs
## 1.89645                  springs departure
## 1.89646                  departure control
## 1.89649                     subsequent atc
## 1.89650                   atc instructions
## 1.89651               instructions natalie
## 1.89652                      natalie dolly
## 1.89653                      dolly sinatra
## 1.89654                         sinatra 82
## 1.89655                          82 mother
## 1.89658                  entertainer frank
## 1.89659                      frank sinatra
## 1.89663                traveling companion
## 1.89668                        cargo plane
## 1.89669                      plane crashed
## 1.89676               alcoholic impairment
## 1.89679                 captain flightcrew
## 1.89684                    prevent captain
## 1.89689                          fly blood
## 1.89690                      blood alcohol
## 1.89709                        left engine
## 1.89713                       fire shortly
## 1.89717                     plane exploded
## 1.89720                          crashed 2
## 1.89721                            2 miles
## 1.89722                        miles short
## 1.89726                     runway crashed
## 1.89730                    herman mountain
## 1.89736                  aircraft suddenly
## 1.89737                      suddenly dove
## 1.89744                  apartment parking
## 1.89745                        parking lot
## 1.89751                         1,150 feet
## 1.89752                         feet icing
## 1.89756                 stabilizer leading
## 1.89759                   stabilizer stall
## 1.89766                          3 engines
## 1.89772                      reduced power
## 1.89776                         anti icing
## 1.89777                       icing system
## 1.89778                 system temperature
## 1.89784                        cargo plane
## 1.89785                      plane stalled
## 1.89790                   crashed shifting
## 1.89791                     shifting cargo
## 1.89794                        cargo plane
## 1.89795                      plane crashed
## 1.89796                      crashed short
## 1.89804                       land failure
## 1.89809                  prescribed flight
## 1.89810                        flight path
## 1.89813                    decision height
## 1.89816                   marginal weather
## 1.89817                    weather stalled
## 1.89823                      crew executed
## 1.89826                    missed approach
## 1.89827                   approach failure
## 1.89841                    missed approach
## 1.89848                      initial climb
## 1.89855                    premature raise
## 1.89867                     critical angle
## 1.89873                      stall crashed
## 1.89876                whiteout conditions
## 1.89879             spatial disorientation
## 1.89882                      final crashed
## 1.89886                       ocean engine
## 1.89887                     engine failure
## 1.89890                   aircraft crashed
## 1.89893                     cloud obscured
## 1.89894                        obscured mt
## 1.89895                           mt serra
## 1.89896                      serra shortly
## 1.89902                         san giusto
## 1.89903                     giusto airport
## 1.89913                   evasive maneuver
## 1.89919                      mountain peak
## 1.89922                        cargo plane
## 1.89923                      plane crashed
## 1.89924                      crashed short
## 1.89934                     crew continued
## 1.89956                         las palmas
## 1.89957                     palmas airport
## 1.89961                     extended delay
## 1.89974                          klm plane
## 1.89975                      plane reached
## 1.89993                    plane continued
## 1.89997                     runway missing
## 1.90000                    taxiway turnout
## 1.90004                          heavy fog
## 1.90010                          klm plane
## 1.90014                       takeoff roll
## 1.90039                          klm plane
## 1.90047         simultaneous transmissions
## 1.90048           transmissions interfered
## 1.90052                      other.the klm
## 1.90053                          klm plane
## 1.90054                          plane hit
## 1.90067                       planes burst
## 1.90070                         flames klm
## 1.90071                            klm 234
## 1.90072                             234 14
## 1.90073                            14 crew
## 1.90074                           crew pan
## 1.90077                              326 9
## 1.90078                             9 crew
## 1.90079                        crew killed
## 1.90084                          klm plane
## 1.90089                        klm captain
## 1.90093                     safety officer
## 1.90109                 takeoff permission
## 1.90119                      named clipper
## 1.90120                     clipper victor
## 1.90123                       klm aircraft
## 1.90126                        named rhine
## 1.90127                        rhine river
## 1.90134                          klm plane
## 1.90155                      pilot applied
## 1.90163                        steep climb
## 1.90166                      plane stalled
## 1.90173                     crew continued
## 1.90176                    visual approach
## 1.90191                       losing sight
## 1.90203                           wing hit
## 1.90206                            9 meter
## 1.90211                        wing caught
## 1.90212                        caught fire
## 1.90217                           2 engine
## 1.90218                      engine failed
## 1.90221                       fuselage hit
## 1.90224                    ground sideways
## 1.90230                       1,500 meters
## 1.90236                        plane broke
## 1.90240                        caught fire
## 1.90245                    command decided
## 1.90255                           vfr mode
## 1.90258                     imc conditions
## 1.90261                 aircraft sustained
## 1.90264                  broken windshield
## 1.90278                  encountering hail
## 1.90281                        plane crash
## 1.90282                       crash landed
## 1.90290                       flames total
## 1.90293                        unique loss
## 1.90308               severe thunderstorms
## 1.90311                heavy precipitation
## 1.90316                       hail clogged
## 1.90317                    clogged bleeder
## 1.90318                     bleeder valves
## 1.90322                    engines causing
## 1.90323                    causing multipe
## 1.90324                     multipe engine
## 1.90325                      engine surges
## 1.90329                   compressors tore
## 1.90332                contributing factor
## 1.90339               company's dispatcher
## 1.90344                        flight crew
## 1.90349                        date severe
## 1.90350                     severe weather
## 1.90351                weather information
## 1.90352                information crashed
## 1.90359                          rio guape
## 1.90360                    guape mountains
## 1.90361                    mountains found
## 1.90362                            found 1
## 1.90363                            1 month
## 1.90380                    poor visibility
## 1.90381                 visibility failure
## 1.90386                           1 engine
## 1.90387                         engine due
## 1.90392                     oil mantenance
## 1.90393                   mantenance error
## 1.90394                  error incorrectly
## 1.90395              incorrectly connected
## 1.90398                       pressure oil
## 1.90399                           oil hose
## 1.90400                       hose crashed
## 1.90406                     desert shortly
## 1.90411                         crew error
## 1.90412                       error flight
## 1.90416                    unsafe altitude
## 1.90422                 unfamiliar terrain
## 1.90425                        cargo plane
## 1.90426                       plane struck
## 1.90427                       struck power
## 1.90428                        power lines
## 1.90437                  elevator assembly
## 1.90438                 assembly separated
## 1.90441                         mid flight
## 1.90444                         plane nose
## 1.90445                         nose dived
## 1.90451                  flight separation
## 1.90456                    hand horizontal
## 1.90457              horizontal stabilizer
## 1.90468                      metal fatigue
## 1.90471                inadequate failsafe
## 1.90472                    failsafe design
## 1.90476                          rear spar
## 1.90477                     spar structure
## 1.90478             structure shortcomings
## 1.90481                  design assessment
## 1.90482           assessment certification
## 1.90485              inspection procedures
## 1.90488               contributory factors
## 1.90493                     loading aboard
## 1.90505                       landing gear
## 1.90506                     gear collapsed
## 1.90507                  collapsed causing
## 1.90517                     people waiting
## 1.90527                    rotating blades
## 1.90532                        blades tore
## 1.90533                         tore loose
## 1.90538                    window breaking
## 1.90550                    blocks striking
## 1.90555                     pedestrian 800
## 1.90556                           800 feet
## 1.90560                   heliport fatigue
## 1.90561                    fatigue failure
## 1.90567                    forward fitting
## 1.90572                       main landing
## 1.90573                       landing gear
## 1.90574                          gear tube
## 1.90575                      tube assembly
## 1.90578                 fatigue originated
## 1.90583                        surface pit
## 1.90586                undetermined source
## 1.90587                      source struck
## 1.90588                       struck power
## 1.90589                        power lines
## 1.90592                          crashed 1
## 1.90601                       land crashed
## 1.90608                       ils approach
## 1.90609                   approach crashed
## 1.90613                      pacific ocean
## 1.90616                   exploded moments
## 1.90622                        wake island
## 1.90623                         island air
## 1.90624                           air base
## 1.90627                         plane rose
## 1.90632                             400 ft
## 1.90648                      cargo plane's
## 1.90651                           2 engine
## 1.90655                      develop power
## 1.90658                       plane rolled
## 1.90664                  crashed attempted
## 1.90665                attempted operation
## 1.90671                   equipment failed
## 1.90674                    follow approved
## 1.90675                approved procedures
## 1.90676              procedures inadequate
## 1.90677             inadequate maintenance
## 1.90680                 inspection crashed
## 1.90684                          black sea
## 1.90685                        sea shortly
## 1.90691                    kirovograd shot
## 1.90698                     namibia border
## 1.90705                     crew attempted
## 1.90711                   tailwind stalled
## 1.90712                  stalled contacted
## 1.90713                    contacted trees
## 1.90718                        cargo plane
## 1.90719                      plane crashed
## 1.90725                       poor weather
## 1.90726                 weather visibility
## 1.90729                       rain showers
## 1.90730                    showers crashed
## 1.90745                         heavy rain
## 1.90750                        left engine
## 1.90751                    engine exploded
## 1.90757                      plane crashed
## 1.90760                mountainous terrain
## 1.90761                      terrain plane
## 1.90768                 helicopter piloted
## 1.90771                       francis gary
## 1.90772                        gary powers
## 1.90773                          powers 48
## 1.90774                         48 crashed
## 1.90777                        balboa park
## 1.90786                         news story
## 1.90790                         brush fire
## 1.90793                      santa barbara
## 1.90794                    barbara francis
## 1.90795                       francis gary
## 1.90796                        gary powers
## 1.90804                              2 spy
## 1.90805                          spy plane
## 1.90819                    major political
## 1.90820                   political crisis
## 1.90823               president eisenhower
## 1.90824                  eisenhower powers
## 1.90828                   helicopter pilot
## 1.90835                        los angeles
## 1.90836                    angeles power's
## 1.90837                  power's cameraman
## 1.90843              helicopter apparently
## 1.90844                     apparently ran
## 1.90850                        cargo plane
## 1.90854                       struck trees
## 1.90855                      trees crashed
## 1.90860                        cargo plane
## 1.90861                      plane stalled
## 1.90868                      crashed short
## 1.90872                     runway failure
## 1.90875                    maintain flying
## 1.90876                       flying speed
## 1.90880                           4 engine
## 1.90881                      engine failed
## 1.90882                     failed shortly
## 1.90888                     fire developed
## 1.90892                      plane crashed
## 1.90903                  flight separation
## 1.90908                      hand outboard
## 1.90909                      outboard wing
## 1.90910                       wing section
## 1.90915                           4 engine
## 1.90922                           4 engine
## 1.90923                     engine failure
## 1.90926                    internal engine
## 1.90927                        engine fire
## 1.90934                      aircraft fuel
## 1.90935                        fuel system
## 1.90936                  system eventually
## 1.90937               eventually resulting
## 1.90941                   massive external
## 1.90942                      external fire
## 1.90943                        fire struck
## 1.90946                      mountain peak
## 1.90950                    cajas mountains
## 1.90953                       poor weather
## 1.90954                     weather flying
## 1.90955                         flying vfr
## 1.90958                     ifr conditions
## 1.90959                 conditions crashed
## 1.90962                       level flight
## 1.90965                         mt iliamna
## 1.90966                    iliamna glacier
## 1.90969                         7,000 feet
## 1.90970                       feet failure
## 1.90974                        flight crew
## 1.90978                proper navigational
## 1.90979            navigational procedures
## 1.90993                       backup means
## 1.91005                    flight recovery
## 1.91018                      eastern burma
## 1.91021                        cargo plane
## 1.91025                      gain altitude
## 1.91033                          trees 2.5
## 1.91034                          2.5 miles
## 1.91048                    takeoff crashed
## 1.91052                      mountain peak
## 1.91056                      manzano range
## 1.91057                      range shortly
## 1.91070                    observed flying
## 1.91079              controller's warnings
## 1.91080                   warnings fatigue
## 1.91089                   accident crashed
## 1.91090                      crashed short
## 1.91101                      reduced power
## 1.91115                       level flight
## 1.91118                    aircraft struck
## 1.91121                             hill 4
## 1.91122                            4 miles
## 1.91123                        miles short
## 1.91131                       vor approach
## 1.91135                  thunderstorm crew
## 1.91136                         crew error
## 1.91137                    error descended
## 1.91142                      crew diverted
## 1.91145                            mc comb
## 1.91149                           low fuel
## 1.91152                       engines quit
## 1.91161                     forced landing
## 1.91170                       plane struck
## 1.91171                       struck trees
## 1.91178                     forced landing
## 1.91183                         field lead
## 1.91184                        lead singer
## 1.91185                      singer ronnie
## 1.91186                         ronnie van
## 1.91187                           van zant
## 1.91188                            zant 29
## 1.91189                       29 guitarist
## 1.91190                   guitarist stevie
## 1.91191                      stevie gaines
## 1.91195                    vocalist cassie
## 1.91196                      cassie gaines
## 1.91199                  assistant manager
## 1.91200                       manager dean
## 1.91201                    dean kilpatrick
## 1.91205                     lynyrd skynyrd
## 1.91206                       skynyrd band
## 1.91207                        band killed
## 1.91217                       injured fuel
## 1.91218                    fuel exhaustion
## 1.91219                     exhaustion due
## 1.91222                   crew inattention
## 1.91226                        fuel supply
## 1.91227                supply contributing
## 1.91228               contributing factors
## 1.91231                    improper flight
## 1.91232                    flight planning
## 1.91240                           2 engine
## 1.91247                        normal fuel
## 1.91248                   fuel consumption
## 1.91253                    water container
## 1.91269                    ground shearing
## 1.91273                         tail rotor
## 1.91281                      tail assembly
## 1.91289                             ch 53s
## 1.91297                         main rotor
## 1.91316                         tail rotor
## 1.91322                    increased power
## 1.91323                      power created
## 1.91327                         main rotor
## 1.91338                   lose directional
## 1.91339                directional heading
## 1.91340                   heading sikorsky
## 1.91341                     sikorsky warns
## 1.91355                  sikorsky designed
## 1.91360                         bell crank
## 1.91361                       crank system
## 1.91366                         rear rotor
## 1.91379                         bell crank
## 1.91380                       crank system
## 1.91381                       system gross
## 1.91382                       gross weight
## 1.91386                 container exceeded
## 1.91389                   lifting capacity
## 1.91399                passengers exploded
## 1.91400                   exploded crashed
## 1.91407                        cargo plane
## 1.91408                       plane failed
## 1.91411                      gain altitude
## 1.91418                    aircraft landed
## 1.91419                       landed 1,000
## 1.91420                           1,000 ft
## 1.91421                            ft past
## 1.91430                         heavy rain
## 1.91431                       rain overran
## 1.91443                    landing attempt
## 1.91444               attempt hydroplaning
## 1.91445                   hydroplaning due
## 1.91448                      poor drainage
## 1.91452                   runway excessive
## 1.91453                    excessive speed
## 1.91464                              44 ft
## 1.91472                      runway flying
## 1.91475                             150 kt
## 1.91479                        sudden tail
## 1.91480                          tail wind
## 1.91481                     wind increases
## 1.91486                             155 kt
## 1.91487                           kt cross
## 1.91488                        cross winds
## 1.91495                     plane unstable
## 1.91496                      unstable tail
## 1.91497                         tail winds
## 1.91498                   winds alternated
## 1.91501                      frontal winds
## 1.91505                     speed unstable
## 1.91517                        cross winds
## 1.91536                     flight crashed
## 1.91544                    landing attempt
## 1.91545                 attempt procedural
## 1.91546                   procedural error
## 1.91553                     final approach
## 1.91560                      ils procedure
## 1.91570                         vor signal
## 1.91571                     signal crashed
## 1.91574                    mountains north
## 1.91582                    adverse weather
## 1.91583                 weather conditions
## 1.91593                  scheduled airport
## 1.91594                        airport due
## 1.91604                  alternate airport
## 1.91605                        airport ran
## 1.91621                         7,000 feet
## 1.91629                   aircraft crashed
## 1.91633                     swamp collided
## 1.91636                        cable crane
## 1.91637                        crane crane
## 1.91638                     crane operator
## 1.91639                    operator failed
## 1.91642                         park crane
## 1.91643                         crane boom
## 1.91646                    stowed position
## 1.91657                     steep attitude
## 1.91670                         plane flew
## 1.91674                           4,200 ft
## 1.91675                        ft mountain
## 1.91678                           1,200 ft
## 1.91681                      plane crashed
## 1.91688                         fog killed
## 1.91692                  entire evansville
## 1.91693              evansville basketball
## 1.91694                    basketball team
## 1.91702                    rudder remained
## 1.91703                    remained locked
## 1.91710                extremely difficult
## 1.91715                  attempted takeoff
## 1.91722                    aileron control
## 1.91723                      control locks
## 1.91724                    locks installed
## 1.91730                    rearward center
## 1.91733                 gravity improperly
## 1.91734                  improperly loaded
## 1.91735                     loaded luggage
## 1.91740                    rearward center
## 1.91748                aircraft's rotating
## 1.91754               attitude immediately
## 1.91763                   reversed command
## 1.91776                    holding pattern
## 1.91783                        cargo plane
## 1.91784                       plane cashed
## 1.91787                           7,600 ft
## 1.91788                        ft mountain
## 1.91791              approach controller's
## 1.91792              controller's issuance
## 1.91796                      flight crew's
## 1.91797                  crew's acceptance
## 1.91803                  ambiguous holding
## 1.91804                  holding clearance
## 1.91810                      flight crew's
## 1.91811                     crew's failure
## 1.91816              prescribed impairment
## 1.91819          communications procedures
## 1.91822                 prescribed holding
## 1.91823                 holding procedures
## 1.91828                      flight crew's
## 1.91829                     crew's actions
## 1.91834                    probable habits
## 1.91837            imprecise communication
## 1.91841                imprecise adherence
## 1.91844               procedures developed
## 1.91854                  radar environment
## 1.91855           environment contributing
## 1.91867                       1 electrical
## 1.91868                  electrical system
## 1.91871                    unknown reasons
## 1.91872                    reasons ditched
## 1.91881                      approach crew
## 1.91882                         crew error
## 1.91883                      error sensory
## 1.91884                   sensory illusion
## 1.91890                     forced landing
## 1.91894                         ocean fuel
## 1.91895                    fuel exhaustion
## 1.91896              exhaustion inadequate
## 1.91897               inadequate preflight
## 1.91898                 preflight planning
## 1.91899             planning mismanagement
## 1.91902                       fuel crashed
## 1.91911                     landing flying
## 1.91916                     ifr conditions
## 1.91926                       plane rolled
## 1.91932                         90 degrees
## 1.91937                         steep dive
## 1.91938                       dive crashed
## 1.91943                      shallow water
## 1.91944                   water irrational
## 1.91945                 irrational control
## 1.91946                      control wheel
## 1.91947                       wheel inputs
## 1.91957                  attitude director
## 1.91958                 director indicator
## 1.91959            indicator malfunctioned
## 1.91960              malfunctioned leading
## 1.91963                      complete loss
## 1.91966              situational awareness
## 1.91967                   awareness struck
## 1.91968                       struck cerro
## 1.91969                      cerro granada
## 1.91972                          6800 feet
## 1.91975                       mountain fog
## 1.91976                        fog crashed
## 1.91981                   passenger flight
## 1.91982                   flight attempted
## 1.91987                  emergency landing
## 1.91990                    artigas airport
## 1.91999                     engine failure
## 1.92005                       wide banking
## 1.92012                    ground bursting
## 1.92017                   aircraft crashed
## 1.92018                    crashed shortly
## 1.92028                           400 feet
## 1.92031                      stalling crew
## 1.92032                         crew error
## 1.92042                      prevent rapid
## 1.92043                      rapid pitchup
## 1.92048                exerting sufficient
## 1.92049                    sufficient push
## 1.92050                         push force
## 1.92054                      control wheel
## 1.92065              mistrimmed horizontal
## 1.92066              horizontal stabilizer
## 1.92075                     aircraft's aft
## 1.92076                          aft limit
## 1.92079               mistrimmed condition
## 1.92080                 condition resulted
## 1.92086                    aircraft's trim
## 1.92087                        trim system
## 1.92091         flightcrew's preoccupation
## 1.92096                   timely departure
## 1.92101                       trim warning
## 1.92102                     warning system
## 1.92107                   aircraft touched
## 1.92113                       crew noticed
## 1.92116                          snow plow
## 1.92128                    thrust reverses
## 1.92136                    hydraulic power
## 1.92139                  automatically cut
## 1.92146                    aircraft missed
## 1.92149                       plow overran
## 1.92152                     runway crashed
## 1.92155                   burned estimated
## 1.92156                     estimated time
## 1.92162                        calgary atc
## 1.92165                         error crew
## 1.92172                     final approach
## 1.92173                    approach beacon
## 1.92174                   beacon continued
## 1.92175                      continued vfr
## 1.92176                         vfr flight
## 1.92179                    adverse weather
## 1.92180                 weather conditions
## 1.92183                     approaching v1
## 1.92184                           v1 speed
## 1.92189                          loud bang
## 1.92200                       crew decided
## 1.92211                 runway approaching
## 1.92214                    captain steered
## 1.92225                       landing gear
## 1.92226                        gear failed
## 1.92234                         plane slid
## 1.92237                  approximately 650
## 1.92238                           650 feet
## 1.92243                            rest 40
## 1.92244                            40 feet
## 1.92249                  runway centerline
## 1.92259                  stewardess exited
## 1.92268                       fire failure
## 1.92275                          left main
## 1.92276                       main landing
## 1.92277                       landing gear
## 1.92278                     gear resulting
## 1.92297                         pilot gene
## 1.92298                      gene hershe's
## 1.92303                    retiring midair
## 1.92304                   midair collision
## 1.92307                    fokker collided
## 1.92314                   performing touch
## 1.92318                     landings error
## 1.92322                          mig pilot
## 1.92323                      pilot sixteen
## 1.92324                     sixteen killed
## 1.92335                   aircraft crashed
## 1.92339                      ocean shortly
## 1.92342                        takeoff due
## 1.92348                 artificial horizon
## 1.92351                      pilot radioed
## 1.92357                 instrument failure
## 1.92370                        sea crashed
## 1.92371                    crashed shortly
## 1.92376             undetermined emergency
## 1.92386                  takeoff resulting
## 1.92394                   aircraft crashed
## 1.92400                      fog continued
## 1.92401                      continued vfr
## 1.92402                         vfr flight
## 1.92405                    adverse weather
## 1.92406                 weather conditions
## 1.92431                       oil drilling
## 1.92432                  drilling platform
## 1.92436                     pilot suffered
## 1.92437                   suffered spatial
## 1.92438             spatial disorientation
## 1.92441                 stalled helicopter
## 1.92447                     forced landing
## 1.92450                         water fuel
## 1.92451                    fuel starvation
## 1.92452         starvation inattentiveness
## 1.92455                        fuel supply
## 1.92456                        supply fuel
## 1.92457                      fuel selector
## 1.92458                selector positioned
## 1.92468                     suffered rapid
## 1.92469                rapid decompression
## 1.92477                    russian fighter
## 1.92483                  emergency landing
## 1.92487                        frozen lake
## 1.92488                       lake crashed
## 1.92496                     bogota shortly
## 1.92502                   aircraft crashed
## 1.92508               precision instrument
## 1.92509                instrument approach
## 1.92516                            12 feet
## 1.92519                            water 3
## 1.92520                               3 nm
## 1.92521                           nm short
## 1.92525                     runway failure
## 1.92531                   monitor altitude
## 1.92534                       descent rate
## 1.92541                        1st officer
## 1.92549                  required altitude
## 1.92552               approach performance
## 1.92553                   performance call
## 1.92554                          call outs
## 1.92558                    flight engineer
## 1.92559                  engineer disabled
## 1.92562                         gpws alarm
## 1.92575                       night flight
## 1.92582                    primary airport
## 1.92583                        airport due
## 1.92586                       poor weather
## 1.92594                compressed approach
## 1.92595                approach descending
## 1.92607                  crucial altimeter
## 1.92608                  altimeter readout
## 1.92613                          drum roll
## 1.92614                       roll counter
## 1.92615                       counter type
## 1.92616                           type due
## 1.92628                     heavy workload
## 1.92629                workload situations
## 1.92632                fatalities occurred
## 1.92636              frightened passengers
## 1.92637                 passengers grabbed
## 1.92640                      seat cushions
## 1.92655                      seat cushions
## 1.92659                 flotation cushions
## 1.92668                floatation cushions
## 1.92678                    flight engineer
## 1.92679              engineer accidentally
## 1.92680                  accidentally shut
## 1.92684             automatic transferring
## 1.92690                          sump tank
## 1.92691                    tank eventually
## 1.92695                    engines stopped
## 1.92699                      plane crashed
## 1.92700                       crashed fuel
## 1.92701                    fuel starvation
## 1.92702                 starvation crashed
## 1.92705                          heavy fog
## 1.92713                 helicopter crashed
## 1.92714                         crashed 87
## 1.92715                           87 miles
## 1.92716                    miles northwest
## 1.92722                          ferry run
## 1.92726                      oil drillilng
## 1.92727                 drillilng platform
## 1.92730                   aircraft overran
## 1.92741                    aborted takeoff
## 1.92742                        takeoff due
## 1.92746                         blown tire
## 1.92750                             3 tire
## 1.92751                        tire failed
## 1.92756                     debris damaged
## 1.92763                      locked switch
## 1.92764                     switch causing
## 1.92767                        gear unsafe
## 1.92768                  unsafe indication
## 1.92772                     cockpit debris
## 1.92780                           2 engine
## 1.92781                     engine causing
## 1.92786                     reverse thrust
## 1.92790                   rejected takeoff
## 1.92793                    aircraft flying
## 1.92794                         flying vfr
## 1.92795                       vfr collided
## 1.92801              deteriorating weather
## 1.92802                  weather condtions
## 1.92814               lacking navigational
## 1.92815             navigational equipment
## 1.92816                  equipment crashed
## 1.92817                    crashed shortly
## 1.92823                          runway 18
## 1.92824                         18 crashed
## 1.92829                   elevator control
## 1.92830                       control stop
## 1.92836                    elevator travel
## 1.92839                                1 1
## 1.92840                                1 2
## 1.92841                          2 degrees
## 1.92844                          normal 20
## 1.92845                         20 degrees
## 1.92846                    degrees crashed
## 1.92855                     aircraft yawed
## 1.92867                          left wing
## 1.92876                     flight failure
## 1.92880                          left hand
## 1.92881                       hand inboard
## 1.92882                       inboard flap
## 1.92883                       flap control
## 1.92884                        control rod
## 1.92890                  sudden retraction
## 1.92894                      complete left
## 1.92895                          left hand
## 1.92896                          hand flap
## 1.92897                        flap system
## 1.92900                        sudden loss
## 1.92910                     kariba airport
## 1.92913                      17.10 shortly
## 1.92916                   departing kariba
## 1.92919                     starboard wing
## 1.92925                              sam 7
## 1.92926                          7 missile
## 1.92934                  emergency landing
## 1.92944                     aircraft crash
## 1.92945                       crash landed
## 1.92946                    landed striking
## 1.92949                   irrigation ditch
## 1.92950                         ditch cart
## 1.92951                       cart wheeled
## 1.92952                      wheeled broke
## 1.92956                        caught fire
## 1.92957                      fire soldiers
## 1.92961                     joshua nkomo's
## 1.92962                   nkomo's zimbabwe
## 1.92963                   zimbabwe peoples
## 1.92964                 peoples revolution
## 1.92965                    revolution army
## 1.92976                          killed 10
## 1.92980                       18 survivors
## 1.92983                remaining survivors
## 1.92991             helicopter experienced
## 1.92992                  experienced rotor
## 1.92993                      rotor failure
## 1.92994                 failure undersized
## 1.92995                 undersized threads
## 1.92998                          anti node
## 1.92999                           node bar
## 1.93000                           bar flew
## 1.93006                        float plane
## 1.93007                         plane flew
## 1.93011                       blind canyon
## 1.93016                    water continued
## 1.93017                      continued vfr
## 1.93018                         vfr flight
## 1.93021                    adverse weather
## 1.93022                 weather conditions
## 1.93025                    domestic flight
## 1.93026                     flight crashed
## 1.93037                         heavy rain
## 1.93040                         wind gusts
## 1.93043                   lightning strike
## 1.93044                      strike midair
## 1.93045                   midair collision
## 1.93056                    lindbergh field
## 1.93065                practice approaches
## 1.93068                       727 overtook
## 1.93082                           psa crew
## 1.93083                          crew lost
## 1.93084                         lost sight
## 1.93100                         atc failed
## 1.93106                  psa transmissions
## 1.93110                         lost sight
## 1.93116                     hundred thirty
## 1.93131                        ground crew
## 1.93132                       crew fatigue
## 1.93145                 unofficial reports
## 1.93149                      crew attended
## 1.93153                        night party
## 1.93158                            2 hours
## 1.93159                        hours sleep
## 1.93170                    engines stalled
## 1.93171                        stalled due
## 1.93175                          damaged 5
## 1.93176                         5 cylinder
## 1.93177                   cylinder exhaust
## 1.93180                    pilot attempted
## 1.93191                         plane lost
## 1.93192                       lost control
## 1.93197                    lake juurusvesi
## 1.93198                    juurusvesi lost
## 1.93207                  emergency landing
## 1.93214                    irrawaddy river
## 1.93217                 military transport
## 1.93218                  transport crashed
## 1.93222                       fog shrouded
## 1.93223                      shrouded hill
## 1.93224                            hill 20
## 1.93225                           20 miles
## 1.93226                        miles south
## 1.93230                       city crashed
## 1.93234                        left engine
## 1.93235                      engine flamed
## 1.93241                         tail rotor
## 1.93242                        rotor pitch
## 1.93243                      pitch control
## 1.93244                     control system
## 1.93245                      system failed
## 1.93246                     failed shortly
## 1.93257                    crashed crashed
## 1.93260                       engine flame
## 1.93264                   icing conditions
## 1.93265                 conditions crashed
## 1.93271                   aircraft crashed
## 1.93272                      crashed short
## 1.93279                 coconut plantation
## 1.93286                         heavy rain
## 1.93287                     rain windshear
## 1.93288                windshear excessive
## 1.93289                     excessive sink
## 1.93290                          sink rate
## 1.93291                        rate crew's
## 1.93296                approach procedures
## 1.93297               procedures incorrect
## 1.93298              incorrect information
## 1.93299               information supplied
## 1.93303                   radar controller
## 1.93304                    controller lack
## 1.93308                  approach lighting
## 1.93309                    lighting system
## 1.93314                      aircraft sank
## 1.93321                          left wing
## 1.93322                           wing tip
## 1.93323                         tip struck
## 1.93328                         heavy rain
## 1.93331                       wind crashed
## 1.93337                       burned short
## 1.93343                experiencing engine
## 1.93344                     engine failure
## 1.93345                    failure crashed
## 1.93349                    rubio mountains
## 1.93350                  mountains crashed
## 1.93353                           rain fog
## 1.93356                        low ceiling
## 1.93357                  ceiling continued
## 1.93358                      continued vfr
## 1.93359                         vfr flight
## 1.93362              deteriorating weather
## 1.93363                 weather conditions
## 1.93364                  conditions forced
## 1.93369                  steamboat springs
## 1.93370                        springs due
## 1.93373                       severe icing
## 1.93376                      plane crashed
## 1.93380                          10,530 ft
## 1.93381                        ft mountain
## 1.93382                    mountain severe
## 1.93383                       severe icing
## 1.93386                strong downdraughts
## 1.93391                      mountain wave
## 1.93398              aircraft's capability
## 1.93401                    maintain flight
## 1.93402                flight contributing
## 1.93409                 captain's decision
## 1.93414                     probable icing
## 1.93415                   icing conditions
## 1.93420              conditions authorized
## 1.93423                 company directives
## 1.93428                        takeoff due
## 1.93434                       leading edge
## 1.93435                         edge slats
## 1.93436                      slats overran
## 1.93445                      3 maintenance
## 1.93446                maintenance workers
## 1.93450                     ground cutting
## 1.93451                      cutting grass
## 1.93452              grass nonavailability
## 1.93455                       leading edge
## 1.93456                       edge devices
## 1.93457                devices immediately
## 1.93465                   aircraft crashed
## 1.93471                   landing approach
## 1.93472                      approach poor
## 1.93473                    poor monitoring
## 1.93485                      visual flight
## 1.93486                  flight procedures
## 1.93497                       aircraft ran
## 1.93509                       landing gear
## 1.93517                   monitor properly
## 1.93520                    aircraft's fuel
## 1.93525                   properly respond
## 1.93529                           low fuel
## 1.93549                        flight crew
## 1.93564           successfully communicate
## 1.93572                     pilot switched
## 1.93576                           de icing
## 1.93577                       icing system
## 1.93587                   icing conditions
## 1.93593                    aircraft losing
## 1.93594                losing longitudinal
## 1.93595             longitudinal stability
## 1.93601                    crashed crashed
## 1.93602                      crashed short
## 1.93608                      approach crew
## 1.93609                         crew error
## 1.93614                   proper procedure
## 1.93615                     procedure lack
## 1.93618                  crew coordination
## 1.93619                  coordination crew
## 1.93620                       crew fatigue
## 1.93623                   faulty altimiter
## 1.93624                   altimiter struck
## 1.93627                   mountain failure
## 1.93637                prescribed altitude
## 1.93642              inadequate monitoring
## 1.93646                  altimeter setting
## 1.93647                      setting error
## 1.93654                        qfe contact
## 1.93658                        cargo plane
## 1.93661                            lost 30
## 1.93662                         30 minutes
## 1.93668                       tokyo narita
## 1.93669                 narita airport.the
## 1.93670                  airport.the cargo
## 1.93671                     cargo included
## 1.93672                       included 153
## 1.93673                      153 paintings
## 1.93676                        manabu mabe
## 1.93677                     mabe returning
## 1.93681                   tokyo exhibition
## 1.93682                  exhibition valued
## 1.93686                       1.24 million
## 1.93705             cabin depressurization
## 1.93710                           crew hit
## 1.93711                          hit trees
## 1.93716                     flames shortly
## 1.93726                          2 surface
## 1.93729                       air missiles
## 1.93740                      plane crashed
## 1.93741                   crashed inverted
## 1.93742                   inverted shortly
## 1.93750                 captain's decision
## 1.93759                    aircraft's wing
## 1.93762                 empennage surfaces
## 1.93770                    lateral control
## 1.93779                  aircraft ascended
## 1.93783                      ground effect
## 1.93784                        effect flew
## 1.93791                       ils approach
## 1.93799                    visual illusion
## 1.93804                 reduced visibility
## 1.93812                        safe height
## 1.93820                 flight instruments
## 1.93821           instruments sufficiently
## 1.93826                aircraft maintained
## 1.93829                      safe approach
## 1.93830                      approach path
## 1.93833                      plane crashed
## 1.93837                      bomb exploded
## 1.93838                    exploded aboard
## 1.93841                       plane failed
## 1.93844                    maintain flying
## 1.93845                       flying speed
## 1.93854                  improperly loaded
## 1.93855                    loaded aircraft
## 1.93856                      aircraft nose
## 1.93857                       nose baggage
## 1.93858                       baggage door
## 1.93862                      takeoff flaps
## 1.93863                  flaps inoperative
## 1.93864               inoperative improper
## 1.93865                 improper emergency
## 1.93866               emergency procedures
## 1.93867              procedures inadequate
## 1.93868               inadequate emergency
## 1.93869                 emergency training
## 1.93872                      plane ditched
## 1.93875                       santa monica
## 1.93876                         monica bay
## 1.93879                         marina del
## 1.93880                            del rey
## 1.93881                        rey shortly
## 1.93887                       santa monica
## 1.93888                     monica airport
## 1.93891                      flight crew's
## 1.93892               crew's mismanagement
## 1.93896                emergency procedure
## 1.93904                     hand propeller
## 1.93913                   remaining engine
## 1.93921                 propeller pressure
## 1.93922                      pressure line
## 1.93932                        left engine
## 1.93939                        flight crew
## 1.93940                        crew failed
## 1.93949               autofeather occurred
## 1.93954                         left power
## 1.93955                        power lever
## 1.93959                      stop position
## 1.93960              position contributing
## 1.93969                      vital restart
## 1.93970                restart information
## 1.93976                   aircraft crashed
## 1.93996                  missed approaches
## 1.94001                     pilot declined
## 1.94004             controllers suggestion
## 1.94011                    aircraft landed
## 1.94012                     landed heavily
## 1.94016                         runway due
## 1.94019                 windshear suffered
## 1.94020                   suffered landing
## 1.94021                       landing gear
## 1.94022                        gear damage
## 1.94023                      damage veered
## 1.94032                       fire station
## 1.94033                   station building
## 1.94039                  terminal building
## 1.94049                         alive fire
## 1.94052                       spilled fuel
## 1.94053                       fuel started
## 1.94054                    started shortly
## 1.94074                   aircarft crashed
## 1.94077                      freezing rain
## 1.94080                        fog shortly
## 1.94094                  experience flying
## 1.94097                      aircraft type
## 1.94100                        cargo plane
## 1.94101                         plane lost
## 1.94105                           2 engine
## 1.94108                    takeoff overran
## 1.94111                     runway crashed
## 1.94115                      ils localizer
## 1.94116                  localizer antenna
## 1.94117                      antenna broke
## 1.94121                        caught fire
## 1.94122                        fire engine
## 1.94123                     engine failure
## 1.94124                    failure shortly
## 1.94127                     takeoff caused
## 1.94128                      caused damage
## 1.94132                       landing gear
## 1.94139                    increasing drag
## 1.94143                  critical climbout
## 1.94144                     climbout phase
## 1.94145                     phase airspeed
## 1.94146                    airspeed slowed
## 1.94150                   aircraft crashed
## 1.94158                       plane struck
## 1.94159                        struck boat
## 1.94160                         boat wakes
## 1.94165                  passenger drowned
## 1.94166                       drowned tail
## 1.94167                         tail rotor
## 1.94168                    rotor separated
## 1.94171                     flight shortly
## 1.94176             helicopter autorotated
## 1.94179                    crashed fatigue
## 1.94180                   fatigue fracture
## 1.94183                         tail rotor
## 1.94186               aircraft disappeared
## 1.94189                           en route
## 1.94190                     route wreckage
## 1.94200                        cargo plane
## 1.94201                      plane crashed
## 1.94204                    heavy crosswind
## 1.94209                 takeoff inadequate
## 1.94210               inadequate preflight
## 1.94211              preflight preparation
## 1.94215                     planning pilot
## 1.94218                     command failed
## 1.94221                    follow approved
## 1.94222                approved procedures
## 1.94223              procedures directives
## 1.94226                      cargo shifted
## 1.94233                       plane lifted
## 1.94239                        left engine
## 1.94242                    pylon separated
## 1.94246                  aircraft damaging
## 1.94251                   hydraulic system
## 1.94262                       single plane
## 1.94263                        plane death
## 1.94264                         death toll
## 1.94267                       u.s aviation
## 1.94268                   aviation history
## 1.94269               history asymmetrical
## 1.94270                 asymmetrical stall
## 1.94274                       ensuing roll
## 1.94282             uncommanded retraction
## 1.94286                          left wing
## 1.94287                      wing outboard
## 1.94288                   outboard leading
## 1.94289                       leading edge
## 1.94290                         edge slats
## 1.94296                      stall warning
## 1.94299                  slat disagreement
## 1.94300            disagreement indication
## 1.94301                 indication systems
## 1.94302                     systems caused
## 1.94310                     pylon improper
## 1.94311               improper maintenance
## 1.94312             maintenance procedures
## 1.94316                  american airlines
## 1.94331                     putting strain
## 1.94335                      engine mounts
## 1.94336                     mounts leading
## 1.94339                      stress cracks
## 1.94340                     cracks crashed
## 1.94344                     atlantic ocean
## 1.94348                 blinding sandstorm
## 1.94351                       pilot unable
## 1.94354                           land due
## 1.94358                   sandstorm headed
## 1.94368                  accident occurred
## 1.94371                   aircraft crashed
## 1.94380                 precision approach
## 1.94385                        fog failure
## 1.94388                  arrest aircraft's
## 1.94389                 aircraft's descent
## 1.94390                       descent rate
## 1.94396                   sight inordinate
## 1.94397              inordinate management
## 1.94398               management pressures
## 1.94402                 officer's marginal
## 1.94403                marginal instrument
## 1.94404             instrument proficiency
## 1.94407               captain's inadequate
## 1.94408             inadequate supervision
## 1.94412                  flight inadequate
## 1.94413                    inadequate crew
## 1.94414                      crew training
## 1.94418                  captain's chronic
## 1.94419                    chronic fatigue
## 1.94426                   accident crashed
## 1.94430                       karmwal pass
## 1.94433                          16,000 ft
## 1.94434                        ft mountain
## 1.94435                        mountain 10
## 1.94436                         10 minutes
## 1.94444                      plane crashed
## 1.94448                     heavily wooded
## 1.94452                          1.5 miles
## 1.94453                    miles northeast
## 1.94456               barnstable municipal
## 1.94457                  municipal airport
## 1.94462                       ils approach
## 1.94475                      timely manner
## 1.94479                    gross deviation
## 1.94482                acceptable approach
## 1.94483                approach parameters
## 1.94484               parameters resulting
## 1.94495                    decision height
## 1.94499                 precision approach
## 1.94502                     visual contact
## 1.94506                 runway environment
## 1.94507                  environment pilot
## 1.94508                      pilot fatigue
## 1.94509                     fatigue struck
## 1.94510                          struck mt
## 1.94511                         mt sebayak
## 1.94514                           5,500 ft
## 1.94518                     approach pilot
## 1.94519                    pilot error.the
## 1.94520                    error.the plane
## 1.94523                    named mamberamo
## 1.94524                  mamberamo crashed
## 1.94528                        rain forest
## 1.94529                       forest pilot
## 1.94532                 command continuing
## 1.94540                        lost visual
## 1.94541                   visual reference
## 1.94550                 aircraft colliding
## 1.94553                    terrain crashed
## 1.94556                        low ceiling
## 1.94559                      rain fluxgate
## 1.94560                   fluxgate compass
## 1.94561                compass inoperative
## 1.94565                       chafed wires
## 1.94570                     practice touch
## 1.94576                        plane yawed
## 1.94586                  inverted attitude
## 1.94589                  aircraft attained
## 1.94603                       pilot's loss
## 1.94615                 aircraft's grossly
## 1.94616                 grossly overweight
## 1.94621                  balance condition
## 1.94629                     company's load
## 1.94630                       load control
## 1.94631                  control personnel
## 1.94648                 loading procedures
## 1.94649                 procedures crashed
## 1.94661                   locked condition
## 1.94675                    flying attitude
## 1.94676                      attitude gust
## 1.94677                          gust lock
## 1.94683                         pre flight
## 1.94684                       flight check
## 1.94687                   aircraft crashed
## 1.94688                      crashed 1,000
## 1.94689                         1,000 feet
## 1.94690                         feet short
## 1.94697                    landing attempt
## 1.94700                       akron canton
## 1.94701                    canton airfield
## 1.94702                  airfield baseball
## 1.94703                    baseball player
## 1.94704                     player thurman
## 1.94705                     thurman munson
## 1.94706                          munson 32
## 1.94714                      killed munson
## 1.94718                practicing takeoffs
## 1.94721                   landings allowed
## 1.94735                           10 knots
## 1.94738                       safe landing
## 1.94739                      landing speed
## 1.94740                      speed crashed
## 1.94741                        crashed due
## 1.94744                     engine failure
## 1.94747                   approach crashed
## 1.94751                       kiroli hills
## 1.94759                    night momentary
## 1.94760             momentary intermittent
## 1.94761                  intermittent loss
## 1.94764                 electrical contact
## 1.94778               erroneous impression
## 1.94785                        glide slope
## 1.94786                       slope midair
## 1.94787                   midair collision
## 1.94790                          27,200 ft
## 1.94791                      ft separation
## 1.94792                   separation error
## 1.94795                        air traffic
## 1.94796                 traffic controller
## 1.94808                     65816 fourteen
## 1.94809                   fourteen players
## 1.94812                            3 staff
## 1.94817                     russian soccer
## 1.94818                        soccer team
## 1.94819                     team pakhtakor
## 1.94820                 pakhtakor tashkent
## 1.94823                     killed crashed
## 1.94832                     engines flamed
## 1.94835                 fuel contamination
## 1.94838                      aircraft lost
## 1.94839                       lost control
## 1.94849                   uncommanded flap
## 1.94850                     flap extension
## 1.94855                    plane undershot
## 1.94860                    crashed crashed
## 1.94871               transporting company
## 1.94872                  company employees
## 1.94876                       hit surveyor
## 1.94877                  surveyor mountain
## 1.94878                         mountain 7
## 1.94879                          7 minutes
## 1.94885                      klamath falls
## 1.94888                          plane hit
## 1.94889                          hit trees
## 1.94896                     mountain ridge
## 1.94900                        flight path
## 1.94901                          path crew
## 1.94902                         crew error
## 1.94905                    crew's decision
## 1.94915                       cruise speed
## 1.94916                       speed flight
## 1.94919                       low altitude
## 1.94922                       aircraft hit
## 1.94930                           2,000 ft
## 1.94936                       poor weather
## 1.94937                     weather crew's
## 1.94938                crew's misjudgement
## 1.94944                       low altitude
## 1.94945                    altitude flight
## 1.94946                     flight profile
## 1.94949                     inadequate atc
## 1.94950                     atc assistance
## 1.94951                  assistance struck
## 1.94956                          thick fog
## 1.94957                        fog crashed
## 1.94960                   attempting touch
## 1.94982                  attitude striking
## 1.94991                   aircraft overran
## 1.94999                          left wing
## 1.95002                    tail separating
## 1.95012                       crew touched
## 1.95029                   stabilized final
## 1.95030                     final approach
## 1.95039                    braking systems
## 1.95046                 adverse conditions
## 1.95049                      plane crashed
## 1.95052                     engine failure
## 1.95055               undetermined reasons
## 1.95056                   reasons improper
## 1.95057                      improper flap
## 1.95058                flap configueration
## 1.95059               configueration plane
## 1.95060                   plane overloaded
## 1.95061                 overloaded hurried
## 1.95062                  hurried departure
## 1.95063               departure inadequate
## 1.95064                  inadequate flight
## 1.95065                    flight training
## 1.95068                        cargo plane
## 1.95069                      plane crashed
## 1.95072                   takeoff improper
## 1.95073                   improper loading
## 1.95076                    aircraft struck
## 1.95084                      closed runway
## 1.95089                       tower warned
## 1.95097                      closed runway
## 1.95103              meteorological minima
## 1.95107                 approach procedure
## 1.95110                    cleared failure
## 1.95116               aircraft's operating
## 1.95117               operating procedures
## 1.95121                     approach phase
## 1.95127                      runway closed
## 1.95132                           en route
## 1.95139                   explosive device
## 1.95140                   device detonated
## 1.95144                baggage compartment
## 1.95154               approximately 34,500
## 1.95155                        34,500 feet
## 1.95159                        flight crew
## 1.95160                   crew experienced
## 1.95169                        thump smoke
## 1.95170                 smoke subsequently
## 1.95171                subsequently filled
## 1.95183                  emergency landing
## 1.95186                  washington dulles
## 1.95187                     dulles airport
## 1.95213                         april 1996
## 1.95216              subsequently received
## 1.95219                      life sentence
## 1.95222                        cargo plane
## 1.95223                    plane descended
## 1.95227                    decision height
## 1.95231                 established ground
## 1.95232                     ground contact
## 1.95244                  aircraft attained
## 1.95259                progressive failure
## 1.95263              aircraft's electrical
## 1.95264                  electrical system
## 1.95265                     system leading
## 1.95271                erratic performance
## 1.95275                    critical flight
## 1.95276                 flight instruments
## 1.95279                  flight instrument
## 1.95280                instrument lighting
## 1.95288                   night instrument
## 1.95289          instrument meteorological
## 1.95290           meteorological condition
## 1.95299                        flight crew
## 1.95305          instrumentation anomalies
## 1.95308                   determine proper
## 1.95309                    proper aircraft
## 1.95310                  aircraft attitude
## 1.95311                 attitude reference
## 1.95317                       lost control
## 1.95323                     crew's efforts
## 1.95326                     regain control
## 1.95330                   aircraft imposed
## 1.95331                imposed aerodynamic
## 1.95332                  aerodynamic loads
## 1.95335                    exceeded design
## 1.95336                      design limits
## 1.95358                    cabin attendant
## 1.95359                 attendant reported
## 1.95365                          aft cabin
## 1.95368                  seventeen minutes
## 1.95372                   aircraft crashed
## 1.95376                       rocky desert
## 1.95381                  emergency landing
## 1.95391                 passenger possibly
## 1.95395                   leaking kerosene
## 1.95396                     kerosene stove
## 1.95397                      stove carried
## 1.95398                     carried aboard
## 1.95402                        haj pilgrim
## 1.95403                  pilgrim passenger
## 1.95406                   aircraft crashed
## 1.95412                          mt erebus
## 1.95416                 sightseeing flight
## 1.95421                 incorrect computer
## 1.95422                    computer stored
## 1.95423                      stored flight
## 1.95424                        flight plan
## 1.95425                      plan resulted
## 1.95429                 navigational error
## 1.95430                    error directing
## 1.95435                          mt erebus
## 1.95441                     crew descended
## 1.95444                authorized altitude
## 1.95445              altitude contributing
## 1.95452                crew's inexperience
## 1.95457                    antarctic route
## 1.95458                  route information
## 1.95462                navigational errors
## 1.95467                 officials shifting
## 1.95468                     shifting cargo
## 1.95469                       cargo caused
## 1.95474                       lose control
## 1.95480                     hotel impacted
## 1.95496                    domestic flight
## 1.95497                          flight 20
## 1.95498                           20 miles
## 1.95502                 destination severe
## 1.95503               severe thunderstorms
## 1.95517                      crash crashed
## 1.95520                         cubuk hill
## 1.95543                       ils approach
## 1.95546                       poor weather
## 1.95547             weather conditions.the
## 1.95548            conditions.the aircraft
## 1.95551                      named trabzon
## 1.95552                    trabzon crashed
## 1.95568                    poor visibility
## 1.95571                           en route
## 1.95578                          45 minute
## 1.95579                       minute fight
## 1.95584                        baton rouge
## 1.95585                    rouge louisiana
## 1.95588                   aircraft climbed
## 1.95589                       climbed past
## 1.95592                  assigned altitude
## 1.95607                    success fighter
## 1.95608                       fighter jets
## 1.95628                        radio calls
## 1.95631                         plane rose
## 1.95637                        41,600 feet
## 1.95645                   plane eventually
## 1.95646                     eventually ran
## 1.95650                     fuel descended
## 1.95654                        25,000 feet
## 1.95663                         1,100 feet
## 1.95677                    remains unknown
## 1.95684                     occupants lost
## 1.95685                 lost consciousness
## 1.95686                  consciousness due
## 1.95689                 oxygen deprivation
## 1.95690              deprivation louisiana
## 1.95693                university football
## 1.95694                     football coach
## 1.95695                       coach robert
## 1.95696                          robert bo
## 1.95697                            bo rein
## 1.95698                            rein 34
## 1.95701                     killed crashed
## 1.95702                  crashed continued
## 1.95703                      continued vfr
## 1.95704                         vfr flight
## 1.95707                    adverse weather
## 1.95708                 weather conditions
## 1.95711                   aircraft crashed
## 1.95718                    landing attempt
## 1.95723                   snow inoperative
## 1.95724                 inoperative ground
## 1.95725                       ground radar
## 1.95726                  radar inoperative
## 1.95727                    inoperative ils
## 1.95732                       named shiraz
## 1.95733                         shiraz hit
## 1.95738                           2,700 ft
## 1.95741                       poor weather
## 1.95745                   approach crashed
## 1.95753                  emergency landing
## 1.95760                     engine crashed
## 1.95767             helicopter experienced
## 1.95768         experienced uncontrollable
## 1.95769        uncontrollable overspeeding
## 1.95772                      airborne lost
## 1.95773                         lost power
## 1.95776                    crashed crashed
## 1.95780                           sea wall
## 1.95783                             2 feet
## 1.95784                         feet short
## 1.95792                  emergency landing
## 1.95795                   bicyclist riding
## 1.95799                         runway led
## 1.95806                  premature liftoff
## 1.95807                  liftoff resulting
## 1.95815              carrying paratroopers
## 1.95818                 aircraft undershot
## 1.95827                   outboard engines
## 1.95828                      engines broke
## 1.95829                        broke loose
## 1.95838                         fire broke
## 1.95842                     spread rapidly
## 1.95843                      rapidly pilot
## 1.95844                        pilot error
## 1.95853                     crew initiated
## 1.95856                overshoot procedure
## 1.95864                       landing gear
## 1.95875                           2 engine
## 1.95876               engine disintegrated
## 1.95877             disintegrated damaging
## 1.95887                   elevator control
## 1.95888                      control lines
## 1.95891                      plane crashed
## 1.95894                          half mile
## 1.95898                   runway threshold
## 1.95899                    threshold metal
## 1.95900                      metal fatigue
## 1.95905                           2 engine
## 1.95906                     engine turbine
## 1.95907                       turbine disc
## 1.95910                      dead included
## 1.95911                        included 22
## 1.95916                         u.s boxing
## 1.95917                        boxing team
## 1.95920                      polish singer
## 1.95921                        singer anna
## 1.95922                        anna jantar
## 1.95927                      named mikolaj
## 1.95928                   mikolaj kopernik
## 1.95929                   kopernik crashed
## 1.95932                      hilly terrain
## 1.95936                          left wing
## 1.95937                      wing exploded
## 1.95946                       incirlik air
## 1.95947                           air base
## 1.95951                      engine failed
## 1.95957                      plane plunged
## 1.95961                      ground struck
## 1.95969                        parked cars
## 1.95981                      engine failed
## 1.95984               undetermined reasons
## 1.95985                   reasons improper
## 1.95986                 improper emergency
## 1.95987               emergency procedures
## 1.95993                 properly configure
## 1.95994                 configure aircraft
## 1.95997                   land immediately
## 1.95998                immediately crashed
## 1.96002                        sea fatigue
## 1.96003                   fatigue fracture
## 1.96007                         main rotor
## 1.96010                      plane crashed
## 1.96021                    pilot misjudged
## 1.96034                    improper flight
## 1.96035                 flight supervision
## 1.96043                      plane crashed
## 1.96048                  emergency landing
## 1.96052                     starboard main
## 1.96053                          main gear
## 1.96054                         gear broke
## 1.96062                         u.s marine
## 1.96063                       marine corps
## 1.96064                           corps rh
## 1.96065                             rh 53d
## 1.96066                            53d sea
## 1.96067                       sea stallion
## 1.96068                stallion helicopter
## 1.96072                     hostage rescue
## 1.96073                   rescue operation
## 1.96080                      plane crashed
## 1.96084                     mountain 5,500
## 1.96085                           5,500 ft
## 1.96089                            300 mph
## 1.96101                    holding pattern
## 1.96115                   correct altitude
## 1.96116                      altitude lack
## 1.96127                   aircraft entered
## 1.96139                           ground 8
## 1.96140                               8 nm
## 1.96141                       nm northeast
## 1.96144              bangkok international
## 1.96145              international airport
## 1.96148                     pilot directed
## 1.96158                  dissipating stage
## 1.96163                  severely affected
## 1.96169                      lost altitude
## 1.96170                   altitude rapidly
## 1.96181                           1,500 ft
## 1.96188                  maintain altitude
## 1.96189                altitude procedural
## 1.96190                   procedural error
## 1.96199                    weather warning
## 1.96205                      weather radar
## 1.96213                     severe weather
## 1.96214                    weather crashed
## 1.96218                  tapecua mountains
## 1.96219             mountains accidentally
## 1.96220                  accidentally shot
## 1.96224                      anti aircraft
## 1.96225                      aircraft fire
## 1.96226                      fire deviated
## 1.96239                      cloud covered
## 1.96240                   covered mountain
## 1.96245               thunderstorm massive
## 1.96246                    massive amounts
## 1.96254                         lose power
## 1.96270                       field engine
## 1.96271                     engine failure
## 1.96272                        failure due
## 1.96275                  massive ingestion
## 1.96281                       engines crew
## 1.96282                         crew error
## 1.96283                       error unwise
## 1.96284                    unwise decision
## 1.96291             thunderstorms critical
## 1.96292                   critical weather
## 1.96297                         libyan mig
## 1.96298                       mig aircraft
## 1.96299                 aircraft concealed
## 1.96303                    radar detection
## 1.96306                     flying closely
## 1.96310                               dc 9
## 1.96335                         shot fired
## 1.96339                  migs accidentally
## 1.96340                accidentally struck
## 1.96341                      struck itavia
## 1.96342                      itavia flight
## 1.96343                         flight 870
## 1.96346                  aircraft exploded
## 1.96356                    report released
## 1.96359                        1994 stated
## 1.96366                   explosive device
## 1.96367                      device aboard
## 1.96370                   aircraft causing
## 1.96375                   aircraft crashed
## 1.96385                   takeoff reaching
## 1.96391                             500 ft
## 1.96392                       ft windshear
## 1.96395                        cargo plane
## 1.96396                      plane crashed
## 1.96402                    poor visibility
## 1.96403                 visibility crashed
## 1.96406                      continued vfr
## 1.96407                         vfr flight
## 1.96410                    adverse weather
## 1.96411                 weather conditions
## 1.96414                  windshield wipers
## 1.96415                  wipers unreliable
## 1.96416                unreliable attitude
## 1.96417                 attitude indicator
## 1.96424                   aircraft touched
## 1.96428                        water 1,000
## 1.96429                           1,000 ft
## 1.96430                           ft short
## 1.96436                 flight experienced
## 1.96442                          aft cargo
## 1.96443                  cargo compartment
## 1.96444                      compartment 6
## 1.96445                          6 minutes
## 1.96453                     plane returned
## 1.96476                          fire half
## 1.96483                    captain decided
## 1.96489               emergency evacuation
## 1.96497                   stop immediately
## 1.96505                     normal landing
## 1.96506                   landing delaying
## 1.96509                     fire equipment
## 1.96538                         cabin crew
## 1.96552                       maximum stop
## 1.96553                       stop landing
## 1.96565                     tail separated
## 1.96571                   aircraft crashed
## 1.96575                       swamp broken
## 1.96576                      broken spigot
## 1.96577                     spigot fitting
## 1.96584                    elevator torque
## 1.96585                        torque tube
## 1.96586                      tube assembly
## 1.96594                   required crashed
## 1.96602                           en route
## 1.96605                     wing separated
## 1.96609                        cargo plane
## 1.96618                    wing attachment
## 1.96619                   attachment bolts
## 1.96620                       bolts failed
## 1.96625                   aircraft crashed
## 1.96629                     atlantic ocean
## 1.96632                             3.5 nm
## 1.96633                              nm sw
## 1.96640                        low ceiling
## 1.96643              thunderstorm activity
## 1.96651            determined contributing
## 1.96652               contributing factors
## 1.96653                    factors include
## 1.96654                     include flight
## 1.96657              thunderstorm activity
## 1.96660               malfunctioning pitot
## 1.96661                         pitot tube
## 1.96664               improper supervision
## 1.96667                 airline management
## 1.96668                 management crashed
## 1.96675                     engine crashed
## 1.96687                        flight fire
## 1.96688                       fire crashed
## 1.96689                    crashed shortly
## 1.96697                   afghan guerrilla
## 1.96698                   guerrilla forces
## 1.96704                     land descended
## 1.96708                     excessive sink
## 1.96709                          sink rate
## 1.96713                       banked angle
## 1.96727                      cairo airport
## 1.96728                  airport undershot
## 1.96729                   undershot runway
## 1.96736                           fog crew
## 1.96737                         crew error
## 1.96740                   aircraft crashed
## 1.96746                           9,500 ft
## 1.96751                     land continued
## 1.96752                      continued vfr
## 1.96753                         vfr flight
## 1.96756              deteriorating weather
## 1.96759                       low altitude
## 1.96766                        cargo plane
## 1.96767                      plane entered
## 1.96770                         steep bank
## 1.96771                       bank shortly
## 1.96776                   crashed complete
## 1.96777                    complete engine
## 1.96778                     engine failure
## 1.96779                   failure flameout
## 1.96782                           1 engine
## 1.96783                  engine powerplant
## 1.96784                 powerplant failure
## 1.96787               undetermined reasons
## 1.96788                      reasons pilot
## 1.96791                     command failed
## 1.96794                    obtain maintain
## 1.96795                    maintain flying
## 1.96796                       flying speed
## 1.96797                     speed improper
## 1.96798                 improper emergency
## 1.96799               emergency procedures
## 1.96802                     aircraft broke
## 1.96808                        bad weather
## 1.96816                          5 minutes
## 1.96824                    possibly caused
## 1.96832                       rear section
## 1.96847                      tire exploded
## 1.96853                     causing damage
## 1.96857                   fuselage stalled
## 1.96858                    stalled crashed
## 1.96859                    crashed shortly
## 1.96866                instrument approach
## 1.96869                 aircraft descended
## 1.96872                           3,500 ft
## 1.96875                    impacted rising
## 1.96876                     rising terrain
## 1.96887                         rest 1,380
## 1.96888                           1,380 ft
## 1.96893                       fire started
## 1.96908                  premature descent
## 1.96911                    minimum descent
## 1.96912                   descent altitude
## 1.96913                     altitude based
## 1.96921                 incorrect distance
## 1.96922                 distance measuring
## 1.96923                measuring equipment
## 1.96924                equipment frequency
## 1.96928            flightcrew's subsequent
## 1.96929                 subsequent failure
## 1.96936                        mda crashed
## 1.96937                    crashed shortly
## 1.96942                   approximately 10
## 1.96943                           10 miles
## 1.96944                        miles north
## 1.96947                  leningrad crashed
## 1.96950                           rain fog
## 1.96951                      fog windshear
## 1.96952                    windshear pilot
## 1.96953                   pilot distracted
## 1.96960                   major electrical
## 1.96961                  electrical system
## 1.96962                     system failure
## 1.96963                 failure undetected
## 1.96964               undetected deviation
## 1.96969                         main rotor
## 1.96970                         rotor disk
## 1.96971                        disk failed
## 1.96975                   fatigue fracture
## 1.96980                       land crashed
## 1.96984                           tug boat
## 1.96992                         heavy rain
## 1.97001                 military transport
## 1.97002                  transport crashed
## 1.97005                          subic bay
## 1.97006                             bay 15
## 1.97007                           15 miles
## 1.97008                         miles west
## 1.97009                     west northwest
## 1.97014                          naval air
## 1.97015                        air station
## 1.97023                       hour earlier
## 1.97032                     land witnesses
## 1.97036                    aircraft flying
## 1.97040                       low altitude
## 1.97061                     engines failed
## 1.97067                             500 ft
## 1.97070                   aircraft plunged
## 1.97077                         flames hit
## 1.97080                       ground short
## 1.97088                     fog separation
## 1.97092                    propeller blade
## 1.97093                       blade caused
## 1.97096                     forced landing
## 1.97097                  landing resulting
## 1.97101                     plane crashing
## 1.97106                        cargo plane
## 1.97107                         plane flew
## 1.97115                          avoid bad
## 1.97116                        bad weather
## 1.97121                           3,800 ft
## 1.97124                      loon collided
## 1.97128                        cargo plane
## 1.97129                  plane penetrating
## 1.97139                  captain sustained
## 1.97142                    injuries debris
## 1.97152                           2 engine
## 1.97161                     pilot returned
## 1.97168               successful emergency
## 1.97169                  emergency landing
## 1.97172                   midair collision
## 1.97173                 collision occurred
## 1.97174                         occurred 2
## 1.97175                               2 nm
## 1.97176                            nm east
## 1.97177                     east southeast
## 1.97180                  loveland colorado
## 1.97183                          13,000 ft
## 1.97188                          3 injured
## 1.97194                          13 killed
## 1.97203                       cessna pilot
## 1.97206           establish communications
## 1.97210                      denver center
## 1.97216                controlled airspace
## 1.97219                          12,500 ft
## 1.97223             authorized transponder
## 1.97224           transponder contributing
## 1.97225                contributing factor
## 1.97231               existing regulations
## 1.97235                 prohibit parachute
## 1.97236                  parachute jumping
## 1.97240               immediately adjacent
## 1.97243                    federal airways
## 1.97244                    airways crashed
## 1.97247                     final approach
## 1.97248                    approach hudbay
## 1.97249                         hudbay oil
## 1.97252                    charter crashed
## 1.97256                 mountainside icing
## 1.97261                             fl 210
## 1.97264                         pitch trim
## 1.97265                         trim moved
## 1.97272               position gravational
## 1.97273                 gravational forces
## 1.97277                     resulting dive
## 1.97278                           dive led
## 1.97288                   aircraft crashed
## 1.97292                          river bed
## 1.97296                  missed approaches
## 1.97302                    holding pattern
## 1.97303                     pattern severe
## 1.97304                  severe turbulence
## 1.97332          meteorological conditions
## 1.97340                  extremely violent
## 1.97341               violent cumulonimbus
## 1.97342                cumulonimbus clouds
## 1.97343                   clouds windshear
## 1.97344                     windshear shot
## 1.97351                        air missile
## 1.97352                    missile crashed
## 1.97358                         8,800 feet
## 1.97359                      feet obscured
## 1.97362                     clouds crashed
## 1.97370                       aircraft hit
## 1.97373                     ground shortly
## 1.97378                      crew informed
## 1.97379                       informed atc
## 1.97387                         crashed 30
## 1.97388                              30 km
## 1.97396                          rear door
## 1.97400                        cargo plane
## 1.97401                     plane detached
## 1.97406                    horizontal tail
## 1.97407                         tail plane
## 1.97414                       leading edge
## 1.97415                       edge control
## 1.97421                   aircraft entered
## 1.97424                         steep dive
## 1.97432                         tail plane
## 1.97433                       plane failed
## 1.97434                         failed due
## 1.97439                        cargo plane
## 1.97446                     soviet fighter
## 1.97447                        fighter jet
## 1.97448                        jet crashed
## 1.97461                    soviet airspace
## 1.97467                     wing separated
## 1.97474                   aircraft entered
## 1.97479                         heavy rain
## 1.97482                  severe turbulence
## 1.97488                        spiral dive
## 1.97489                             dive 8
## 1.97490                          8 minutes
## 1.97493                       takeoff flew
## 1.97497                mountain controlled
## 1.97498                  controlled flight
## 1.97503                   aircraft crashed
## 1.97504                      crashed short
## 1.97515                   severe vibration
## 1.97516                 vibration required
## 1.97532                    adverse weather
## 1.97533                 weather conditions
## 1.97536                    aircraft landed
## 1.97541                     runway bounced
## 1.97548                     fuselage broke
## 1.97553                        caught fire
## 1.97554                 fire thunderstorms
## 1.97557                  strong turbulence
## 1.97565                       tropical air
## 1.97566                           air mass
## 1.97569               aircraft experienced
## 1.97572                  flight structural
## 1.97573                 structural failure
## 1.97574                     failure severe
## 1.97575                   severe corrosion
## 1.97580                          plane led
## 1.97584                      pressure hull
## 1.97585                       hull rupture
## 1.97591                       plane midair
## 1.97592                   midair collision
## 1.97596                         soviet air
## 1.97597                          air force
## 1.97598                           force tu
## 1.97599                              tu 16
## 1.97603                surviving passenger
## 1.97614                           forest 3
## 1.97615                             3 days
## 1.97618                 poor communication
## 1.97623                      military atcs
## 1.97624                       atcs crashed
## 1.97631                      mountain peak
## 1.97632                        peak flying
## 1.97633                         flying vfr
## 1.97636          meteorological conditions
## 1.97639                        minima flew
## 1.97642                        trees short
## 1.97650                     runway crashed
## 1.97653                        caught fire
## 1.97654                          fire crew
## 1.97655                     crew descended
## 1.97660                     visual contact
## 1.97670                      gain altitude
## 1.97679                       plane struck
## 1.97682                    hill overloaded
## 1.97683                  overloaded midair
## 1.97684                   midair collision
## 1.97688                        military mi
## 1.97689                               mi 8
## 1.97690                       8 helicopter
## 1.97691                    helicopter cccp
## 1.97692                         cccp 22268
## 1.97693                       22268 thirty
## 1.97696                      killed aboard
## 1.97699                             yak 40
## 1.97700                         40 crashed
## 1.97701                      crashed short
## 1.97709                  carrying infantry
## 1.97710                    infantry troops
## 1.97713                    fighter crashed
## 1.97720                      pilot ejected
## 1.97724                      plane crashed
## 1.97727                         tir square
## 1.97733                        land killed
## 1.97736                     iran's defense
## 1.97737                   defense minister
## 1.97741                  military officals
## 1.97746                   control possibly
## 1.97747                 possibly initiated
## 1.97751               unexpected encounter
## 1.97758                     air turbulence
## 1.97767                      narrow flight
## 1.97768                    flight envelope
## 1.97769                envelope boundaries
## 1.97784                   aircraft entered
## 1.97789                  severe turbulence
## 1.97805                       flight break
## 1.97817                      avoid traffic
## 1.97820                        cargo plane
## 1.97821                       plane struck
## 1.97824                        ocean pilot
## 1.97825                    pilot misjudged
## 1.97835                      lost altitude
## 1.97836                   altitude settled
## 1.97854                    pilot misjudged
## 1.97866                         proper pre
## 1.97867                         pre flight
## 1.97868                    flight planning
## 1.97871                      flight struck
## 1.97877                  emergency descent
## 1.97878                        descent due
## 1.97881            explosive decompression
## 1.97882               decompression crew's
## 1.97883                     crew's failure
## 1.97886                    follow approved
## 1.97887                 approved emergency
## 1.97888               emergency procedures
## 1.97891                     plane acquired
## 1.97892                 acquired excessive
## 1.97893                 excessive vertical
## 1.97894                     vertical speed
## 1.97906                  aircraft impacted
## 1.97907                   impacted terrain
## 1.97916                      frozen ground
## 1.97924                       descent rate
## 1.97931                   applying maximum
## 1.97932                   maximum elevator
## 1.97933                      elevator trim
## 1.97934                trim malfunctioning
## 1.97935            malfunctioning elevator
## 1.97936                   elevator crashed
## 1.97939                     takeoff engine
## 1.97940                      engine failed
## 1.97945                        cargo plane
## 1.97946                      plane crashed
## 1.97954                   aircraft crashed
## 1.97963                          camp dell
## 1.97964                           dell oro
## 1.97965                        oro airport
## 1.97968                          heavy fog
## 1.97974                  properly prepared
## 1.97980                   minimum altitude
## 1.97983                      maximum speed
## 1.97984                       speed limits
## 1.97988                    holding pattern
## 1.97993                 retained imprecise
## 1.97994                 imprecise language
## 1.98001                        air traffic
## 1.98002                 traffic controller
## 1.98003                 controller crashed
## 1.98007                   water improperly
## 1.98008                  improperly loaded
## 1.98009                    loaded aircraft
## 1.98010                    aircraft weight
## 1.98015                    gravity crashed
## 1.98019                         sea struck
## 1.98024                   aircraft crashed
## 1.98028                          ground 22
## 1.98029                              22 km
## 1.98033                  airport continued
## 1.98034                      continued vfr
## 1.98035                         vfr flight
## 1.98038                      ifr condtions
## 1.98041                   aircraft crashed
## 1.98045                            14th st
## 1.98046                          st bridge
## 1.98050                      potomac river
## 1.98053                       sank shortly
## 1.98059                washington national
## 1.98060                   national airport
## 1.98063                   aircraft reached
## 1.98066                      peak altitude
## 1.98069                             300 ft
## 1.98072                      flight crew's
## 1.98073                     crew's failure
## 1.98078                        engine anti
## 1.98079                         anti icing
## 1.98080                       icing system
## 1.98083                    takeoff failure
## 1.98086                             de ice
## 1.98099                           snow ice
## 1.98103                   airfoil surfaces
## 1.98107                       aircraft ice
## 1.98113                    engine pressure
## 1.98114                    pressure probes
## 1.98115                    probes resulted
## 1.98120                    engine pressure
## 1.98121                     pressure ratio
## 1.98122                          ratio epr
## 1.98123                       epr readings
## 1.98131                        takeoff epr
## 1.98137           developing significantly
## 1.98141                     takeoff thrust
## 1.98144                crew's inexperience
## 1.98147                    icing condtions
## 1.98151                contributing factor
## 1.98152                        factor shot
## 1.98156                       rebel forces
## 1.98162                         icy runway
## 1.98165                   aircraft touched
## 1.98168                         2,800 feet
## 1.98172                displaced threshold
## 1.98183                      shallow water
## 1.98187                       nose section
## 1.98188                  section detaching
## 1.98191                    minimal braking
## 1.98192              braking effectiveness
## 1.98196                        ice covered
## 1.98197                     covered runway
## 1.98200                        crew landed
## 1.98203             sufficient information
## 1.98207                  runway conditions
## 1.98208                    conditions lack
## 1.98211                    faa regulations
## 1.98214                   pilot's decision
## 1.98217                retain autothrottle
## 1.98218                 autothrottle speed
## 1.98219                      speed control
## 1.98226                consequent extended
## 1.98227                 extended touchdown
## 1.98232                 runway contributed
## 1.98245                           1 engine
## 1.98246                  engine feathering
## 1.98247                  feathering system
## 1.98248                      system caused
## 1.98253                       lose control
## 1.98256                      crash crashed
## 1.98263                  planned paratroop
## 1.98264                     paratroop drop
## 1.98265                       drop crashed
## 1.98268                           mt halla
## 1.98276                       poor weather
## 1.98279               microburst windshear
## 1.98280                  windshear crashed
## 1.98287                           en route
## 1.98288                       route struck
## 1.98289                          struck mt
## 1.98290                            mt ipao
## 1.98293                       panay island
## 1.98296                      aircraft flew
## 1.98299                      shallow water
## 1.98300                          water 100
## 1.98301                          100 yards
## 1.98302                       yards meters
## 1.98303                       meters short
## 1.98313                       mentally ill
## 1.98314                        ill captain
## 1.98321                    flight engineer
## 1.98324                          plane hit
## 1.98325                       hit approach
## 1.98326                     approach light
## 1.98327                   light stanchions
## 1.98328               stanchions extending
## 1.98332                         bay waters
## 1.98337                         nose broke
## 1.98352                    inboard engines
## 1.98368                    flight engineer
## 1.98369                   engineer battled
## 1.98375                        cargo plane
## 1.98376                      plane crashed
## 1.98390                  emergency landing
## 1.98397                       fire erupted
## 1.98406                           en route
## 1.98409                     ifr conditions
## 1.98412                        fire spread
## 1.98424                   deficient design
## 1.98428                  isopropyl alcohol
## 1.98429                 alcohol windshield
## 1.98430                  windshield washer
## 1.98431                      washer deicer
## 1.98432                      deicer system
## 1.98436             inadequate maintenance
## 1.98446                        flight fire
## 1.98449                    ignition source
## 1.98455                   aircraft crashed
## 1.98471                           tail fin
## 1.98476                moderate turbulence
## 1.98477                turbulence overload
## 1.98478                       overload due
## 1.98485                     air turbulence
## 1.98486                turbulence mountain
## 1.98487                      mountain wave
## 1.98491                 pilots spontaneous
## 1.98492               spontaneous improper
## 1.98493                   improper actions
## 1.98498            controversy surrounding
## 1.98501                    crash including
## 1.98515                       british nato
## 1.98516                       nato harrier
## 1.98517                        harrier jet
## 1.98518                        jet fighter
## 1.98519                    fighter crashed
## 1.98520                         crashed 40
## 1.98521                           40 miles
## 1.98522                    miles northwest
## 1.98525                     chicago o'hare
## 1.98526                     o'hare airport
## 1.98533                    landed exploded
## 1.98540                  vertical attitude
## 1.98546                          13,700 ft
## 1.98560                        cargo floor
## 1.98565                         fuel vapor
## 1.98566                        vapor randy
## 1.98567                       randy rhoads
## 1.98568                          rhoads 25
## 1.98569                            25 lead
## 1.98570                     lead guitarist
## 1.98573                        heavy metal
## 1.98574                         metal star
## 1.98575                          star ozzy
## 1.98576                      ozzy osbourne
## 1.98588                  passenger crashed
## 1.98592                           tour bus
## 1.98602                    buzz osbourne's
## 1.98603                    osbourne's tour
## 1.98604                           tour bus
## 1.98611                          left wing
## 1.98612                        wing struck
## 1.98618                     bus puncturing
## 1.98624                 approximately half
## 1.98637                            bus hit
## 1.98640                          pine tree
## 1.98641                      tree severing
## 1.98644                   approximately 10
## 1.98645                            10 feet
## 1.98664                       estimated 10
## 1.98665                              10 11
## 1.98666                            11 feet
## 1.98670                   ground traveling
## 1.98673                  approximately 120
## 1.98674                            120 150
## 1.98675                          150 knots
## 1.98678                       final impact
## 1.98695                       pilot andrew
## 1.98696                    andrew aycock's
## 1.98697                   aycock's medical
## 1.98698                medical certificate
## 1.98699                    certificate 3rd
## 1.98700                          3rd class
## 1.98706                     pilots license
## 1.98707                    license invalid
## 1.98711                      aboard rhoads
## 1.98712                      rhoads rachel
## 1.98713                  rachel youngblood
## 1.98722                        killed poor
## 1.98723                     poor judgement
## 1.98733               misjudging clearance
## 1.98738                      plane overran
## 1.98743                         heavy rain
## 1.98744                       rain crashed
## 1.98754                       land crashed
## 1.98760                       poor weather
## 1.98761                 weather conditions
## 1.98764                 helicopter crashed
## 1.98768                       snow covered
## 1.98769                   covered mountain
## 1.98770                     mountain slope
## 1.98774                         steep left
## 1.98775                          left bank
## 1.98780                       snow showers
## 1.98781                  showers continued
## 1.98782                      continued vfr
## 1.98783                         vfr flight
## 1.98786                      ifr conditons
## 1.98787                  conditons failure
## 1.98792                           4 engine
## 1.98805                           3 engine
## 1.98806          engine overpressurization
## 1.98811                     wing resulting
## 1.98818                        flight fire
## 1.98833                mountainous terrain
## 1.98838                  flames attachment
## 1.98839                   attachment bolts
## 1.98845                           4 engine
## 1.98852                    aircraft struck
## 1.98857                         heavy rain
## 1.98861                    landing attempt
## 1.98864                 helicopter crashed
## 1.98867              unknown circumstances
## 1.98868              circumstances crashed
## 1.98875                         approach 2
## 1.98876                               2 km
## 1.98877                           km short
## 1.98881                        runway lost
## 1.98888                helicopter carrying
## 1.98889                    carrying troops
## 1.98898                   falkland islands
## 1.98899                        islands war
## 1.98900                        war crashed
## 1.98904                     atlantic ocean
## 1.98907                        bird strike
## 1.98910                  component failure
## 1.98913                     aircraft broke
## 1.98919                       hard landing
## 1.98922                     pilot's misuse
## 1.98925                     rain repellant
## 1.98926                   repellant caused
## 1.98929                   optical illusion
## 1.98932                 helicopter crashed
## 1.98936                        sea crashed
## 1.98939                       poor weather
## 1.98940                 weather conditions
## 1.98948                   aircraft crashed
## 1.98952                           2,500 ft
## 1.98953                        ft mountain
## 1.98954                     mountain serra
## 1.98955                           serra da
## 1.98956                        da aratanha
## 1.98962                         heavy rain
## 1.98968                     altitude alert
## 1.98969                       alert system
## 1.98970                    system warnings
## 1.98975                    pilot's warning
## 1.98979                    mountains ahead
## 1.98982                  captain continued
## 1.98988                    minimum descend
## 1.98989                   descend altitude
## 1.98994                        air traffic
## 1.98997               carrier's procedures
## 1.99000                      plane crashed
## 1.99009                    adverse weather
## 1.99010                 weather conditions
## 1.99013                     crew initiated
## 1.99020                      heavy landing
## 1.99024               subsequently bounced
## 1.99025                     bounced lifted
## 1.99039               deliberate reduction
## 1.99042                       engine power
## 1.99046                           pilot 12
## 1.99052                         impact due
## 1.99055               altitude unawareness
## 1.99056              unawareness resulting
## 1.99066                       hard landing
## 1.99071                 named gaurishankar
## 1.99074                      aircraft flew
## 1.99081                  volcanic eruption
## 1.99084                        37,000 feet
## 1.99090                     engines failed
## 1.99094                    windshield lost
## 1.99095                  lost transparency
## 1.99106                        12,000 feet
## 1.99115                       plane landed
## 1.99116                      landed safely
## 1.99123                         named city
## 1.99131                          30,000 ft
## 1.99134               malfunction occurred
## 1.99135                   occurred causing
## 1.99140                          crash 125
## 1.99141                          125 miles
## 1.99147                     flight failure
## 1.99152                   stabilizer screw
## 1.99153                         screw jack
## 1.99154                     jack mechanism
## 1.99155                      mechanism due
## 1.99160                   aircraft crashed
## 1.99165                      field shortly
## 1.99168                    takeoff failure
## 1.99172                   aircraft's power
## 1.99173                        power plant
## 1.99174                         plant fire
## 1.99175                       fire warning
## 1.99176                     warning system
## 1.99177                         system due
## 1.99180                design deficiencies
## 1.99185                         false fire
## 1.99186                   fire indications
## 1.99192                   aircraft crashed
## 1.99196                    thunderstorm 29
## 1.99204              orleans international
## 1.99205              international airport
## 1.99208                      plane reached
## 1.99215                           150 feet
## 1.99227                    houses bursting
## 1.99230                   flames microbust
## 1.99231                  microbust induced
## 1.99232                  induced windshear
## 1.99233                  windshear limited
## 1.99234                 limited capability
## 1.99237                     current ground
## 1.99238                       ground based
## 1.99239                          based low
## 1.99240                          low level
## 1.99241                    level windshear
## 1.99242                windshear detection
## 1.99243               detection technology
## 1.99248                      named clipper
## 1.99249                   clipper defiance
## 1.99250                   defiance takeoff
## 1.99258                         crew heard
## 1.99259                      heard unusual
## 1.99260                     unusual sounds
## 1.99265                           1 engine
## 1.99268                   aircraft overran
## 1.99281                 vehicles misjudged
## 1.99282                    misjudged speed
## 1.99287                     delayed action
## 1.99297                      twilight zone
## 1.99302                 helicopter crashed
## 1.99303                    crashed killing
## 1.99304                      killing actor
## 1.99305                          actor vic
## 1.99306                         vic morrow
## 1.99307                          morrow 53
## 1.99311                       child actors
## 1.99316                       hovering low
## 1.99322                 vietnamese village
## 1.99326                   explosive charge
## 1.99330                    special effects
## 1.99331                        effects hit
## 1.99334                         tail rotor
## 1.99338                 helicopter sending
## 1.99346                         child rene
## 1.99347                          rene chen
## 1.99348                             chen 6
## 1.99357                           skid vic
## 1.99358                         vic morrow
## 1.99363                         child myca
## 1.99364                          myca dinh
## 1.99365                            dinh le
## 1.99366                               le 7
## 1.99369               decapitated criminal
## 1.99370                   criminal charges
## 1.99374                 production company
## 1.99377               eventually dismissed
## 1.99382                   publicized trial
## 1.99385                        civil trial
## 1.99391                          2 million
## 1.99392                    million dollars
## 1.99408                         vic morrow
## 1.99419                     bomb detonated
## 1.99423                       seat cushion
## 1.99426                   explosion caused
## 1.99427                       caused minor
## 1.99428                       minor damage
## 1.99432                       plane landed
## 1.99433                      landed safely
## 1.99443                    mohammed rashed
## 1.99446                jordanian terrorist
## 1.99451                    15 organization
## 1.99452                   organization hit
## 1.99457                       poor weather
## 1.99458                     weather rolled
## 1.99469                             500 ft
## 1.99470                         ft shortly
## 1.99474                    airborne ground
## 1.99475                   ground collision
## 1.99476                   collision eleven
## 1.99477                      eleven killed
## 1.99486                       tupolev flew
## 1.99501                        low ceiling
## 1.99504                          plane ran
## 1.99514                       poor weather
## 1.99515                    weather crashed
## 1.99516                 crashed helicopter
## 1.99517            helicopter experiencing
## 1.99518          experiencing catastrophic
## 1.99519            catastrophic mechanical
## 1.99520                 mechanical failure
## 1.99532                    carrying french
## 1.99535                         german sky
## 1.99536                         sky divers
## 1.99541                     mannheim's 375
## 1.99542                       375 birthday
## 1.99543               birthday celebration
## 1.99544                celebration bearing
## 1.99545                    bearing failure
## 1.99549               forward transmission
## 1.99550                  transmission pack
## 1.99553                   aircraft crashed
## 1.99558                  intense vibration
## 1.99559                   vibration caused
## 1.99563                    blown retreaded
## 1.99564                     retreaded tire
## 1.99567                       crew aborted
## 1.99581                      apply reverse
## 1.99582                     reverse thrust
## 1.99583               thrust symmetrically
## 1.99586                   aircraft swerved
## 1.99592                 landing sideswiped
## 1.99595                        water tower
## 1.99596                      tower crashed
## 1.99610                     burned failure
## 1.99614                  control mechanism
## 1.99619                           1 engine
## 1.99620                    engine reverser
## 1.99623                 helicopter crashed
## 1.99627                           sea flew
## 1.99636                    landing crashed
## 1.99640                    mountain flying
## 1.99645                     ifr conditions
## 1.99646              conditions navigation
## 1.99647                   navigation error
## 1.99652                  adequate training
## 1.99655                        cargo plane
## 1.99656                         plane flew
## 1.99671                physical imparement
## 1.99677                  aircraft suddenly
## 1.99678                    suddenly banked
## 1.99687                      steep descent
## 1.99690                 crashed inadequate
## 1.99691                  inadequate flight
## 1.99692                  flight procedures
## 1.99707                        left engine
## 1.99708                  engine inadequate
## 1.99709                  inadequate flight
## 1.99710                    flight planning
## 1.99724                applying procedures
## 1.99727                successfully remedy
## 1.99730                    stall condition
## 1.99731                   condition caused
## 1.99734                         total loss
## 1.99740                        left engine
## 1.99748                       low altitude
## 1.99751                     final approach
## 1.99761                 sandinistan rebels
## 1.99762                  rebels inadequate
## 1.99765                   untimely actions
## 1.99779                        severe loss
## 1.99786               obstacles overloaded
## 1.99789              passenger's cigarette
## 1.99790                   cigarette caused
## 1.99801                        oxygen tank
## 1.99802                     tank exploding
## 1.99805                       plane landed
## 1.99806                       landed 1,725
## 1.99807                         1,725 feet
## 1.99811                   runway threshold
## 1.99823                   propeller struck
## 1.99828                             3 foot
## 1.99829                          foot snow
## 1.99830                          snow bank
## 1.99833                    blade separated
## 1.99841                       cabin proper
## 1.99842                   proper alignment
## 1.99849                    command terrain
## 1.99850                  terrain condition
## 1.99851                     condition snow
## 1.99852                          snow bank
## 1.99853                          bank lack
## 1.99856                     notam improper
## 1.99857                      improper snow
## 1.99858                       snow removal
## 1.99864                        cargo plane
## 1.99865                       plane rolled
## 1.99871                     wings vertical
## 1.99883                      flight crew's
## 1.99884                     crew's failure
## 1.99887                  follow procedural
## 1.99888               procedural checklist
## 1.99889             checklist requirements
## 1.99897              mistrimmed stabilizer
## 1.99903        uncontrollable contributing
## 1.99910                   captain allowing
## 1.99939                  flight originated
## 1.99950                          40 minute
## 1.99951                      minute flight
## 1.99954                  ankara's esenboga
## 1.99955                   esenboga airport
## 1.99958                   aircraft crashed
## 1.99959                      crashed short
## 1.99965                           fog snow
## 1.99968                    poor visibility
## 1.99969               visibility windshear
## 1.99972                     overheated apu
## 1.99973                            apu led
## 1.99984                   aircraft crashed
## 1.99988                          sea pilot
## 1.99989                      pilot decided
## 1.99996                            fly vfr
## 1.99999              deteriorating weather
## 1.100002                     plane crashed
## 1.100008                   rain turbulence
## 1.100011           thunderstorms continued
## 1.100012                     continued vfr
## 1.100013                        vfr flight
## 1.100016                      poor weather
## 1.100020               physical impairment
## 1.100021                    impairment due
## 1.100033                   aircraft landed
## 1.100034                       landed past
## 1.100037                  runway threshold
## 1.100038             threshold experienced
## 1.100041                      hard landing
## 1.100044                          fog slid
## 1.100054                  flight decisions
## 1.100057            inadequate supervision
## 1.100067                       cargo plane
## 1.100074                      fast bounced
## 1.100077                   landing crashed
## 1.100080                       burned loss
## 1.100085                    ground contact
## 1.100086                       contact due
## 1.100089           anunstabilized approach
## 1.100090               approach impairment
## 1.100094             flightcrew's judgment
## 1.100095                 judgment decision
## 1.100099                  flying abilities
## 1.100107             psychological factors
## 1.100108                      factors lost
## 1.100109                      lost control
## 1.100118                        snow storm
## 1.100119                   storm continued
## 1.100120                     continued vfr
## 1.100121                        vfr flight
## 1.100124                    ifr conditions
## 1.100128                          2 engine
## 1.100129                     engine failed
## 1.100132                  climbout forcing
## 1.100142                          base leg
## 1.100145                     aircraft lost
## 1.100146                     lost altitude
## 1.100151                     pressure fuel
## 1.100152                         fuel pump
## 1.100153                        pump shaft
## 1.100154                       shaft broke
## 1.100155                         broke due
## 1.100158                      pump seizure
## 1.100161                  remaining engine
## 1.100170                        fuel datum
## 1.100171                     datum trimmer
## 1.100179                     flight manual
## 1.100182                     crew deviated
## 1.100189                 land navigational
## 1.100190                navigational error
## 1.100191                         error atc
## 1.100192                    atc procedural
## 1.100193                  procedural error
## 1.100199                   planes position
## 1.100202                   aircraft flying
## 1.100205                    tandem crashed
## 1.100215                  aircraft brushed
## 1.100216                     brushed trees
## 1.100221                   remain airborne
## 1.100222                  airborne crashed
## 1.100226                        ammo depot
## 1.100231                aircraft's engines
## 1.100232                    engines failed
## 1.100233                    failed shortly
## 1.100239                      plane landed
## 1.100240                    landed heavily
## 1.100243                      muddy ground
## 1.100251                         st john's
## 1.100252                      john's river
## 1.100258                jacksonville naval
## 1.100259                         naval air
## 1.100260                     air station's
## 1.100261                    station's main
## 1.100262                       main runway
## 1.100263                    runway shortly
## 1.100270                     engines burst
## 1.100285                       air station
## 1.100294                            ban ta
## 1.100295                           ta khli
## 1.100296                          khli air
## 1.100297                          air base
## 1.100311                     plane plunged
## 1.100314                         earth 700
## 1.100315                            700 ft
## 1.100316                           ft past
## 1.100319                     runway engine
## 1.100320                    engine failure
## 1.100323              suspected procedural
## 1.100324                  procedural error
## 1.100327                  maintenance crew
## 1.100328                       crew caused
## 1.100331                         ring seal
## 1.100339                   engines causing
## 1.100349                       engine shut
## 1.100365                  engine restarted
## 1.100371                        3,000 feet
## 1.100380                      safe landing
## 1.100383                           miami 9
## 1.100384                         9 minutes
## 1.100393                       klyuchi air
## 1.100394                          air base
## 1.100398                    minima weather
## 1.100399                weather conditions
## 1.100402                    heavy snowfall
## 1.100407                   aircraft failed
## 1.100410                     gain altitude
## 1.100415                       runway crew
## 1.100419                  follow checklist
## 1.100420              checklist procedures
## 1.100434                 intermediate stop
## 1.100437                       dallas fort
## 1.100438                        fort worth
## 1.100442                       flight fire
## 1.100446                     rear lavatory
## 1.100449                    unknown origin
## 1.100450                     origin forced
## 1.100457                 emergency landing
## 1.100460          cincinnati international
## 1.100461             international airport
## 1.100462                airport fatalities
## 1.100463               fatalities occurred
## 1.100466                  smoke inhalation
## 1.100470                        flash fire
## 1.100475                        exit doors
## 1.100482                     fire severity
## 1.100485                  conflicting fire
## 1.100486                     fire progress
## 1.100487                  progress reports
## 1.100491                   captain delayed
## 1.100494                 quicker emergency
## 1.100495                 emergency landing
## 1.100496                  landing canadian
## 1.100497                     canadian folk
## 1.100498                       folk singer
## 1.100499                       singer stan
## 1.100500                       stan rogers
## 1.100501                         rogers 33
## 1.100502                         33 killed
## 1.100511                    kerrville folk
## 1.100512                     folk festival
## 1.100528                   domestic flight
## 1.100529                    flight crashed
## 1.100533                    formosa strait
## 1.100538                     engine caught
## 1.100539                       caught fire
## 1.100540                      fire shortly
## 1.100548                  strong vibration
## 1.100552                            4 prop
## 1.100553                    prop separated
## 1.100558                  aircraft causing
## 1.100561                        major gash
## 1.100580                   flight controls
## 1.100587                   separate cables
## 1.100594                    maintain level
## 1.100595                      level flight
## 1.100606                       flight crew
## 1.100610                     heavy control
## 1.100611                    control inputs
## 1.100616                      cables loose
## 1.100622                 control diverting
## 1.100649                       land safely
## 1.100655                   prop separation
## 1.100665                     ocean crashed
## 1.100669                  mountain crashed
## 1.100672             unknown circumstances
## 1.100678                         low level
## 1.100682                  aircraft stalled
## 1.100685                   crashed crashed
## 1.100688                       fouta djall
## 1.100689                    djall mountain
## 1.100692                  jetliner scraped
## 1.100695                     mountian peak
## 1.100696                     peak exploded
## 1.100704                     ravine coming
## 1.100722                       andean city
## 1.100729                     pilot crashed
## 1.100733                   english channel
## 1.100740                    montreal bound
## 1.100749                     fuel required
## 1.100760                     fuel quantity
## 1.100761              quantity information
## 1.100762                information system
## 1.100763                  system processor
## 1.100771                       ground crew
## 1.100774               manual calculations
## 1.100785                      pounds liter
## 1.100789                  specific gravity
## 1.100790                    gravity factor
## 1.100794                   kilograms liter
## 1.100803                        air canada
## 1.100809                      aircraft ran
## 1.100815                       41,000 feet
## 1.100819               standby instruments
## 1.100820              instruments magnetic
## 1.100821                  magnetic compass
## 1.100822                compass artificial
## 1.100823                artificial horizon
## 1.100824                  horizon airspeed
## 1.100825                airspeed indicator
## 1.100835                      plane landed
## 1.100836                     landed safely
## 1.100840                          7,200 ft
## 1.100841                         ft runway
## 1.100847                         air force
## 1.100848                        force base
## 1.100849                    base converted
## 1.100853                       racing drag
## 1.100854                        drag strip
## 1.100862                      gimli glider
## 1.100865                          tv movie
## 1.100866                     movie falling
## 1.100870                        sky flight
## 1.100871                        flight 174
## 1.100879                      1995 crashed
## 1.100886                      grand canyon
## 1.100890                sightseeing flight
## 1.100891                    flight crashed
## 1.100896                 striking mountain
## 1.100901                   land procedural
## 1.100902                 procedural errors
## 1.100910                       south korea
## 1.100913                  airliner drifted
## 1.100919                 penetrated soviet
## 1.100920                   soviet airspace
## 1.100933                        russian su
## 1.100934                             su 15
## 1.100935                            15 air
## 1.100936                         air force
## 1.100937                     force fighter
## 1.100942                      air missiles
## 1.100945                  aircraft crashed
## 1.100948              international waters
## 1.100954                         japan u.s
## 1.100955                u.s representative
## 1.100958                  georgia lawrence
## 1.100959                 lawrence mcdonald
## 1.100960                   mcdonald killed
## 1.100965             improper navigational
## 1.100966              navigational setting
## 1.100969                     plane drifted
## 1.100976                           u.s spy
## 1.100977                         spy plane
## 1.100984                        007 flight
## 1.100987                         007 plane
## 1.100993                         spy plane
## 1.100996                     fighter pilot
## 1.101001                    soviet command
## 1.101011                      air missiles
## 1.101021                        boeing 747
## 1.101022                         747 cabin
## 1.101023                    cabin pressure
## 1.101029                 aircraft suffered
## 1.101030                  suffered control
## 1.101047                     ocean crashed
## 1.101048                        crashed en
## 1.101049                          en route
## 1.101050                          route ny
## 1.101051                  ny industrialist
## 1.101052             industrialist georgel
## 1.101053                     georgel cogar
## 1.101054                          cogar 51
## 1.101058                   killed collided
## 1.101062                       chinese air
## 1.101063                         air force
## 1.101064                    force aircraft
## 1.101067                    taxing crashed
## 1.101074                  distress message
## 1.101079                 emergency landing
## 1.101080                   landing attempt
## 1.101081                attempt detonation
## 1.101085                  explosive device
## 1.101089               baggage compartment
## 1.101090               compartment crashed
## 1.101097                        missed ifr
## 1.101098                    ifr approaches
## 1.101101                   aircraft struck
## 1.101104                      ground short
## 1.101108                  runway threshold
## 1.101113                      vfr approach
## 1.101114                   approach struck
## 1.101115                      struck trees
## 1.101124                          1 engine
## 1.101135                    left generator
## 1.101136                generator suffered
## 1.101139               complete mechanical
## 1.101140                mechanical failure
## 1.101144                officer mistakenly
## 1.101145                   mistakenly shut
## 1.101159                       life failed
## 1.101166                      flown safely
## 1.101172                        30 minutes
## 1.101175                   captain decided
## 1.101181                 carbondale thirty
## 1.101187                  batteries lasted
## 1.101194                     aircraft lost
## 1.101199                       blindly 180
## 1.101200                       180 degrees
## 1.101209               passenger committed
## 1.101210                 committed suicide
## 1.101216                         rear door
## 1.101222                          3,500 ft
## 1.101225                  airliner crashed
## 1.101226               crashed immediately
## 1.101229                      takeoff shot
## 1.101238                       air missile
## 1.101241                  aircraft touched
## 1.101251                      vfr approach
## 1.101262                      main landing
## 1.101263                      landing gear
## 1.101264                         gear legs
## 1.101265                        legs broke
## 1.101273                   aircraft caught
## 1.101274                       caught fire
## 1.101283                  crew intercepted
## 1.101286                         wrong ils
## 1.101287                         ils track
## 1.101301                        vor beacon
## 1.101304                 aircraft impacted
## 1.101314                        wing broke
## 1.101318              aircraft cartwheeled
## 1.101323                          5 pieces
## 1.101328                       rest upside
## 1.101331                 procedural errors
## 1.101335                    crew including
## 1.101342                  precise position
## 1.101345                descending failure
## 1.101352                 corrective action
## 1.101359                  ground proximity
## 1.101360                 proximity warning
## 1.101361                    warning system
## 1.101364                deficient teamwork
## 1.101368                       flight deck
## 1.101373                      named magnus
## 1.101374                     magnus viking
## 1.101375                         viking ln
## 1.101376                            ln rna
## 1.101379                        dry leased
## 1.101384                  aircraft crashed
## 1.101385                        crashed 18
## 1.101386                             18 nm
## 1.101387                          nm short
## 1.101399                   poor visibility
## 1.101402                       caught fire
## 1.101403                         fire crew
## 1.101410                      landing gear
## 1.101411                      gear trouble
## 1.101418                        727 struck
## 1.101421                              dc 9
## 1.101427                   poor visibility
## 1.101428                    visibility fog
## 1.101434                   poor visibility
## 1.101437                  inadequate signs
## 1.101442                              dc 9
## 1.101443                   9 inadvertently
## 1.101444            inadvertently wandered
## 1.101462                      ground radar
## 1.101463                       radar fifty
## 1.101471                         42 aboard
## 1.101474                              dc 9
## 1.101477                    killed mexican
## 1.101478                   mexican actress
## 1.101479                  actress marãƒâ­a
## 1.101480                    marãƒâ­a fanny
## 1.101481                        fanny cano
## 1.101482                      cano damiãƒâ
## 1.101492                  aircraft entered
## 1.101495                         90 degree
## 1.101496                       degree bank
## 1.101497                       bank struck
## 1.101498                      struck power
## 1.101499                       power lines
## 1.101504                 buildings failure
## 1.101509                          3 engine
## 1.101518                          4 engine
## 1.101519                  engine operating
## 1.101524                         left wing
## 1.101525                    wing contacted
## 1.101531                   pilot attempted
## 1.101537                 plane cartwheeled
## 1.101540                    crashed runway
## 1.101549                  prevailing winds
## 1.101556                           840 lbs
## 1.101568                   weather forcast
## 1.101571                  airliner crashed
## 1.101576                   adverse weather
## 1.101598                        slip angle
## 1.101599                     angle leading
## 1.101609                   decision height
## 1.101612                   pilot attempted
## 1.101619                      plane rolled
## 1.101625                     lost altitude
## 1.101629                        bank angle
## 1.101630                     angle reached
## 1.101631                        reached 90
## 1.101632                        90 degrees
## 1.101635                  aircraft crashed
## 1.101636                     crashed short
## 1.101640                    runway crashed
## 1.101641                       crashed due
## 1.101647                helicopter crashed
## 1.101650                      takeoff crew
## 1.101651                        crew error
## 1.101661                       poor engine
## 1.101662                engine performance
## 1.101676                 emergency landing
## 1.101684                         left wing
## 1.101685                       wing struck
## 1.101688                        light pole
## 1.101689                          pole jet
## 1.101701                      aviation gas
## 1.101704                   aircraft struck
## 1.101705                      struck power
## 1.101706                       power lines
## 1.101726                            300 ft
## 1.101730                      plane struck
## 1.101731                      struck power
## 1.101732                       power lines
## 1.101735                       crashed 2.5
## 1.101736                         2.5 miles
## 1.101737                       miles short
## 1.101743                    crew descended
## 1.101746                 decision altitude
## 1.101752                    visual contact
## 1.101760                          2 engine
## 1.101761                     engine failed
## 1.101772                 propellers struck
## 1.101778                      aircraft ran
## 1.101787                  aircraft crashed
## 1.101791                   elevator failed
## 1.101792              failed disconnection
## 1.101799                 elevators control
## 1.101800                       control rod
## 1.101806                            rwy 23
## 1.101809                  aircraft crashed
## 1.101810                       crashed ssw
## 1.101816                           6300 ft
## 1.101824                         runway wy
## 1.101827                           1800 ft
## 1.101834                 runway centerline
## 1.101835                 centerline impact
## 1.101836                   impact occurred
## 1.101844                     steep descent
## 1.101847                     wreckage path
## 1.101855                           035 deg
## 1.101859                    initial impact
## 1.101867                       impact fire
## 1.101886                  aircraft crashed
## 1.101890                hijacker detonated
## 1.101893                      hand grenade
## 1.101908                  guerrilla mortar
## 1.101909                       mortar fire
## 1.101912                      lost control
## 1.101913                  control crashing
## 1.101928                  aircraft touched
## 1.101931                        4,700 feet
## 1.101935                    threshold slid
## 1.101947                    tidal waterway
## 1.101950                  crew's disregard
## 1.101953             prescribed procedures
## 1.101963                      final stages
## 1.101979                   missed approach
## 1.101980             approach overreliance
## 1.101984                autothrottle speed
## 1.101985                     speed control
## 1.101986                    control system
## 1.101993               recent malfunctions
## 1.101999                 emergency landing
## 1.102000                   landing touched
## 1.102007                   crashed crashed
## 1.102011                    jungle shortly
## 1.102015                       cargo plane
## 1.102025                        plane lost
## 1.102026                     lost altitude
## 1.102030                      wing clipped
## 1.102031                     clipped trees
## 1.102035                     plane crashed
## 1.102036                   crashed crashed
## 1.102040               wooded mountainside
## 1.102043                        flying vfr
## 1.102044                         vfr pilot
## 1.102045                       pilot error
## 1.102046                      error slowed
## 1.102049                           90 knts
## 1.102058                         5,400 fpm
## 1.102073                      found midair
## 1.102074                  midair collision
## 1.102077                     aircraft type
## 1.102083                         17 killed
## 1.102084                     killed aboard
## 1.102085                         aboard pt
## 1.102086                            pt gkl
## 1.102090                         18 aboard
## 1.102091                         aboard pt
## 1.102092                            pt gjz
## 1.102095                         killed pt
## 1.102096                            pt gjz
## 1.102097                       gjz crashed
## 1.102103                            pt gkl
## 1.102110                    forced landing
## 1.102115                          1 engine
## 1.102123                      sank crashed
## 1.102127             village approximately
## 1.102128                  approximately 80
## 1.102129                          80 miles
## 1.102132                     cairo killing
## 1.102133                        killing 19
## 1.102139                  cargo aircraft's
## 1.102140                  aircraft's entry
## 1.102144                  unusual attitude
## 1.102151                       flight crew
## 1.102156                  flight condition
## 1.102162                     complete loss
## 1.102168                    precise reason
## 1.102179              undetermined failure
## 1.102187                        2 vertical
## 1.102188                     vertical gyro
## 1.102189                       gyro system
## 1.102207            incorrectly processing
## 1.102208                   processing data
## 1.102213                  pilot's approach
## 1.102214                  approach horizon
## 1.102217               inflight structural
## 1.102218                structural failure
## 1.102234                   normal approach
## 1.102237                            rwy 33
## 1.102241            apparent abnormalities
## 1.102248                            200 ft
## 1.102252                   approach lights
## 1.102260                     engine thrust
## 1.102263                aircraft's descent
## 1.102264                   descent stopped
## 1.102270                 aircrew initiated
## 1.102281                    apparent level
## 1.102292                            90 deg
## 1.102297                        bank angle
## 1.102303                            90 deg
## 1.102306                   aircraft's nose
## 1.102307                      nose dropped
## 1.102310                     plane crashed
## 1.102314                          nose low
## 1.102315                      low attitude
## 1.102316                   attitude burned
## 1.102317                burned malfunction
## 1.102320                    spoiler system
## 1.102323              reasons undetermined
## 1.102327                        demand air
## 1.102328                          air taxi
## 1.102329                       taxi flight
## 1.102330                   flight departed
## 1.102333                       garden city
## 1.102339                  reported weather
## 1.102343                  approximate time
## 1.102349                        low clouds
## 1.102350               clouds thunderstorm
## 1.102351             thunderstorm activity
## 1.102352                activity including
## 1.102353                    including rain
## 1.102358                    witness stated
## 1.102364                 helicopter flying
## 1.102370                  approximately 60
## 1.102373                           80 feet
## 1.102379               helicopter wreckage
## 1.102388                   beach continued
## 1.102389                     continued vfr
## 1.102390                        vfr flight
## 1.102393                      imc improper
## 1.102394                 improper altitude
## 1.102397                     aircraft flew
## 1.102400                        heavy rain
## 1.102404                    cloud shrouded
## 1.102405                     shrouded hill
## 1.102409                   pilot abandoned
## 1.102410                     abandoned ifr
## 1.102413                     descended vfr
## 1.102418              carrying journalists
## 1.102419               journalists crashed
## 1.102423                     pacific ocean
## 1.102429                 marinduque island
## 1.102430                    island failure
## 1.102435                          4 engine
## 1.102436                     engine caused
## 1.102440                          3 engine
## 1.102443                        failue due
## 1.102446                     debris debris
## 1.102454                       cargo hatch
## 1.102463                      cyanide lost
## 1.102464                      lost control
## 1.102472                          base leg
## 1.102476                    final approach
## 1.102479                    fight controls
## 1.102480                 controls suddenly
## 1.102481                suddenly collapsed
## 1.102488                     plane pitched
## 1.102492                   pilot attempted
## 1.102495                  maintain control
## 1.102505                     flap controls
## 1.102514                 terminal building
## 1.102517                   rusted elevator
## 1.102518                  elevator control
## 1.102519                     control cable
## 1.102520                       cable broke
## 1.102521                    broke improper
## 1.102522              improper maintenance
## 1.102523            maintenance procedures
## 1.102524                  procedures total
## 1.102525                     total failure
## 1.102529                  elevator control
## 1.102530                       control due
## 1.102533                  corrosion banked
## 1.102537                      left shortly
## 1.102546                    ocean aircraft
## 1.102547               aircraft overloaded
## 1.102550                 improperly loaded
## 1.102551              loaded inexperienced
## 1.102552               inexperienced pilot
## 1.102553                       pilot water
## 1.102554               water contamination
## 1.102559                        plane flew
## 1.102562                    severe weather
## 1.102565                   hail penetrated
## 1.102568                    oil radiatiors
## 1.102569                  radiatiors power
## 1.102578                       load limits
## 1.102584                 emergency descent
## 1.102587                       plane broke
## 1.102591                   crashed crashed
## 1.102595                       water 1,800
## 1.102596                          1,800 ft
## 1.102597                          ft short
## 1.102605                   landing attempt
## 1.102613                      vor approach
## 1.102618                         crew lost
## 1.102622                          1 engine
## 1.102625                      plane struck
## 1.102626                    struck utility
## 1.102627                     utility poles
## 1.102636                  building missing
## 1.102637                     missing spark
## 1.102638                        spark plug
## 1.102643                          1 engine
## 1.102648                       14 cylinder
## 1.102649                  cylinder crashed
## 1.102655                          en route
## 1.102660                  midair collision
## 1.102661                collision occurred
## 1.102664                             3 400
## 1.102665                            400 ft
## 1.102668                          san luis
## 1.102669                       luis obispo
## 1.102670                    obispo airport
## 1.102684                 rockwell aircraft
## 1.102690                         15 aboard
## 1.102693                     beech failure
## 1.102704        recommended communications
## 1.102707                  traffic advisory
## 1.102708                advisory practices
## 1.102711             uncontrolled airports
## 1.102719               presence underlying
## 1.102725         physiological limitations
## 1.102728                      human vision
## 1.102731                     reaction time
## 1.102734                        taxing tin
## 1.102735                   tin preperation
## 1.102740                   compressor disc
## 1.102745                          2 engine
## 1.102746                     engine failed
## 1.102747                     failed debris
## 1.102748                  debris punctured
## 1.102753                         fuel tank
## 1.102754                      tank causing
## 1.102757               uncontrollable fire
## 1.102762                  aircraft crashed
## 1.102765                         mt musaka
## 1.102766                       musaka lost
## 1.102774                    crashed wheels
## 1.102779                      field fueled
## 1.102782                          jet fuel
## 1.102788                     engine failed
## 1.102798                 emergency landing
## 1.102806                   crashed crashed
## 1.102809                takeoff overloaded
## 1.102815                       cargo plane
## 1.102820                     gain altitude
## 1.102831                   runway improper
## 1.102832              improper calculation
## 1.102837                      gravity load
## 1.102838                 load distribution
## 1.102841                   maximum takeoff
## 1.102842                    takeoff weight
## 1.102845                   existing runway
## 1.102848                weather conditions
## 1.102849                   conditions shot
## 1.102853                     afghan rebels
## 1.102854                     rebels struck
## 1.102862                       fog weather
## 1.102866                        vfr minima
## 1.102881         communications facilities
## 1.102884                     fort franklin
## 1.102900                      crew noticed
## 1.102907                    evasive action
## 1.102913                 cleaning vehicles
## 1.102916                    flying control
## 1.102917                   control officer
## 1.102918                       officer atc
## 1.102919                          atc fell
## 1.102920                       fell asleep
## 1.102927              controllers cleaning
## 1.102928                 cleaning vehicles
## 1.102935                     air ambulance
## 1.102936                  ambulance struck
## 1.102945                      snow bounced
## 1.102956                        vfr flight
## 1.102961               mountainous terrain
## 1.102964                  marginal weather
## 1.102965                weather conditions
## 1.102977                   provide terrain
## 1.102978                 terrain clearance
## 1.102982                   aircraft struck
## 1.102983                  struck amountain
## 1.102986              undetermined reasons
## 1.102987                      reasons shot
## 1.102991                        enemy fire
## 1.102994                       cargo plane
## 1.103000                     pacific ocean
## 1.103003                          en route
## 1.103004                     route crashed
## 1.103008                   terrain spatial
## 1.103009               spatial orientation
## 1.103010                orientation caused
## 1.103016                artificial horizon
## 1.103026                        steep dive
## 1.103027                      dive crashed
## 1.103030                      burned 7,800
## 1.103031                          7,800 ft
## 1.103039                runway malfunction
## 1.103043                  elevator control
## 1.103044                    control system
## 1.103047                     elevator trim
## 1.103048                       trim system
## 1.103054                       flight crew
## 1.103059                     pitch control
## 1.103064                     left elevator
## 1.103065                  elevator control
## 1.103066                       control rod
## 1.103071             asymmetrical elevator
## 1.103072               elevator deflection
## 1.103075                overstress failure
## 1.103079             horizontal stabilizer
## 1.103080             stabilizer attachment
## 1.103081              attachment structure
## 1.103082                 structure crashed
## 1.103093                     military base
## 1.103094                      base crashed
## 1.103099                      poor weather
## 1.103106                  aircraft crashed
## 1.103111                 emergency landing
## 1.103116                          3 engine
## 1.103117                     engine caught
## 1.103118                       caught fire
## 1.103119                      fire failure
## 1.103125                      aircraft hit
## 1.103126                            hit mt
## 1.103127                       mt illimani
## 1.103133                       19,600 feet
## 1.103144                            la paz
## 1.103152                 prescribed airway
## 1.103153                 airway navigation
## 1.103154                  navigation error
## 1.103155                  error controlled
## 1.103156                 controlled flight
## 1.103161                       cargo plane
## 1.103162                    plane executed
## 1.103165                   missed approach
## 1.103173                copilot mistakenly
## 1.103174                  mistakenly lined
## 1.103178                    nearby fairfax
## 1.103179                   fairfax airport
## 1.103190                       steep climb
## 1.103197                     plane stalled
## 1.103207                   water treatment
## 1.103208                   treatment plant
## 1.103209                    plant improper
## 1.103210                      improper ifr
## 1.103211                     ifr procedure
## 1.103212                procedure airspeed
## 1.103220                 inadvertent stall
## 1.103221                     stall crashed
## 1.103232                  airliner crashed
## 1.103235                   takeoff failure
## 1.103239                artificial horizon
## 1.103244                   aileron control
## 1.103245                       control due
## 1.103248                     shifted cargo
## 1.103251                helicopter crashed
## 1.103260                 reverse direction
## 1.103261               direction witnesses
## 1.103262                  witnesses stated
## 1.103267                     heading north
## 1.103277                     tension lines
## 1.103284                            100 ft
## 1.103289                     belly counted
## 1.103290                 counted spotlight
## 1.103296                   passed overhead
## 1.103299               helicopter impacted
## 1.103300                     impacted snow
## 1.103301                      snow covered
## 1.103302                   covered terrain
## 1.103306                  steep descending
## 1.103307                   descending bank
## 1.103320                 southerly heading
## 1.103323                       power lines
## 1.103331                      struck pilot
## 1.103335              maintain directional
## 1.103336               directional control
## 1.103339                  aircraft crashed
## 1.103347                  reporting severe
## 1.103348                 severe vibrations
## 1.103355                  aircraft crashed
## 1.103359                     field bounced
## 1.103364                      mobile homes
## 1.103367                    ground handler
## 1.103368                    handler forgot
## 1.103373                         air start
## 1.103374                      start access
## 1.103375                       access door
## 1.103378                    crew's failure
## 1.103385                       flight path
## 1.103388                         air speed
## 1.103396                 vibration crashed
## 1.103400                     caribbean sea
## 1.103401                             sea 8
## 1.103402                           8 miles
## 1.103403                   miles northwest
## 1.103413                      land crashed
## 1.103419                         11,500 ft
## 1.103422                       rainand fog
## 1.103423                        fog flying
## 1.103428                conditions changed
## 1.103433                  aircraft crashed
## 1.103439                          8,500 ft
## 1.103446                    buga continued
## 1.103447                     continued vfr
## 1.103448                        vfr flight
## 1.103451             deteriorating weather
## 1.103452                weather conditions
## 1.103455                  aircraft crashed
## 1.103456                   crashed shortly
## 1.103462               minsk.double engine
## 1.103463                    engine failure
## 1.103464                       failure due
## 1.103467                     ice ingestion
## 1.103468                 ingestion crashed
## 1.103478                      poor weather
## 1.103479                  weather improper
## 1.103480                  improper minimum
## 1.103481                   minimum descent
## 1.103482                 descent atlitiude
## 1.103485                   missed approach
## 1.103486                 approach improper
## 1.103487                 improper inflight
## 1.103488                 inflight decision
## 1.103489                 decision improper
## 1.103490                   improper missed
## 1.103491                   missed approach
## 1.103492                  approach minimum
## 1.103493                   minimum descent
## 1.103494                  descent altitude
## 1.103499                aircraft descended
## 1.103503                uncontrolable dive
## 1.103508                          9,500 ft
## 1.103512                         crew shut
## 1.103518               captain preoccupied
## 1.103521             malfunctioning engine
## 1.103524                  properly monitor
## 1.103525               monitor instruments
## 1.103546              autopilot disengaged
## 1.103554                    excessive roll
## 1.103555                       roll caused
## 1.103563                    captain failed
## 1.103568                     proper flight
## 1.103569                flight corrections
## 1.103577                 terrifying series
## 1.103580            inadvertent aerobatics
## 1.103583                     plane leveled
## 1.103587                        9,500 feet
## 1.103592                       land safely
## 1.103595                     san francisco
## 1.103596                  francisco forces
## 1.103600                     inverted spin
## 1.103611                      landing gear
## 1.103618                      closed doors
## 1.103619                    doors breaking
## 1.103636                  aircraft crashed
## 1.103642                            mt oiz
## 1.103643                     oiz incorrect
## 1.103644          incorrect interpretation
## 1.103647                  ground proximity
## 1.103648                 proximity warning
## 1.103649                    warning system
## 1.103654                    heard shouting
## 1.103655                     shouting shut
## 1.103663                    announced pull
## 1.103668                    altitude alert
## 1.103669                      alert system
## 1.103670                  system incorrect
## 1.103671          incorrect interpretation
## 1.103675                  warnings crashed
## 1.103693                    engine failure
## 1.103694                    failure struck
## 1.103699                      poor weather
## 1.103704                 practice approach
## 1.103705                  approach stalled
## 1.103709                 training exercise
## 1.103714                   domestic flight
## 1.103715                    flight crashed
## 1.103729                         dense fog
## 1.103733                   aborted landing
## 1.103734                   landing attempt
## 1.103737                   aircraft struck
## 1.103742                      poor weather
## 1.103743                weather conditions
## 1.103746                      aircraft hit
## 1.103752                weather conditions
## 1.103758                 emergency message
## 1.103769                            fl 350
## 1.103772                        loud noise
## 1.103779                       severe jolt
## 1.103783                          3 engine
## 1.103784                  engine separated
## 1.103792                      ring allowed
## 1.103793                   allowed leakage
## 1.103797                  forward lavatory
## 1.103798                    lavatory waste
## 1.103799                       waste drain
## 1.103800                       drain valve
## 1.103805                      fluid leaked
## 1.103827                      plane landed
## 1.103828                     landed safely
## 1.103831                       cargo plane
## 1.103832                        plane lost
## 1.103837                    talkeoff nosed
## 1.103844                     fuel transfer
## 1.103848                     plane crashed
## 1.103855                 emergency landing
## 1.103858                         snow poor
## 1.103859                      poor weather
## 1.103867                     follow proper
## 1.103868                 proper procedures
## 1.103872                    auxiliary fuel
## 1.103873                       fuel system
## 1.103874                     system midair
## 1.103875                  midair collision
## 1.103879                      tupolev 134a
## 1.103880                     134a prepared
## 1.103895                    civil approach
## 1.103898              military controllers
## 1.103899     controllers misidentification
## 1.103903                  aircraft seventy
## 1.103917                helicopter crashed
## 1.103921                        east china
## 1.103922                         china sea
## 1.103925                   aircraft's tail
## 1.103926                       tail struck
## 1.103929                        hill 1,500
## 1.103930                        1,500 feet
## 1.103941                   emergency crash
## 1.103942                     crash landing
## 1.103947                       cargo plane
## 1.103948                     plane crashed
## 1.103954                          1 engine
## 1.103955                       engine fuel
## 1.103956                   fuel starvation
## 1.103957                  starvation pilot
## 1.103961                     fuel selector
## 1.103966                          1 engine
## 1.103972                feathered position
## 1.103979                          en route
## 1.103986                  italian airspace
## 1.103987                      airspace u.s
## 1.103988                          u.s navy
## 1.103989                        navy diver
## 1.103990                      diver robert
## 1.103991                    robert stethem
## 1.103994                   murdered aboard
## 1.103997                     plane stalled
## 1.104003                 emergency vehicle
## 1.104008                 emergency landing
## 1.104009                   landing attempt
## 1.104013                     engine caught
## 1.104014                       caught fire
## 1.104017                       faulty fuel
## 1.104018                    fuel injection
## 1.104019                  injection nozzle
## 1.104020                     nozzle caused
## 1.104023                        blow torch
## 1.104024                      torch effect
## 1.104025                   effect damaging
## 1.104028                compressor turbine
## 1.104029                      turbine vane
## 1.104030                         vane ring
## 1.104033                   causing thermal
## 1.104034                   thermal fatigue
## 1.104042                turbine blades.the
## 1.104043              blades.the resulting
## 1.104044               resulting imbalance
## 1.104045                imbalance ruptured
## 1.104048                  starting control
## 1.104049                    control bypass
## 1.104050                       bypass fuel
## 1.104051                       fuel return
## 1.104052                       return line
## 1.104055                    aircraft broke
## 1.104064                  ocean detonation
## 1.104068                  explosive device
## 1.104072                     forward cargo
## 1.104073                        cargo hold
## 1.104074                    hold terrorist
## 1.104078                  vancouver canada
## 1.104079                    canada checked
## 1.104080                   checked baggage
## 1.104088                   bag transferred
## 1.104093                        flight 182
## 1.104105                         air india
## 1.104106                      india flight
## 1.104112                   airport killing
## 1.104113                         killing 2
## 1.104114                         2 baggage
## 1.104115                  baggage handlers
## 1.104120                     named emperor
## 1.104121                  emperor kanishka
## 1.104124                      crew climbed
## 1.104128                 cruising altitude
## 1.104140                       stall speed
## 1.104143                     cruise flight
## 1.104144                 flight vibrations
## 1.104145                vibrations started
## 1.104150                      low airspeed
## 1.104162                     engine surges
## 1.104165                     reduced power
## 1.104168                      idle causing
## 1.104176                 maintain altitude
## 1.104179               airplane eventually
## 1.104180                eventually stalled
## 1.104185                         flat spin
## 1.104188                   crashed crashed
## 1.104192                     amazon jungle
## 1.104195                      poor weather
## 1.104199                     crew reported
## 1.104206                          3 engine
## 1.104222                   fort lauderdale
## 1.104223                     lauderdale fl
## 1.104230                  aircraft crashed
## 1.104235                   landing attempt
## 1.104238             thunderstorm activity
## 1.104241                     plane touched
## 1.104244                        6,000 feet
## 1.104245                        feet short
## 1.104251                          360 feet
## 1.104258                 runway centerline
## 1.104265                       car killing
## 1.104268                    driver crossed
## 1.104276                        water tank
## 1.104277                   tank reservoirs
## 1.104278             reservoirs microburst
## 1.104279                microburst induced
## 1.104280                 induced windshear
## 1.104283             flightcrew's decision
## 1.104293                cumulonimbus cloud
## 1.104300                    lightning lack
## 1.104309                      low altitude
## 1.104310                altitude windshear
## 1.104313                 aircraft suffered
## 1.104316                      aft pressure
## 1.104317                 pressure bulkhead
## 1.104318                  bulkhead failure
## 1.104321                         23,900 ft
## 1.104326                    severe control
## 1.104327              control difficulties
## 1.104337                        40 minutes
## 1.104338                  minutes collided
## 1.104342                 mountain improper
## 1.104343                   improper repair
## 1.104352                  boeing engineers
## 1.104356                       tail strike
## 1.104359                        1978 worst
## 1.104360                      worst single
## 1.104361                      single plane
## 1.104362                    plane disaster
## 1.104365                  aviation history
## 1.104366                       history kyu
## 1.104367                      kyu sakamoto
## 1.104368                       sakamoto 43
## 1.104369                         43 famous
## 1.104373                     japanese song
## 1.104374                     song sukiyaki
## 1.104380                  accident unknown
## 1.104381             unknown circumstances
## 1.104385                     plane reached
## 1.104386                     reached fl230
## 1.104387                       fl230 water
## 1.104393                   autopilot panel
## 1.104405                   stabilizer trim
## 1.104406                        trim wheel
## 1.104407                     wheel started
## 1.104410                    rotate control
## 1.104416                     plane pitched
## 1.104425                          1,000 ft
## 1.104429                 emergency landing
## 1.104437                manchester failure
## 1.104442                       9 combustor
## 1.104446                       port engine
## 1.104447                   engine resulted
## 1.104459                         fuel tank
## 1.104460                       tank access
## 1.104461                      access panel
## 1.104464                    resulting fire
## 1.104467                       fire spread
## 1.104471              cabin incapacitating
## 1.104474                killing passengers
## 1.104475                    passengers due
## 1.104478                       toxic smoke
## 1.104479                     smoke thermal
## 1.104480                     thermal metal
## 1.104481                     metal fatigue
## 1.104485                    combustor slow
## 1.104486                      slow braking
## 1.104489                    reverse thrust
## 1.104499                       fire upwind
## 1.104511                   front starboard
## 1.104525                 partial premature
## 1.104526                   premature chute
## 1.104527                  chute deployment
## 1.104531                        crew spent
## 1.104532                        spent time
## 1.104539                       toxic smoke
## 1.104540                 smoke accumulated
## 1.104546              starting evacuations
## 1.104555                       named river
## 1.104556                       river orrin
## 1.104560                      approach atc
## 1.104561                       atc noticed
## 1.104587                      plane struck
## 1.104588                      struck trees
## 1.104591                     crashed short
## 1.104597                 runway centerline
## 1.104600              pilot's continuation
## 1.104604             unstabilized approach
## 1.104612               glideslope improper
## 1.104613                      improper ifr
## 1.104614                     ifr procedure
## 1.104617                      pilot missed
## 1.104618                   missed approach
## 1.104621                performed decision
## 1.104622                   decision height
## 1.104625               identified samantha
## 1.104626                    samantha smith
## 1.104627                          smith 13
## 1.104641                     soviet leader
## 1.104642                       leader yuri
## 1.104643                     yuri andropov
## 1.104649                       nuclear war
## 1.104656                    moscow crashed
## 1.104663                         3 engines
## 1.104664                      engines shot
## 1.104673                       air missile
## 1.104680                  aircraft stalled
## 1.104696                 compressor spacer
## 1.104697                    spacer failure
## 1.104698              failure precipitated
## 1.104702                     fatigue crack
## 1.104705                   crew's improper
## 1.104709                   flight controls
## 1.104715              catastrophic failure
## 1.104723                    critical phase
## 1.104731                 accelerated stall
## 1.104739             airplane contributing
## 1.104750                 crew coordination
## 1.104756                    emergency shot
## 1.104760                     afghan rebels
## 1.104763                     plane crashed
## 1.104764                        crashed en
## 1.104765                          en route
## 1.104773                          1 engine
## 1.104782                        outer wing
## 1.104783                         wing lost
## 1.104784                        lost power
## 1.104792              takeoff contaminated
## 1.104793                 contaminated fuel
## 1.104794                   fuel overloaded
## 1.104800                       cargo plane
## 1.104801                      plane stayed
## 1.104805                      low altitude
## 1.104811                     imc conditons
## 1.104816                   attaining 5,000
## 1.104817                          5,000 ft
## 1.104820                       cargo plane
## 1.104821                        plane lost
## 1.104822                      lost control
## 1.104823                   control crashed
## 1.104826                        botany bay
## 1.104832                    sydney crashed
## 1.104836                    mountain slope
## 1.104842                       bad weather
## 1.104843              weather instructions
## 1.104854                       cargo plane
## 1.104855                     plane crashed
## 1.104860                          en route
## 1.104863                       cargo plane
## 1.104864                      plane struck
## 1.104869                          en route
## 1.104870                       route pilot
## 1.104871                       pilot error
## 1.104872                    error altitude
## 1.104875               maintained improper
## 1.104876                improper clearance
## 1.104879                       cargo plane
## 1.104880                     plane overfew
## 1.104894                       test flight
## 1.104897                  elevators locked
## 1.104901                   takeoff crashed
## 1.104904                        mt sibayak
## 1.104905                 sibayak hijacking
## 1.104920                   egyptian forces
## 1.104926                     hand grenades
## 1.104932                     cabin causing
## 1.104935                         fire shot
## 1.104939                     south african
## 1.104940                      african anti
## 1.104941                     anti aircraft
## 1.104942                     aircraft fire
## 1.104945                  aircraft stalled
## 1.104952                     hundred forty
## 1.104958                    101st airborne
## 1.104959                 airborne division
## 1.104962                     fort campbell
## 1.104963                 campbell kentucky
## 1.104972           controversy surrounding
## 1.104977                  majority opinion
## 1.104988                  sequence leading
## 1.105005                  minority opinion
## 1.105012                   possibly caused
## 1.105018                  explosive device
## 1.105021                    unknown origin
## 1.105025                 cargo compartment
## 1.105032                       flight fire
## 1.105040                  aircraft crashed
## 1.105046                       plane crash
## 1.105047                      crash landed
## 1.105061                       dense smoke
## 1.105062                      smoke filled
## 1.105075                   defective cabin
## 1.105076                      cabin heater
## 1.105084                       singer rick
## 1.105085                       rick nelson
## 1.105086                         nelson 45
## 1.105087                       45 fiancãƒâ
## 1.105090                       helen blair
## 1.105091                          blair 27
## 1.105092                       27 soundman
## 1.105093                    soundman clark
## 1.105094                     clark russell
## 1.105105                      stone canyon
## 1.105106                       canyon band
## 1.105107                         band andy
## 1.105108                       andy chapin
## 1.105109                         chapin 20
## 1.105110                           20 rick
## 1.105111                      rick intveld
## 1.105112                        intveld 22
## 1.105113                          22 bobby
## 1.105114                        bobby neal
## 1.105115                           neal 38
## 1.105118                  patrick woodward
## 1.105119                       woodward 35
## 1.105124                   pilots survived
## 1.105130                   cockpit windows
## 1.105131                    windows nelson
## 1.105136                              dc 3
## 1.105142                         jerry lee
## 1.105143                         lee lewis
## 1.105154                emergency landings
## 1.105160                     months nelson
## 1.105166                          en route
## 1.105172                         half time
## 1.105173                  time festivities
## 1.105177                       cotton bowl
## 1.105192                     plane crashed
## 1.105203                         low lying
## 1.105204                      lying clouds
## 1.105218                         news crew
## 1.105228                         news crew
## 1.105238                  operator refused
## 1.105239                       refused due
## 1.105242                      forecast low
## 1.105243                    low visibility
## 1.105256                 instrument flight
## 1.105266                 instrument flight
## 1.105273              helicopter certified
## 1.105276                 instrument flight
## 1.105279                helicopter crashed
## 1.105280                    crashed burned
## 1.105281              burned approximately
## 1.105282                 approximately 100
## 1.105289                        power line
## 1.105290                     line crossing
## 1.105291                   crossing impact
## 1.105292                   impact occurred
## 1.105300                   shallow descent
## 1.105301                   descent heading
## 1.105306                  highway parallel
## 1.105310                        power line
## 1.105311                    line continued
## 1.105312                     continued vfr
## 1.105313                        vfr flight
## 1.105316                imc overconfidence
## 1.105319                  personal ability
## 1.105322                   crew accidently
## 1.105337                  aircraft overran
## 1.105352                         heavy fog
## 1.105363                        los mochis
## 1.105370                       las lomitas
## 1.105381                commercial flights
## 1.105385                     plane crashed
## 1.105398                       cargo plane
## 1.105399                     plane crashed
## 1.105406                    forced landing
## 1.105409                  aircraft crashed
## 1.105421                    missed landing
## 1.105422                   landing attempt
## 1.105423                       attempt due
## 1.105427                        burst nose
## 1.105428                         nose gear
## 1.105429                         gear tire
## 1.105432                  aircraft entered
## 1.105435                         left bank
## 1.105441                         crashed 5
## 1.105442                           5 miles
## 1.105443                       miles short
## 1.105447                    runway failure
## 1.105451                autofeather sensor
## 1.105452                    sensor circuit
## 1.105453                   circuit breaker
## 1.105454                    breaker caused
## 1.105455                 caused propellers
## 1.105461                   missed approach
## 1.105462                      approach due
## 1.105465                       bad weather
## 1.105473                      ils approach
## 1.105486                     flight crew's
## 1.105487                  crew's continued
## 1.105488                 continued descent
## 1.105499                published decision
## 1.105500                   decision height
## 1.105503                  obtaining visual
## 1.105504                  visual reference
## 1.105510              undetermined reasons
## 1.105511                   reasons crashed
## 1.105517                             1 900
## 1.105518                            900 ft
## 1.105521                        flying ifr
## 1.105526                 fatigue initiated
## 1.105527                   initiated crack
## 1.105533                     cylinder head
## 1.105534                       head caused
## 1.105539                         run rough
## 1.105542                        lose power
## 1.105551             precautionary landing
## 1.105554               whiteout conditions
## 1.105557                  aircraft crashed
## 1.105562                        fuel cells
## 1.105563                    cells ruptured
## 1.105567                      fire erupted
## 1.105574                       cargo plane
## 1.105575                   plane descended
## 1.105578                    minima weather
## 1.105579                weather conditions
## 1.105580              conditions undershot
## 1.105583                 runway overturned
## 1.105586                       caught fire
## 1.105589                       jet fighter
## 1.105590                   fighter crashed
## 1.105594                    school shortly
## 1.105600               experiencing engine
## 1.105601                    engine failure
## 1.105604                  aircraft crashed
## 1.105609                  emergency return
## 1.105615               experiencing engine
## 1.105616                    engine failure
## 1.105623                       29,000 feet
## 1.105626                   overheated tire
## 1.105627                     tire exploded
## 1.105640                electrical systems
## 1.105646                        plane lost
## 1.105647                      lost control
## 1.105667                 pressure resulted
## 1.105671                 chemical reaction
## 1.105684                   tire detonation
## 1.105688                  explosive device
## 1.105692             passenger compartment
## 1.105693               compartment causing
## 1.105702                      plane landed
## 1.105703                     landed safely
## 1.105708                 plastic explosive
## 1.105717                    woman carrying
## 1.105720                 lebanese passport
## 1.105721                     passport lost
## 1.105726                  heavy turbulence
## 1.105729                      low altitude
## 1.105730                  altitude crashed
## 1.105734                          8,500 ft
## 1.105735                       ft mountain
## 1.105738                      poor weather
## 1.105739                   weather crashed
## 1.105746                       engine fire
## 1.105747                   fire detonation
## 1.105751                  explosive device
## 1.105755                      rear section
## 1.105771                        named city
## 1.105776               helicopters crashed
## 1.105780                        rice paddy
## 1.105785                           mid air
## 1.105786                     air collision
## 1.105787                 collision crashed
## 1.105793                      day mountain
## 1.105796                        heavy rain
## 1.105799                        low clouds
## 1.105800                       clouds flew
## 1.105809                      poor weather
## 1.105810                weather controlled
## 1.105811                 controlled flight
## 1.105814                   terrain crashed
## 1.105815                     crashed short
## 1.105828                      crew mistook
## 1.105829                 mistook laphroaig
## 1.105832                        port ellen
## 1.105838                     hill decision
## 1.105843                    handling pilot
## 1.105849                   visual approach
## 1.105852         unsuitable meteorological
## 1.105853         meteorological conditions
## 1.105858                 visual navigation
## 1.105862               contributory factor
## 1.105863                     factor midair
## 1.105864                  midair collision
## 1.105865              collision inadequate
## 1.105866                 inadequate visual
## 1.105867                    visual lookout
## 1.105874                   aircraft twenty
## 1.105875                     twenty killed
## 1.105879                      de havilland
## 1.105901              undetermined reasons
## 1.105904                  aircraft crashed
## 1.105912                       flight fire
## 1.105913                       fire caused
## 1.105921                        rear cargo
## 1.105922                        cargo hold
## 1.105923                          hold led
## 1.105931                  aircraft crashed
## 1.105934                   takeoff crashed
## 1.105940                      poor weather
## 1.105941                weather conditions
## 1.105942                conditions crashed
## 1.105948                      poor weather
## 1.105949                weather conditions
## 1.105953                approached durzana
## 1.105954                       durzana air
## 1.105955                          air base
## 1.105956                         base shot
## 1.105960                       spla rebels
## 1.105965                      air missiles
## 1.105966                  missiles shortly
## 1.105973                       cargo plane
## 1.105974                     plane pitched
## 1.105977                   rolled inverted
## 1.105980                crashed improperly
## 1.105981                 improperly loaded
## 1.105982                    loaded alcohol
## 1.105983                alcohol impairment
## 1.105992                  midair collision
## 1.105993                collision occurred
## 1.105997                              dc 9
## 1.105998                      9 attempting
## 1.106008                          6,560 ft
## 1.106011               cerritos california
## 1.106014                      piper struck
## 1.106021               vertical stabilizer
## 1.106025                              dc 9
## 1.106028                        piper fell
## 1.106032             unoccupied playground
## 1.106035                              dc 9
## 1.106036                         9 crashed
## 1.106040           neighborhood destroying
## 1.106041                 destroying eleven
## 1.106042                      eleven homes
## 1.106052                              dc 9
## 1.106073               piper inadvertently
## 1.106074             inadvertently entered
## 1.106077                      lax terminal
## 1.106078                  terminal control
## 1.106095                unauthorized entry
## 1.106099                             pa 28
## 1.106103                       los angeles
## 1.106104                  angeles terminal
## 1.106105                  terminal control
## 1.106114                     avoid concept
## 1.106117                    ensure traffic
## 1.106118                traffic separation
## 1.106140                    threw grenades
## 1.106144                        killing 16
## 1.106145                     16 passengers
## 1.106152                       ground crew
## 1.106158                     named clipper
## 1.106159                   clipper empress
## 1.106163                      seas overran
## 1.106171                   delivery flight
## 1.106174                   aircraft struck
## 1.106177                     cloud covered
## 1.106178                  covered mountain
## 1.106181                          4,300 ft
## 1.106182                           ft crew
## 1.106191                       cargo plane
## 1.106192                        plane lost
## 1.106193                     lost altitude
## 1.106196                  crashed inverted
## 1.106206                   approved device
## 1.106207                   device designed
## 1.106214                loading operations
## 1.106219                   properly stowed
## 1.106223                       flight crew
## 1.106230               controls preventing
## 1.106233                       flight crew
## 1.106246                    takeoff shiraz
## 1.106247                    shiraz airport
## 1.106252                    iraqi aircraft
## 1.106253               aircraft passengers
## 1.106262                    attack crashed
## 1.106266                lembombo mountains
## 1.106270                   storm president
## 1.106271                  president samora
## 1.106272                     samora machel
## 1.106273                  machel president
## 1.106276                 mozambique killed
## 1.106279                aircraft descended
## 1.106290                    visual contact
## 1.106295                      gpws warning
## 1.106301                         plane hit
## 1.106304                   ground crashing
## 1.106308                      uphill slope
## 1.106309                slope navigational
## 1.106310                navigational error
## 1.106311                        error gpsw
## 1.106325                    correct flight
## 1.106326                       flight path
## 1.106330                      pirate radio
## 1.106331                      radio beacon
## 1.106332               beacon broadcasting
## 1.106340                    maputo airport
## 1.106341              airport disorienting
## 1.106349                      hard landing
## 1.106350                   landing crashed
## 1.106360                      hard landing
## 1.106373                     daily highway
## 1.106374                   highway traffic
## 1.106375              traffic observations
## 1.106380                         york city
## 1.106386                    passenger jane
## 1.106387                    jane dornacker
## 1.106390                         nbc radio
## 1.106391                     radio traffic
## 1.106392                  traffic reporter
## 1.106398               northerly direction
## 1.106401                  manhattan's west
## 1.106409                           75 feet
## 1.106410                    feet witnesses
## 1.106411                witnesses observed
## 1.106414                   aircraft's main
## 1.106415                        main rotor
## 1.106416                      rotor blades
## 1.106417                       blades stop
## 1.106420                aircraft descended
## 1.106421                 descended rapidly
## 1.106422                    rapidly struck
## 1.106428                        chain link
## 1.106429                        link fence
## 1.106433                        river pier
## 1.106434                      pier crashed
## 1.106444                           20 feet
## 1.106447               water investigation
## 1.106448            investigation revealed
## 1.106451                      sprag clutch
## 1.106454           inadequately lubricated
## 1.106461                opposite direction
## 1.106468                    sprag assembly
## 1.106476                activating springs
## 1.106482                       size sprags
## 1.106487           unauthorized overhauled
## 1.106488                 overhauled clutch
## 1.106495                aircraft dornacker
## 1.106500                  helicopter crash
## 1.106501                     crash earlier
## 1.106506                     crashed short
## 1.106512                    approach broke
## 1.106516                   landed inverted
## 1.106517                     inverted crew
## 1.106518                        crew error
## 1.106527                          mda crew
## 1.106531                  properly monitor
## 1.106536                mechanical failure
## 1.106537                   failure weather
## 1.106540                       ground fire
## 1.106543                     contra rebels
## 1.106544                    rebels brought
## 1.106557                  pakistani border
## 1.106558                       border crew
## 1.106559                        crew error
## 1.106560                     error descent
## 1.106563                      minimum safe
## 1.106564                     safe altitude
## 1.106568               defective altimeter
## 1.106579               helicopoter crashed
## 1.106583                         north sea
## 1.106586                      carrying oil
## 1.106587                       oil workers
## 1.106591                    sumburgh rotor
## 1.106592                     rotor failure
## 1.106593                      failure shot
## 1.106597                     afghan rebels
## 1.106600                  aircraft crashed
## 1.106606                      wrong runway
## 1.106616              english instructions
## 1.106628                          2 engine
## 1.106629                     engine failed
## 1.106630                        failed due
## 1.106633                      severe icing
## 1.106634                  icing conditions
## 1.106635                     conditions 30
## 1.106636                        30 minutes
## 1.106639                   leaving lanzhou
## 1.106643                    prop feathered
## 1.106646                     plane crashed
## 1.106651                 airport hijacking
## 1.106660                   amman hijackers
## 1.106661                hijackers exploded
## 1.106664                      hand grenade
## 1.106668                   passenger cabin
## 1.106673                 emergency descent
## 1.106677                      hand grenade
## 1.106678                  grenade exploded
## 1.106682                   cockpit causing
## 1.106687                      lose control
## 1.106688                     control crash
## 1.106689                       crash break
## 1.106694                        catch fire
## 1.106697                   aircraft banked
## 1.106698                     banked ninety
## 1.106699                    ninety degrees
## 1.106702                     crashed short
## 1.106706                       runway loss
## 1.106709                       control due
## 1.106712                mechanical failure
## 1.106717             unsecured nonstandard
## 1.106718                  nonstandard flap
## 1.106719                   flap attachment
## 1.106720                    attachment pin
## 1.106723                   domestic flight
## 1.106724                    flight crashed
## 1.106734                  distress message
## 1.106735                    message engine
## 1.106736                    engine failure
## 1.106739                     plane crashed
## 1.106754                          1 engine
## 1.106757                      fire crashed
## 1.106763                       johannes iv
## 1.106764                        iv airport
## 1.106772                 emergency landing
## 1.106775                      crew radioed
## 1.106780            technical difficulties
## 1.106795                      plane crashd
## 1.106796                 crashd mechanical
## 1.106797            mechanical malfunction
## 1.106798                malfunction midair
## 1.106799                  midair collision
## 1.106807                          7,000 ft
## 1.106808                            ft ten
## 1.106809                        ten killed
## 1.106818                 mooney procedures
## 1.106826                      mooney pilot
## 1.106827                        pilot lack
## 1.106830            navigational vigilance
## 1.106834                 mooney instructor
## 1.106835                  instructor pilot
## 1.106841              authorized intrusion
## 1.106845                         salt lake
## 1.106846                         lake city
## 1.106847                      city airport
## 1.106848                     airport radar
## 1.106849                     radar service
## 1.106852               contributing factor
## 1.106864                   mooney airplane
## 1.106871                       air traffic
## 1.106872                   traffic control
## 1.106873                    control system
## 1.106876                 provide collision
## 1.106877              collision protection
## 1.106883                   aircraft banked
## 1.106884                    banked sharply
## 1.106890                 crashed encounted
## 1.106893                       wake vortex
## 1.106897                  aircraft ditched
## 1.106903                      poor weather
## 1.106904                weather conditions
## 1.106905                   conditions shot
## 1.106910                   stinger missile
## 1.106913                  afghan guerillas
## 1.106920                    plane suddenly
## 1.106921                    suddenly yawed
## 1.106925                       left rolled
## 1.106929                     struck ground
## 1.106930                       ground left
## 1.106939                          3 ground
## 1.106940                   ground vehicles
## 1.106943                       caught fire
## 1.106946               captain's inability
## 1.106959                  asymmetric power
## 1.106960                   power condition
## 1.106963                         low speed
## 1.106971                         beta mode
## 1.106974               propeller operation
## 1.106981                  airplane rapidly
## 1.106984                    final approach
## 1.106994                        post crash
## 1.106995                        crash fire
## 1.106996                         fire lack
## 1.106999                     fire blocking
## 1.107000                 blocking material
## 1.107003                   poorly designed
## 1.107004                 designed aircraft
## 1.107005               aircraft components
## 1.107006               components improper
## 1.107010               powerplant controls
## 1.107011                 controls improper
## 1.107012              improper maintenance
## 1.107013            maintenance adjustment
## 1.107016                       cargo plane
## 1.107017                      plane struck
## 1.107039                         2 minutes
## 1.107044                      plane taking
## 1.107074                  mountain blocked
## 1.107077                    signal stalled
## 1.107086                         low level
## 1.107087                   level refueling
## 1.107088                refueling practice
## 1.107100                           52 dean
## 1.107101                         dean paul
## 1.107102                         paul dino
## 1.107103                       dino martin
## 1.107104                         martin 35
## 1.107105                            35 son
## 1.107108                  entertainer dean
## 1.107109                       dean martin
## 1.107115                       phantom jet
## 1.107119                  piloting crashed
## 1.107123                    san bernardino
## 1.107124              bernardino mountains
## 1.107125              mountains permission
## 1.107130                         march air
## 1.107131                         air force
## 1.107132                        force base
## 1.107133                          base atc
## 1.107138                     maximum climb
## 1.107139                     climb takeoff
## 1.107148                   scattered cloud
## 1.107149                     cloud ceiling
## 1.107152                        4,700 feet
## 1.107153                        feet radar
## 1.107154                     radar contact
## 1.107157                            lost 9
## 1.107158                         9 minutes
## 1.107164                        crash site
## 1.107170                           3rd day
## 1.107176                    san bernardino
## 1.107177              bernardino mountains
## 1.107180            investigation revealed
## 1.107183                     aircraft flew
## 1.107184                     flew inverted
## 1.107188                        solid wall
## 1.107194                    mountain peaks
## 1.107200                        3,750 feet
## 1.107205                   estimated speed
## 1.107208                           560 mph
## 1.107213              literally pulverized
## 1.107219                     maximum climb
## 1.107220                     climb takeoff
## 1.107232                       dense cloud
## 1.107233                       cloud cover
## 1.107234                  cover negatively
## 1.107235               negatively affected
## 1.107238                    pilots ability
## 1.107245                 aircraft attitude
## 1.107246                     attitude shot
## 1.107253                            16 jet
## 1.107254                       jet fighter
## 1.107255                    fighter firing
## 1.107260                       air missile
## 1.107263                  aircraft crashed
## 1.107268                        heavy rain
## 1.107273                 antenna windshear
## 1.107276                       cargo plane
## 1.107277                        plane flew
## 1.107281                      ground short
## 1.107290               controller improper
## 1.107291                      improper ifr
## 1.107292                     ifr procedure
## 1.107293             procedure disregarded
## 1.107294              disregarded decision
## 1.107295                   decision height
## 1.107296                height disregarded
## 1.107297              disregarded warnings
## 1.107300                       cargo plane
## 1.107301                        plane lost
## 1.107305                          2 engine
## 1.107315                       caught fire
## 1.107316                         fire poor
## 1.107319                   flight planning
## 1.107320                planning emergency
## 1.107321              emergency procedures
## 1.107333                   welding process
## 1.107336                    failed causing
## 1.107339               uncontained turbine
## 1.107340                   turbine failure
## 1.107341                      failure shot
## 1.107345                    rebels shortly
## 1.107350              improper maintenance
## 1.107353                 setting propeller
## 1.107354                  propeller flight
## 1.107355                       flight idle
## 1.107356                        idle blade
## 1.107357                       blade angle
## 1.107360                       engine fuel
## 1.107361                         fuel flow
## 1.107362                    flow resulting
## 1.107371                  asymmetric power
## 1.107372                   power condition
## 1.107375               factor contributing
## 1.107382              pilot's unstabilized
## 1.107383               unstabilized visual
## 1.107384                   visual approach
## 1.107388                          2 engine
## 1.107389                     engine failed
## 1.107390                    failed causing
## 1.107393                       engine fire
## 1.107394                        fire cabin
## 1.107395               cabin decompression
## 1.107396              decompression damage
## 1.107401                          1 engine
## 1.107402                       engine loss
## 1.107405                  elevator control
## 1.107411                 electrical system
## 1.107417                        cargo hold
## 1.107427                      fire warning
## 1.107428                    warning system
## 1.107443                  aircraft crashed
## 1.107447                          forest 9
## 1.107448                           9 miles
## 1.107449                       miles short
## 1.107458                    engine failure
## 1.107462                overheated bearing
## 1.107467                     named tadeusz
## 1.107468                tadeusz kosciuszko
## 1.107471                       cargo plane
## 1.107472                        plane lost
## 1.107475                         left wing
## 1.107480                   holding pattern
## 1.107483                         left wing
## 1.107484                       wing failed
## 1.107487                     normal flight
## 1.107488                      flight loads
## 1.107495                     fatigue crack
## 1.107499                    center section
## 1.107500                     section lower
## 1.107501                        lower wing
## 1.107502                         wing skin
## 1.107503                    skin anomalies
## 1.107512               destructive testing
## 1.107513               testing inspections
## 1.107517             correctly interpreted
## 1.107518               interpreted crashed
## 1.107524                      poor weather
## 1.107525                   weather crashed
## 1.107535                    ruteng crashed
## 1.107543                         land shot
## 1.107547                      rebel forces
## 1.107553                       air missile
## 1.107554                   missile crashed
## 1.107561                     jerache river
## 1.107564                          en route
## 1.107568                   domestic flight
## 1.107571                   adverse weather
## 1.107572                weather conditions
## 1.107575                   aircraft landed
## 1.107593                  aircraft overran
## 1.107596                    runway crashed
## 1.107601                       caught fire
## 1.107602                      fire crashed
## 1.107607                          8,200 ft
## 1.107608                             ft 20
## 1.107609                        20 minutes
## 1.107612                      leaving heho
## 1.107615                  aircraft crashed
## 1.107618                            mt ugu
## 1.107621                     monsoon rains
## 1.107624                         heavy fog
## 1.107644                  airplane skidded
## 1.107645                     skidded 1,000
## 1.107646                       1,000 yards
## 1.107650                       dirt runway
## 1.107655                  military vehicle
## 1.107656                   vehicle killing
## 1.107659                      army soldier
## 1.107664                    impacted trees
## 1.107671                          en route
## 1.107674                        rome italy
## 1.107677                      paris france
## 1.107680                   hijacker killed
## 1.107683                    male passenger
## 1.107687                      plane landed
## 1.107690                  cointrin airport
## 1.107703                security personnel
## 1.107706                       cargo plane
## 1.107707                     plane crashed
## 1.107719                   adverse weather
## 1.107720                weather conditions
## 1.107721             conditions overloaded
## 1.107722                  overloaded cargo
## 1.107723                     cargo shifted
## 1.107728                      landing gear
## 1.107729                       gear failed
## 1.107733                  aircraft touched
## 1.107736                        520 meters
## 1.107737                      meters short
## 1.107741                      runway broke
## 1.107746                       caught fire
## 1.107749                  aircraft stalled
## 1.107756              detroit metropolitan
## 1.107757                metropolitan wayne
## 1.107758                      wayne county
## 1.107759                    county airport
## 1.107767                   airplane rolled
## 1.107777                 aircraft collided
## 1.107780              obsticales northeast
## 1.107787                         left wing
## 1.107788                       wing struck
## 1.107789                      struck light
## 1.107790                       light poles
## 1.107797                        rental car
## 1.107798                        car agency
## 1.107804                      girl cecilia
## 1.107805                    cecilia cichan
## 1.107810                    survivor slats
## 1.107815                   extended crew's
## 1.107816                    crew's failure
## 1.107820                    taxi checklist
## 1.107823                      ensure flaps
## 1.107828                     extended lack
## 1.107831                  electrical power
## 1.107835                  aircraft takeoff
## 1.107836                   takeoff warning
## 1.107837                    warning system
## 1.107847                         pilot due
## 1.107850           nuisance alarms.cecelia
## 1.107858                 psychology degree
## 1.107870                 public statements
## 1.107873                   attended annual
## 1.107874                   annual memorial
## 1.107875                 memorial services
## 1.107879                      tragic crash
## 1.107887                    crash victimsã
## 1.107888                        victimsã â
## 1.107889                               â â
## 1.107890                           â loved
## 1.107894                  aircraft stalled
## 1.107903                  crew's attention
## 1.107911                  aircraft failure
## 1.107921                       pilot added
## 1.107922                       added power
## 1.107930                      stick shaker
## 1.107931                  shaker activated
## 1.107942                       sea crashed
## 1.107945                      takeoff shot
## 1.107949                     afghan rebels
## 1.107954                      plane landed
## 1.107960                    runway overran
## 1.107963                     runway struck
## 1.107964                     struck runway
## 1.107965                     runway lights
## 1.107975                  aircraft crashed
## 1.107982                 emergency landing
## 1.107985                  aircraft crashed
## 1.107991                             1 500
## 1.107992                            500 ft
## 1.107995                        heavy rain
## 1.108004                   airport shortly
## 1.108016                    aircraft nosed
## 1.108025                  icing conditions
## 1.108026                  conditions icing
## 1.108032                     plane overran
## 1.108049                    military plane
## 1.108050                   plane attempted
## 1.108055                 emergency landing
## 1.108058        indianapolis international
## 1.108059             international airport
## 1.108064                       flameout 30
## 1.108065                          30 miles
## 1.108066                        miles east
## 1.108071             controller apparently
## 1.108074                    bad directions
## 1.108080                  pilot attempting
## 1.108094                            500 ft
## 1.108097                       corsair hit
## 1.108116                            250 ft
## 1.108124                           7 story
## 1.108125                     story airport
## 1.108126                    airport ramada
## 1.108127                        ramada inn
## 1.108144                   twenty thousand
## 1.108145                   thousand pounds
## 1.108148                      fuel ignited
## 1.108149                   ignited killing
## 1.108155                     hotel's lobby
## 1.108158                         10th died
## 1.108162                    pilot survived
## 1.108163                     survived shot
## 1.108167                    rebels crashed
## 1.108174                 snowstorm failure
## 1.108177                       obtain taxi
## 1.108178                    taxi clearance
## 1.108179                clearance confused
## 1.108182                 ground controller
## 1.108186                     plane reached
## 1.108199                        27 minutes
## 1.108202                          de icing
## 1.108208               officer overrotated
## 1.108215                     plane stalled
## 1.108216                   stalled crashed
## 1.108229                   respective jobs
## 1.108232                    aircraft crash
## 1.108233                      crash landed
## 1.108234                        landed 200
## 1.108235                         200 yards
## 1.108236                       yards short
## 1.108246                     homer airport
## 1.108247                   airport failure
## 1.108274                      lose control
## 1.108286                      indian ocean
## 1.108289                    crew contacted
## 1.108290               contacted mauritius
## 1.108291                mauritius approach
## 1.108292                  approach control
## 1.108295                    reporting fire
## 1.108298                      smoke aboard
## 1.108312                         ocean 150
## 1.108313                         150 miles
## 1.108314                   miles northeast
## 1.108319                       fire caused
## 1.108320             caused incapacitation
## 1.108328                      flight break
## 1.108339                   fire originated
## 1.108343                      front pallet
## 1.108351                        upper deck
## 1.108352                        deck cargo
## 1.108353                        cargo hold
## 1.108358                    unknown origin
## 1.108359                   origin possibly
## 1.108360                        possibly 1
## 1.108361                   1 incapacitated
## 1.108364                            crew 2
## 1.108365                          2 caused
## 1.108366             caused disorientation
## 1.108370                          crew due
## 1.108373                       thick smoke
## 1.108374                           smoke 3
## 1.108375                          3 caused
## 1.108376                       caused crew
## 1.108377                  crew distraction
## 1.108378                     distraction 4
## 1.108379                        4 weakened
## 1.108382                aircraft structure
## 1.108383                 structure causing
## 1.108387                      flight break
## 1.108390                          5 burned
## 1.108393                    control cables
## 1.108396                          6 caused
## 1.108397                       caused loss
## 1.108400                       control due
## 1.108406                 aircraft fuselage
## 1.108414                unstable substance
## 1.108436                     plane crashed
## 1.108443                         abu dhabi
## 1.108446                bangkok detonation
## 1.108450                  explosive device
## 1.108454                   passenger cabin
## 1.108455                        cabin left
## 1.108465                         abu dhabi
## 1.108473                      korean woman
## 1.108482                    fake passports
## 1.108496                   cyanide capsule
## 1.108503                      north korean
## 1.108504                      korean agent
## 1.108505                   agent confessed
## 1.108511                  aircraft crashed
## 1.108518                           tree 10
## 1.108519                             10 km
## 1.108525                        18 minutes
## 1.108531                       fired usair
## 1.108532                    usair employee
## 1.108533                    employee david
## 1.108534                       david burke
## 1.108539                   goodbye message
## 1.108542                      friends shot
## 1.108548                         44 magnum
## 1.108549                     magnum pistol
## 1.108557                       22,000 feet
## 1.108561                central california
## 1.108562                  california coast
## 1.108565                      cockpit crew
## 1.108566                        crew heard
## 1.108572                   passenger cabin
## 1.108577                   frantic message
## 1.108580                       air traffic
## 1.108581               traffic controllers
## 1.108582                controllers thereã
## 1.108583                          thereã â
## 1.108584                               â â
## 1.108587                    gunfire aboard
## 1.108588                    aboard moments
## 1.108592                     plane entered
## 1.108596                    speed nosedive
## 1.108604                           700 mph
## 1.108607                         5,000 g's
## 1.108608                 g's investigators
## 1.108609             investigators sifting
## 1.108619                          planeã â
## 1.108620                               â â
## 1.108623                     cockpit voice
## 1.108624                    voice recorder
## 1.108627             subsequently revealed
## 1.108651                        final shot
## 1.108665                      landing gear
## 1.108674                  aircraft crashed
## 1.108683                      alianza lima
## 1.108684                       lima soccer
## 1.108685                       soccer team
## 1.108686                       team killed
## 1.108689                       pilots lack
## 1.108692                 experience flying
## 1.108703              emergency situations
## 1.108704                situations crashed
## 1.108707                          mt munay
## 1.108710                          5,000 ft
## 1.108713                 approaching maria
## 1.108714                    maria cristina
## 1.108717                   landing crashed
## 1.108721                    atlantic ocean
## 1.108724                          en route
## 1.108727                   reasons unknown
## 1.108728                   unknown crashed
## 1.108729                     crashed short
## 1.108735                      struck trees
## 1.108741                      diverted due
## 1.108747                helicopter crashed
## 1.108755                           oil rig
## 1.108756                      rig improper
## 1.108757                  improper planned
## 1.108758                  planned approach
## 1.108759                approach clearance
## 1.108762            maintained disappeared
## 1.108767                   berau indonesia
## 1.108774                      ils sidebeam
## 1.108784                      poor weather
## 1.108790                         wrong vor
## 1.108793                         ils pilot
## 1.108794              pilot overconfidence
## 1.108798                  pilot inactivity
## 1.108802                   approach struck
## 1.108803                         struck mt
## 1.108804                       mt colorado
## 1.108807                      poor weather
## 1.108808                     weather broke
## 1.108814                     heavy landing
## 1.108815                      landing crew
## 1.108816                        crew error
## 1.108828                         pilot fly
## 1.108833                  aircraft crashed
## 1.108834                        crashed 10
## 1.108835                        10 minutes
## 1.108839                 scheduled landing
## 1.108840                      landing fire
## 1.108848                          4 engine
## 1.108849                        engine led
## 1.108864              aircraft overheating
## 1.108868                    feathering oil
## 1.108869                          oil poor
## 1.108870                  poor maintenance
## 1.108871            maintenance procedures
## 1.108874                  aircraft crashed
## 1.108881                   adverse weather
## 1.108882                weather conditions
## 1.108885                       miles short
## 1.108891                    captain choose
## 1.108894                        direct vor
## 1.108895                           vor dme
## 1.108896                      dme approach
## 1.108901                         safer ils
## 1.108904                    copilot lacked
## 1.108911                   tricky approach
## 1.108935                      ntsb isssued
## 1.108946                        heavy user
## 1.108958                     urine crashed
## 1.108963                     plane stalled
## 1.108971                      engine power
## 1.108976                  engine throttles
## 1.108982                    critical stage
## 1.108988              undetermined reasons
## 1.108993                         crew flew
## 1.109007               complete electrical
## 1.109008                electrical failure
## 1.109014                        wing broke
## 1.109019            uncontrollable descent
## 1.109022                     plane crashed
## 1.109026                 reservoir shortly
## 1.109032                    low visibility
## 1.109040                       flight crew
## 1.109045                     proper flight
## 1.109046                       flight path
## 1.109052           officer's inappropriate
## 1.109053          inappropriate instrument
## 1.109054                   instrument scan
## 1.109057              captain's inadequate
## 1.109058             inadequate monitoring
## 1.109068                     flight crew's
## 1.109069                   crew's response
## 1.109073                   perceived fault
## 1.109077                  airplane's stall
## 1.109078                   stall avoidance
## 1.109079                  avoidance system
## 1.109085                      hard landing
## 1.109089                      runway broke
## 1.109093                       caught fire
## 1.109094                         fire crew
## 1.109095                        crew error
## 1.109096                      error visual
## 1.109097                    visual contact
## 1.109106                aircraft descended
## 1.109110                   decision height
## 1.109111                    height crashed
## 1.109114                       mountain 20
## 1.109115                            20 kms
## 1.109119                    kyrenia turkey
## 1.109123                     approach crew
## 1.109124                        crew error
## 1.109125                       error pilot
## 1.109126                pilot discontinued
## 1.109127                  discontinued ifr
## 1.109128                      ifr approach
## 1.109131                descended ignoring
## 1.109132                ignoring mountains
## 1.109133                   mountains ahead
## 1.109134                   ahead realizing
## 1.109150                  aircraft crashed
## 1.109153                          burned 8
## 1.109154                           8 miles
## 1.109157                         jan smuts
## 1.109158                     smuts airport
## 1.109163                   land detonation
## 1.109167                   bomb consisting
## 1.109170                   nitro glycerine
## 1.109173                  ammonium nitrate
## 1.109178                   heavily insured
## 1.109185                 committed suicide
## 1.109186                   suicide crashed
## 1.109189                     hitting power
## 1.109190                       power lines
## 1.109197                   orly electrical
## 1.109198                 electrical system
## 1.109199                    system failure
## 1.109203              helicopters collided
## 1.109206                           mid air
## 1.109215                     fort campbell
## 1.109216                 campbell military
## 1.109217                     military base
## 1.109218                        base pilot
## 1.109219                       pilot error
## 1.109222                   aircraft struck
## 1.109227                        6,200 feet
## 1.109241                    vfr conditions
## 1.109244                   adverse weather
## 1.109245                weather conditions
## 1.109246          conditions inappropriate
## 1.109247            inappropriate presence
## 1.109252                        crew pilot
## 1.109260         talkativeness distracting
## 1.109282                         plane vfr
## 1.109283                        vfr flight
## 1.109286                    ifr conditions
## 1.109299                       cargo plane
## 1.109300                      plane failed
## 1.109301                    failed causing
## 1.109312                  runway hijacking
## 1.109315                   hostages killed
## 1.109319                       ground shot
## 1.109323                  afghan guerillas
## 1.109327                     anti aircraft
## 1.109328                  aircraft missile
## 1.109331                     plane crashed
## 1.109334                        fire broke
## 1.109341                 emergency descent
## 1.109350                      booster pump
## 1.109357                      fire crashed
## 1.109365                      poor weather
## 1.109366                      weather shot
## 1.109373                       air missile
## 1.109376                 aircraft suffered
## 1.109377               suffered separation
## 1.109384                fuselage resulting
## 1.109387           explosive decompression
## 1.109390                 severe structural
## 1.109391                 structural damage
## 1.109392                    damage fflight
## 1.109393                 fflight attendant
## 1.109394                     attendant c.b
## 1.109395                       c.b lansing
## 1.109412                       plane named
## 1.109413                       named queen
## 1.109414               queen lili'uokalani
## 1.109418                    safe emergency
## 1.109419                 emergency landing
## 1.109422                   kahuiui airport
## 1.109425                      maui failure
## 1.109428                   aloha airline's
## 1.109429             airline's maintenance
## 1.109430               maintenance program
## 1.109439                    fatigue damage
## 1.109447                         lap joint
## 1.109457                    fuselage upper
## 1.109458                        upper lobe
## 1.109459                 lobe contributing
## 1.109460              contributing factors
## 1.109466                   aloha airline's
## 1.109467              airline's management
## 1.109470                properly supervise
## 1.109473                  maintenance crew
## 1.109484                 properly evaluate
## 1.109487                    aloha airlines
## 1.109488              airlines maintenance
## 1.109489               maintenance program
## 1.109495              airline's inspection
## 1.109498                   quality control
## 1.109499              control deficiencies
## 1.109504               maintenance program
## 1.109505            program underestimated
## 1.109516 pressurizations depressurizations
## 1.109519                        humid salt
## 1.109520                          salt air
## 1.109521                       air climate
## 1.109535                     foggy weather
## 1.109538                      crew started
## 1.109546                  navigation error
## 1.109547                       error pilot
## 1.109548                       pilot error
## 1.109551              aircraft encountered
## 1.109552                 encountered heavy
## 1.109553                        heavy rain
## 1.109564                  engines attempts
## 1.109567                   restart engines
## 1.109572                   aircraft landed
## 1.109573                     landed safely
## 1.109577                      grassy field
## 1.109581                    drainage ditch
## 1.109587                       power water
## 1.109588                   water ingestion
## 1.109589                     ingestion due
## 1.109592                        heavy rain
## 1.109596                           level 4
## 1.109597                    4 thunderstorm
## 1.109598               thunderstorm caused
## 1.109599                    caused failure
## 1.109612                 inadequate design
## 1.109619                         faa water
## 1.109620                   water ingestion
## 1.109621           ingestion certification
## 1.109622           certification standards
## 1.109629                   waterfall rates
## 1.109639           intensity thunderstorms
## 1.109642                       cargo plane
## 1.109643                     plane crashed
## 1.109648                       cargo plane
## 1.109649                     plane pitched
## 1.109656                     causing cargo
## 1.109664                      lose control
## 1.109669                  airliner crashed
## 1.109670                         crashed 3
## 1.109671                           3 miles
## 1.109672                       miles short
## 1.109678                   poor visibility
## 1.109679                 visibility crew's
## 1.109680             crew's overconfidence
## 1.109685                   flight planning
## 1.109696                           fly bys
## 1.109708                            100 ft
## 1.109709                       ft altitude
## 1.109712                      landing gear
## 1.109715                    flaps extended
## 1.109721                  protection alpha
## 1.109722                       alpha floor
## 1.109723                    floor function
## 1.109734                   plane descended
## 1.109737                            100 ft
## 1.109743                           30 feet
## 1.109746                         hit trees
## 1.109757                 totally destroyed
## 1.109761                successive impacts
## 1.109764                      violent fire
## 1.109769                     pilot allowed
## 1.109776                            100 ft
## 1.109779                        slow speed
## 1.109782                     maximum angle
## 1.109793               power unfamiliarity
## 1.109800                     landing field
## 1.109810                  civilian iranian
## 1.109811                  iranian airliner
## 1.109818                          u.s navy
## 1.109819                       navy vessel
## 1.109820                      vessel u.s.s
## 1.109821                   u.s.s vincennes
## 1.109826                      air missiles
## 1.109833                    civilian ships
## 1.109839                  iranian gunboats
## 1.109842               vincennes responded
## 1.109845                    hostile action
## 1.109846                     action taking
## 1.109853                       iranian gun
## 1.109854                         gun boats
## 1.109869                 maintain position
## 1.109874                       ship headed
## 1.109880                    penetrated 2nm
## 1.109881                        2nm inside
## 1.109882                    inside iranian
## 1.109883               iranian territorial
## 1.109884                territorial waters
## 1.109895                       enemy boats
## 1.109898                         ill fated
## 1.109899                    fated airliner
## 1.109904                    leaving bandar
## 1.109905                      bandar abbas
## 1.109922                   target appeared
## 1.109938                        time zones
## 1.109959                        2 military
## 1.109962                        3 civilian
## 1.109970                     radar tracker
## 1.109971                      tracker ball
## 1.109980                      bandar abbas
## 1.109981                     abbas airport
## 1.109996                            14 jet
## 1.109997                       jet fighter
## 1.110002                      time playing
## 1.110013                        14 iranian
## 1.110014                   iranian fighter
## 1.110022                          10 radio
## 1.110023                  radio challenges
## 1.110032              military frequencies
## 1.110045                   civil emergency
## 1.110046               emergency frequency
## 1.110047               frequency addressed
## 1.110052                   called military
## 1.110060                        nearing 10
## 1.110061                          10 miles
## 1.110083                      air missiles
## 1.110086                  fired destroying
## 1.110092                  inquiry computer
## 1.110093                     computer data
## 1.110108                       steady rate
## 1.110109                   rate incredibly
## 1.110112            military investigation
## 1.110113           investigation concluded
## 1.110118                    u.s government
## 1.110119              government regretted
## 1.110124                        human life
## 1.110135                    acted properly
## 1.110141                  airliner shortly
## 1.110150                       cargo plane
## 1.110151                 plane experienced
## 1.110152               experienced failure
## 1.110157                          4 engine
## 1.110168                   airport control
## 1.110174                     plane crashed
## 1.110177                       cargo plane
## 1.110178                         plane ran
## 1.110187                         dirt bank
## 1.110188                         bank fuel
## 1.110189                    fuel starvaion
## 1.110192                       drain valve
## 1.110193                      valve inside
## 1.110197                          4 engine
## 1.110198                        engine led
## 1.110204                      fuel crashed
## 1.110207                  approach crashed
## 1.110212                    sophia airport
## 1.110213                        airport en
## 1.110214                          en route
## 1.110219                        crew error
## 1.110238                             2.5 3
## 1.110239                         3 degrees
## 1.110244                     position shot
## 1.110251                       air missile
## 1.110252                   missile crashed
## 1.110253                   crashed shortly
## 1.110259                     bahawalpur 60
## 1.110260                          60 miles
## 1.110264                     indian border
## 1.110265                        border act
## 1.110268               sabotage detonation
## 1.110272                         low level
## 1.110273                   level explosive
## 1.110274                  explosive device
## 1.110277                incapacitating gas
## 1.110278                           gas u.s
## 1.110279                    u.s ambassador
## 1.110282                   pakistan arnold
## 1.110283                     arnold raphel
## 1.110284                         raphel 45
## 1.110287                      muhammad zia
## 1.110288                            zia ul
## 1.110289                            ul haq
## 1.110290                            haq 64
## 1.110291                         64 killed
## 1.110294                     recent report
## 1.110307                  elevator control
## 1.110308                    control system
## 1.110309                        system due
## 1.110313                mechanical failure
## 1.110316                       crew failed
## 1.110324                    proper setting
## 1.110329                   plane descended
## 1.110333                   contacted trees
## 1.110334                       trees broke
## 1.110338                       caught fire
## 1.110339                         fire crew
## 1.110340                      crew fatigue
## 1.110344                    factor crashed
## 1.110351                     outboard flap
## 1.110355                         plane hit
## 1.110358                   approach lights
## 1.110361                         runway 31
## 1.110365                      main landing
## 1.110366                      landing gear
## 1.110367                    gear collapsed
## 1.110371                      aircraft ran
## 1.110380                  aircraft stalled
## 1.110385                   takeoff hitting
## 1.110388                     ils localizer
## 1.110389                 localizer antenna
## 1.110390                     antenna 1,000
## 1.110391                        1,000 feet
## 1.110398                       runway crew
## 1.110399                        crew error
## 1.110400                  error improperly
## 1.110401                    improperly set
## 1.110402                         set flaps
## 1.110405                     slats failure
## 1.110409                    takeoff safety
## 1.110410                    safety warning
## 1.110411                    warning system
## 1.110414                 plane disappeared
## 1.110420                  uruapan wreckage
## 1.110426                    western sierre
## 1.110427                      sierre madre
## 1.110428                   madre mountains
## 1.110431                  aircraft crashed
## 1.110436                        heavy rain
## 1.110439               thunderstorms short
## 1.110445                    crew descended
## 1.110448                  minimum altitude
## 1.110453                      outer marker
## 1.110456                        plane lost
## 1.110457                       lost height
## 1.110458                        height due
## 1.110462                microburst induced
## 1.110463                 induced windshear
## 1.110473                positioning flight
## 1.110479                        bad engine
## 1.110482                     engine failed
## 1.110486                     plane crashed
## 1.110495                 aircraft ingested
## 1.110496                 ingested numerous
## 1.110497                  numerous pigeons
## 1.110503                       engine lost
## 1.110504                       lost thrust
## 1.110511                       lost thrust
## 1.110515                  emergency return
## 1.110521                  aircraft crashed
## 1.110526                       land engine
## 1.110527                    engine failure
## 1.110528                       failure due
## 1.110533                             10 16
## 1.110534                        16 columba
## 1.110535                    columba guinea
## 1.110536                      guinea birds
## 1.110537                birds accidentally
## 1.110538                 accidentally shot
## 1.110542                    pakistani anti
## 1.110543                     anti aircraft
## 1.110544                     aircraft fire
## 1.110550                        afghan air
## 1.110551                         air space
## 1.110554                      cargo flight
## 1.110555                       flight crew
## 1.110556                      crew decided
## 1.110560                   visual approach
## 1.110564                      gpws warning
## 1.110572                 sightseeing plane
## 1.110573                     plane crashed
## 1.110577                     hotel shortly
## 1.110582                       left engine
## 1.110588                  fatigue fracture
## 1.110592                      engine's oil
## 1.110593                          oil pump
## 1.110594                        pump drive
## 1.110595                       drive shaft
## 1.110596                     shaft crashed
## 1.110601                        sawyer afb
## 1.110604                michigan undershot
## 1.110605                  undershot runway
## 1.110615                   landing attempt
## 1.110620                       crew's lack
## 1.110623              adequate preparation
## 1.110631                precision approach
## 1.110635                 crew coordination
## 1.110636             coordination altitude
## 1.110637                 altitude callouts
## 1.110641                 continued descent
## 1.110649                     runway visual
## 1.110650                   visual markings
## 1.110651                     markings crew
## 1.110652                      crew fatigue
## 1.110655                         plane hit
## 1.110658                   electrical mast
## 1.110659                            mast 5
## 1.110660                           5 miles
## 1.110661                       miles short
## 1.110673                      flames error
## 1.110686                         pilot due
## 1.110694                   poor visibility
## 1.110695             visibility conditions
## 1.110696                conditions crashed
## 1.110697                     crashed short
## 1.110701                 runway controlled
## 1.110702                 controlled flight
## 1.110705                   terrain crashed
## 1.110706                   crashed shortly
## 1.110712                       manco capac
## 1.110713                     capac airport
## 1.110737                       plane broke
## 1.110746                   plane attempted
## 1.110751                 emergency landing
## 1.110752                       landing due
## 1.110755                    engine failure
## 1.110756                    failure struck
## 1.110761                       caught fire
## 1.110764                   aircraft struck
## 1.110765                      struck trees
## 1.110766                       trees 2,400
## 1.110767                        2,400 feet
## 1.110776             deteriorating weather
## 1.110777                weather conditions
## 1.110780                     power failure
## 1.110781                    failure caused
## 1.110795                      nose pitched
## 1.110799                   plane descended
## 1.110807                       caught fire
## 1.110808                  fire inadvertent
## 1.110809            inadvertent activation
## 1.110813                   stall avoidance
## 1.110814                  avoidance system
## 1.110815                  system resulting
## 1.110819                      stick pusher
## 1.110820                 pusher activation
## 1.110824                  crucial altitude
## 1.110833                   poor visibility
## 1.110836                      aircraft hit
## 1.110841                        burned vfr
## 1.110842                        vfr flight
## 1.110847                   aircraft struck
## 1.110857                          base leg
## 1.110860                   crew procedural
## 1.110861                 procedural errors
## 1.110864                   radio altimeter
## 1.110865                 altimeter warning
## 1.110872                      outer marker
## 1.110879               approach accidently
## 1.110880                 accidently struck
## 1.110886                       air missile
## 1.110890                    polisario shot
## 1.110895                     pakistani jet
## 1.110896                       jet fighter
## 1.110899                          en route
## 1.110902                  midair collision
## 1.110903                collision occurred
## 1.110907                  soviet transport
## 1.110911                 earthquake relief
## 1.110912                    relief mission
## 1.110916                       military mi
## 1.110917                              mi 8
## 1.110918                      8 helicopter
## 1.110922              transport approached
## 1.110933              helicocopter seventy
## 1.110937                         78 aboard
## 1.110947                              mi 8
## 1.110948                        8 survived
## 1.110955               incorrect altimeter
## 1.110956                 altimeter setting
## 1.110959                          2 missed
## 1.110960                 missed approaches
## 1.110965                    plane diverted
## 1.110973          residential neighborhood
## 1.110978                       land forced
## 1.110979                    forced landing
## 1.110980                      landing fuel
## 1.110981                   fuel exhaustion
## 1.110984              airliner disappeared
## 1.110987                     radar shortly
## 1.110993                            fl 310
## 1.111000                  heathrow airport
## 1.111001                    airport london
## 1.111007                    aircraft broke
## 1.111012                     main sections
## 1.111015                   wreckage coming
## 1.111022              lockerbie detonation
## 1.111026                  explosive device
## 1.111030                     forward cargo
## 1.111035               terrorists musician
## 1.111036                     musician paul
## 1.111037                     paul jeffreys
## 1.111038                   jeffreys killed
## 1.111043                     named clipper
## 1.111044                      clipper maid
## 1.111050                          en route
## 1.111055                            fl 280
## 1.111069                         fan blade
## 1.111074                          1 engine
## 1.111075                   engine detached
## 1.111080                  compressor stall
## 1.111088                    crew throttled
## 1.111093                          2 engine
## 1.111097                 vibration stopped
## 1.111109                          2 engine
## 1.111114                        land power
## 1.111121                          1 engine
## 1.111124                  aircraft stalled
## 1.111129                       trees 3,000
## 1.111130                          3,000 ft
## 1.111131                          ft short
## 1.111137                   crew mistakenly
## 1.111138                   mistakenly shut
## 1.111142                      wrong engine
## 1.111143                       engine lost
## 1.111144                        lost power
## 1.111148                   disabled engine
## 1.111154                   maintain flight
## 1.111158                    final approach
## 1.111159                  approach crashed
## 1.111167                         dyess air
## 1.111168                         air force
## 1.111169                        force base
## 1.111170                      base failure
## 1.111174                   water injection
## 1.111175                  injection system
## 1.111180                  aircraft entered
## 1.111183                          fog bank
## 1.111195                       caught fire
## 1.111200                   takeoff attempt
## 1.111203                       cargo plane
## 1.111204                      plane banked
## 1.111216                      airliner hit
## 1.111225                       santa maria
## 1.111228                   crew mistakenly
## 1.111229              mistakenly continued
## 1.111234                          3,000 ft
## 1.111255                aircraft continued
## 1.111276                          hit pico
## 1.111277                         pico alto
## 1.111278                     alto mountain
## 1.111284                          2,000 ft
## 1.111285                     ft procedural
## 1.111286                 procedural errors
## 1.111290                       flight crew
## 1.111293                       atc descent
## 1.111299                    minimum sector
## 1.111300                   sector altitude
## 1.111301             altitude transmission
## 1.111316                       cargo plane
## 1.111317                   plane descended
## 1.111322                    impacted trees
## 1.111328              standard phraseology
## 1.111332                      kuala lumpur
## 1.111333                        lumpur atc
## 1.111334                       atc causing
## 1.111343                  leaving honolulu
## 1.111349                       los angeles
## 1.111352                  sydney australia
## 1.111358                improperly latched
## 1.111359                   latched forward
## 1.111360                     forward lower
## 1.111361                        lower lobe
## 1.111362                        lobe cargo
## 1.111363                        cargo door
## 1.111364                     door resulted
## 1.111367           explosive decompression
## 1.111378                         4 engines
## 1.111393                      plane landed
## 1.111394                     landed safely
## 1.111397                        cargo door
## 1.111404                     faulty switch
## 1.111410                      door control
## 1.111411                    control system
## 1.111414              permitted electrical
## 1.111415              electrical actuation
## 1.111419                      door latches
## 1.111423                unlatched position
## 1.111426                      initial door
## 1.111427                      door closure
## 1.111445                  mechanism called
## 1.111448                    locking sector
## 1.111453                     latch engaged
## 1.111454                  engaged manually
## 1.111466                   locking sectors
## 1.111484                       design flaw
## 1.111494                finally recognized
## 1.111501                     fatal failure
## 1.111506               installing stronger
## 1.111507                  stronger locking
## 1.111508                   locking sectors
## 1.111509                  sectors required
## 1.111510                   required taking
## 1.111516                        service 10
## 1.111517                          10 hours
## 1.111523                  allowed airlines
## 1.111524                       airlines 18
## 1.111525                         18 months
## 1.111534            maintenance procedures
## 1.111537                       cargo plane
## 1.111538                     plane crashed
## 1.111542                     initial climb
## 1.111543                       climb icing
## 1.111544                     icing crashed
## 1.111547                    striking radio
## 1.111548                       radio tower
## 1.111556                       thunder bay
## 1.111557                       bay ontario
## 1.111560                 winnipeg manitoba
## 1.111563                     plane crashed
## 1.111569                    dryden ontario
## 1.111572                   aircraft failed
## 1.111575                     gain altitude
## 1.111576                  altitude settled
## 1.111590                     time clipping
## 1.111595                     trees causing
## 1.111596                    causing debris
## 1.111601                   engines leading
## 1.111605                    plane crashing
## 1.111614                    engine running
## 1.111619                 unserviceable apu
## 1.111623                    external power
## 1.111624                        power unit
## 1.111645                captain's decision
## 1.111651             deteriorating weather
## 1.111652                weather conditions
## 1.111663                    wings decision
## 1.111667                            de ice
## 1.111678                      canadian air
## 1.111679                     air transport
## 1.111680                  transport system
## 1.111699                   proper decision
## 1.111704                       cargo plane
## 1.111705                     plane pitched
## 1.111709                     crashed short
## 1.111717                       control due
## 1.111723                  flight decisions
## 1.111730           undetected accumulation
## 1.111736                      leading edge
## 1.111740             horizontal stabilizer
## 1.111746                    forward centre
## 1.111749                 gravity condition
## 1.111758                     landing flaps
## 1.111768              undetermined reasons
## 1.111777                improperly latched
## 1.111778                     latched cargo
## 1.111779                        cargo door
## 1.111780                 door contributing
## 1.111786             inadequate procedures
## 1.111790                evergreen airlines
## 1.111798                        pre flight
## 1.111799               flight verification
## 1.111802                    external cargo
## 1.111803                        cargo door
## 1.111804                         door lock
## 1.111805                          lock pin
## 1.111806                        pin manual
## 1.111807                    manual control
## 1.111808                    control handle
## 1.111814                 mcdonnell douglas
## 1.111817                    provide flight
## 1.111818                       flight crew
## 1.111819                     crew guidance
## 1.111822              emergency procedures
## 1.111831                        cargo door
## 1.111845              mandate modification
## 1.111851                    warning system
## 1.111854                              dc 9
## 1.111855                           9 cargo
## 1.111856                  cargo configured
## 1.111857              configured airplanes
## 1.111866                       flight door
## 1.111867                     door openings
## 1.111868                  openings crashed
## 1.111873               mountainous terrain
## 1.111877                        troop lift
## 1.111878                      lift mission
## 1.111895                      ground pilot
## 1.111896                       pilot error
## 1.111899                     plane crashed
## 1.111905                    steep approach
## 1.111906                     approach crew
## 1.111907                        crew error
## 1.111910                    speed approach
## 1.111911                     approach deep
## 1.111912                        deep stall
## 1.111917                        boeing 707
## 1.111922                     movie airport
## 1.111935                aircraft continued
## 1.111939                   current heading
## 1.111947                        4,100 feet
## 1.111948                         feet crew
## 1.111949                        crew error
## 1.111950                error navigational
## 1.111951                navigational error
## 1.111952                  error controlled
## 1.111953                 controlled flight
## 1.111956                   terrain crashed
## 1.111959                          en route
## 1.111962                      cargo flight
## 1.111963                   flight suffered
## 1.111979                    attitude stall
## 1.111984                    houses crashed
## 1.111988                     pilot radioed
## 1.111994                 emergency landing
## 1.112003                     plane pitched
## 1.112009                        steep dive
## 1.112012                     crashed short
## 1.112016                   runway aircraft
## 1.112017               aircraft improperly
## 1.112018                 improperly loaded
## 1.112019                    loaded causing
## 1.112029                      aircraft hit
## 1.112038                   landing attempt
## 1.112043                    crew descended
## 1.112047                 published minimum
## 1.112048                  minimum altitude
## 1.112054                 landing equipment
## 1.112055                equipment failures
## 1.112083                        ils signal
## 1.112088                  ground proximity
## 1.112089                 proximity warning
## 1.112090                    warning system
## 1.112091                      system alarm
## 1.112092                          alarm 60
## 1.112115                      dutch soccer
## 1.112116                       soccer team
## 1.112117                     team colorful
## 1.112118                       colorful 11
## 1.112123                    killed crashed
## 1.112129                     pilot aborted
## 1.112151                     apply reverse
## 1.112152                    reverse thrust
## 1.112155                   flight engineer
## 1.112156                 engineer switched
## 1.112164                  aircraft overran
## 1.112165                    overran runway
## 1.112166                   runway collided
## 1.112171                       caught fire
## 1.112172                       fire jammed
## 1.112173                     jammed rudder
## 1.112178                         ramp door
## 1.112182                    flight causing
## 1.112183                      causing loss
## 1.112191                     plane crashed
## 1.112195                      hill crashed
## 1.112202                     remote andean
## 1.112203                  andean highlands
## 1.112204                 highlands shortly
## 1.112207                       leaving san
## 1.112208                         san ramon
## 1.112209                  ramon overloaded
## 1.112210                overloaded crashed
## 1.112219                      plane landed
## 1.112220                      landed short
## 1.112228                   landing attempt
## 1.112229                   attempt overran
## 1.112237                embankment crashed
## 1.112240                      takeoff shot
## 1.112247                       air missile
## 1.112248                    missile unable
## 1.112251                     gain altitude
## 1.112254                positioning flight
## 1.112255                     flight struck
## 1.112256                 struck powerlines
## 1.112259                   crashed failure
## 1.112270               aircraft maintained
## 1.112273                     climb profile
## 1.112276                   takeoff factors
## 1.112277                   factors related
## 1.112283                        dark night
## 1.112286                       crew's lack
## 1.112289                 visual perception
## 1.112294                        pic's lack
## 1.112297                      rest fatigue
## 1.112301                 copilot's failure
## 1.112304                   attain remedial
## 1.112305                   remedial action
## 1.112306                    action shortly
## 1.112311                        runway 15l
## 1.112315              baltimore washington
## 1.112316          washington international
## 1.112317             international airport
## 1.112320                 pilot transmitted
## 1.112326              emergency consisting
## 1.112341                       circle land
## 1.112345                  witnesses flames
## 1.112346                      flames smoke
## 1.112354                  aircraft started
## 1.112357                   gradual descent
## 1.112368                     house crashed
## 1.112371                     costal cliffs
## 1.112376                   ice observation
## 1.112377                observation flight
## 1.112378               flight catastrophic
## 1.112379              catastrophic failure
## 1.112384                            2 rear
## 1.112385                       rear engine
## 1.112388                          en route
## 1.112395                        total loss
## 1.112400                hydraulics systems
## 1.112401                       systems due
## 1.112406              aircraft maneuvering
## 1.112414                   engines crashed
## 1.112421                        sioux city
## 1.112422                      city failure
## 1.112427                     fatigue crack
## 1.112432                          2 engine
## 1.112433                  engine resulting
## 1.112440                          fan disk
## 1.112447                 hydraulic systems
## 1.112456              manufacturing defect
## 1.112460                          fan disk
## 1.112464                microscopic cracks
## 1.112465                        cracks due
## 1.112468                impurities subject
## 1.112472                           1992 tv
## 1.112473                          tv movie
## 1.112474                       movie crash
## 1.112475                     crash landing
## 1.112480                        flight 232
## 1.112481                       232 crashed
## 1.112484                    jungle shortly
## 1.112490                        heavy rain
## 1.112493                  aircraft bounced
## 1.112499                    concreate wall
## 1.112500                      wall overran
## 1.112503                    runway crossed
## 1.112510                          cars mid
## 1.112511                           mid air
## 1.112512                     air collision
## 1.112516                  helicopters shot
## 1.112521                      rebel forces
## 1.112524                     friendly fire
## 1.112527                    missile struck
## 1.112535                     plane crashed
## 1.112540                 emergency landing
## 1.112541                   landing crashed
## 1.112547                  aircraft crashed
## 1.112548                     crashed short
## 1.112556                       fog failure
## 1.112566                      weather data
## 1.112569                        cargo lost
## 1.112570                     lost altitude
## 1.112571                  altitude shortly
## 1.112582                    manukau harbor
## 1.112585                training captain's
## 1.112586                 captain's failure
## 1.112591                  aircraft's climb
## 1.112592                      climb flight
## 1.112593                       flight path
## 1.112597                    critical stage
## 1.112607                         mt kerkis
## 1.112610                      poor weather
## 1.112621                        flying vfr
## 1.112624                     ifr conditons
## 1.112629                        named isle
## 1.112638                       addis ababa
## 1.112648                   famine stricken
## 1.112652                  western ethiopia
## 1.112655                     plane crashed
## 1.112661                      poor weather
## 1.112662                 weather conditons
## 1.112668                        3,600 feet
## 1.112671                         crew flew
## 1.112677                       bad weather
## 1.112682                      low altitude
## 1.112687                   maintain visual
## 1.112688                    visual contact
## 1.112692                        ground u.s
## 1.112693                u.s representative
## 1.112694             representative george
## 1.112695                     george thomas
## 1.112696                     thomas mickey
## 1.112697                     mickey leland
## 1.112698                         leland 45
## 1.112699                         45 killed
## 1.112700                    killed crashed
## 1.112707             mountain undetermined
## 1.112719                  instrument rated
## 1.112720                       rated pilot
## 1.112721                        pilot lost
## 1.112722                      lost control
## 1.112728           encountering instrument
## 1.112729         instrument meteorological
## 1.112730         meteorological conditions
## 1.112731              conditions resulting
## 1.112735                airplane spiraling
## 1.112744                u.s representative
## 1.112747                mississippi larkin
## 1.112748                      larkin smith
## 1.112749                          smith 45
## 1.112752                       killed lost
## 1.112753                        lost power
## 1.112759                     river shortly
## 1.112765                  shanghai crashed
## 1.112768                himalaya mountains
## 1.112769                      mountains en
## 1.112770                          en route
## 1.112779                 navigation errors
## 1.112780                        errors led
## 1.112784                  aircraft running
## 1.112800                      filight plan
## 1.112820                       flight plan
## 1.112823                      0270 degrees
## 1.112832                       027 degrees
## 1.112838                       270 degrees
## 1.112839                      degrees west
## 1.112843                         crew flew
## 1.112847                   wrong direction
## 1.112871                    overshot belem
## 1.112874                     flew straight
## 1.112900                       xingu river
## 1.112901                     river finally
## 1.112907                     radio station
## 1.112918                     belem station
## 1.112924                  aircraft crashed
## 1.112927               navigational towers
## 1.112930                residential houses
## 1.112931                    houses shortly
## 1.112936                        heavy rain
## 1.112940                    winds decision
## 1.112951              abrupt deterioration
## 1.112954                weather conditions
## 1.112957                  aircraft crashed
## 1.112965                    flight breakup
## 1.112966                    breakup severe
## 1.112967                  severe vibration
## 1.112968                  vibration caused
## 1.112971                        worn bolts
## 1.112972                     bolts causing
## 1.112982                    collapse bolts
## 1.113002                     genuine bolts
## 1.113003                    bolts official
## 1.113004                       official pc
## 1.113013                       control due
## 1.113019                   primary control
## 1.113020                  control surfaces
## 1.113024                      tail section
## 1.113032          aeroelastic oscillations
## 1.113033            oscillations initiated
## 1.113036               abnormal clearances
## 1.113040               vertical stabilizer
## 1.113041            stabilizer attachments
## 1.113045                fuselage structure
## 1.113056                    excessive wear
## 1.113065                  structural joint
## 1.113074                  inferior quality
## 1.113085                  tensile strength
## 1.113096              standard maintenance
## 1.113097            maintenance procedures
## 1.113098               procedures undamped
## 1.113099             undamped oscillations
## 1.113103              elevator contributed
## 1.113107                structural failure
## 1.113111                 empennage crashed
## 1.113122                      fog improper
## 1.113123                      improper ifr
## 1.113124                    ifr procedures
## 1.113129                  maintain minimum
## 1.113130                   minimum descent
## 1.113131                  descent altitude
## 1.113132                  altitude crashed
## 1.113143                            fl 350
## 1.113144                            350 46
## 1.113145                        46 minutes
## 1.113150                     bomb exploded
## 1.113156                       location 13
## 1.113161                     forward cargo
## 1.113162                        cargo hold
## 1.113165            aircraft disintegrated
## 1.113189                       bomb aboard
## 1.113192                explosion occurred
## 1.113196                   overheated fuel
## 1.113197                         fuel pump
## 1.113206                   aborted takeoff
## 1.113209                  aircraft overran
## 1.113212                        runway hit
## 1.113215                   wooden approach
## 1.113216                 approach lighting
## 1.113217                     lighting pier
## 1.113222                    rest partially
## 1.113223               partially submerged
## 1.113226                     shallow water
## 1.113229                        bowery bay
## 1.113242                     timely manner
## 1.113249                  troubled takeoff
## 1.113256                 mistrimmed rudder
## 1.113257                   rudder exploded
## 1.113260                           mid air
## 1.113268                        heavy rain
## 1.113271                      plane struck
## 1.113272                      struck trees
## 1.113273                      trees losing
## 1.113285                    crew continued
## 1.113292                   missed approach
## 1.113298                   required visual
## 1.113299                 visual references
## 1.113302                  aircraft bounced
## 1.113310                          wing tip
## 1.113331                            200 ft
## 1.113334                      plane rolled
## 1.113345                     hill improper
## 1.113346                    improper pilot
## 1.113347                  pilot techniques
## 1.113350                 crew coordination
## 1.113354                   landing attempt
## 1.113355                    attempt bounce
## 1.113364                  autopilot caused
## 1.113371                    spiral descent
## 1.113372                  descent attempts
## 1.113393                          dry fuel
## 1.113394                         fuel pump
## 1.113395                          pump led
## 1.113401                       fuel vapors
## 1.113414                    trees improper
## 1.113415                 improper planning
## 1.113430                   maintain runway
## 1.113431                  runway alignment
## 1.113441               runway contributing
## 1.113442              contributing factors
## 1.113443                  factors included
## 1.113444                  included weather
## 1.113445                weather conditions
## 1.113446                   conditions dark
## 1.113447                        dark night
## 1.113448                        night lack
## 1.113451                       runway edge
## 1.113452                       edge lights
## 1.113453                       lights lack
## 1.113456                 visual perception
## 1.113467                 flight separation
## 1.113471                        main rotor
## 1.113472                       rotor blade
## 1.113476                    helicopter due
## 1.113479                   fatigue failure
## 1.113483                        main rotor
## 1.113484                       rotor blade
## 1.113485                        blade spar
## 1.113491             manufacturing induced
## 1.113492                   induced scratch
## 1.113493                      scratch tool
## 1.113494                         tool mark
## 1.113501                inadequate quality
## 1.113502                   quality control
## 1.113503                   control crashed
## 1.113508                   takeoff crashed
## 1.113512                       caspian sea
## 1.113517                       engine fire
## 1.113518                    fire descended
## 1.113528                         heed gpws
## 1.113529                     gpws warnings
## 1.113530              warnings incorrectly
## 1.113531                   incorrectly set
## 1.113532                     set altimeter
## 1.113535                   aircraft landed
## 1.113536                      landed short
## 1.113542                        heavy rain
## 1.113558                   proper approach
## 1.113559                approach procedure
## 1.113560                 procedure crashed
## 1.113567                      poor weather
## 1.113568                weather controlled
## 1.113569                 controlled flight
## 1.113574                         plane hit
## 1.113577                          7,000 ft
## 1.113578                       ft mountain
## 1.113579                       mountain 10
## 1.113580                        10 minutes
## 1.113586                       flight crew
## 1.113590               incorrect departure
## 1.113591               departure procedure
## 1.113594                 aircraft collided
## 1.113599                        halawa bay
## 1.113600                       bay molokai
## 1.113601                    molokai hawaii
## 1.113604                          en route
## 1.113608               scheduled passenger
## 1.113609                  passenger flight
## 1.113613                   kahalui airport
## 1.113614                      airport maui
## 1.113617                kaunakakai airport
## 1.113618                   airport molokai
## 1.113626                   continue flight
## 1.113629                     visual flight
## 1.113630                      flight rules
## 1.113635         instrument meteorological
## 1.113636         meteorological conditions
## 1.113639                   obscured rising
## 1.113640                rising mountainous
## 1.113641               mountainous terrain
## 1.113644                  victims included
## 1.113651               school's volleyball
## 1.113652                   volleyball team
## 1.113655                     staff crashed
## 1.113661                    engine failure
## 1.113662                       failure hit
## 1.113667                    plane collided
## 1.113670                         trees 180
## 1.113676                    marker weather
## 1.113685                        cloud base
## 1.113696          helicopters transporting
## 1.113697                  transporting bus
## 1.113698                      bus accident
## 1.113699                  accident victims
## 1.113700                  victims collided
## 1.113703                           mid air
## 1.113706                     plane crashed
## 1.113713                       left engine
## 1.113714                engine directional
## 1.113715               directional control
## 1.113722                     catching fire
## 1.113725                       plane burst
## 1.113730                   crashed shortly
## 1.113736                         el dorado
## 1.113737                    dorado airport
## 1.113738                airport detonation
## 1.113742                  explosive device
## 1.113754                   passenger cabin
## 1.113757                          seat 15f
## 1.113760                      ignited fuel
## 1.113761                       fuel vapors
## 1.113765                        empty fuel
## 1.113766                         fuel tank
## 1.113776                       drug cartel
## 1.113777                     cartel headed
## 1.113780                     pablo escobar
## 1.113786                  kill presidental
## 1.113787             presidental candidate
## 1.113788                  candidate cesare
## 1.113789                    cesare gaviria
## 1.113796                    flight crashed
## 1.113805                         night vor
## 1.113806                    vor instrument
## 1.113807               instrument approach
## 1.113810                         runway 28
## 1.113811                         28 visual
## 1.113812             visual meteorological
## 1.113813         meteorological conditions
## 1.113814              conditions prevailed
## 1.113827                         low cloud
## 1.113828                 cloud approaching
## 1.113829                approaching runway
## 1.113830                         runway 28
## 1.113841                       pilot chose
## 1.113852                         runway 10
## 1.113855                 approximately 400
## 1.113856                          400 feet
## 1.113859                      ground level
## 1.113864                         runway 10
## 1.113867                  aircraft entered
## 1.113879                    tower operator
## 1.113884                         10 meters
## 1.113887                aircraft continued
## 1.113890                 descent initially
## 1.113891                initially striking
## 1.113896                          400 feet
## 1.113897                        feet short
## 1.113908                      main landing
## 1.113909                      landing gear
## 1.113913                     hillside road
## 1.113916                          200 feet
## 1.113917                        feet prior
## 1.113934                   rolled inverted
## 1.113942                         runway 10
## 1.113945                         wing fuel
## 1.113946                        fuel tanks
## 1.113952                 fuselage trailing
## 1.113953                     trailing fire
## 1.113954                         fire slid
## 1.113963                  parallel taxiway
## 1.113966                       fire ensued
## 1.113969                      airport fire
## 1.113972                      rescue crews
## 1.113979                        10 minutes
## 1.114001                 moderate injuries
## 1.114011                  pilot's decision
## 1.114016                  visual reference
## 1.114022               contributing factor
## 1.114026                   negative affect
## 1.114029                  crew performance
## 1.114038                       12,000 feet
## 1.114044                    ciudad guayana
## 1.114045                   guayana crashed
## 1.114049                             sea 4
## 1.114050                           4 miles
## 1.114051                   miles northwest
## 1.114055                    island unknown
## 1.114060                  sever turbulence
## 1.114068                crew inadvertently
## 1.114069            inadvertently selected
## 1.114070                     selected beta
## 1.114071                        beta range
## 1.114077                          800 feet
## 1.114089                  passenger flight
## 1.114090                    flight crashed
## 1.114094                    jungle shortly
## 1.114102                  observed sinking
## 1.114103                      sinking fast
## 1.114112                 aircraft suddenly
## 1.114113                    suddenly nosed
## 1.114117                     crashed short
## 1.114123                   crew's decision
## 1.114128           unstabilized instrument
## 1.114129                instrument landing
## 1.114130                    landing system
## 1.114131                   system approach
## 1.114142             horizontal stabilizer
## 1.114149                      low altitude
## 1.114150             altitude contributing
## 1.114157                       air traffic
## 1.114158              traffic controller's
## 1.114159             controller's improper
## 1.114160                  improper vectors
## 1.114165                   aircraft inside
## 1.114168                      outer marker
## 1.114177           glideslope contributing
## 1.114190                      airframe ice
## 1.114195           aerodynamic performance
## 1.114199                  airplane crashed
## 1.114202                      poor weather
## 1.114203                weather conditions
## 1.114204                 conditions rumors
## 1.114205                    rumors suggest
## 1.114212                  midair collision
## 1.114217                            za dax
## 1.114218                            dax zk
## 1.114219                            zk dqf
## 1.114220                        dqf landed
## 1.114221                     landed safely
## 1.114222                    safely ditched
## 1.114226                          java sea
## 1.114229           experiencing mechanical
## 1.114240                 maintain altitude
## 1.114243                         crew shut
## 1.114255                 maintain altitude
## 1.114258               jettisoning luggage
## 1.114268                        rear cargo
## 1.114269                        cargo hold
## 1.114272                      fire warning
## 1.114276                    engines forced
## 1.114281                        crash land
## 1.114285                        snow laden
## 1.114286                       laden field
## 1.114289                       plane broke
## 1.114293               striking irrigation
## 1.114294              irrigation equipment
## 1.114295                   equipment short
## 1.114296                     short circuit
## 1.114300                 electrical wiring
## 1.114301                    wiring crashed
## 1.114304                        4,500 feet
## 1.114308                          7,250 ft
## 1.114309                           ft pico
## 1.114310                       pico blanco
## 1.114311                   blanco mountain
## 1.114312                       mountain 10
## 1.114313                          10 miles
## 1.114314                   miles southwest
## 1.114317                          san jose
## 1.114326                 driving rainstorm
## 1.114327               rainstorm continued
## 1.114328                     continued vfr
## 1.114329                        vfr flight
## 1.114332                     ifr condtions
## 1.114343                       cargo plane
## 1.114344                     plane crashed
## 1.114348                         14,200 ft
## 1.114349                          ft mount
## 1.114350                     mount massive
## 1.114351                        massive 50
## 1.114352                           50 feet
## 1.114358                          en route
## 1.114359                   route diversion
## 1.114363                 pilot's attention
## 1.114364               attention resulting
## 1.114369                  flight collision
## 1.114374                     normal cruise
## 1.114375                     cruise flight
## 1.114376                    flight crashed
## 1.114379                       el junquito
## 1.114380                     junquito hill
## 1.114381                            hill 5
## 1.114382                         5 minutes
## 1.114393                reduced visibility
## 1.114394                   visibility rain
## 1.114397                      low overcast
## 1.114398                  overcast crashed
## 1.114401                        mt ringani
## 1.114405                       diverted en
## 1.114406                          en route
## 1.114409                    denpasair bali
## 1.114410                          bali due
## 1.114413                       bad weather
## 1.114423                  extended holding
## 1.114424                  holding patterns
## 1.114430                     york.the crew
## 1.114431                     crew informed
## 1.114432                      informed atc
## 1.114453                   missed approach
## 1.114461                         plane ran
## 1.114473                  captain speaking
## 1.114486                     time declared
## 1.114515                  aircraft failure
## 1.114521              properly communicate
## 1.114524               emergency situation
## 1.114550                      accident atc
## 1.114567                 missed approaches
## 1.114570                   aborted landing
## 1.114582                  extended holding
## 1.114583                   holding pattern
## 1.114595                        wind shear
## 1.114598                            500 ft
## 1.114604                   aborted landing
## 1.114605                   landing attempt
## 1.114621                   holding pattern
## 1.114633                    fuel situation
## 1.114644                     fuel numerous
## 1.114645                    numerous times
## 1.114653                     wide circling
## 1.114654                  circling pattern
## 1.114666                       major blame
## 1.114677                          faa paid
## 1.114678                           paid 40
## 1.114684              passenger's families
## 1.114687                   antonov crashed
## 1.114694               destination airport
## 1.114697                        night rain
## 1.114701                      winds caused
## 1.114706                          crash 50
## 1.114707                          50 miles
## 1.114715                        light snow
## 1.114718                       cargo plane
## 1.114723                     gain altitude
## 1.114735                            de ice
## 1.114738                    airplane prior
## 1.114756                maximum structural
## 1.114757                structural takeoff
## 1.114758                    takeoff weight
## 1.114762                   reduced takeoff
## 1.114763                    takeoff weight
## 1.114764                    weight allowed
## 1.114767                  icing conditions
## 1.114768              conditions resulting
## 1.114772                 inadvertent stall
## 1.114775                       cargo plane
## 1.114786                     gain altitude
## 1.114790                     steep descent
## 1.114795                        trees loss
## 1.114803                  airplane stalled
## 1.114808                    stall resulted
## 1.114814                          lift due
## 1.114818                 contaminated wing
## 1.114819                      wing surface
## 1.114820              surface contributing
## 1.114832                            de ice
## 1.114835                    aircraft prior
## 1.114838                  departure struck
## 1.114839                         struck mt
## 1.114840                             mt el
## 1.114841                         el saluda
## 1.114844                          5,000 ft
## 1.114859                 alternate crashed
## 1.114863                   aborted landing
## 1.114870                            2 3rds
## 1.114876                   pilot attempted
## 1.114891                       car killing
## 1.114896                    final approach
## 1.114899                aircraft descended
## 1.114903                   normal approach
## 1.114904                  approach profile
## 1.114910                      ground 2,300
## 1.114911                          2,300 ft
## 1.114912                          ft short
## 1.114915                            200 ft
## 1.114922                 runway centerline
## 1.114930                   check captain's
## 1.114931                  captain's flight
## 1.114932                   flight director
## 1.114939                      descent idle
## 1.114940                         idle mode
## 1.114945                    vertical speed
## 1.114946                        speed mode
## 1.114949                prescribed setting
## 1.114955              landing.the aircraft
## 1.114961                    correct flight
## 1.114962                       flight path
## 1.114965                        idle power
## 1.114966                     power failure
## 1.114979               respond immediately
## 1.114982                     proper action
## 1.114991                    radio altitude
## 1.114992                     altitude call
## 1.114993                         call outs
## 1.114994                     outs suddenly
## 1.114995                     suddenly dove
## 1.115010                      ils approach
## 1.115013                       cargo plane
## 1.115014                 plane encountered
## 1.115015                 encountered icing
## 1.115016                  icing conditions
## 1.115017           conditions subsequently
## 1.115022                     steep descent
## 1.115025                     crashed short
## 1.115033                    structural ice
## 1.115036               subsequent stalling
## 1.115042                   icing condition
## 1.115046                    related factor
## 1.115050                     pilot ejected
## 1.115051                    ejected safely
## 1.115054                  aircraft crashed
## 1.115058                    trucks killing
## 1.115059                        killing 50
## 1.115060                         50 people
## 1.115064                    ground crashed
## 1.115072                       cargo plane
## 1.115073                   plane descended
## 1.115077                      minimum safe
## 1.115078                     safe altitude
## 1.115083                    7,000 mountain
## 1.115086                      poor weather
## 1.115089                     takeoff close
## 1.115098                  aircraft overran
## 1.115105                       cargo plane
## 1.115106                     plane stalled
## 1.115124                    approach pilot
## 1.115125                       pilot error
## 1.115126                        error shot
## 1.115131                     missile fired
## 1.115134                      unita rebels
## 1.115135                    rebels control
## 1.115144                         push pull
## 1.115145                          pull rod
## 1.115149                   elevator failed
## 1.115152                  heavy turbulence
## 1.115155                     plane crashed
## 1.115159                       sea shortly
## 1.115165                     plane crashed
## 1.115171                       miles south
## 1.115175                 panamanian island
## 1.115185                          2 engine
## 1.115186                    engine leading
## 1.115198                    engine failure
## 1.115203                    bird ingestion
## 1.115210                          3 engine
## 1.115211                  engine separated
## 1.115217                       4 propeller
## 1.115218                 propeller leading
## 1.115224                     plane crashed
## 1.115228                        rice field
## 1.115232                     engine failed
## 1.115236                   landing attempt
## 1.115240                   plane attempted
## 1.115250                  airport boundary
## 1.115254                      vor approach
## 1.115257                     aircraft flew
## 1.115261                    ground crashed
## 1.115267                      poor weather
## 1.115270                          en route
## 1.115273              aircraft experienced
## 1.115274                experienced engine
## 1.115275                    engine failure
## 1.115285                          houses 8
## 1.115286                              8 km
## 1.115287                             km se
## 1.115291                   airport crashed
## 1.115292                         crashed 3
## 1.115293                           3 miles
## 1.115294                       miles short
## 1.115300                 approach striking
## 1.115301                    striking trees
## 1.115330                         low level
## 1.115331                      level flight
## 1.115334                         crew lost
## 1.115335                    lost reference
## 1.115348                       center fuel
## 1.115349                         fuel tank
## 1.115359                   flight ignition
## 1.115365                      empty center
## 1.115366                       center tank
## 1.115371                     faulty wiring
## 1.115377                presumed including
## 1.115378                  including chafed
## 1.115379                 chafed insulation
## 1.115386                       center fuel
## 1.115387                         fuel tank
## 1.115388                        tank float
## 1.115389                       float level
## 1.115390                      level switch
## 1.115393                damaged insulation
## 1.115400                       nearby wing
## 1.115401                         wing anti
## 1.115402                          anti ice
## 1.115403                         ice valve
## 1.115404                     valve crashed
## 1.115405                   crashed shortly
## 1.115416                          400 feet
## 1.115423                    houses killing
## 1.115426                    people failure
## 1.115445                   crashed failure
## 1.115448                 maintain adequate
## 1.115449                   adequate flying
## 1.115450                      flying speed
## 1.115453                      altitude due
## 1.115457                 pilot's inability
## 1.115460                  properly perform
## 1.115464              emergency procedures
## 1.115472                engine immediately
## 1.115482                    pilot switched
## 1.115487                    ifr conditions
## 1.115488                 conditions struck
## 1.115489                      struck trees
## 1.115490                           trees 1
## 1.115491                              1 km
## 1.115492                          km short
## 1.115497                      heavy ground
## 1.115498                        ground fog
## 1.115499                         fog pilot
## 1.115500                       pilot error
## 1.115503                       cargo plane
## 1.115504                      plane failed
## 1.115507                     gain altitude
## 1.115513                 parked helicopter
## 1.115516                          en route
## 1.115519                            fl 173
## 1.115525                   windshield fell
## 1.115532              decompression pulled
## 1.115564                         grab hold
## 1.115578                       vacant seat
## 1.115586                    captain's legs
## 1.115590                     pilot wearing
## 1.115596                 emergency landing
## 1.115601                  captain remained
## 1.115602                     remained half
## 1.115610                        15 minutes
## 1.115618                fractures improper
## 1.115619                    improper bolts
## 1.115627                      days earlier
## 1.115628                    earlier struck
## 1.115633                      poor weather
## 1.115634                      weather 35km
## 1.115637                      port morseby
## 1.115640                          en route
## 1.115643                      woltape shot
## 1.115647                      rebel forces
## 1.115648                    forces crashed
## 1.115652                 emergency landing
## 1.115655                  aircraft crashed
## 1.115659                     cloud covered
## 1.115660                  covered mountain
## 1.115663                       2,520m 22km
## 1.115667             destination premature
## 1.115668                 premature descent
## 1.115669                   descent crashed
## 1.115670                   crashed shortly
## 1.115673                takeoff mechanical
## 1.115674                mechanical failure
## 1.115677                     possibly shot
## 1.115686                   night transport
## 1.115694                 question remained
## 1.115698                    lower altitude
## 1.115709                         fog blues
## 1.115710                   blues guitarist
## 1.115711                  guitarist stevie
## 1.115712                        stevie ray
## 1.115713                       ray vaughan
## 1.115714                        vaughan 35
## 1.115717                       killed eric
## 1.115718                      eric clapton
## 1.115733                   vaughan failure
## 1.115739                   attain adequate
## 1.115740                 adequate altitude
## 1.115745                    rising terrain
## 1.115746                   terrain factors
## 1.115747                   factors related
## 1.115753                      darkness fog
## 1.115754                          fog haze
## 1.115755                       haze rising
## 1.115756                    rising terrain
## 1.115762                       visual cues
## 1.115775                  aircraft drifted
## 1.115781                     clipped trees
## 1.115782                  trees eventually
## 1.115783               eventually crashing
## 1.115784                    crashing 3,000
## 1.115785                          3,000 ft
## 1.115786                           ft past
## 1.115794            inadvertent deployment
## 1.115798                   thrust reverser
## 1.115799                  reverser crashed
## 1.115805                  2 engine.failure
## 1.115811                 maintain adequate
## 1.115812                 adequate altitude
## 1.115827                          2 engine
## 1.115830                   unknown reasons
## 1.115833                      aircraft ran
## 1.115861                     ditch crashed
## 1.115865                          sea 80nm
## 1.115866                    80nm southwest
## 1.115874                         atc tapes
## 1.115882                     hypoxia prior
## 1.115887                aircraft undershot
## 1.115892                    crashed 1,700m
## 1.115893                      1,700m short
## 1.115906               apparently fatigued
## 1.115907                   fatigued failed
## 1.115910                  correctly follow
## 1.115911                 follow procedures
## 1.115914                 accident happened
## 1.115919                predeparture check
## 1.115920                       check lists
## 1.115931                   captain arrived
## 1.115932                      arrived late
## 1.115952              pretakeoff checklist
## 1.115960                       steep climb
## 1.115968                        plane dove
## 1.115980                bandeirante planes
## 1.115981                    planes crashed
## 1.115982                     crashed short
## 1.115989                   eucalyptus tree
## 1.115996                         runway 11
## 1.115999                         heavy fog
## 1.116002                  pilot's improper
## 1.116003                      improper ifr
## 1.116004                     ifr procedure
## 1.116011                   minimum descent
## 1.116012                  descent altitude
## 1.116016                   adverse weather
## 1.116020                    related factor
## 1.116021                    factor shortly
## 1.116027                  hijacker entered
## 1.116037                         hong kong
## 1.116040                   captain circled
## 1.116043                        30 minutes
## 1.116051                 cockpit attempted
## 1.116056                 guangzhou hitting
## 1.116059                       runway hard
## 1.116060                     hard clipping
## 1.116064                      707 crashing
## 1.116069                      757 filpping
## 1.116075                     flames eighty
## 1.116083                         46 aboard
## 1.116091                   figures suggest
## 1.116094                        death toll
## 1.116108              aircraft experienced
## 1.116109                experienced severe
## 1.116110                 severe turbulence
## 1.116113                 entering overhang
## 1.116119                            fl 310
## 1.116122               passengers received
## 1.116127                    passenger died
## 1.116128                           died 20
## 1.116129                           20 days
## 1.116133                  accident failure
## 1.116139                 follow procedures
## 1.116149                    overhang anvil
## 1.116153              thunderstorm failure
## 1.116166                        seat belts
## 1.116167                     belts failure
## 1.116171                 flight attendants
## 1.116178                        seat belts
## 1.116179                 belts disappeared
## 1.116180                    disappeared en
## 1.116181                          en route
## 1.116182                    route wreckage
## 1.116183                    wreckage found
## 1.116184                           found 6
## 1.116190                      andes struck
## 1.116193                        ground 2.5
## 1.116194                         2.5 miles
## 1.116195                       miles short
## 1.116209                reduced visibility
## 1.116210                  visibility pilot
## 1.116211                       pilot error
## 1.116212                  error continuing
## 1.116213                    continuing vfr
## 1.116214                        vfr flight
## 1.116217                    ifr conditions
## 1.116220                aircraft continued
## 1.116227                       glide slope
## 1.116232                          ground 6
## 1.116233                           6 miles
## 1.116237                     airport false
## 1.116238                  false indication
## 1.116241                           vhf nav
## 1.116251                 misread altimeter
## 1.116257                      command lack
## 1.116260                      gpws warning
## 1.116264                      cockpit crew
## 1.116273             incorrect indications
## 1.116277                     nav equipment
## 1.116284                  basic procedural
## 1.116285           procedural instructions
## 1.116289                      approach atc
## 1.116298                  cleared altitude
## 1.116301                          4,000 ft
## 1.116302                        ft crashed
## 1.116306                   jungle mountain
## 1.116307                       mountain mt
## 1.116308                            mt los
## 1.116309                     los farllones
## 1.116312                      poor weather
## 1.116313                weather controlled
## 1.116314                 controlled flight
## 1.116317                   terrain crashed
## 1.116318                    crashed landed
## 1.116321               experiencing severe
## 1.116322                 severe turbulence
## 1.116325                    engine failure
## 1.116330                     runway change
## 1.116333                     crew executed
## 1.116336                   missed approach
## 1.116353                        heavy rain
## 1.116361                         left wing
## 1.116372                coconut plantation
## 1.116375                pilots experienced
## 1.116376               experienced spatial
## 1.116377            spatial disorientation
## 1.116382                  improper control
## 1.116386                 aircraft numerous
## 1.116387               numerous procedural
## 1.116388                 procedural errors
## 1.116391                      poor cockpit
## 1.116392                cockpit discipline
## 1.116398                        pilot flew
## 1.116401                weather conditions
## 1.116407                  visual reference
## 1.116408                    reference lack
## 1.116411                    cross checking
## 1.116416                 altitude improper
## 1.116417               improper monitoring
## 1.116420                flight instruments
## 1.116423                helicopter crashed
## 1.116430                      storm ground
## 1.116431                  ground collision
## 1.116434                         dense fog
## 1.116441                      takeoff roll
## 1.116445                              dc 9
## 1.116446                          9 taxied
## 1.116450                     active runway
## 1.116451                   runway improper
## 1.116452                     improper crew
## 1.116453                 crew coordination
## 1.116454               coordination aboard
## 1.116457                              dc 9
## 1.116458                         9 failure
## 1.116463                         alert atc
## 1.116466            positional uncertainty
## 1.116469                     killed aboard
## 1.116472                              dc 9
## 1.116478                     727 undershot
## 1.116487                      approach hit
## 1.116488                    hit powerlines
## 1.116495                helicopter crashed
## 1.116499                       sea crashed
## 1.116502                     paramo mucuti
## 1.116503                   mucuti mountain
## 1.116504                       mountain 35
## 1.116505                          35 miles
## 1.116526                   adverse weather
## 1.116527                weather conditions
## 1.116539                     funeral party
## 1.116543                        navy flyer
## 1.116544                      flyer killed
## 1.116555                        navy flyer
## 1.116562                  earlier accident
## 1.116568                    forced landing
## 1.116571                      poor weather
## 1.116572                weather conditions
## 1.116582               passengers survived
## 1.116586                 elderly passenger
## 1.116587                    passenger died
## 1.116592                       rescue shot
## 1.116599                       air missile
## 1.116602                  operation desert
## 1.116603                      desert storm
## 1.116606                skywest metroliner
## 1.116628                   tower frequency
## 1.116631                        wings west
## 1.116632                     west aircraft
## 1.116633                aircraft reporting
## 1.116634                   reporting ready
## 1.116637                    takeoff caused
## 1.116647                   flight progress
## 1.116648                    progress strip
## 1.116655                    strip appeared
## 1.116663                clearance delivery
## 1.116664                 delivery position
## 1.116672                       land struck
## 1.116683                       planes slid
## 1.116690                   unoccupied fire
## 1.116691                      fire station
## 1.116696                flames.the failure
## 1.116700                       los angeles
## 1.116701                       angeles air
## 1.116702                       air traffic
## 1.116703                  traffic facility
## 1.116704               facility management
## 1.116707              implement procedures
## 1.116710               provided redundancy
## 1.116711             redundancy comparable
## 1.116715            requirements contained
## 1.116719              national operational
## 1.116720              operational position
## 1.116721                position standards
## 1.116728                           faa ats
## 1.116731                  provide adequate
## 1.116732                   adequate policy
## 1.116733                  policy direction
## 1.116739                      atc facility
## 1.116740                 facility managers
## 1.116743                  failures created
## 1.116749                       los angeles
## 1.116750                       angeles atc
## 1.116751                         atc tower
## 1.116754                    ultimately led
## 1.116763                maintain awareness
## 1.116767                 traffic situation
## 1.116768             situation culminating
## 1.116772          inappropriate clearances
## 1.116776              subsequent collision
## 1.116782                  skywest aircraft
## 1.116783                   aircraft twenty
## 1.116786                     killed aboard
## 1.116792                         12 aboard
## 1.116797                 additional person
## 1.116798                       person died
## 1.116799                           died 31
## 1.116800                           31 days
## 1.116807                         35 killed
## 1.116810                     aircraft flew
## 1.116816                         mt othrys
## 1.116819                          4,000 ft
## 1.116826                     nea anghialos
## 1.116827                 anghialos airport
## 1.116828                   airport crashed
## 1.116834                           mt paso
## 1.116835                      paso macunaa
## 1.116838                          5,000 ft
## 1.116842                     jungle region
## 1.116845                   eastern ecuador
## 1.116848                      poor weather
## 1.116849                weather controlled
## 1.116850                 controlled flight
## 1.116855                       cargo plane
## 1.116856                     plane stalled
## 1.116859                      takeoff cart
## 1.116860                      cart wheeled
## 1.116868                       flight crew
## 1.116873                        remove ice
## 1.116874                 ice contamination
## 1.116878                  airplane's wings
## 1.116893                  federal aviation
## 1.116894           aviation administration
## 1.116895            administration douglas
## 1.116896                  douglas aircraft
## 1.116897                  aircraft company
## 1.116900                ryan international
## 1.116901            international airlines
## 1.116909                     minute amount
## 1.116916             stall characteristics
## 1.116920                              dc 9
## 1.116921                          9 series
## 1.116922                         series 10
## 1.116923                       10 airplane
## 1.116926                 ice contamination
## 1.116927                 contamination led
## 1.116930                        wing stall
## 1.116938                 attempted takeoff
## 1.116941                     plane overran
## 1.116950                    beagle channel
## 1.116954                          sea shot
## 1.116960                       air missile
## 1.116961                   missile launced
## 1.116964                      unita rebels
## 1.116968                    final approach
## 1.116971                  colorado springs
## 1.116974                 aircraft suddenly
## 1.116975                   suddenly rolled
## 1.116981                      pitched nose
## 1.116989                 vertical attitude
## 1.116994                ground uncommanded
## 1.116995            uncommanded deflection
## 1.116999                     rudder caused
## 1.117006                       main rudder
## 1.117007                        rudder puc
## 1.117008                         puc servo
## 1.117009                       servo valve
## 1.117012                rudder malfunction
## 1.117013                malfunction forced
## 1.117021                opposite direction
## 1.117024                  pilots commanded
## 1.117030                      female pilot
## 1.117036                       flight deck
## 1.117040                         major u.s
## 1.117041                       u.s airline
## 1.117044                  aircraft crashed
## 1.117048                        las torres
## 1.117049                    torres plateau
## 1.117053                   andes mountains
## 1.117061                     santa barbara
## 1.117062                        barbara de
## 1.117063                          de zulia
## 1.117070                 clouds controlled
## 1.117071                 controlled flight
## 1.117084                      aircraft hit
## 1.117085                        hit rising
## 1.117086                    rising terrain
## 1.117092                           mt otay
## 1.117093                            otay 8
## 1.117094                           8 miles
## 1.117095                          miles ne
## 1.117098                       brown field
## 1.117104                        3,300 feet
## 1.117105                      feet shortly
## 1.117110                 improper planning
## 1.117111                 planning decision
## 1.117115                     pilot failure
## 1.117121                   maintain proper
## 1.117122                   proper altitude
## 1.117127               mountainous terrain
## 1.117136                adequately monitor
## 1.117147                     reba mcentire
## 1.117148                     mcentire band
## 1.117153                       cargo plane
## 1.117162                       air missile
## 1.117163                   missile crashed
## 1.117170                   poor visibility
## 1.117171                 visibility caused
## 1.117174                         oil fires
## 1.117178                      persian gulf
## 1.117179                          gulf war
## 1.117183                 aircraft collided
## 1.117189                          3,000 ft
## 1.117192               conducting training
## 1.117193                training exercises
## 1.117199               southern california
## 1.117202                    planes crashed
## 1.117206                          sea loss
## 1.117209             situational awareness
## 1.117212             crew misunderstanding
## 1.117219            previous understanding
## 1.117223                     radio contact
## 1.117230                 accident thirteen
## 1.117231                   thirteen aboard
## 1.117232                     aboard 159325
## 1.117235                         14 aboard
## 1.117236                     aboard 158930
## 1.117241                  aircraft overran
## 1.117248                   concrete blocks
## 1.117249                       blocks crew
## 1.117250                        crew error
## 1.117254                     follow proper
## 1.117255                 proper procedures
## 1.117260                     plane climbed
## 1.117266                            150 ft
## 1.117280                    airport engine
## 1.117281                    engine failure
## 1.117285                      plane's nose
## 1.117286                         nose gear
## 1.117287                    gear indicator
## 1.117288                   indicator light
## 1.117300                         nose gear
## 1.117309               helicopter's blades
## 1.117310               blades accidentally
## 1.117311                  accidentally hit
## 1.117317                     plane sending
## 1.117323                    ground killing
## 1.117328             aircraft pennsylvania
## 1.117329              pennsylvania senator
## 1.117332                        john heinz
## 1.117333                         heinz iii
## 1.117343                  children playing
## 1.117347                 elementary school
## 1.117350                     killed aboard
## 1.117355                          3 aboard
## 1.117360                     poor judgment
## 1.117372                 flight inspection
## 1.117386                      nose landing
## 1.117387                      landing gear
## 1.117393                     poor judgment
## 1.117410                       flight crew
## 1.117416                     maintain safe
## 1.117417                   safe separation
## 1.117420                       plane crash
## 1.117421                      crash landed
## 1.117425                       frozen lake
## 1.117429                     crew flighing
## 1.117430                      flighing vfr
## 1.117431                       vfr entered
## 1.117434                        snow storm
## 1.117440                    final approach
## 1.117443                 aircraft suddenly
## 1.117444                   suddenly rolled
## 1.117445                       rolled left
## 1.117461                        attitude 2
## 1.117462                           2 miles
## 1.117463                       miles short
## 1.117467                runway malfunction
## 1.117471                       left engine
## 1.117472                  engine propeller
## 1.117473                 propeller control
## 1.117474                      control unit
## 1.117479                   propeller blade
## 1.117480                       blade angle
## 1.117486                       flight idle
## 1.117487                     idle position
## 1.117488             position contributing
## 1.117495                  deficient design
## 1.117499                 propeller control
## 1.117500                      control unit
## 1.117503                 hamilton standard
## 1.117513                         faa texas
## 1.117514                     texas senator
## 1.117515                      senator john
## 1.117516                        john tower
## 1.117517                          tower 66
## 1.117522                  astronaut manley
## 1.117523                      manley sonny
## 1.117524                      sonny carter
## 1.117529                    killed crashed
## 1.117538                           hiva ou
## 1.117541               experiencing engine
## 1.117542                    engine failure
## 1.117554                           low oil
## 1.117555                      oil pressure
## 1.117556                  pressure warning
## 1.117574               unprepared ditching
## 1.117577                crew's performance
## 1.117584               alcohol consumption
## 1.117585               consumption crashed
## 1.117588                         mt klabat
## 1.117591                         heavy fog
## 1.117599                  airplane crashed
## 1.117606                         8 minutes
## 1.117609                takeoff detonation
## 1.117612                      pre ignition
## 1.117617                        1 cylinder
## 1.117622                   erosion burning
## 1.117627                          1 piston
## 1.117630                   subsequent loss
## 1.117633                      engine power
## 1.117636                    factor related
## 1.117645                  suitable terrain
## 1.117649                 emergency landing
## 1.117657                          2 engine
## 1.117658                     engine failed
## 1.117665                         crashed 1
## 1.117666                            1 mile
## 1.117667                        mile short
## 1.117688                      tail leading
## 1.117694                 control undershot
## 1.117704                      hard landing
## 1.117705                      landing crew
## 1.117706                        crew error
## 1.117709                        rapid rate
## 1.117712                   descent leading
## 1.117715                      landing gear
## 1.117716                      gear failure
## 1.117719                 accident happened
## 1.117720                 happened durining
## 1.117721                 durining daylight
## 1.117725                       rain shower
## 1.117729                 missed approaches
## 1.117732                       cargo plane
## 1.117733                         plane ran
## 1.117739                    crashed twelve
## 1.117740                    twelve minutes
## 1.117745                     crew received
## 1.117748                        visual rev
## 1.117749                          rev isln
## 1.117750                     isln advisory
## 1.117751                  advisory warning
## 1.117757                 additional system
## 1.117758                    system failure
## 1.117766                          1 engine
## 1.117767                     engine thrust
## 1.117768                   thrust reverser
## 1.117779                   action required
## 1.117783                       reaching fl
## 1.117784                            fl 310
## 1.117792            uncommanded deployment
## 1.117797                          1 engine
## 1.117798                     engine thrust
## 1.117799                   thrust reverser
## 1.117802                  aircraft stalled
## 1.117809                        speed dive
## 1.117810                        dive broke
## 1.117814                        4,000 feet
## 1.117820                         jungle 70
## 1.117821                          70 miles
## 1.117822                   miles northwest
## 1.117825                   bangkok failure
## 1.117829                    reverse thrust
## 1.117830                  thrust isolation
## 1.117831                   isolation valve
## 1.117835                   accident boeing
## 1.117841                   thrust reverser
## 1.117842                   reverser system
## 1.117847                    named wolfgang
## 1.117848                  wolfgang amadeus
## 1.117849                    amadeus mozart
## 1.117852                  aircraft ditched
## 1.117853                      ditched 1.25
## 1.117854                        1.25 miles
## 1.117857                        grada zuma
## 1.117861                   reported engine
## 1.117862                    engine failure
## 1.117863                   failure crashed
## 1.117870               1engine overspeeded
## 1.117880                     pilot decided
## 1.117885                weather conditions
## 1.117886               conditions improved
## 1.117887                  improved contact
## 1.117899                 ground visibility
## 1.117904                         low lying
## 1.117905                         lying fog
## 1.117908                    plane diverted
## 1.117911                        sokotu due
## 1.117914                      poor weather
## 1.117920                       hour unable
## 1.117925                         air field
## 1.117928                      aircraft ran
## 1.117938                    forced landing
## 1.117941                      landing gear
## 1.117948                       plane broke
## 1.117953                      ground slide
## 1.117956                       cargo plane
## 1.117957                     plane crashed
## 1.117963                   finland shortly
## 1.117973                   pilot continued
## 1.117974                     continued vfr
## 1.117975                        vfr flight
## 1.117978                    ifr conditions
## 1.117991                    drunken police
## 1.118005                    drug smuggling
## 1.118009                    plane ascended
## 1.118012                             75 ft
## 1.118013                        ft bullets
## 1.118014                bullets penetrated
## 1.118017                  forward fuselage
## 1.118018                  fuselage killing
## 1.118037                   aircraft rolled
## 1.118038                       rolled left
## 1.118045               aircraft approached
## 1.118046                  approached level
## 1.118047                      level flight
## 1.118064                  aircraft crashed
## 1.118075              automobiles decision
## 1.118083               continue instrument
## 1.118084               instrument approach
## 1.118087           thunderstorm conditions
## 1.118088              conditions resulting
## 1.118101                passenger survived
## 1.118113                      landing gear
## 1.118117                  aircraft crashed
## 1.118125                      airport loss
## 1.118130                electrical systems
## 1.118134                      fire started
## 1.118141               tires disintegrated
## 1.118142                 disintegrated due
## 1.118158            accumulated flammables
## 1.118162                              dc 8
## 1.118170                 uncontroable fire
## 1.118181                     inflated tire
## 1.118182                       tire twenty
## 1.118183                    twenty minutes
## 1.118184                     minutes prior
## 1.118189                    nationair lead
## 1.118190                     lead mechanic
## 1.118200                          low tire
## 1.118201                     tire nitrogen
## 1.118213                   occur procuring
## 1.118217                 nationair project
## 1.118218                   project manager
## 1.118224                       flight crew
## 1.118225                     crew released
## 1.118228                        plane flew
## 1.118232                        hillside 7
## 1.118233                         7 minutes
## 1.118239                  nogougou spatial
## 1.118240            spatial disorientation
## 1.118241            disorientation ditched
## 1.118250                       cargo plane
## 1.118251                     plane crashed
## 1.118255       rainstorm.premature descent
## 1.118256                   descent crashed
## 1.118266                       crew failed
## 1.118271                  correct approach
## 1.118276                          en route
## 1.118277                      route flying
## 1.118278                        flying vfr
## 1.118281             deteriorating weather
## 1.118284                  pilot attempting
## 1.118287                       operate vfr
## 1.118290                    ifr conditions
## 1.118295                remote mountainous
## 1.118296               mountainous terrain
## 1.118300                        dark night
## 1.118303                     light drizzle
## 1.118306                     patchy clouds
## 1.118309               helicopter collided
## 1.118315                wreckage scattered
## 1.118319                  heading opposite
## 1.118322               flights destination
## 1.118330                        post crash
## 1.118331                        crash fire
## 1.118337                  noted mechanical
## 1.118338               mechanical failures
## 1.118343                   pilot's failure
## 1.118346                maintain clearance
## 1.118349                   terrain shortly
## 1.118354                       left engine
## 1.118355                     engine failed
## 1.118361                       lose height
## 1.118373                     mentaya river
## 1.118374                     river crashed
## 1.118380                     double engine
## 1.118381                    engine failure
## 1.118395                       flight loss
## 1.118399                      leading edge
## 1.118403                   left horizontal
## 1.118404             horizontal stabilizer
## 1.118405                  stabilizer forty
## 1.118408                   screw fasteners
## 1.118415                     upper surface
## 1.118419                      leading edge
## 1.118420                     edge assembly
## 1.118428             horizontal stabilizer
## 1.118440                      left leading
## 1.118441                     leading edges
## 1.118445             horizontal stabilizer
## 1.118446                 stabilizer screws
## 1.118459                     shift decided
## 1.118472                     earlier shift
## 1.118473                     shift removed
## 1.118478                       screws lack
## 1.118483                      faa approved
## 1.118484              approved maintenance
## 1.118485            maintenance procedures
## 1.118488                       cargo plane
## 1.118489                      plane struck
## 1.118490                      struck trees
## 1.118491                     trees crashed
## 1.118494                       caught fire
## 1.118497                takeoff overloaded
## 1.118502                         nose gear
## 1.118513                       cargo plane
## 1.118517                 premature descent
## 1.118520                      struck mount
## 1.118521                        mount arey
## 1.118524                       cargo plane
## 1.118525                        plane lost
## 1.118526                      lost control
## 1.118534                          en route
## 1.118535                     route failure
## 1.118542                  maintain control
## 1.118549             spatially disoriented
## 1.118555                     design stress
## 1.118556                     stress limits
## 1.118560                  aircraft factors
## 1.118561                   factors related
## 1.118574                  cockpit darkness
## 1.118577         instrument meteorological
## 1.118578         meteorological conditions
## 1.118581                   flight altitude
## 1.118584                       cargo plane
## 1.118585                        plane lost
## 1.118586                       lost engine
## 1.118587                      engine power
## 1.118588                         power due
## 1.118591                   fuel exhaustion
## 1.118598                    forced landing
## 1.118599                    landing 1,450m
## 1.118600                      1,450m short
## 1.118604                    runway crashed
## 1.118610                         finland 5
## 1.118611                         5 minutes
## 1.118620                         mt nashua
## 1.118623                          4,100 ft
## 1.118629                        heavy rain
## 1.118636                   visual approach
## 1.118637               approach controlled
## 1.118638                 controlled flight
## 1.118648                 emergency landing
## 1.118657                          2 engine
## 1.118663                     belly landing
## 1.118672                    aircraft broke
## 1.118676                       caught fire
## 1.118679                  aircraft crashed
## 1.118685               attempted emergency
## 1.118686                 emergency landing
## 1.118690                     engine caught
## 1.118691                       caught fire
## 1.118702                  struck kumaraden
## 1.118703                    kumaraden hill
## 1.118706                          4,600 ft
## 1.118711                     scenic flight
## 1.118714               passengers included
## 1.118715                   included edelca
## 1.118716                  edelca president
## 1.118731                        sampit due
## 1.118738                        plane held
## 1.118741                           3 hours
## 1.118742                     hours waiting
## 1.118758                 helicopter struck
## 1.118764                          223 foot
## 1.118767                transmission tower
## 1.118768                     tower crashed
## 1.118773                         flames 27
## 1.118774                          27 miles
## 1.118775                   miles northwest
## 1.118785                        heavy rain
## 1.118788               pilot's intentional
## 1.118789                intentional flight
## 1.118793                   adverse weather
## 1.118794                 weather continued
## 1.118795                  continued flight
## 1.118798         instrument meteorological
## 1.118799         meteorological conditions
## 1.118802                 improper altitude
## 1.118803                     altitude rock
## 1.118804                     rock promoter
## 1.118805                     promoter bill
## 1.118806                       bill graham
## 1.118807                         graham 60
## 1.118810                       killed flew
## 1.118814                       ground 12nm
## 1.118821                          1,500 ft
## 1.118822                         ft rescue
## 1.118830                   arctic twilight
## 1.118833                      poor weather
## 1.118834                weather conditions
## 1.118835             conditions controlled
## 1.118836                 controlled flight
## 1.118839                      terrain shot
## 1.118843                      rebel forces
## 1.118844                    forces crashed
## 1.118852                      poor weather
## 1.118853                   weather failure
## 1.118861                  correct approach
## 1.118862                     approach path
## 1.118863                      path crashed
## 1.118866                   takeoff hitting
## 1.118867                     hitting power
## 1.118868                       power lines
## 1.118871                         roof tops
## 1.118879                     market square
## 1.118880                square uncontained
## 1.118881               uncontained failure
## 1.118886                      engine crash
## 1.118887                      crash landed
## 1.118890                      poor weather
## 1.118891                weather conditions
## 1.118892                  conditions icing
## 1.118893                     icing crashed
## 1.118902               helicopter impacted
## 1.118905                          ground 8
## 1.118906                              8 nm
## 1.118910               destination airport
## 1.118915                    low visibility
## 1.118923                    continue night
## 1.118924                         night low
## 1.118925                         low level
## 1.118926                      level flight
## 1.118929                forecasted adverse
## 1.118930                   adverse weather
## 1.118931                weather conditions
## 1.118932           conditions contributing
## 1.118939                     foggy weather
## 1.118942                        dark night
## 1.118943                  night conditions
## 1.118948                    pilot's visual
## 1.118949                    visual outlook
## 1.118952                       cargo plane
## 1.118953                    plane overshot
## 1.118967                       plane yawed
## 1.118973                      crew decided
## 1.118979                       crashed 800
## 1.118989                 runway horizontal
## 1.118990             horizontal stabilizer
## 1.118991                  stabilizer icing
## 1.118992                        icing flew
## 1.119007                        flying vor
## 1.119010                         crew flew
## 1.119014                      wrong valley
## 1.119017                  sightseeing tour
## 1.119018                       tour struck
## 1.119023                          2,000 ft
## 1.119031                   turbulence poor
## 1.119032                         poor crew
## 1.119033                 crew coordination
## 1.119034           coordination overloaded
## 1.119037                  aircraft reached
## 1.119042                        3,000 feet
## 1.119048                 emergency descent
## 1.119049                  descent clipping
## 1.119050                    clipping trees
## 1.119055                     belly landing
## 1.119059                    field breaking
## 1.119070                  engines improper
## 1.119071                  improper deicing
## 1.119075                      aircraft led
## 1.119080                      ice breaking
## 1.119088                   engines leading
## 1.119091                    engine failure
## 1.119101                    correct engine
## 1.119102                     engine surges
## 1.119108                        ice struck
## 1.119111              engines.the aircraft
## 1.119114                        named dana
## 1.119115                       dana viking
## 1.119118                       cargo plane
## 1.119119                     plane crashed
## 1.119129                         4 engines
## 1.119130                       engines due
## 1.119133                  corroded midspar
## 1.119134                      midspar fuse
## 1.119135                         fuse pins
## 1.119139                          3 engine
## 1.119140                      engine broke
## 1.119141                       broke loose
## 1.119147                          4 engine
## 1.119150                      aircraft hit
## 1.119165                precision approach
## 1.119168                         runway 05
## 1.119169                         05 design
## 1.119170               design deficiencies
## 1.119176                      descent mode
## 1.119177                     mode selector
## 1.119178                   selector switch
## 1.119181             captain inadvertently
## 1.119182            inadvertently selected
## 1.119183                    selected 3,300
## 1.119184                         3,300 fpm
## 1.119185                       fpm descent
## 1.119188                approach displayed
## 1.119194                        3.3 degree
## 1.119195                     degree flight
## 1.119196                       flight path
## 1.119197                        path angle
## 1.119198                   angle displayed
## 1.119221                         atc error
## 1.119234                        airbus 320
## 1.119238               inadequate training
## 1.119242              precision approached
## 1.119245                electronic locator
## 1.119246                    locator beacon
## 1.119251                     crash putting
## 1.119252                 putting survivors
## 1.119258                           4 hours
## 1.119264                  located exploded
## 1.119275                       air missile
## 1.119278                        death toll
## 1.119282             commercial helicopter
## 1.119283                  helicopter crash
## 1.119286                  aviation history
## 1.119289                aircraft descended
## 1.119294                      poor weather
## 1.119297                    struck taquari
## 1.119298                      taquari hill
## 1.119306                  aircraft crashed
## 1.119314                      crew mistook
## 1.119317                      hotel lights
## 1.119320                     runway lights
## 1.119321                      lights pilot
## 1.119322                       pilot error
## 1.119325          malfunctioning equipment
## 1.119326                 equipment founder
## 1.119329                          club med
## 1.119333                     son convicted
## 1.119336          involuntary manslaughter
## 1.119345                   missed approach
## 1.119362             spatially disoriented
## 1.119367                          low nose
## 1.119370                         left bank
## 1.119371                     bank attitude
## 1.119372                  attitude control
## 1.119395                   airplane impact
## 1.119399                   ground occurred
## 1.119410                       flight crew
## 1.119413                properly recognize
## 1.119419                     timely manner
## 1.119423                  unusual aircraft
## 1.119424                 aircraft attitude
## 1.119430                captain's apparent
## 1.119431                  apparent spatial
## 1.119432            spatial disorientation
## 1.119433          disorientation resulting
## 1.119436             physiological factors
## 1.119441                   failed attitude
## 1.119442                 attitude director
## 1.119445                    passenger died
## 1.119450                          en route
## 1.119453                       cargo plane
## 1.119454                      plane failed
## 1.119457                     gain altitude
## 1.119458                  altitude cleared
## 1.119468                        wet runway
## 1.119469                runway contributed
## 1.119473                      failure lift
## 1.119478                     timely manner
## 1.119479                    manner crashed
## 1.119483               severe thunderstorm
## 1.119488                           de iced
## 1.119495                       gate thirty
## 1.119498                   minutes elapsed
## 1.119503                          de icing
## 1.119509                   ice accumulated
## 1.119517                     plane stalled
## 1.119518                   stalled crashed
## 1.119523                     rest inverted
## 1.119526               partially submerged
## 1.119529                      flushing bay
## 1.119530                       bay failure
## 1.119534                  airline industry
## 1.119539                    provide flight
## 1.119540                      flight crews
## 1.119543             procedures compatible
## 1.119546                  departure delays
## 1.119549              conditions conducive
## 1.119552                    airframe icing
## 1.119559                       flight crew
## 1.119565                positive assurance
## 1.119569                  airplane's wings
## 1.119574                  ice accumulation
## 1.119577                        35 minutes
## 1.119584                          de icing
## 1.119587                 ice contamination
## 1.119591                    wings resulted
## 1.119595                 aerodynamic stall
## 1.119604                     crew deviated
## 1.119608                     ils localizer
## 1.119614                        runway 33r
## 1.119617                      struck 2,000
## 1.119618                        2,000 foot
## 1.119619                        foot mount
## 1.119620                    mount hymittus
## 1.119631                      ils approach
## 1.119636                   visual approach
## 1.119639                   pilot confirmed
## 1.119640             confirmed established
## 1.119644                     ils localizer
## 1.119655                       crew waited
## 1.119662                   missed approach
## 1.119665                       cargo plane
## 1.119666                     plane crashed
## 1.119670                          ground 5
## 1.119671                              5 km
## 1.119672                          km short
## 1.119678                      poor weather
## 1.119682                      vfr approach
## 1.119686                          land due
## 1.119690                     sandstorm ran
## 1.119698                    forced landing
## 1.119702                      desert crash
## 1.119703                      crash landed
## 1.119707                         desert 62
## 1.119708                          62 miles
## 1.119709                   miles southeast
## 1.119717                     yasser arafat
## 1.119718                    arafat crashed
## 1.119727                          1 engine
## 1.119730                    reaching 1,500
## 1.119731                        1,500 feet
## 1.119736                       left engine
## 1.119737                     engine failed
## 1.119743                     eastleigh air
## 1.119744                          air base
## 1.119747                   pilot attempted
## 1.119752                   poor visibility
## 1.119753                 visibility caused
## 1.119771                    ground crashed
## 1.119776                        daulo pass
## 1.119777                         pass 10km
## 1.119786                      poor weather
## 1.119789                    plane carrying
## 1.119790             carrying parachutists
## 1.119791                 parachutists lost
## 1.119792                        lost power
## 1.119795                       crashed 200
## 1.119796                            200 ft
## 1.119797                           ft past
## 1.119802               pilot's inadvertent
## 1.119803            inadvertent feathering
## 1.119807                   wrong propeller
## 1.119811                      engine power
## 1.119812                        power loss
## 1.119828                 adequate training
## 1.119832                    airplane water
## 1.119833               water contamination
## 1.119839                   airport storage
## 1.119840                     storage tanks
## 1.119841                        tanks lack
## 1.119844                      fuel quality
## 1.119845                   quality control
## 1.119846                control procedures
## 1.119847               procedures improper
## 1.119848                     improper fuel
## 1.119849                    fuel servicing
## 1.119854                      gross weight
## 1.119855                    weight forward
## 1.119856                    forward center
## 1.119859                    gravity limits
## 1.119870                      aircraft hit
## 1.119880                captain's decision
## 1.119883                      continue vfr
## 1.119886                    ifr conditions
## 1.119889              obscured mountainous
## 1.119890               mountainous terrain
## 1.119898                 navigational aids
## 1.119906                     plane crashed
## 1.119909                  unstable weather
## 1.119912                          en route
## 1.119917                     tehran twenty
## 1.119918                    twenty minutes
## 1.119921                    leaving panama
## 1.119924                  aircraft changed
## 1.119939                        speed dive
## 1.119945                            fl 100
## 1.119946                  100 intermittent
## 1.119947              intermittent failure
## 1.119951                       gyro caused
## 1.119956               attitude indicators
## 1.119957                   indicators crew
## 1.119958                    crew responded
## 1.119966               artificial horizons
## 1.119974                  selector control
## 1.119975                  control operated
## 1.119989                       cross check
## 1.119992                 standby indicator
## 1.119993                   indicator pilot
## 1.119999                         left bank
## 1.120008                 eventually rolled
## 1.120019                        steep dive
## 1.120028                     aircraft lost
## 1.120029                      lost control
## 1.120032                    final approach
## 1.120042                    ground failure
## 1.120046                     beta blocking
## 1.120047                   blocking device
## 1.120050              undetermined reasons
## 1.120054             officer's inadvertent
## 1.120055            inadvertent activation
## 1.120059                       power lever
## 1.120060                         lever aft
## 1.120064                       flight idle
## 1.120065                     idle position
## 1.120070                        beta range
## 1.120071                   range resulting
## 1.120077                  airplane control
## 1.120080                       cargo plane
## 1.120081                     plane crashed
## 1.120093          intermittent compartment
## 1.120094               compartment warning
## 1.120097                   missed approach
## 1.120103                         left wing
## 1.120106                      landing gear
## 1.120107                      gear hitting
## 1.120121                       runway crew
## 1.120122                        crew error
## 1.120123                    error possibly
## 1.120124                     possibly shot
## 1.120128                        ltta rebel
## 1.120129                      rebel forces
## 1.120138                     elephant pass
## 1.120139                         pass army
## 1.120140                     army garrison
## 1.120141                    garrison cargo
## 1.120142                     cargo shifted
## 1.120146                       cargo plane
## 1.120153                     nose attitude
## 1.120160                 contol inadequate
## 1.120161               inadequate security
## 1.120167                  shifted rearward
## 1.120171                      takeoff roll
## 1.120172                      roll factors
## 1.120182                      gross weight
## 1.120183                  weight condition
## 1.120187               improper alteration
## 1.120196           overhauling maintenance
## 1.120197              maintenance facility
## 1.120198                   facility cashed
## 1.120205                   fuel starvation
## 1.120206                starvation crashed
## 1.120211                   holding pattern
## 1.120218                      aden airport
## 1.120222                 sandstorm overran
## 1.120234              buildings overloaded
## 1.120235                 overloaded center
## 1.120245                       cargo plane
## 1.120259                  mountain crashed
## 1.120262                        mt lataboy
## 1.120265                          2,800 ft
## 1.120274                  severe rainstorm
## 1.120275                    rainstorm flew
## 1.120281                      poor weather
## 1.120285                positioning flight
## 1.120286                flight immediately
## 1.120291                      stick shaker
## 1.120292                  shaker activated
## 1.120300                      aircraft ran
## 1.120306                       caught fire
## 1.120309                   defective stall
## 1.120310                     stall warning
## 1.120311                    warning system
## 1.120314                       design flaw
## 1.120319                   defective stall
## 1.120320                     stall warning
## 1.120321                    warning system
## 1.120325                undetected failure
## 1.120328                 twa's maintenance
## 1.120329               maintenance program
## 1.120334            repetitive malfunction
## 1.120338                     stall warning
## 1.120339                    warning system
## 1.120342                   inadequate crew
## 1.120343                 crew coordination
## 1.120355            inappropriate response
## 1.120359                       false stall
## 1.120360                     stall warning
## 1.120368                kathmandu straight
## 1.120375           experiencing difficulty
## 1.120382                    captain stated
## 1.120393                    direct landing
## 1.120410                     radar service
## 1.120414               confusing exchanges
## 1.120428                        180 degree
## 1.120433                   south continued
## 1.120438                       360 degrees
## 1.120441                      headed north
## 1.120445               aircraft eventually
## 1.120446                   eventually flew
## 1.120451                 vertical mountain
## 1.120452                     mountain wall
## 1.120455                         240 knots
## 1.120462               captain interpreted
## 1.120465                  ground proximity
## 1.120466                 proximity warning
## 1.120467                    warning system
## 1.120468                    system warning
## 1.120480                occurrences errors
## 1.120488                  atc specifically
## 1.120499                     radar service
## 1.120521              standard phraseology
## 1.120524                   aircraft failed
## 1.120527                     gain altitude
## 1.120538                   runway bursting
## 1.120541                      flames 2,000
## 1.120542                        2,000 feet
## 1.120543                         feet past
## 1.120546                      runway wrong
## 1.120547                     wrong takeoff
## 1.120548            takeoff configueration
## 1.120549            configueration crashed
## 1.120556              chacaltaya mountains
## 1.120559                      poor weather
## 1.120560                weather conditions
## 1.120567                       test flight
## 1.120573                    primary flight
## 1.120574                    flight control
## 1.120575                    control cables
## 1.120586                crashed inadequate
## 1.120587            inadequate maintenance
## 1.120593            operator's maintenance
## 1.120594             maintenance personnel
## 1.120605                     assure proper
## 1.120606                     proper travel
## 1.120607                  travel direction
## 1.120611                airplane's primary
## 1.120612                    primary flight
## 1.120613                   flight controls
## 1.120624             maintenance performed
## 1.120627                          en route
## 1.120632                aircraft's engines
## 1.120633                      engines lost
## 1.120634                        lost power
## 1.120637                    pilot declared
## 1.120647                    forced landing
## 1.120651                   aircraft struck
## 1.120652                      struck trees
## 1.120668                       test flight
## 1.120669                    flight stalled
## 1.120670                    stalled rolled
## 1.120682                          wing low
## 1.120683                      low attitude
## 1.120686                  aircraft crashed
## 1.120687                       crashed 1.5
## 1.120688                         1.5 miles
## 1.120694                     approach poor
## 1.120695                      poor landing
## 1.120696              landing coordination
## 1.120700                       flight crew
## 1.120707                 maintain altitude
## 1.120716                       caught fire
## 1.120730                   intercom switch
## 1.120736                       lose height
## 1.120748                         nose gear
## 1.120749                         gear tire
## 1.120750                         tire blew
## 1.120760                      runway break
## 1.120765                        catch fire
## 1.120768                        pilot died
## 1.120781                 helicopter cashed
## 1.120788                     flames struck
## 1.120793                pilot inadequately
## 1.120794           inadequately evaluating
## 1.120797                          en route
## 1.120798                     route weather
## 1.120799                weather conditions
## 1.120807                   flight decision
## 1.120810                      continue vfr
## 1.120811                        vfr flight
## 1.120814                   adverse weather
## 1.120815                weather conditions
## 1.120816                conditions factors
## 1.120832               mountainous terrain
## 1.120833                       terrain due
## 1.120839                       cargo plane
## 1.120840                     plane crashed
## 1.120844                    atlantic ocean
## 1.120847                          en route
## 1.120848                     route crashed
## 1.120849                     crashed short
## 1.120857                  emergency return
## 1.120863                    takeoff engine
## 1.120864                    engine failure
## 1.120865                   failure crashed
## 1.120868                       power lines
## 1.120878                aircraft attempted
## 1.120887                    engines failed
## 1.120894                     engine failed
## 1.120897                  aircraft crashed
## 1.120901                        marsh fuel
## 1.120902                fuel contamination
## 1.120905                         plane hit
## 1.120906                         hit cloud
## 1.120907                     cloud covered
## 1.120914                            land 9
## 1.120915                              9 nm
## 1.120916                          nm short
## 1.120922                  bhattedanda hill
## 1.120935               aircraft's altitude
## 1.120936                  altitude failure
## 1.120942                 follow prescribed
## 1.120943             prescribed procedures
## 1.120944                procedures shortly
## 1.120950                  schiphol airport
## 1.120955                        6,500 feet
## 1.120959                          3 engine
## 1.120960                  engine separated
## 1.120971                      leading edge
## 1.120979                          3 engine
## 1.120980                  engine separated
## 1.120989                          4 engine
## 1.121000                  attempted return
## 1.121006                  aircraft crashed
## 1.121010                          11 story
## 1.121011                    story building
## 1.121015           bijlmermeer residential
## 1.121016              residential district
## 1.121025                         747 pylon
## 1.121035                    required level
## 1.121042                 ensure structural
## 1.121043              structural integrity
## 1.121046                 inspection failed
## 1.121053                          3 engine
## 1.121058                 fatigue corrosion
## 1.121062                   inboard midspar
## 1.121063                      midspar fuse
## 1.121064                          fuse pin
## 1.121073                          4 engine
## 1.121083                    ultimately led
## 1.121091                   aircraft struck
## 1.121092                      struck power
## 1.121093                       power lines
## 1.121096                   crashed crashed
## 1.121097                        crashed 45
## 1.121098                          45 miles
## 1.121099                   miles southeast
## 1.121111               experiencing engine
## 1.121112                    engine failure
## 1.121115                       cargo plane
## 1.121116                      plane veered
## 1.121141                        heavy rain
## 1.121147                     mt papandayan
## 1.121148                papandayan crashed
## 1.121160                    crashed engine
## 1.121161                    engine failure
## 1.121164                       float plane
## 1.121165                     plane crashed
## 1.121171               experiencing engine
## 1.121172                    engine failure
## 1.121175                          en route
## 1.121176                     route crashed
## 1.121177                    crashed 1,600m
## 1.121178                      1,600m short
## 1.121182                  runway threshold
## 1.121191                      rotor blades
## 1.121192                        blades hit
## 1.121195                           oil rig
## 1.121199                       arabian sea
## 1.121207                            800 ft
## 1.121210                        plane dove
## 1.121214                   ground improper
## 1.121215                  improper loading
## 1.121218                overloaded crashed
## 1.121228                  severe rainstorm
## 1.121229                 rainstorm failure
## 1.121234                  adequate weather
## 1.121235                    weather report
## 1.121240                  report correctly
## 1.121241                 correctly failure
## 1.121249               weather encountered
## 1.121257                    evasive action
## 1.121258                    action failure
## 1.121261                  provide adequate
## 1.121262                 adequate airfield
## 1.121263                 airfield approach
## 1.121264                     approach aids
## 1.121270                weather operations
## 1.121271               operations required
## 1.121272                  required failure
## 1.121275                 maintain adequate
## 1.121276                  adequate terrain
## 1.121277                 terrain clearance
## 1.121278                    clearance poor
## 1.121279                          poor air
## 1.121280                       air traffic
## 1.121281                   traffic control
## 1.121282                   control crashed
## 1.121286                         850 meter
## 1.121294                      puerto plata
## 1.121295                  plata controlled
## 1.121296                 controlled flight
## 1.121297                      flight iinto
## 1.121298                     iinto terrain
## 1.121301                  aircraft crashed
## 1.121305                          7,000 ft
## 1.121306                       ft mountain
## 1.121307                       mountain 15
## 1.121308                          15 miles
## 1.121315              apporach malfunction
## 1.121319                      thrust lever
## 1.121335                  training mission
## 1.121338                refueling collided
## 1.121343                         25,000 ft
## 1.121353                           65 0255
## 1.121358                           66 0142
## 1.121359                      0142 crashed
## 1.121363                      sierra madre
## 1.121364                   madre mountains
## 1.121365                 mountains shortly
## 1.121371                     aircraft flew
## 1.121377                          8,800 ft
## 1.121385                 goma.the accident
## 1.121386                 accident happened
## 1.121389                darkness premature
## 1.121390                  premature descet
## 1.121391                       descet shot
## 1.121398                       air missile
## 1.121401                    georgian rebel
## 1.121402                      rebel forces
## 1.121416                   aircraft's wing
## 1.121417                          wing tip
## 1.121418                           tip hit
## 1.121421                  runway resulting
## 1.121425                aircraft departing
## 1.121432                         fuel tank
## 1.121443                       final phase
## 1.121455                      landing gear
## 1.121460            structural limitations
## 1.121464            aircraft.the crosswind
## 1.121469                  aircrafts limits
## 1.121476                       final phase
## 1.121488                    factors caused
## 1.121489                   caused stresses
## 1.121494            structural limitations
## 1.121533                       flight path
## 1.121546                  properly correct
## 1.121550                    windshear flew
## 1.121559                   automatic pilot
## 1.121560                      pilot midair
## 1.121561                  midair collision
## 1.121565                        libyan air
## 1.121566                         air force
## 1.121567                     force fighter
## 1.121570                          3,500 ft
## 1.121575            transporting personnel
## 1.121579                   remote mountain
## 1.121580                   mountain valley
## 1.121586                commercial filming
## 1.121589                  celebrity skiers
## 1.121612                        ridge line
## 1.121626                         ridge top
## 1.121627                       top landing
## 1.121628                      landing site
## 1.121631            helicopter disappeared
## 1.121635                        cloud bank
## 1.121643                          8,500 ft
## 1.121644                          ft level
## 1.121647              pilot's continuation
## 1.121650                        vfr flight
## 1.121653         instrument meteorological
## 1.121654         meteorological conditions
## 1.121662                  landing attempts
## 1.121666                   adverse weather
## 1.121667                weather conditions
## 1.121670               approaching charles
## 1.121671                        charles de
## 1.121672                         de gaulle
## 1.121673                    gaulle airport
## 1.121676                  preceding korean
## 1.121677                        korean air
## 1.121678                        air boeing
## 1.121679                        boeing 747
## 1.121680                          747 blew
## 1.121700                  aircraft entered
## 1.121704                         sink rate
## 1.121710                      ground 5,500
## 1.121711                        5,500 feet
## 1.121712                        feet short
## 1.121719                          2 engine
## 1.121720                       engine lost
## 1.121721                        lost power
## 1.121726                  aircraft crashed
## 1.121730                        swamp 800m
## 1.121737                      runway broke
## 1.121741                       caught fire
## 1.121742                        fire flaps
## 1.121758                feathered manually
## 1.121761                       cargo plane
## 1.121762                      plane struck
## 1.121771                   poor visibility
## 1.121776                       cargo plane
## 1.121777                      plane banked
## 1.121778                    banked sharply
## 1.121790                       cargo plane
## 1.121791                     plane overran
## 1.121796                   struck vehicles
## 1.121797               vehicles overloaded
## 1.121798                overloaded crashed
## 1.121801                          mt kapur
## 1.121802                        kapur 67nm
## 1.121807                      poor weather
## 1.121808                weather conditions
## 1.121817                       found pilot
## 1.121822                          8,500 ft
## 1.121826                 published minimum
## 1.121827                      minimum safe
## 1.121828                     safe altitude
## 1.121829                   altitude midair
## 1.121830                  midair collision
## 1.121834                       iranian air
## 1.121835                         air force
## 1.121836                     force fighter
## 1.121842                    hundred thirty
## 1.121854                             su 24
## 1.121857                helicopter crashed
## 1.121860                          en route
## 1.121861                  route overloaded
## 1.121864                 poorly maintained
## 1.121867                       cargo plane
## 1.121868                   plane attempted
## 1.121877                     engine caught
## 1.121878                       caught fire
## 1.121886              aircraft disappeared
## 1.121887               disappeared shortly
## 1.121903                         sea prior
## 1.121919                 accident occurred
## 1.121925                        heavy rain
## 1.121928                aircraft shuttered
## 1.121929               shuttered violently
## 1.121932                    takeoff rolled
## 1.121940                     crashed icing
## 1.121941                        icing loss
## 1.121944              roll controllability
## 1.121945               controllability due
## 1.121953                       ice failure
## 1.121956                            de ice
## 1.121964                  aircraft crashed
## 1.121965             crashed approximately
## 1.121966                  approximately 30
## 1.121967                        30 minutes
## 1.121975                          2 engine
## 1.121978                   pylon separated
## 1.121984                        2,000 feet
## 1.121987                      plane landed
## 1.121988                     landed safely
## 1.121991                 engine separation
## 1.122001                  possibly extreme
## 1.122002                extreme turbulence
## 1.122006                     fatigue crack
## 1.122009                hooters restaurant
## 1.122010                restaurant private
## 1.122011                     private plane
## 1.122012                     plane crashed
## 1.122013                       crashed 0.5
## 1.122014                         0.5 miles
## 1.122018                      outer marker
## 1.122026                        tri cities
## 1.122027                    cities airport
## 1.122030                 bristol tennessee
## 1.122031                  tennessee nascar
## 1.122032                    nascar winston
## 1.122033                       winston cup
## 1.122034                      cup champion
## 1.122035                     champion alan
## 1.122036                     alan kulwicki
## 1.122037                       kulwicki 38
## 1.122038                         38 killed
## 1.122039                    killed failure
## 1.122045                 follow procedures
## 1.122051                      engine inlet
## 1.122052                        inlet anti
## 1.122053                        anti icing
## 1.122054                      icing system
## 1.122059                  icing conditions
## 1.122064                     ice ingestion
## 1.122069                      engine power
## 1.122070                     power failure
## 1.122076                 maintain airspeed
## 1.122089                 departing caracas
## 1.122093                       test flight
## 1.122098            inadvertently deployed
## 1.122102                            fl 330
## 1.122105               aircraft progressed
## 1.122109                pitch oscillations
## 1.122112                        lost 5,000
## 1.122113                        5,000 feet
## 1.122116               altitude inadequate
## 1.122117                 inadequate design
## 1.122121                         flap slat
## 1.122122                    slat actuation
## 1.122123                  actuation handle
## 1.122133           inadvertently dislodged
## 1.122138                      ret position
## 1.122141                 causing extension
## 1.122145                      leading edge
## 1.122146                        edge slats
## 1.122149                     cruise flight
## 1.122159                     propeller hub
## 1.122160                      hub resulted
## 1.122167                   propeller blade
## 1.122173                    engine nacelle
## 1.122174                      nacelle wing
## 1.122177                  fuselage causing
## 1.122178               causing significant
## 1.122179           significant degradation
## 1.122182              aircraft performance
## 1.122189              maintaining altitude
## 1.122201                 emergency landing
## 1.122202                     landing south
## 1.122203                      south dakota
## 1.122204                   dakota governor
## 1.122205                   governor george
## 1.122206                  george mickelson
## 1.122207                      mickelson 52
## 1.122208                         52 killed
## 1.122209                       killed flew
## 1.122215                     marz mountain
## 1.122223                   aircraft failed
## 1.122233                       public road
## 1.122245             substantially damaged
## 1.122249                     pilot elected
## 1.122255                    forced landing
## 1.122259                 attempted landing
## 1.122262                   aircraft struck
## 1.122263                 struck powerlines
## 1.122264                powerlines crashed
## 1.122267                     burned pilots
## 1.122268                      pilots error
## 1.122271                   initiating late
## 1.122272                     late rotation
## 1.122276                    wrong rotation
## 1.122277                rotation technique
## 1.122287                    mobile traffic
## 1.122291                         beed road
## 1.122295                      flight hours
## 1.122296                     hours crashed
## 1.122305                libreville airport
## 1.122308                       engine fire
## 1.122309                          fire led
## 1.122323                  zambian national
## 1.122324                   national soccer
## 1.122325                       soccer team
## 1.122326                       team killed
## 1.122327                    killed crashed
## 1.122333                   poor visibility
## 1.122334                    visibility low
## 1.122335                        low clouds
## 1.122340                 landing undershot
## 1.122347                vehicle improperly
## 1.122348                 improperly loaded
## 1.122351                       cargo plane
## 1.122352                     plane crashed
## 1.122355             unknown circumstances
## 1.122358                         plane hit
## 1.122359                            hit mt
## 1.122360                         mt paramo
## 1.122361                   paramo frontino
## 1.122364                         12,300 ft
## 1.122370                     maria cordova
## 1.122371                   cordova airport
## 1.122372                    airport errors
## 1.122381                aircraft descended
## 1.122384               mountainous terrain
## 1.122390                     abejorral ndb
## 1.122391                        ndb beacon
## 1.122394                           vor dme
## 1.122406                       cargo plane
## 1.122407                    plane impacted
## 1.122413                   visual approach
## 1.122416                          el yopal
## 1.122419                    final approach
## 1.122422                         low speed
## 1.122425                         left wing
## 1.122426                      wing dropped
## 1.122436                    deliberate low
## 1.122437                          low left
## 1.122441                 plane cartwheeled
## 1.122447                      cargo aboard
## 1.122448                    aboard shifted
## 1.122453                       plane nosed
## 1.122460                     crew reported
## 1.122464                     diverting due
## 1.122471                  aircraft crashed
## 1.122474               encountering severe
## 1.122475                 severe turbulence
## 1.122478                     plane overran
## 1.122489                reduced visibility
## 1.122495                        beach shot
## 1.122499                    abkhazi forces
## 1.122502                helicopter crashed
## 1.122517                   talladega super
## 1.122518                    super speedway
## 1.122524                 helicopter nascar
## 1.122525                       nascar race
## 1.122526                          race car
## 1.122527                        car driver
## 1.122528                      driver davey
## 1.122529                     davey allison
## 1.122530                        allison 30
## 1.122531                         30 killed
## 1.122534                      pilot's poor
## 1.122537                   flight decision
## 1.122540                     land downwind
## 1.122556               properly compensate
## 1.122560                tailwind condition
## 1.122563                  aircraft crashed
## 1.122578                takeoff mechanical
## 1.122579                mechanical failure
## 1.122580                     failure flaps
## 1.122581                    flaps selected
## 1.122588                      aircraft hit
## 1.122589                            hit mt
## 1.122590                          mt ungeo
## 1.122593                            800 ft
## 1.122600                    missed landing
## 1.122601                  landing attempts
## 1.122607                        heavy rain
## 1.122608                    rain captain's
## 1.122609                captain's decision
## 1.122621                      aircraft ran
## 1.122622                           ran low
## 1.122627                          en route
## 1.122633              subsequent attempted
## 1.122634                  attempted forced
## 1.122635                    forced landing
## 1.122644                  aircraft strayed
## 1.122649                 encountering poor
## 1.122650                      poor weather
## 1.122651                weather conditions
## 1.122654                     aircraft flew
## 1.122661                   visual approach
## 1.122666                 accident happened
## 1.122681                       cargo plane
## 1.122682                     plane crashed
## 1.122683                         crashed 1
## 1.122684                               1 4
## 1.122688                        mile short
## 1.122708                    west requiring
## 1.122722               controlled military
## 1.122723                     military base
## 1.122732                      strobe light
## 1.122733                     light marking
## 1.122749                 impaired judgment
## 1.122750                 judgment decision
## 1.122754                  flying abilities
## 1.122760                       flight crew
## 1.122761                          crew due
## 1.122769                      sudden pitch
## 1.122773                      approach led
## 1.122786                     plane stalled
## 1.122789                crashed improperly
## 1.122790                 improperly loaded
## 1.122791                    loaded baggage
## 1.122792                   baggage shifted
## 1.122800                  acceptable limit
## 1.122806               aircraft overloaded
## 1.122809                           3 times
## 1.122822                  airborne overran
## 1.122830                       pyanj river
## 1.122847                  aircraft skidded
## 1.122872                        poor water
## 1.122873                    water drainage
## 1.122882                    wind direction
## 1.122886                       light touch
## 1.122890                    runway surface
## 1.122894                      landing gear
## 1.122902                      left landing
## 1.122903                      landing gear
## 1.122904                          gear leg
## 1.122908                 extent understood
## 1.122912                 aircraft computer
## 1.122916                    actual landing
## 1.122917                  landing resulted
## 1.122920                delayed deployment
## 1.122925                  thrust reversers
## 1.122935                 braking commenced
## 1.122944                        heavy rain
## 1.122947                   strong tailwind
## 1.122960                     named kulbach
## 1.122961                   kulbach crashed
## 1.122965                          sea shot
## 1.122972                abkhazi separatist
## 1.122973                 separatist rebels
## 1.122983                      crash landed
## 1.122987                  runway terrorist
## 1.122988                     terrorist act
## 1.122991                  abkhazian rebels
## 1.122998                      senic flight
## 1.123002                           mt cook
## 1.123006                    impacted franz
## 1.123007                       franz josef
## 1.123008                     josef glacier
## 1.123011                          4,500 ft
## 1.123019                     narrow valley
## 1.123024                   pilot attempted
## 1.123033                  aircraft stalled
## 1.123040                        steep bank
## 1.123058                  swamp collapsing
## 1.123061                      landing gear
## 1.123071                aircraft descended
## 1.123077                localizer approach
## 1.123081                 glideslope struck
## 1.123093                        heavy rain
## 1.123094                      rain showers
## 1.123097                      strong winds
## 1.123109                      struck trees
## 1.123117                  lost situational
## 1.123118             situational awareness
## 1.123128              increasing deviation
## 1.123132                   intended flight
## 1.123133                       flight path
## 1.123134                 path contributing
## 1.123135               contributing factor
## 1.123141                          ac power
## 1.123147                flight instruments
## 1.123158                     plane crashed
## 1.123159                     crashed short
## 1.123167                         dense fog
## 1.123168                       fog hitting
## 1.123169                     hitting power
## 1.123170                       power lines
## 1.123176            autopilot disconnected
## 1.123185                    vertical speed
## 1.123186                        speed mode
## 1.123189                         800ft min
## 1.123190                       min crashed
## 1.123195                   holding pattern
## 1.123209                  standard holding
## 1.123210                   holding pattern
## 1.123213                  airliner crashed
## 1.123219                   aborted landing
## 1.123222                     ohrid airport
## 1.123232                       bad weather
## 1.123233                 weather violation
## 1.123236                   airport traffic
## 1.123237                   traffic pattern
## 1.123242                   earlier carried
## 1.123246                   missed approach
## 1.123252                 reportedly failed
## 1.123257                  normal procedure
## 1.123262                       result lost
## 1.123263                  lost situational
## 1.123264             situational awareness
## 1.123267                        vor beacon
## 1.123273                       air traffic
## 1.123274                traffic controller
## 1.123275                  controller spoke
## 1.123276                  spoke macedonian
## 1.123292                 aircraft collided
## 1.123297                         terrain 3
## 1.123298                           3 miles
## 1.123302                  runway threshold
## 1.123307                  freezing drizzle
## 1.123308                     drizzle delay
## 1.123323                 crew coordination
## 1.123329                altitude awareness
## 1.123336             unstabilized approach
## 1.123339                  night instrument
## 1.123340         instrument meteorological
## 1.123341         meteorological conditions
## 1.123349                    pilot reported
## 1.123360             aircraft subsequently
## 1.123361              subsequently crashed
## 1.123365                       frozen lake
## 1.123366                        lake 7.7nm
## 1.123372                   darkness midair
## 1.123373                  midair collision
## 1.123376                        twin otter
## 1.123380                descending inbound
## 1.123383                    dakar collided
## 1.123387                    gambia airways
## 1.123388                  airways aircraft
## 1.123396                        twin otter
## 1.123397                     otter crashed
## 1.123401                       sea failure
## 1.123404                 maintain assigned
## 1.123405                 assigned altitude
## 1.123408                     killed aboard
## 1.123411                        twin otter
## 1.123414                             ys 11
## 1.123419                       land safely
## 1.123420                    safely crashed
## 1.123425               phongsavanh airport
## 1.123428                    striking trees
## 1.123431                         heavy fog
## 1.123432                          fog flew
## 1.123438                         mt manase
## 1.123441                          2,000 ft
## 1.123442                           ft 21nm
## 1.123449                      vor approach
## 1.123454                   pilot descended
## 1.123459                        heavy rain
## 1.123465                  aircraft stalled
## 1.123473                       tail struck
## 1.123479                   pilot attempted
## 1.123490                     plane crashed
## 1.123500                          2 engine
## 1.123503                   subsequent loss
## 1.123508                 remaining engines
## 1.123509                    engines faulty
## 1.123510                        faulty air
## 1.123511                       air starter
## 1.123512                      starter unit
## 1.123513                         unit crew
## 1.123519                   starter warning
## 1.123520                     warning light
## 1.123521                    light thinking
## 1.123527               crew underestimated
## 1.123533                     situation due
## 1.123539         operational documentation
## 1.123540             documentation breakup
## 1.123545                          2 engine
## 1.123546                    engine starter
## 1.123547                  starter damaging
## 1.123548                     damaging fuel
## 1.123551                         oil lines
## 1.123558                  aircraft stalled
## 1.123559                       stalled 1.2
## 1.123560                         1.2 miles
## 1.123561                        miles east
## 1.123564                        runway 28l
## 1.123568                      ils approach
## 1.123571                 aerodynamic stall
## 1.123572                    stall occurred
## 1.123576                flightcrew allowed
## 1.123583                       stall speed
## 1.123587                    poorly planned
## 1.123590                 executed approach
## 1.123591            approach characterized
## 1.123597             procedural discipline
## 1.123598               discipline improper
## 1.123599                    improper pilot
## 1.123600                    pilot response
## 1.123604                     stall warning
## 1.123605                 warning including
## 1.123606                 including failure
## 1.123611                      power levers
## 1.123616           inappropriately raising
## 1.123619                flaps flightcrew's
## 1.123620         flightcrew's inexperience
## 1.123624                     glass cockpit
## 1.123625                 cockpit automated
## 1.123626                automated aircraft
## 1.123632                      nose pitched
## 1.123636                  aircraft stalled
## 1.123639                     crashed short
## 1.123643                      runway icing
## 1.123647             horizontal stabilizer
## 1.123650                       cargo plane
## 1.123651                      plane struck
## 1.123652                      struck trees
## 1.123662                      severe icing
## 1.123663                    icing multiple
## 1.123664                   multiple engine
## 1.123665                   engine failures
## 1.123666                 failures occurred
## 1.123674                     extreme icing
## 1.123675                  icing conditions
## 1.123676             conditions incomplete
## 1.123677            incomplete performance
## 1.123681                  emergency drills
## 1.123694               emergency checklist
## 1.123695              checklist prejudiced
## 1.123700                 successful engine
## 1.123703                       starts crew
## 1.123704                      crew actions
## 1.123712                    failed engines
## 1.123721             operator's procedures
## 1.123722                procedures limited
## 1.123731            unfeathered propellers
## 1.123735                    failed engines
## 1.123742                      heavily iced
## 1.123743                     iced airframe
## 1.123744                 airframe resulted
## 1.123755                  chosen diversion
## 1.123756                diversion airfield
## 1.123760                      reached poor
## 1.123761                         poor crew
## 1.123762                     crew resource
## 1.123763               resource management
## 1.123764                management reduced
## 1.123769                emergency planning
## 1.123770                 planning decision
## 1.123774                  workload sharing
## 1.123781                  contingency plan
## 1.123788                   forecast severe
## 1.123789                      severe icing
## 1.123790                  icing conditions
## 1.123798                 relative position
## 1.123802                  closer diversion
## 1.123803                diversion airfield
## 1.123816                       air traffic
## 1.123817                  traffic services
## 1.123820                      plane struck
## 1.123821                      struck cerro
## 1.123822                     cerro carpich
## 1.123825                          4,000 ft
## 1.123826                              ft 6
## 1.123827                         6 minutes
## 1.123834                       tingo maria
## 1.123837                  aircraft overran
## 1.123850                        east river
## 1.123854                   aborted takeoff
## 1.123855                   takeoff failure
## 1.123861                      pilot static
## 1.123862                       static heat
## 1.123863                       heat system
## 1.123864                  system resulting
## 1.123867                     erroneous air
## 1.123868                         air speed
## 1.123869                  speed indication
## 1.123872                   heavily damaged
## 1.123882                   service crashed
## 1.123888             exercises application
## 1.123891                      wrong rudder
## 1.123894                     trainee pilot
## 1.123897                    engine failure
## 1.123898                  failure exercise
## 1.123899                  exercise captain
## 1.123903                       guard block
## 1.123906                    rudder control
## 1.123921                      wrong rudder
## 1.123922                    rudder control
## 1.123926                     trainee pilot
## 1.123927                     pilot crashed
## 1.123933                    shell exploded
## 1.123939                      gun barrells
## 1.123940                     barrells shot
## 1.123947                   armenian forces
## 1.123950                          en route
## 1.123953            discharging passengers
## 1.123956                         sea plane
## 1.123961                      nose pitched
## 1.123965                   crashed failure
## 1.123977                 adequately pumped
## 1.123978                       pumped free
## 1.123986                        aft center
## 1.123989                     gravity limit
## 1.124004                    factor related
## 1.124011                        water leak
## 1.124014                       cargo plane
## 1.124015                        plane lost
## 1.124040                 maintain airspeed
## 1.124041                  airspeed factors
## 1.124047                  cylinder fatigue
## 1.124048                      fatigue dark
## 1.124049                        dark night
## 1.124052                 stall encountered
## 1.124053                  encountered lost
## 1.124067                     crashed 1,300
## 1.124068                          1,300 ft
## 1.124074                  aircraft crashed
## 1.124078                   captain allowed
## 1.124090                        pilot's 11
## 1.124105                      pilot's seat
## 1.124113          inadvertently disengaged
## 1.124116                 autopilot linkage
## 1.124129                        90 degrees
## 1.124136                      drop sharply
## 1.124140                      pilot pulled
## 1.124147                      obtain level
## 1.124148                      level flight
## 1.124152                     plane stalled
## 1.124156                       seat pulled
## 1.124168                         hand seat
## 1.124172                  properly control
## 1.124180                        rapid pull
## 1.124181                          pull ups
## 1.124188                    spiral descent
## 1.124195                   pilot initiated
## 1.124198                         4.8g pull
## 1.124205                     stable flight
## 1.124206                       flight path
## 1.124210                   aircraft struck
## 1.124217                    level attitude
## 1.124218                  attitude killing
## 1.124225                      named glinka
## 1.124228                    mikhail glinka
## 1.124233                     russian music
## 1.124236                helicopter crashed
## 1.124237                   crashed shortly
## 1.124244                  foreign material
## 1.124245                     material snow
## 1.124254                     flameout loss
## 1.124257                      engine power
## 1.124258                     power factors
## 1.124259                   factors related
## 1.124266                   adverse weather
## 1.124267                weather conditions
## 1.124268                   conditions snow
## 1.124269                      snow falling
## 1.124272                  density altitude
## 1.124277                       snow covers
## 1.124282                    engine intakes
## 1.124290                weather conditions
## 1.124293                  improve improper
## 1.124294                 improper planning
## 1.124295                 planning decision
## 1.124302                  company operator
## 1.124303               operator management
## 1.124304             management inadequate
## 1.124305            inadequate information
## 1.124309                     flight manual
## 1.124315                  suitable terrain
## 1.124319                 emergency landing
## 1.124320                   landing shortly
## 1.124328                     false warning
## 1.124329                     warning light
## 1.124332                     captain idled
## 1.124335                   engine contrary
## 1.124357                   aircraft rolled
## 1.124366                crashed inadequate
## 1.124371                   flight controls
## 1.124382              control contributing
## 1.124383              contributing factors
## 1.124386        insufficient understanding
## 1.124393                         saab 340b
## 1.124394                       340b engine
## 1.124395                        engine oil
## 1.124396                        oil system
## 1.124397                       system lack
## 1.124406            aircraft configuration
## 1.124412                       flight idle
## 1.124415                         poor crew
## 1.124416                     crew resource
## 1.124417               resource management
## 1.124418                   management shot
## 1.124423                 missile president
## 1.124426                   burundi cyprien
## 1.124427                cyprien ntaryamira
## 1.124432                    rwanda juvenal
## 1.124433               juvenal habyarimana
## 1.124436                     killed struck
## 1.124437                         struck mt
## 1.124438                          mt lozan
## 1.124441                         13,400 ft
## 1.124447                         clouds 47
## 1.124448                        47 minutes
## 1.124453                 controlled flight
## 1.124456                      terrain shot
## 1.124460                     friendly fire
## 1.124464                          gulf war
## 1.124465                      war thirteen
## 1.124466                   thirteen killed
## 1.124470                helicopter crashed
## 1.124473                          mt saran
## 1.124474                          saran 30
## 1.124475                        30 minutes
## 1.124484                      poor weather
## 1.124485                 weather condtions
## 1.124489                      ils approach
## 1.124492                    nagoya airport
## 1.124498                        1,000 feet
## 1.124502             officer inadvertently
## 1.124503           inadvertently triggered
## 1.124525                      reducing air
## 1.124526                         air speed
## 1.124529                  aircraft stalled
## 1.124530                       stalled hit
## 1.124533                       runway tail
## 1.124541                     plane crashed
## 1.124549                trim configuration
## 1.124550             configuration brought
## 1.124558                 tailplane setting
## 1.124561               moved automatically
## 1.124567                      maximum nose
## 1.124572                     plane climbed
## 1.124576                       steep angle
## 1.124597                      basic flight
## 1.124598                 flight procedures
## 1.124616                   visual approach
## 1.124619                       sao gabriel
## 1.124622                       stuck trees
## 1.124623                     trees crashed
## 1.124628                 emergency landing
## 1.124631                    engine trouble
## 1.124632                   trouble crashed
## 1.124633                   crashed shortly
## 1.124639                     double engine
## 1.124640                    engine failure
## 1.124643                helicopter crashed
## 1.124650                        stone slab
## 1.124656                            800 ft
## 1.124657                          ft pilot
## 1.124658                       pilot error
## 1.124666                         heavy fog
## 1.124670                     safe altitude
## 1.124673                       plane broke
## 1.124677                         flight 10
## 1.124678                        10 minutes
## 1.124683                        auto pilot
## 1.124684                     pilot induced
## 1.124685              induced oscillations
## 1.124686               oscillations caused
## 1.124691                   shake violently
## 1.124694                     autopilot yaw
## 1.124695                       yaw channel
## 1.124698            accidentally connected
## 1.124702                      bank control
## 1.124706                      bank channel
## 1.124710                      yaw controls
## 1.124713                     aircraft flew
## 1.124723                 accident happened
## 1.124729                      poor weather
## 1.124734                      heavy clouds
## 1.124742                   pilot's failure
## 1.124750               procedure correctly
## 1.124753                   aircraft struck
## 1.124754                         struck mt
## 1.124755                         mt kalora
## 1.124758                        2,300 feet
## 1.124763                   visual approach
## 1.124768                 accident happened
## 1.124776                reduced visibility
## 1.124786                  aircraft crashed
## 1.124789                      poor weather
## 1.124790                weather conditions
## 1.124791                    conditions 0.8
## 1.124792                            0.8 nm
## 1.124793                          nm south
## 1.124799                         runway 1r
## 1.124802              dulles international
## 1.124803             international airport
## 1.124808                       ils landing
## 1.124809                      landing poor
## 1.124810                   poor airmanship
## 1.124813             relative inexperience
## 1.124823           unstabilized instrument
## 1.124824               instrument approach
## 1.124833               authorized altitude
## 1.124836                    visual contact
## 1.124840                runway environment
## 1.124841          environment contributing
## 1.124857                  airplane crashed
## 1.124860                        approach 3
## 1.124861                           3 miles
## 1.124862                       miles short
## 1.124874                      landing gear
## 1.124877                    retracted shot
## 1.124881                     afghan troops
## 1.124884                     plane crashed
## 1.124889                  simulated engine
## 1.124890                    engine failure
## 1.124893                    takeoff caused
## 1.124899                  factors relating
## 1.124917                  crash unexpected
## 1.124918                   unexpected mode
## 1.124919                   mode transition
## 1.124922                  altitude acquire
## 1.124923                      acquire mode
## 1.124927                  simulated engine
## 1.124928                    engine failure
## 1.124929                  failure resulted
## 1.124932                   excessive pitch
## 1.124933                        pitch loss
## 1.124940                     control pitch
## 1.124941                    pitch attitude
## 1.124942               attitude protection
## 1.124947                  altitude acquire
## 1.124948                      acquire mode
## 1.124951                       plane crash
## 1.124952                      crash landed
## 1.124958                   adverse weather
## 1.124963                   landing attempt
## 1.124964                  attempt breaking
## 1.124967                      landing gear
## 1.124978                  aircraft crashed
## 1.124984                 private residence
## 1.124988                   missed approach
## 1.124991                   adverse weather
## 1.124992                weather conditions
## 1.124993             conditions microburst
## 1.124994                microburst induced
## 1.124995                 induced windshear
## 1.124996                  windshear crew's
## 1.124997                  crew's inability
## 1.125000               recognize windshear
## 1.125003             microburst conditions
## 1.125006             flightcrew's decision
## 1.125013                 severe convective
## 1.125014               convective activity
## 1.125023              flightcrew's failure
## 1.125028               windshear situation
## 1.125032                     timely manner
## 1.125035              flightcrew's failure
## 1.125042                   proper airplane
## 1.125043                 airplane attitude
## 1.125046                    thrust setting
## 1.125056                         real time
## 1.125057                      time adverse
## 1.125058                   adverse weather
## 1.125061                  windshear hazard
## 1.125062                hazard information
## 1.125063         information dissemination
## 1.125066                       air traffic
## 1.125067                   traffic control
## 1.125070                helicopter crashed
## 1.125082                        life vests
## 1.125085                      3 passengers
## 1.125086                passengers drowned
## 1.125087                   drowned failure
## 1.125091                     engine driven
## 1.125092                       driven fuel
## 1.125093                         fuel pump
## 1.125106                aircraft flotation
## 1.125107               flotation equipment
## 1.125108                 equipment factors
## 1.125109                   factors related
## 1.125117                    water adjacent
## 1.125124                   suitable forced
## 1.125125                    forced landing
## 1.125126                      landing site
## 1.125133                passenger briefing
## 1.125144                   life preservers
## 1.125145                preservers crashed
## 1.125154                          land ran
## 1.125170                   emergency brake
## 1.125171                     brake systems
## 1.125190                   wooded hillside
## 1.125191                  hillside shortly
## 1.125200                     bomb exploded
## 1.125201                   exploded aboard
## 1.125204                helicopter crashed
## 1.125205                         crashed 5
## 1.125206                         5 minutes
## 1.125212                         kilo lima
## 1.125213                      lima crashed
## 1.125223                       engine fire
## 1.125226                   poor visibility
## 1.125229                        heavy rain
## 1.125230                    rain continued
## 1.125231                     continued vfr
## 1.125232                        vfr flight
## 1.125237                  aircraft overran
## 1.125242                       caught fire
## 1.125247                   adverse weather
## 1.125248                weather conditions
## 1.125255                       slats flaps
## 1.125258                             15 20
## 1.125259                        20 degrees
## 1.125260                       degrees due
## 1.125263               suspected windshear
## 1.125264                    windshear crew
## 1.125265                        crew error
## 1.125294                        pilot flew
## 1.125298                         blind box
## 1.125299                        box canyon
## 1.125310                   flight planning
## 1.125311                 planning decision
## 1.125323               mountainous terrain
## 1.125326                        box canyon
## 1.125333                   related factors
## 1.125337                  instrument rated
## 1.125338                  rated commercial
## 1.125339                  commercial pilot
## 1.125342                          en route
## 1.125345                         2000 feet
## 1.125346                          feet msl
## 1.125350                         night vfr
## 1.125351                        vfr flight
## 1.125357             inadvertent encounter
## 1.125360         instrument meteorological
## 1.125361         meteorological conditions
## 1.125364                 helicopter n124nh
## 1.125365               n124nh subsequently
## 1.125366              subsequently crashed
## 1.125375                     steep descent
## 1.125376                 descent continued
## 1.125377                     continued vfr
## 1.125378                        vfr flight
## 1.125383                  aircraft entered
## 1.125386                        steep dive
## 1.125389                         16,000 ft
## 1.125392                        crashed 10
## 1.125393                        10 minutes
## 1.125409              deliberately causing
## 1.125414                committing suicide
## 1.125421                  moroccan pilot's
## 1.125422                     pilot's union
## 1.125432                       sudden nose
## 1.125433                         nose dive
## 1.125436                          6,000 ft
## 1.125442                     wooded ravine
## 1.125443                          ravine 6
## 1.125444                           6 miles
## 1.125445                   miles northwest
## 1.125448          pittsburgh international
## 1.125449             international airport
## 1.125462                aircraft resulting
## 1.125469                    rudder surface
## 1.125473                    blowdown limit
## 1.125477                uncommanded rudder
## 1.125478                   rudder reversal
## 1.125481                    rudder surface
## 1.125482                 surface deflected
## 1.125486                direction opposite
## 1.125502                       main rudder
## 1.125503                        rudder pcu
## 1.125504                         pcu servo
## 1.125505                       servo valve
## 1.125506                   valve secondary
## 1.125507                   secondary slide
## 1.125511                       servo valve
## 1.125512                     valve housing
## 1.125513                    housing offset
## 1.125517                  neutral position
## 1.125523                     primary slide
## 1.125536                 accident included
## 1.125542                         pcu servo
## 1.125543                       servo valve
## 1.125548                        light left
## 1.125549                       left rudder
## 1.125564                opposite direction
## 1.125567                   pilot commanded
## 1.125579                possibly initiated
## 1.125583                        plane flew
## 1.125587                       wake vortex
## 1.125599                       left rudder
## 1.125600                   rudder hardover
## 1.125607                    stick ailerons
## 1.125617                   crossover speed
## 1.125620                         190 knots
## 1.125623                           flaps 1
## 1.125644                    fullblown left
## 1.125645                     left position
## 1.125646                  position causing
## 1.125653                        left stall
## 1.125666                    command pushed
## 1.125667                    pushed forward
## 1.125681                 accident possibly
## 1.125686                     avoided blame
## 1.125726                        heavy rain
## 1.125731                 severe turbulence
## 1.125745                   stall resulting
## 1.125749                    plane crashing
## 1.125756                  elevator control
## 1.125757                     control cable
## 1.125758                      cable failed
## 1.125761                       station 367
## 1.125762                           367 due
## 1.125767                  failure resulted
## 1.125770                        salt water
## 1.125771                     water induced
## 1.125772                 induced corrosion
## 1.125777                recently undergone
## 1.125780               periodic inspection
## 1.125802                  landing attempts
## 1.125805                   adverse weather
## 1.125806                weather conditions
## 1.125809                      aircraft ran
## 1.125817                       cargo plane
## 1.125818                        plane lost
## 1.125819                      lost control
## 1.125820                   control shortly
## 1.125826                   losing altitude
## 1.125829                       ditched 500
## 1.125830                        500 meters
## 1.125837                            4 prop
## 1.125838                        prop pitch
## 1.125839                     pitch control
## 1.125840                    control system
## 1.125841                     system failed
## 1.125845                  landing attempts
## 1.125850                     crew diverted
## 1.125856                       bad weather
## 1.125859                      aircraft ran
## 1.125868                        river bank
## 1.125871                             40 km
## 1.125874                  vanavera crashed
## 1.125877               experiencing engine
## 1.125878                    engine failure
## 1.125881                       cargo plane
## 1.125882                      plane failed
## 1.125885                     gain altitude
## 1.125886                  altitude overran
## 1.125891                      crashed crew
## 1.125892                        crew error
## 1.125895                       cargo plane
## 1.125896                      plane landed
## 1.125897                      landed short
## 1.125901                    runway bounced
## 1.125902                 bounced collapsed
## 1.125905                      landing gear
## 1.125906                       gear veered
## 1.125917                   vehicles thirty
## 1.125930              uncontrolled descent
## 1.125933                      losing power
## 1.125942                 mountain exploded
## 1.125945                           mid air
## 1.125948                          en route
## 1.125949                          route 60
## 1.125950                             60 km
## 1.125951                      km northeast
## 1.125963                 aircraft exploded
## 1.125964                     exploded shot
## 1.125968                      rebel forces
## 1.125971                       cargo plane
## 1.125972                    plane suddenly
## 1.125973                  suddenly pitched
## 1.125980                        hill icing
## 1.125981                     icing pitched
## 1.125987                takeoff overweight
## 1.125990                 improperly loaded
## 1.125997                   holding pattern
## 1.126004                    newly assigned
## 1.126005                 assigned altitude
## 1.126008                        8,000 feet
## 1.126014                  uncommanded roll
## 1.126022                     rapid descent
## 1.126023                     descent icing
## 1.126029                         rubber de
## 1.126030                          de icing
## 1.126031                        icing boot
## 1.126041                      wings sudden
## 1.126044                unexpected aileron
## 1.126045                     aileron hinge
## 1.126046                    hinge movement
## 1.126047                 movement reversal
## 1.126055                      ice accreted
## 1.126059                       deice boots
## 1.126067                   holding pattern
## 1.126072        intermittently encountered
## 1.126073           encountered supercooled
## 1.126074                 supercooled cloud
## 1.126077                      drizzle rain
## 1.126078                        rain drops
## 1.126083                     water content
## 1.126092             icing certificication
## 1.126093          certificication envelope
## 1.126110              recover contributing
## 1.126111               contributing factor
## 1.126115                french directorate
## 1.126119                  civil aviation's
## 1.126120             aviation's inadequate
## 1.126121              inadequate oversight
## 1.126127                            atr 72
## 1.126136                 corrective action
## 1.126139                  ensure continued
## 1.126140           continued airworthiness
## 1.126143                  icing conditions
## 1.126152              timely airworthiness
## 1.126153         airworthiness information
## 1.126154             information developed
## 1.126157                      previous atr
## 1.126158                     atr incidents
## 1.126163                  icing conditions
## 1.126164                conditions crashed
## 1.126173                          en route
## 1.126176                      poor weather
## 1.126177                 weather condtions
## 1.126178                    condtions fuel
## 1.126179                   fuel exhaustion
## 1.126182                       cargo plane
## 1.126183                     plane crashed
## 1.126189                          4,000 ft
## 1.126192                     pilot delayed
## 1.126193                   delayed landing
## 1.126201                    runway overran
## 1.126208                     saposoa river
## 1.126209                    river breaking
## 1.126213                          en route
## 1.126216                       cargo plane
## 1.126220              uncontrolled descent
## 1.126223                      crashed loss
## 1.126226                  aircraft control
## 1.126234                   unknown reasons
## 1.126235                   reasons crashed
## 1.126241                      poor weather
## 1.126242                weather conditions
## 1.126246                      takeoff roll
## 1.126249                              dc 9
## 1.126250                        9 collided
## 1.126264                  ground collision
## 1.126272                      cessna pilot
## 1.126273                  pilot mistakenly
## 1.126291                     killed aboard
## 1.126294                              dc 9
## 1.126295                            9 shot
## 1.126299                       unita rebel
## 1.126300                      rebel forces
## 1.126303                  explosive device
## 1.126304                  device detonated
## 1.126307                            fl 300
## 1.126314                   passenger cabin
## 1.126315                     cabin blowing
## 1.126319                       square foot
## 1.126320                         foot hole
## 1.126324                       cabin floor
## 1.126331                          seat 26k
## 1.126341                      ramzi yousef
## 1.126344                          al qaeda
## 1.126345                   qaeda terrorist
## 1.126355                explosion occurred
## 1.126372                    safe emergency
## 1.126373                 emergency landing
## 1.126383                   flight controls
## 1.126386                  aircraft crashed
## 1.126387                         crashed 4
## 1.126388                           4 miles
## 1.126389                          miles sw
## 1.126392                         runway 5l
## 1.126397                      ils approach
## 1.126406                       left engine
## 1.126407                   engine ignition
## 1.126408                    ignition light
## 1.126412                    engine failure
## 1.126413                 failure suspected
## 1.126416                      engine flame
## 1.126424                   missed approach
## 1.126427                    eventually led
## 1.126434                     plane crashed
## 1.126435                         crashed 4
## 1.126436                           4 miles
## 1.126437                          miles sw
## 1.126441                  runway threshold
## 1.126444                captain's improper
## 1.126445               improper assumption
## 1.126453              captain's subsequent
## 1.126454                subsequent failure
## 1.126457                   follow approved
## 1.126458               approved procedures
## 1.126461                    engine failure
## 1.126462                    failure single
## 1.126463                     single engine
## 1.126464                   engine approach
## 1.126469                    stall recovery
## 1.126470             recovery contributing
## 1.126482                    american eagle
## 1.126483                  eagle management
## 1.126486                 identify document
## 1.126487                  document monitor
## 1.126490               remedy deficiencies
## 1.126493                 pilot performance
## 1.126498                       cargo plane
## 1.126499                      plane lifted
## 1.126503                    runway stalled
## 1.126506                          hit tail
## 1.126512                   runway breaking
## 1.126516                       cargo plane
## 1.126517                         plane hit
## 1.126518                         hit trees
## 1.126521                     crashed short
## 1.126531                  chartered flight
## 1.126532                     flight struck
## 1.126537                          6,400 ft
## 1.126546                         gold mine
## 1.126553                      plane struck
## 1.126556                transmission tower
## 1.126561                      crew allowed
## 1.126566             descend significantly
## 1.126570                   normal approach
## 1.126571                    approach glide
## 1.126572                        glide path
## 1.126597                  aircraft crashed
## 1.126606                      driving snow
## 1.126610                    fourth landing
## 1.126611                   landing attempt
## 1.126612                attempt controlled
## 1.126613                 controlled flight
## 1.126618                     plane crashed
## 1.126622                    pilot reported
## 1.126627                    cabin pressure
## 1.126630              aircraft disappeared
## 1.126633                          en route
## 1.126636                      bima sumbawa
## 1.126637                    sumbawa island
## 1.126640                     ruteng flores
## 1.126641                     flores island
## 1.126647                       molo strait
## 1.126650                 accident occurred
## 1.126655                      poor weather
## 1.126660                            fl 190
## 1.126661                        190 ground
## 1.126662                  ground witnesses
## 1.126667                     sparks aboard
## 1.126680                     girl survived
## 1.126683                      mother threw
## 1.126695                        soft water
## 1.126696                      water lilies
## 1.126699                   electrical fire
## 1.126702                  faulty altimeter
## 1.126709                       power lines
## 1.126714                     fog continued
## 1.126715                     continued vfr
## 1.126716                        vfr flight
## 1.126721                   captain decided
## 1.126748                       steep slope
## 1.126749                     slope failure
## 1.126757                 correct procedure
## 1.126773                    initiated lack
## 1.126776                 crew coordination
## 1.126777         coordination insufficient
## 1.126778             insufficient emphasis
## 1.126781                emergency training
## 1.126782               training inadequate
## 1.126783            inadequate enforcement
## 1.126790                 operations manual
## 1.126798               loading preparation
## 1.126801                        plane flew
## 1.126813                       left engine
## 1.126821                       engine fire
## 1.126840                  aircraft crashed
## 1.126846                   aircraft veered
## 1.126854                       trees 2,000
## 1.126855                          2,000 ft
## 1.126856                           ft past
## 1.126859                 runway overloaded
## 1.126863                fuel contamination
## 1.126867                positioning flight
## 1.126870                      crew aborted
## 1.126880                       tail struck
## 1.126893               directional control
## 1.126902                      takeoff roll
## 1.126917                 computed rotation
## 1.126918                 rotation airspeed
## 1.126919                airspeed resulting
## 1.126923                    premature lift
## 1.126936                     flight crew's
## 1.126937                       crew's lack
## 1.126944                    engine takeoff
## 1.126945                takeoff procedures
## 1.126963                       flight crew
## 1.126966               adequate experience
## 1.126967               experience training
## 1.126974                 nonroutine flight
## 1.126975               flight contributing
## 1.126984                  federal aviation
## 1.126985           aviation administration
## 1.126986          administration oversight
## 1.126989                     air transport
## 1.126990           transport international
## 1.126993                  federal aviation
## 1.126994           aviation administration
## 1.126995             administration flight
## 1.126998                         duty time
## 1.126999                  time regulations
## 1.127004             substantially reduced
## 1.127005                    reduced flight
## 1.127006                       flight crew
## 1.127007                         crew rest
## 1.127008                       rest period
## 1.127013                  nonrevenue ferry
## 1.127014                      ferry flight
## 1.127017                           14 code
## 1.127020               federal regulations
## 1.127025                       cargo plane
## 1.127026                        plane flew
## 1.127035                      poor weather
## 1.127036                 weather conditons
## 1.127037             conditons controllled
## 1.127038                controllled flight
## 1.127041                   terrain shortly
## 1.127046                   poor visibility
## 1.127049                        heavy snow
## 1.127052             autothrottles engaged
## 1.127053                     engaged climb
## 1.127054                      climb thrust
## 1.127060                   engine throttle
## 1.127061                   throttle jammed
## 1.127066                    takeoff thrust
## 1.127070                       left engine
## 1.127071                   engine throttle
## 1.127072                   throttle slowly
## 1.127073                    slowly reduced
## 1.127078                 increasing thrust
## 1.127079                  thrust asymmetry
## 1.127080                asymmetry resulted
## 1.127084                   increasing left
## 1.127085                         left bank
## 1.127086                        bank angle
## 1.127089                eventually reached
## 1.127092                       170 degrees
## 1.127095                     airplane lost
## 1.127096                     lost altitude
## 1.127101                       ground lack
## 1.127104                     crew response
## 1.127108                      extreme nose
## 1.127113           investigation concluded
## 1.127125                 officer expressed
## 1.127135          captain's incapacitation
## 1.127139               aircraft's attitude
## 1.127146              aircraft experienced
## 1.127155                     lagos landing
## 1.127156                      landing hard
## 1.127171                   aircraft veered
## 1.127188                          3,000 ft
## 1.127197                       sam missile
## 1.127200                 tamil separatists
## 1.127203                            sa 227
## 1.127204                      227 collided
## 1.127208                          piper pa
## 1.127209                             pa 31
## 1.127210                            31 350
## 1.127217                 approaching sioux
## 1.127218                     sioux lookout
## 1.127221                       flight crew
## 1.127234                     piper crashed
## 1.127244                         lake seul
## 1.127245                 seul contributing
## 1.127252              inherent limitations
## 1.127258                     avoid concept
## 1.127263              effective separation
## 1.127269                     closure rates
## 1.127277                  directly alerted
## 1.127288                    flight service
## 1.127289                service specialist
## 1.127293                onboard electronic
## 1.127294              electronic equipment
## 1.127298                     apparent lack
## 1.127301               pilot understanding
## 1.127306                optimize avoidance
## 1.127307             avoidance maneuvering
## 1.127308               maneuvering crashed
## 1.127311                 cerro sincholagua
## 1.127312              sincholagua mountain
## 1.127315                         16,000 ft
## 1.127321                       quito pilot
## 1.127322                     pilot fatigue
## 1.127328                    factor crashed
## 1.127336                      poor weather
## 1.127339                     engine caught
## 1.127340                       caught fire
## 1.127341                      fire shortly
## 1.127354                 emergency landing
## 1.127368               artificial horizons
## 1.127369                   horizons failed
## 1.127370                    failed shortly
## 1.127377            difficulty controlling
## 1.127382              turbulent conditions
## 1.127390                       spiral dive
## 1.127403             aircraft's artificial
## 1.127404               artificial horizons
## 1.127405            horizons malfunctioned
## 1.127413                   standby horizon
## 1.127420         airworthiness requirement
## 1.127425                 single instrument
## 1.127429                  assured attitude
## 1.127430                attitude reference
## 1.127433                      simple means
## 1.127438                flight instruments
## 1.127445             spatially disoriented
## 1.127451                  maintain control
## 1.127452                   control ditched
## 1.127472                     aircraft type
## 1.127481                  plane approached
## 1.127482                 approached runway
## 1.127483                         runway 25
## 1.127487                      main landing
## 1.127488                      landing gear
## 1.127495                 captain continued
## 1.127501                     pilot carried
## 1.127505                      landing gear
## 1.127506                    gear alternate
## 1.127507               alternate extension
## 1.127508               extension checklist
## 1.127511                   plane descended
## 1.127515                      minimum safe
## 1.127516                         safe step
## 1.127529                        ridge line
## 1.127537              aircraft intercepted
## 1.127542                  approach profile
## 1.127547              precision instrument
## 1.127548               instrument approach
## 1.127551                  captain's unwise
## 1.127552                   unwise decision
## 1.127557                      landing gear
## 1.127558                      gear lowered
## 1.127563               instrument approach
## 1.127566             captain's distraction
## 1.127570                      primary task
## 1.127575                   aircraft safely
## 1.127580                 officer's attempt
## 1.127585                      landing gear
## 1.127586                  gear malfunction
## 1.127587                malfunction flying
## 1.127588                        flying vor
## 1.127591                         plane ran
## 1.127594                      poor weather
## 1.127598                     pilot decided
## 1.127609                      land crashed
## 1.127612                      poor weather
## 1.127613                 weather condtions
## 1.127616                 aircraft carrying
## 1.127621                      local soccer
## 1.127622                       soccer club
## 1.127623                      club crashed
## 1.127624                        crashed 10
## 1.127625                          10 miles
## 1.127626                       miles short
## 1.127630               destination adverse
## 1.127631                   adverse weather
## 1.127632                weather conditions
## 1.127635                overloaded crashed
## 1.127640                        heavy rain
## 1.127641                     rain overshot
## 1.127642                   overshot runway
## 1.127643                    runway landing
## 1.127650                  concrete culvert
## 1.127654                      cargo flight
## 1.127655                flight encountered
## 1.127658                          en route
## 1.127666                     santo domingo
## 1.127671                       cargo plane
## 1.127672                        plane lost
## 1.127682              subsequent diversion
## 1.127687                     crashed short
## 1.127691                    runway crashed
## 1.127699                     shallow water
## 1.127703                       flight fire
## 1.127709                        rear cargo
## 1.127710                        cargo hold
## 1.127719               passenger's luggage
## 1.127725                  flammable liquid
## 1.127728                        plane lost
## 1.127729                      lost control
## 1.127734                        heavy rain
## 1.127740                   runway crashing
## 1.127744                 banana plantation
## 1.127747                 aircraft carrying
## 1.127750                    french medical
## 1.127751                      medical team
## 1.127752                      team crashed
## 1.127759               antananarivo double
## 1.127760                     double engine
## 1.127761                    engine failure
## 1.127762                   failure shortly
## 1.127767                      plane rolled
## 1.127775                    ground failure
## 1.127780                          1 engine
## 1.127784                     takeoff cargo
## 1.127785                     cargo shifted
## 1.127789                     plane causing
## 1.127794                     lose altitude
## 1.127799                       power lines
## 1.127800                     lines crashed
## 1.127803                   mt chichontepec
## 1.127804              chichontepec volcano
## 1.127807                          5,900 ft
## 1.127812                        heavy rain
## 1.127820                    aircraft's dme
## 1.127821                           dme due
## 1.127824               lightning confusion
## 1.127830                           atc due
## 1.127833                       bad weather
## 1.127839                  ground proximity
## 1.127840                 proximity warning
## 1.127841                    warning system
## 1.127851                      late crashed
## 1.127854                         mt komawa
## 1.127857                          9,200 ft
## 1.127860                      poor weather
## 1.127861                     weather found
## 1.127862                           found 8
## 1.127863                              8 14
## 1.127864                             14 95
## 1.127865                        95 crashed
## 1.127868                         nevado de
## 1.127869                          de huila
## 1.127875                       14,500 feet
## 1.127876                      feet shortly
## 1.127889              aircraft experienced
## 1.127890             experienced propeller
## 1.127891              propeller separation
## 1.127895                       left engine
## 1.127900                            fl 180
## 1.127903                      aircraft hit
## 1.127904                         hit trees
## 1.127905                     trees crashed
## 1.127917                 emergency landing
## 1.127920                      west georgia
## 1.127921                  georgia regional
## 1.127922                  regional airport
## 1.127926                    flight fatigue
## 1.127927                  fatigue fracture
## 1.127933                   propeller blade
## 1.127934                   blade resulting
## 1.127940                       left engine
## 1.127941                    engine nacelle
## 1.127942                   nacelle causing
## 1.127943                 causing excessive
## 1.127944                    excessive drag
## 1.127945                         drag loss
## 1.127948                         wing lift
## 1.127951               reduced directional
## 1.127952               directional control
## 1.127963                     fatigue crack
## 1.127966                multiple corrosion
## 1.127967                    corrosion pits
## 1.127974                 hamilton standard
## 1.127980             ineffective corporate
## 1.127981              corporate inspection
## 1.127984                 repair techniques
## 1.127985               techniques training
## 1.127986            training documentation
## 1.127999                          en route
## 1.128002                       cargo plane
## 1.128003                        plane flew
## 1.128007                          4,800 ft
## 1.128008                       ft mountain
## 1.128011                 pilot's continued
## 1.128012                     continued vfr
## 1.128013                        vfr flight
## 1.128016         instrument meteorological
## 1.128017         meteorological conditions
## 1.128026                        low flying
## 1.128035                      pilot caused
## 1.128058                display manoeuvres
## 1.128081                        18,400 msl
## 1.128084                    pilot reported
## 1.128097                       left engine
## 1.128104                 maintain altitude
## 1.128110                 alternate airport
## 1.128117                    final approach
## 1.128124                   cross overshoot
## 1.128127               extended centerline
## 1.128159                  airplane entered
## 1.128162                      spin crashed
## 1.128163                         crashed 1
## 1.128164                               1 2
## 1.128165                            2 mile
## 1.128166                        mile short
## 1.128170                    runway failure
## 1.128176                 maintain adequate
## 1.128177                 adequate airspeed
## 1.128187                 inadvertent stall
## 1.128188                        stall spin
## 1.128191            uncontrolled collision
## 1.128194                   terrain factors
## 1.128195                  factors relating
## 1.128202                     pilot allowed
## 1.128205                   aircraft weight
## 1.128208               balance limitations
## 1.128214                      pilot's lack
## 1.128217                recurrent training
## 1.128225               airplane inadequate
## 1.128226            inadequate maintenance
## 1.128227            maintenance inspection
## 1.128231                    engine exhaust
## 1.128232                   exhaust systems
## 1.128237                   leaking exhaust
## 1.128238                    exhaust system
## 1.128239                     system flange
## 1.128243                       left engine
## 1.128257                  pilot's improper
## 1.128262                     flaps crashed
## 1.128263                     crashed short
## 1.128269                          rain fog
## 1.128272                reduced visibility
## 1.128281                  landing attempts
## 1.128282                  attempts crashed
## 1.128290                    pilot reported
## 1.128299                 ratmalana airport
## 1.128306                 emergency landing
## 1.128310                        plane fell
## 1.128313                        8,000 feet
## 1.128322                   visual approach
## 1.128325                   aircraft landed
## 1.128339                       shanty town
## 1.128347                     plane crashed
## 1.128353                 premature descent
## 1.128356                 aircraft suffered
## 1.128357                 suffered multiple
## 1.128358                     multiple bird
## 1.128359                      bird strikes
## 1.128366                         2 engines
## 1.128382                      canada geese
## 1.128385                    crew initiated
## 1.128388                        slow climb
## 1.128393                         dump fuel
## 1.128396                 aircraft attained
## 1.128399                  maximum altitude
## 1.128402                            250 ft
## 1.128410                    plane impacted
## 1.128413                      hilly wooded
## 1.128422                      runway broke
## 1.128427                  burned ingestion
## 1.128430                      canada geese
## 1.128434                             nos 1
## 1.128437                         2 engines
## 1.128438                      engines lack
## 1.128441               adequate procedures
## 1.128444                       reduce bird
## 1.128445                      bird hazards
## 1.128461                       atc crashed
## 1.128473                     shallow water
## 1.128476                weather conditions
## 1.128483               helicopter exceeded
## 1.128486                   maximum takeoff
## 1.128487                    takeoff weight
## 1.128492                 intercept heading
## 1.128496                    final approach
## 1.128502                      level flight
## 1.128505                  aircraft crashed
## 1.128512                          1,047 ft
## 1.128513                       ft mountain
## 1.128516                         heavy fog
## 1.128519               pilot progressively
## 1.128520                progressively lost
## 1.128521                  lost situational
## 1.128522             situational awareness
## 1.128531                    low visibility
## 1.128541                    rapidly rising
## 1.128542                    rising terrain
## 1.128546                       flight path
## 1.128547                       path thirty
## 1.128548                    thirty minutes
## 1.128559                 maintain altitude
## 1.128562                      oil pressure
## 1.128569                          1 engine
## 1.128570                    engine crashed
## 1.128575                helicopter crashed
## 1.128580                     barskoon pass
## 1.128583                          en route
## 1.128586                  aircraft crashed
## 1.128590                          8,000 ft
## 1.128591                       ft mountain
## 1.128595                     sierra grande
## 1.128596                      grande range
## 1.128599                       climbing en
## 1.128600                          en route
## 1.128603                comodoro rivadavia
## 1.128608                        heavy rain
## 1.128611                 strong turbulence
## 1.128614               passengers included
## 1.128615                 included military
## 1.128616                military personnel
## 1.128622                  aircraft touched
## 1.128628                     runway veered
## 1.128634                         dry grass
## 1.128635                      grass caught
## 1.128636                       caught fire
## 1.128642                 eventually spread
## 1.128643                 spread destroying
## 1.128646                  aircraft crashed
## 1.128650                      indian ocean
## 1.128657                         palay air
## 1.128658                         air force
## 1.128659                        force base
## 1.128666                      tamil rebels
## 1.128667                    rebels crashed
## 1.128670                  sea disappearing
## 1.128673                          en route
## 1.128674                      route debris
## 1.128675                      debris found
## 1.128678                     labuan island
## 1.128679                     island strong
## 1.128680                      strong winds
## 1.128696                       cargo plane
## 1.128697                      plane struck
## 1.128698                      struck light
## 1.128699                       light posts
## 1.128713                         crashed 6
## 1.128714                              6 km
## 1.128715                          km short
## 1.128728                      landing loss
## 1.128735                          1 engine
## 1.128738                  aircraft crashed
## 1.128739                   crashed shortly
## 1.128748                 emergency landing
## 1.128752                    pilot reported
## 1.128757                       left engine
## 1.128758                  engine vibration
## 1.128759                  vibration caused
## 1.128760                       caused nuts
## 1.128767                    engine turbine
## 1.128772                    engine failure
## 1.128791                inadvertently shut
## 1.128798                  aircraft crashed
## 1.128801               mountainous terrain
## 1.128804                          en route
## 1.128805                        route crew
## 1.128806                        crew error
## 1.128807                        error fuel
## 1.128808                         fuel feed
## 1.128809                     feed selected
## 1.128812                        wing tanks
## 1.128835                  approximately 35
## 1.128836                        35 minutes
## 1.128842                     plane crashed
## 1.128845                    burned shortly
## 1.128854                            500 ft
## 1.128855                    ft combination
## 1.128862                   plane chartered
## 1.128866                       unita rebel
## 1.128867                    rebel movement
## 1.128868                  movement stalled
## 1.128871                   crashed shortly
## 1.128876                  jamba overloaded
## 1.128879                     40 passengers
## 1.128882                     report stated
## 1.128883                    stated baggage
## 1.128884                   baggage shifted
## 1.128897                          miami fl
## 1.128900                     cali columbia
## 1.128903                  aircraft crashed
## 1.128906                             mt el
## 1.128907                        el deluvio
## 1.128908                        deluvio 38
## 1.128909                          38 miles
## 1.128910                       miles north
## 1.128927                         tulua vor
## 1.128943                       rozo beacon
## 1.128944                   beacon entering
## 1.128949               incorrectly steered
## 1.128963                      crew steered
## 1.128964                  steered manually
## 1.128978                     mountain crew
## 1.128979                        crew error
## 1.128980                        error lack
## 1.128983             situational awareness
## 1.128984                 awareness failure
## 1.128987                   adequately plan
## 1.128992                  approach failure
## 1.129004                    mountains crew
## 1.129011                      speed brakes
## 1.129015                  ground proximity
## 1.129016                 proximity warning
## 1.129017                    warning system
## 1.129018                      system alert
## 1.129019                        alert lack
## 1.129022                    adequate radar
## 1.129025                 flight management
## 1.129026                 management system
## 1.129027                     system naming
## 1.129028                 naming convention
## 1.129034               navigational charts
## 1.129035                   charts diverted
## 1.129040                   bagasin overran
## 1.129054                     lose altitude
## 1.129060                    atlantic ocean
## 1.129061                          ocean 30
## 1.129062                             30 km
## 1.129063                      km southwest
## 1.129068                   aircraft failed
## 1.129071                     gain altitude
## 1.129077                    n'dolo airport
## 1.129088                     market square
## 1.129095                           595 lbs
## 1.129098            aircraft certification
## 1.129115                     ground varies
## 1.129116                     varies widely
## 1.129124                    fatalities 225
## 1.129130                publication weekly
## 1.129131                       weekly mail
## 1.129137                  article covering
## 1.129140                       court trial
## 1.129144                   pilots charging
## 1.129151                        225 people
## 1.129154                     sources quote
## 1.129159                          350 died
## 1.129160                      died crashed
## 1.129161                       crashed 4.5
## 1.129162                         4.5 miles
## 1.129163                       miles short
## 1.129173                      kano claimed
## 1.129181                      united front
## 1.129184              nigeria's liberation
## 1.129185                   liberation shot
## 1.129189                      tamil rebels
## 1.129195                      indian ocean
## 1.129199                          1 engine
## 1.129200                     engine failed
## 1.129220                    flaps extended
## 1.129223                         crew lost
## 1.129224                      lost control
## 1.129230                       crashed 1.2
## 1.129231                         1.2 miles
## 1.129232                        miles past
## 1.129238                      soccer field
## 1.129239                     field killing
## 1.129240                        killing 24
## 1.129246                       cargo plane
## 1.129251                     gain altitude
## 1.129256                   takeoff overran
## 1.129261                         hit power
## 1.129262                       power lines
## 1.129266                   conrete barrier
## 1.129267                barrier inadequate
## 1.129268                    inadequate pre
## 1.129269                        pre flight
## 1.129270                   flight planning
## 1.129284                   properly loaded
## 1.129292                      proper flaps
## 1.129300                adi antidetonation
## 1.129301          antidetonation injection
## 1.129302                injection assisted
## 1.129303                  assisted takeoff
## 1.129307                 resultant failure
## 1.129310                 attain sufficient
## 1.129311               sufficient airspeed
## 1.129316                   takeoff factors
## 1.129317                  factors relating
## 1.129325                  density altitude
## 1.129329                        pic's lack
## 1.129341                     plane crashed
## 1.129345                    atlantic ocean
## 1.129346                          ocean 21
## 1.129347                             21 km
## 1.129348                          km north
## 1.129351                      puerto plata
## 1.129352                     plata shortly
## 1.129357                incorrect airspeed
## 1.129358              airspeed indications
## 1.129359             indications resulting
## 1.129363                     clogged pitot
## 1.129364                        pitot tube
## 1.129372                   actual airspeed
## 1.129373                airspeed resulting
## 1.129377                     crew reducing
## 1.129378                    reducing power
## 1.129384                     stall failure
## 1.129395                    control column
## 1.129396                     column shaker
## 1.129403                    imminent stall
## 1.129404                     stall failure
## 1.129422                      restore lift
## 1.129437                   aircraft rolled
## 1.129451                     ditch crashed
## 1.129452                        crashed sw
## 1.129459                 emergency landing
## 1.129468                      control fire
## 1.129471                       cargo plane
## 1.129472                     plane crashed
## 1.129477                   poor visibility
## 1.129483                  aircraft crashed
## 1.129498                    pilot reported
## 1.129499                   reported flying
## 1.129502                          9,500 ft
## 1.129509                      flying 8,640
## 1.129510                          8,640 ft
## 1.129511                     ft controlled
## 1.129512                 controlled flight
## 1.129515                   terrain crashed
## 1.129518                    exploded north
## 1.129524                         heavy fog
## 1.129530                    mountain ridge
## 1.129531                     ridge crashed
## 1.129539                           oil rig
## 1.129544                      strong winds
## 1.129547                  aircraft strayed
## 1.129552                            hit st
## 1.129553                           st john
## 1.129554                         john hill
## 1.129560                        2,200 feet
## 1.129561                         feet 16km
## 1.129562                           16km se
## 1.129571                      poor weather
## 1.129572                weather conditions
## 1.129573                    conditions u.s
## 1.129574                     u.s secretary
## 1.129577                      commerce ron
## 1.129578                         ron brown
## 1.129579                          brown 55
## 1.129580                         55 killed
## 1.129581                       killed crew
## 1.129582                        crew error
## 1.129583                     error failure
## 1.129598               instrument approach
## 1.129599               approach procedures
## 1.129605                      defense dept
## 1.129606                    dept preflight
## 1.129607                preflight planning
## 1.129608                   planning errors
## 1.129609                   errors combined
## 1.129619                       crew rumors
## 1.129620                    rumors persist
## 1.129631                       cargo plane
## 1.129632                    plane carrying
## 1.129633                       carrying 57
## 1.129634                          57 tones
## 1.129637                 detergent crashed
## 1.129646                        2,900 feet
## 1.129649                airplane descended
## 1.129665                     mountain 300m
## 1.129673                        30 minutes
## 1.129676                aircraft undershot
## 1.129682                   visual approach
## 1.129690                         heavy fog
## 1.129695                     trainee pilot
## 1.129696                     pilot jessica
## 1.129697                   jessica dubroff
## 1.129698               dubroff accompanied
## 1.129714                 trans continental
## 1.129715                continental record
## 1.129716                    record attempt
## 1.129717                 attempt involving
## 1.129718                   involving 6,660
## 1.129719                       6,660 miles
## 1.129724                     8 consecutive
## 1.129725                  consecutive days
## 1.129728                    plane departed
## 1.129732               nearby thunderstorm
## 1.129735             deteriorating weather
## 1.129736                 weather witnesses
## 1.129737                witnesses describe
## 1.129740                     plane's climb
## 1.129741                        climb rate
## 1.129751                    aircraft enter
## 1.129754                   roll consistent
## 1.129760                     plane's gross
## 1.129761                      gross weight
## 1.129764                         84 pounds
## 1.129768                     maximum limit
## 1.129769                     limit pilot's
## 1.129770                  pilot's improper
## 1.129771                 improper decision
## 1.129777             deteriorating weather
## 1.129778                weather conditions
## 1.129784              overweight resulting
## 1.129787                      stall caused
## 1.129792                 maintain airspeed
## 1.129798                    failed landing
## 1.129799                  landing attempts
## 1.129808                    forced landing
## 1.129812                      local suburb
## 1.129813                   suburb crashing
## 1.129820                positioning flight
## 1.129823                     aircraft flew
## 1.129827                  mountain crashed
## 1.129838                     mine airstrip
## 1.129843                       stong gusty
## 1.129844                       gusty winds
## 1.129847                  aircraft crashed
## 1.129848                        crashed 18
## 1.129849                          18 miles
## 1.129850                          miles nw
## 1.129853                     miami airport
## 1.129861                everglades shortly
## 1.129868                     crew reported
## 1.129869                     reported fire
## 1.129880                       flight fire
## 1.129890                 oxygen generators
## 1.129894                     forward cargo
## 1.129895                        cargo hold
## 1.129900               outdated improperly
## 1.129901                improperly labeled
## 1.129902                    labeled lacked
## 1.129903                     lacked safety
## 1.129904                       safety caps
## 1.129914                  passenger flight
## 1.129919                  control resulted
## 1.129923                    flight control
## 1.129924                   control failure
## 1.129930                          crew due
## 1.129933                      extreme heat
## 1.129936                       smoke candi
## 1.129937                      candi kubeck
## 1.129942                   american female
## 1.129943                 female commercial
## 1.129944                commercial airline
## 1.129945                   airline captain
## 1.129952                         crash san
## 1.129953                         san diego
## 1.129954                    diego chargers
## 1.129955                  chargers running
## 1.129958                     rodney culver
## 1.129959                         culver 26
## 1.129967                 passengers killed
## 1.129971                 singer songwriter
## 1.129972                 songwriter walter
## 1.129973                      walter hyatt
## 1.129974                          hyatt 46
## 1.129975                        46 crashed
## 1.129979                        ridge line
## 1.129980                     line shrouded
## 1.129985                          en route
## 1.129986                     route crashed
## 1.129993                   landing crashed
## 1.129998                   training flight
## 1.129999                    flight crashed
## 1.130011              helicopters collided
## 1.130014                           mid air
## 1.130026                 stressed fatigued
## 1.130029             inadequately prepared
## 1.130041                  aircraft overran
## 1.130047                   aborted takeoff
## 1.130050                         fuel line
## 1.130055                          3 engine
## 1.130060                       caught fire
## 1.130068                          stage hp
## 1.130069                        hp turbine
## 1.130070                 turbine separated
## 1.130077                          1 engine
## 1.130080                      landing gear
## 1.130083                          lost ane
## 1.130103                       toxic fumes
## 1.130107                      fire started
## 1.130108                     started pilot
## 1.130109                       pilot error
## 1.130110                    error improper
## 1.130111               improper procedures
## 1.130118                    engine failure
## 1.130121                  aircraft crashed
## 1.130132                   landing attempt
## 1.130133                       attempt fan
## 1.130134                          fan disk
## 1.130135                   disk separation
## 1.130139                       left engine
## 1.130140                     engine pieces
## 1.130144                 engine penetrated
## 1.130147                   passenger cabin
## 1.130148                     cabin killing
## 1.130153                           fan hub
## 1.130157                       left engine
## 1.130186                    final approach
## 1.130189                  aircraft crashed
## 1.130199                        9,200 feet
## 1.130204                   poor visibility
## 1.130207                     aircraft flew
## 1.130211                        bandi hill
## 1.130214                descending inbound
## 1.130219                         heavy fog
## 1.130220                       fog crashed
## 1.130229                     eindhoven air
## 1.130230                          air base
## 1.130233                 aircraft collided
## 1.130242                 starlings causing
## 1.130243                   causing failure
## 1.130248                               1 2
## 1.130251                         3 engines
## 1.130256                         port wing
## 1.130257                          wing hit
## 1.130263                    plane exploded
## 1.130266                     flames aboard
## 1.130272                        dutch army
## 1.130273                         army band
## 1.130274                    band returning
## 1.130277                     italy crashed
## 1.130278                       crashed 150
## 1.130279                            150 ft
## 1.130280                          ft short
## 1.130293                      paris france
## 1.130296                 aircraft exploded
## 1.130299                            fl 130
## 1.130300                         130 broke
## 1.130307                    atlantic ocean
## 1.130311                        island n.y
## 1.130314                   ntsb determined
## 1.130328                       center wing
## 1.130329                         wing fuel
## 1.130330                         fuel tank
## 1.130331                    tank resulting
## 1.130337                    flammable fuel
## 1.130338                          fuel air
## 1.130339                       air mixture
## 1.130347                   ignition energy
## 1.130361                 sources evaluated
## 1.130371                     short circuit
## 1.130376                       center wing
## 1.130377                         wing tank
## 1.130380                 allowed excessive
## 1.130381                 excessive voltage
## 1.130387                 electrical wiring
## 1.130392                     fuel quantity
## 1.130393               quantity indication
## 1.130394                 indication system
## 1.130399               numerous government
## 1.130400               government agencies
## 1.130401                    agencies acted
## 1.130402                   acted strangely
## 1.130420                    rumors persist
## 1.130434                   navy conducting
## 1.130435              conducting exercises
## 1.130448                          3 engine
## 1.130449                     engine caught
## 1.130450                       caught fire
## 1.130454                       cargo plane
## 1.130466                 emergency landing
## 1.130471                    wing seperated
## 1.130475                     plane crashed
## 1.130476                   crashed fatigue
## 1.130477                   fatigue failure
## 1.130481                 master connecting
## 1.130482                    connecting rod
## 1.130487                 corrosion pitting
## 1.130488              pitting subsequently
## 1.130489          subsequently compromised
## 1.130492                  engine crankcase
## 1.130503                       flight crew
## 1.130506                  follow emergency
## 1.130507              emergency procedures
## 1.130512                       fire handle
## 1.130524                  fire suppression
## 1.130525                suppression system
## 1.130530                   visual approach
## 1.130539                  aircraft entered
## 1.130542                       squall line
## 1.130545                        heavy rain
## 1.130552                       lose height
## 1.130553                    height quickly
## 1.130554                 quickly undershot
## 1.130569                       cargo plane
## 1.130570                     plane bounced
## 1.130584                   crashed terrain
## 1.130587                   unknown reasons
## 1.130597               insufficient runway
## 1.130598                   runway remained
## 1.130607             contributing directly
## 1.130628                          2 engine
## 1.130632                       cargo plane
## 1.130633                      plane caught
## 1.130646                         river bed
## 1.130650                          2 engine
## 1.130651                  engine separated
## 1.130661                      intense fire
## 1.130670                   engine rendered
## 1.130673           aircraft uncontrollable
## 1.130686                      plane struck
## 1.130689                  mountain failure
## 1.130697               aircraft's position
## 1.130700                       flight path
## 1.130701                     path relative
## 1.130705               terrain surrounding
## 1.130706               surrounding jackson
## 1.130707                      jackson hole
## 1.130708                      hole airport
## 1.130711                          en route
## 1.130712                        route flew
## 1.130725                navigational error
## 1.130729             restricted visibility
## 1.130734                     light drizzle
## 1.130739                      wrong valley
## 1.130763                 plane experienced
## 1.130764            experienced electrical
## 1.130773                      dumping fuel
## 1.130778                           3 hours
## 1.130781                     plane crashed
## 1.130785                        corn field
## 1.130786                        field 800m
## 1.130787                        800m short
## 1.130793                  aircraft crashed
## 1.130794                         crashed 7
## 1.130795                              7 nm
## 1.130796                          nm short
## 1.130802             operafjellet mountain
## 1.130808                          2,900 ft
## 1.130815                      poor weather
## 1.130823                    usual approach
## 1.130841                     narrow valley
## 1.130842                 valley inadequate
## 1.130843               inadequate planning
## 1.130844           planning unsatisfactory
## 1.130845               unsatisfactory crew
## 1.130846                     crew resource
## 1.130847               resource management
## 1.130856          procedural uncertainties
## 1.130857             uncertainties existed
## 1.130860                 limited knowledge
## 1.130864                operating language
## 1.130868                   actual airspace
## 1.130874                      russian coal
## 1.130875                       coal miners
## 1.130876                     miners headed
## 1.130880                      russian mine
## 1.130886                 norwegian islands
## 1.130887                   islands shortly
## 1.130894                    connecting rod
## 1.130895                       rod bearing
## 1.130900                          1 engine
## 1.130901                     engine failed
## 1.130913              feathering mechanism
## 1.130914                  mechanism failed
## 1.130918                      prop started
## 1.130919               started windmilling
## 1.130920               windmilling causing
## 1.130921                      causing drag
## 1.130924                  aircraft rapidly
## 1.130925                 rapidly descended
## 1.130931                          mud flat
## 1.130939                  combined failure
## 1.130943                       left engine
## 1.130947                   left feathering
## 1.130948                 feathering system
## 1.130956                       flight crew
## 1.130957                      crew allowed
## 1.130964                       stall speed
## 1.130967                      lost control
## 1.130982                  aircraft crashed
## 1.130986                          ocean 28
## 1.130987                        28 minutes
## 1.130993                         lima peru
## 1.130994                       peru pieces
## 1.130997                     adhesive tape
## 1.131000                    found covering
## 1.131003                      static ports
## 1.131010              aircraft maintenance
## 1.131013                  cleaning causing
## 1.131019               airspeed indicators
## 1.131029               correctly determine
## 1.131038                  ground reference
## 1.131044                     night crashed
## 1.131055                     adhesive tape
## 1.131059                      static ports
## 1.131069                  people including
## 1.131075              preflight inspection
## 1.131078                maintenance worker
## 1.131085                negligent homicide
## 1.131092                     adhesive tape
## 1.131095                        received 2
## 1.131099                      jail crashed
## 1.131109                    landing lights
## 1.131110              lights malfunctioned
## 1.131111             malfunctioned causing
## 1.131114                       cargo plane
## 1.131127                       cargo plane
## 1.131128                      plane struck
## 1.131129                      struck trees
## 1.131140                         land poor
## 1.131141                poor communication
## 1.131149                         crew poor
## 1.131150                     poor planning
## 1.131151                 planning approach
## 1.131156                        leave late
## 1.131161                  round structural
## 1.131162           structural deficiencies
## 1.131165                    engine control
## 1.131168                       cargo plane
## 1.131169                    plane carrying
## 1.131170                  carrying flowers
## 1.131173                       frozen fish
## 1.131174                      fish crashed
## 1.131178                 dolorosa district
## 1.131179                 district bursting
## 1.131182                    flames shortly
## 1.131188                     engine caught
## 1.131189                       caught fire
## 1.131197                   heavy snowstorm
## 1.131200                   aircraft landed
## 1.131201                      landed short
## 1.131207                   runway striking
## 1.131210                            mil mi
## 1.131211                              mi 8
## 1.131212                     8 helicopters
## 1.131219                  aircraft crashed
## 1.131220                   crashed shortly
## 1.131230              building uncommanded
## 1.131231            uncommanded deployment
## 1.131235                   thrust reverser
## 1.131240                     engine caused
## 1.131248                      lose control
## 1.131251                     plane crashed
## 1.131255                        mountain 1
## 1.131256                            1 hour
## 1.131265                            900 ft
## 1.131268                      strong winds
## 1.131274                       santa elena
## 1.131277                     plane crashed
## 1.131278                       crashed mid
## 1.131283                      scheduled 50
## 1.131284                         50 minute
## 1.131285                      minute route
## 1.131294                      lost control
## 1.131297                    taking evasive
## 1.131298                    evasive action
## 1.131318                 disintegrated atc
## 1.131319                         atc error
## 1.131340                    pilot reported
## 1.131344                     engine failed
## 1.131357                      informed atc
## 1.131366             aircraft subsequently
## 1.131367              subsequently crashed
## 1.131379          inappropriate management
## 1.131391             intermediate position
## 1.131396                 engine crankshaft
## 1.131397               crankshaft ruptured
## 1.131400          inappropriate management
## 1.131406                          pilotã â
## 1.131407                               â â
## 1.131410                     relative lack
## 1.131416                     aircraft type
## 1.131419                     false notions
## 1.131423                       aircraftã â
## 1.131424                               â â
## 1.131434                      flight level
## 1.131437                    maintain level
## 1.131438                      level flight
## 1.131442             unfeathered propeller
## 1.131446                    heavy aircraft
## 1.131452              misjudged strategies
## 1.131467                       aircraftã â
## 1.131468                               â â
## 1.131477                  midair collision
## 1.131478                      collision 17
## 1.131479                             17 km
## 1.131486                         saudi 747
## 1.131494                     delhi airport
## 1.131495                 airport ascending
## 1.131498                       14,000 feet
## 1.131502                             il 76
## 1.131507                    hundred twelve
## 1.131508                     twelve aboard
## 1.131518                             il 76
## 1.131523                             il 76
## 1.131524                      76 descended
## 1.131528                 assigned altitude
## 1.131531                        death toll
## 1.131540                kazakstan airlines
## 1.131541                 airlines reported
## 1.131542                       reported 37
## 1.131543                         37 aboard
## 1.131554                airborne collision
## 1.131555               collision avoidance
## 1.131556                  avoidance system
## 1.131603                      cockpit crew
## 1.131607                     il76 believed
## 1.131620                   indian accident
## 1.131621                   accident report
## 1.131622                 report attributed
## 1.131630                         il76 crew
## 1.131633              correctly understand
## 1.131636                     situation due
## 1.131651                   crew's decision
## 1.131659                   clearance limit
## 1.131662                      poor cockpit
## 1.131663                  cockpit resource
## 1.131664               resource management
## 1.131684                   casual attitude
## 1.131691                       flight lost
## 1.131692                     lost altitude
## 1.131697                          en route
## 1.131700                      poor weather
## 1.131701                     weather stall
## 1.131705                         left wing
## 1.131706                          wing due
## 1.131713                         runway 13
## 1.131716                     baldwin field
## 1.131719                    united express
## 1.131720                  express collided
## 1.131724                          king air
## 1.131731                          runway 4
## 1.131740                 runways intersect
## 1.131743                     planes caught
## 1.131744                       caught fire
## 1.131756                        beech 1900
## 1.131761                     impact damage
## 1.131764                     twelve aboard
## 1.131767                    united express
## 1.131772                     pilots aboard
## 1.131775                          king air
## 1.131778                       killed king
## 1.131779                          king air
## 1.131780                        air pilots
## 1.131781                    pilots failure
## 1.131785             proper communications
## 1.131790                  avoid procedures
## 1.131794              uncontrolled airport
## 1.131795               airport involvement
## 1.131802           transmitted unnecessary
## 1.131805            inappropriate messages
## 1.131806                  messages crashed
## 1.131807                        crashed 60
## 1.131808                          60 miles
## 1.131809                        miles west
## 1.131812                    cape mendocino
## 1.131816                     pacific ocean
## 1.131819                     crew reported
## 1.131820                   reported losing
## 1.131826               complete electrical
## 1.131827                electrical failure
## 1.131832                  hijacked shortly
## 1.131841                   drunken escaped
## 1.131842                 escaped prisoners
## 1.131855                        pilot stop
## 1.131860                  plane eventually
## 1.131861                    eventually ran
## 1.131867                       ditched 500
## 1.131868                          500 feet
## 1.131869                     feet offshore
## 1.131872                         le galawa
## 1.131873                      galawa beach
## 1.131879                     grand comoros
## 1.131892                  hijackers fought
## 1.131907                         left wing
## 1.131908                          wing tip
## 1.131909                        tip struck
## 1.131915                     plane crashed
## 1.131919                      sea flipping
## 1.131939                      safety vests
## 1.131955                  aircraft crashed
## 1.131956                   crashed shortly
## 1.131959                takeoff overloaded
## 1.131962                  aircraft crashed
## 1.131966                        mountain 5
## 1.131967                         5 minutes
## 1.131972                     plane stalled
## 1.131979               mountain overloaded
## 1.131985                          2 engine
## 1.131986                       engine fire
## 1.131997                   aircraft's wing
## 1.131998                       wing struck
## 1.132001                    building short
## 1.132005                    runway shortly
## 1.132010                     crew reported
## 1.132025                 emergency landing
## 1.132029                       cargo plane
## 1.132030                     plane crashed
## 1.132033                          wing low
## 1.132034                   low cartwheeled
## 1.132039                      flames short
## 1.132049                engine compartment
## 1.132058                 command's failure
## 1.132061                 maintain airspeed
## 1.132065                aircraft's minimum
## 1.132066                   minimum control
## 1.132067                     control speed
## 1.132070               factor contributing
## 1.132077                        dark night
## 1.132078               night environmental
## 1.132079          environmental conditions
## 1.132080                conditions crashed
## 1.132081                       crashed 8km
## 1.132090                      strong winds
## 1.132093                        heavy snow
## 1.132096                       cargo plane
## 1.132097                     plane crashed
## 1.132098                     crashed short
## 1.132108                       cargo plane
## 1.132109                      plane struck
## 1.132110                struck mountainous
## 1.132111               mountainous terrain
## 1.132120             inappropriate control
## 1.132121                    control inputs
## 1.132122                    inputs applied
## 1.132126                      flying pilot
## 1.132130                    stall recovery
## 1.132131                  recovery attempt
## 1.132138                      flying pilot
## 1.132143                 recognize address
## 1.132148             inappropriate control
## 1.132149                    control inputs
## 1.132155                  airborne express
## 1.132160                 formal functional
## 1.132161             functional evaluation
## 1.132162                 evaluation flight
## 1.132163                    flight program
## 1.132166                 included adequate
## 1.132167                  adequate program
## 1.132168                program guidelines
## 1.132169           guidelines requirements
## 1.132172                    pilot training
## 1.132178              flights contributing
## 1.132188                 inoperative stick
## 1.132189                      stick shaker
## 1.132190                      shaker stall
## 1.132191                     stall warning
## 1.132192                    warning system
## 1.132195                  airborne express
## 1.132196                        express dc
## 1.132197                              dc 8
## 1.132198                          8 flight
## 1.132199                   flight training
## 1.132200              training simulator's
## 1.132201            simulator's inadequate
## 1.132202               inadequate fidelity
## 1.132207                  airplane's stall
## 1.132208             stall characteristics
## 1.132211                       cargo plane
## 1.132216                positioning flight
## 1.132220                     struck rising
## 1.132221                    rising terrain
## 1.132230                 captain's failure
## 1.132233              maintain situational
## 1.132234             situational awareness
## 1.132247               instrument approach
## 1.132251          crew's misinterpretation
## 1.132257                       fix passage
## 1.132266                    rising terrain
## 1.132267                   terrain factors
## 1.132268                  factors included
## 1.132271              captain's misreading
## 1.132275               instrument approach
## 1.132276                approach procedure
## 1.132279                     crew's rushed
## 1.132282             incomplete instrument
## 1.132283               instrument approach
## 1.132284                 approach briefing
## 1.132292                 navigational aids
## 1.132303                  altitude crashed
## 1.132306                          en route
## 1.132310                    pilot reported
## 1.132313                       engine fire
## 1.132314                   fire undetected
## 1.132315                 undetected cracks
## 1.132323               routine maintenance
## 1.132324               maintenance crashed
## 1.132348                         runway 3r
## 1.132351              detroit metropolitan
## 1.132352                metropolitan wayne
## 1.132353                      wayne county
## 1.132354                    county airport
## 1.132364                        steep dive
## 1.132377                     faa's failure
## 1.132380                establish adequate
## 1.132381                 adequate aircraft
## 1.132382            aircraft certification
## 1.132383           certification standards
## 1.132388                  icing conditions
## 1.132389           conditions contributing
## 1.132396             flightcrew's decision
## 1.132401                  icing conditions
## 1.132405                      lower margin
## 1.132409                operating airspeed
## 1.132410                 airspeed envelope
## 1.132413                   flaps retracted
## 1.132416                  comair's failure
## 1.132421            adequately disseminate
## 1.132422           disseminate unambiguous
## 1.132423               unambiguous minimum
## 1.132424                  minimum airspeed
## 1.132425                   airspeed values
## 1.132428               flap configurations
## 1.132434                  icing conditions
## 1.132437                addition embraer's
## 1.132438                  embraer's manual
## 1.132447                     deicing boots
## 1.132455                     icing occured
## 1.132463                   comair's manual
## 1.132472                               1 2
## 1.132473                            2 inch
## 1.132474                        inch thick
## 1.132477                           en rote
## 1.132480                 plane experienced
## 1.132481                experienced engine
## 1.132482                    engine trouble
## 1.132485                      crew decided
## 1.132496                 plane encountered
## 1.132497                encountered strong
## 1.132498                 strong turbulence
## 1.132501             surrounding mountains
## 1.132513                     plane crashed
## 1.132516                      terrain loss
## 1.132521                  engine propeller
## 1.132522                 propeller control
## 1.132523                       control oil
## 1.132551                 maintain adequate
## 1.132552                 adequate altitude
## 1.132553                 altitude distance
## 1.132558                   visual approach
## 1.132562             precautionary landing
## 1.132566                 alternate airport
## 1.132567                   airport factors
## 1.132568                  factors relating
## 1.132577                       left engine
## 1.132578                      engine power
## 1.132579                   power premature
## 1.132580                premature lowering
## 1.132584                    airplane flaps
## 1.132590                   adverse weather
## 1.132591                weather conditions
## 1.132592              conditions including
## 1.132595                      winds severe
## 1.132596                 severe turbulence
## 1.132609                   holding pattern
## 1.132616                         plane hit
## 1.132617                         hit trees
## 1.132621                        power line
## 1.132624                      crashed 700m
## 1.132625                        700m short
## 1.132629                    runway failure
## 1.132637                   minimum descent
## 1.132638                  descent altitude
## 1.132648                     final landing
## 1.132649                     landing phase
## 1.132652                  aircraft crashed
## 1.132653                   crashed shortly
## 1.132660                      losing power
## 1.132664                       left engine
## 1.132665                       engine fuel
## 1.132666                fuel contamination
## 1.132673                      luanda bound
## 1.132678               northeastern angola
## 1.132682                    disappeared en
## 1.132683                          en route
## 1.132684                   route witnesses
## 1.132689                    plane appeared
## 1.132699                      low altitude
## 1.132706              military helicopters
## 1.132707               helicopters crashed
## 1.132716                  darkness killing
## 1.132721                  aircraft touched
## 1.132727                      main landing
## 1.132728                      landing gear
## 1.132729                    gear collapsed
## 1.132730                 collapsed causing
## 1.132750                       killed flew
## 1.132757                  approach crashed
## 1.132758                     crashed short
## 1.132764                         dense fog
## 1.132778                 carrying military
## 1.132779                military personnel
## 1.132785                        crashed 24
## 1.132786                          24 miles
## 1.132787                          miles ne
## 1.132793                   binalud heights
## 1.132796                    pilot reported
## 1.132797                   reported engine
## 1.132798                    engine failure
## 1.132799                     failure prior
## 1.132804                     aircraft lost
## 1.132805                     lost altitude
## 1.132808                            fl 197
## 1.132816                          en route
## 1.132819                  stavropol russia
## 1.132822                    trabzon turkey
## 1.132823                    turkey reports
## 1.132829                       flight fire
## 1.132833                     explosion led
## 1.132840                      tail section
## 1.132841                     section prior
## 1.132845                 crash superficial
## 1.132846            superficial mechanical
## 1.132847             mechanical inspection
## 1.132860            monitoring instruments
## 1.132863            subsequent unjustified
## 1.132864              unjustified decision
## 1.132871              overhauls inadequate
## 1.132872             inadequate monitoring
## 1.132879               structural elements
## 1.132897                  fuselage failure
## 1.132902                   prescribed anti
## 1.132903                    anti corrosion
## 1.132904                corrosion measures
## 1.132908                aircraft structure
## 1.132915                  aircraft overran
## 1.132918                        runway hit
## 1.132921                 concrete drainage
## 1.132922                    drainage ditch
## 1.132937                       caught fire
## 1.132941                positioning flight
## 1.132947                    plane suffered
## 1.132948                   suffered engine
## 1.132949                    engine failure
## 1.132950                   failure overran
## 1.132958                   vacant building
## 1.132965                     pilot decided
## 1.132972                 departure airport
## 1.132975                        flew north
## 1.132979                  altitude beneath
## 1.132980                   beneath minimum
## 1.132981                     minimum radar
## 1.132982                    radar coverage
## 1.132985                    plane impacted
## 1.132988                     frozen arctic
## 1.132989                      arctic ocean
## 1.132998                         60 degree
## 1.132999                       degree nose
## 1.133004               pilot's intentional
## 1.133005                   intentional vfr
## 1.133006                        vfr flight
## 1.133009         instrument meteorological
## 1.133010         meteorological conditions
## 1.133016                 maintain altitude
## 1.133023               contributing factor
## 1.133027                weather conditions
## 1.133030                       cargo plane
## 1.133036                     lost altitude
## 1.133048                      stray bullet
## 1.133051                 training soldiers
## 1.133052                   soldiers struck
## 1.133055                     landing plane
## 1.133056                     plane hitting
## 1.133059                   oxygen cylinder
## 1.133062                        fire broke
## 1.133074                   crashed crashed
## 1.133078                       engine fire
## 1.133082                       final stage
## 1.133086                   visual approach
## 1.133091                aircraft's engines
## 1.133092                    engines failed
## 1.133095                       crew failed
## 1.133098                correctly identify
## 1.133106                     flight regime
## 1.133120                aircraft descended
## 1.133124                     2,000ft power
## 1.133140                  aircraft crashed
## 1.133143                 transport crashed
## 1.133149                  aircraft touched
## 1.133152                      hard causing
## 1.133159                       pilot chose
## 1.133166                  aircraft climbed
## 1.133173                    pilot declared
## 1.133186                opposite direction
## 1.133189                  aircraft crashed
## 1.133193                      runway broke
## 1.133197                   caught fire.the
## 1.133198                 fire.the accident
## 1.133199                 accident happened
## 1.133202                      poor weather
## 1.133205                        heavy rain
## 1.133209                local thunderstorm
## 1.133210             thunderstorm activity
## 1.133211                  activity crashed
## 1.133212                   crashed shortly
## 1.133222                  aircraft crashed
## 1.133227                    land windshear
## 1.133228                    windshear lack
## 1.133231               windshear equipment
## 1.133235                   airport shortly
## 1.133241                       cargo plane
## 1.133242                     plane crashed
## 1.133248                        pilot lost
## 1.133249                      lost control
## 1.133253                encountered severe
## 1.133254                    severe weather
## 1.133255                weather conditions
## 1.133266                  explosion caused
## 1.133267                  caused explosive
## 1.133268           explosive decompression
## 1.133273                         foot hole
## 1.133293                          7 ounces
## 1.133301                    passenger seat
## 1.133308                   police believed
## 1.133318                    failed suicide
## 1.133319                   suicide attempt
## 1.133327                     plane crashed
## 1.133331                           ocean 4
## 1.133332                           4 miles
## 1.133336                     coast shortly
## 1.133344                       left engine
## 1.133349                aircraft developed
## 1.133350                  developed engine
## 1.133351                    engine trouble
## 1.133352                      trouble left
## 1.133353                       left engine
## 1.133354                     engine caught
## 1.133357                      fire shortly
## 1.133367                 emergency landing
## 1.133370                      sulaiman afb
## 1.133373                     plane clipped
## 1.133374                      clipped roof
## 1.133375                         roof tops
## 1.133379                   housing project
## 1.133385                      nearby field
## 1.133386                     field crashed
## 1.133389                        mt yasirua
## 1.133392                      poor weather
## 1.133393              weather navigational
## 1.133394                navigational error
## 1.133397              published instrument
## 1.133398                 instrument flying
## 1.133399                 flying procedures
## 1.133405                primary navigation
## 1.133406               navigation overshot
## 1.133411                        heavy rain
## 1.133420                  aircraft touched
## 1.133424                   excessive speed
## 1.133429                  runway threshold
## 1.133430                 threshold bounced
## 1.133438                  aircraft crashed
## 1.133441                       nimitz hill
## 1.133442                            hill 3
## 1.133443                           3 miles
## 1.133444                       miles short
## 1.133447                        runway 06r
## 1.133453                precision approach
## 1.133456                        heavy rain
## 1.133459                           a.b won
## 1.133460                          won guam
## 1.133461                guam international
## 1.133462             international airport
## 1.133465                      runway glide
## 1.133466                       glide slope
## 1.133467                      slope system
## 1.133474                      minimum safe
## 1.133475                     safe altitude
## 1.133476                  altitude warning
## 1.133477                    warning system
## 1.133478                       system msaw
## 1.133490                        captainã â
## 1.133491                               â â
## 1.133502                precision approach
## 1.133509                 flight engineer's
## 1.133510                engineer's failure
## 1.133513               effectively monitor
## 1.133516                       cross check
## 1.133519                        captainã â
## 1.133520                               â â
## 1.133526             approach contributing
## 1.133533                 captain's fatigue
## 1.133536                      korean air's
## 1.133537                  air's inadequate
## 1.133538                 inadequate flight
## 1.133539                       flight crew
## 1.133540                     crew training
## 1.133541             training contributing
## 1.133548                  federal aviation
## 1.133549         aviation administration's
## 1.133550              administration's faa
## 1.133551                   faa intentional
## 1.133552            intentional inhibition
## 1.133561                  agency's failure
## 1.133564                 adequately manage
## 1.133567                system immediately
## 1.133579                  attitude stalled
## 1.133603                        aft center
## 1.133609         correspondingly incorrect
## 1.133610              incorrect stabilizer
## 1.133611                   stabilizer trim
## 1.133612                      trim setting
## 1.133617                     extreme pitch
## 1.133627                          fine air
## 1.133630              exercise operational
## 1.133631               operational control
## 1.133635                     cargo loading
## 1.133636                   loading process
## 1.133651                          fine air
## 1.133652                  air contributing
## 1.133664                adequately monitor
## 1.133665                      monitor fine
## 1.133666                         fine airs
## 1.133667                  airs operational
## 1.133668               operational control
## 1.133669          control responsibilities
## 1.133672                     cargo loading
## 1.133684                     cargo related
## 1.133685              related deficiencies
## 1.133690                          fine air
## 1.133693                     aircraft flew
## 1.133704                   missed approach
## 1.133732                        cessna 206
## 1.133733                            206 ob
## 1.133734                           ob 1450
## 1.133737                         crashed 3
## 1.133738                           3 miles
## 1.133760                            ho chi
## 1.133761                          chi minh
## 1.133762                         minh city
## 1.133765                        phnom penh
## 1.133775          pochentong international
## 1.133776             international airport
## 1.133779                        heavy rain
## 1.133782                     plane clipped
## 1.133783                      clipped palm
## 1.133784                        palm trees
## 1.133794                        rice paddy
## 1.133797                         half mile
## 1.133810                         boy pilot
## 1.133811                       pilot error
## 1.133814                    captain failed
## 1.133822                   flight engineer
## 1.133839                    landing struck
## 1.133840                       struck tree
## 1.133841                         tree tops
## 1.133846                       lambir hill
## 1.133869                      uvira midair
## 1.133870                  midair collision
## 1.133873                         39,000 ft
## 1.133876                       tupolev 154
## 1.133877                      154 aircraft
## 1.133883                      wrong cruise
## 1.133884                   cruise altitude
## 1.133889                  midair collision
## 1.133890                  collision twenty
## 1.133893                     killed aboard
## 1.133898                          9 aboard
## 1.133902                  141 contributing
## 1.133903              contributing factors
## 1.133904                  factors included
## 1.133905                     included weak
## 1.133906                       weak flight
## 1.133912                        luanda atc
## 1.133915                     poor regional
## 1.133916                   regional ground
## 1.133917             ground communications
## 1.133920                  aircraft crashed
## 1.133923               mountainous terrain
## 1.133924                        terrain 15
## 1.133925                        15 minutes
## 1.133941                  aircraft crashed
## 1.133942                        crashed 20
## 1.133943                          20 miles
## 1.133947               airport combination
## 1.133950                        atc errors
## 1.133958                   wrong direction
## 1.133961               mountainous terrain
## 1.133965                      crew setting
## 1.133970           instruments incorrectly
## 1.133971          incorrectly contributing
## 1.133977                impared visibility
## 1.133978                    visibility due
## 1.133983                      forest fires
## 1.133993                        9,900 foot
## 1.133994                        foot level
## 1.133998               uncompahgre plateau
## 1.134001                   pilot's failure
## 1.134004               maintain sufficient
## 1.134005               sufficient airspeed
## 1.134008              undetermined reasons
## 1.134015                     maximum gross
## 1.134016                      gross weight
## 1.134019                        aft center
## 1.134026         instrument meteorological
## 1.134027         meteorological conditions
## 1.134040                        stall spin
## 1.134043                  aircraft crashed
## 1.134046                      nuevo berlin
## 1.134055                     uruguay river
## 1.134062                       avoid heavy
## 1.134063                        heavy rain
## 1.134068                         crater 25
## 1.134069                           25 feet
## 1.134070                         feet deep
## 1.134071                       deep crater
## 1.134077                     plane crashed
## 1.134081                       earth icing
## 1.134085                       pitot tubes
## 1.134088                       pitot tubes
## 1.134089                       tubes froze
## 1.134093                   aircraft passed
## 1.134096                         49,000 ft
## 1.134097                         ft giving
## 1.134098                      giving false
## 1.134099                       false speed
## 1.134100                    speed readings
## 1.134101                  readings leading
## 1.134109                  aircraft crashed
## 1.134112                      poor weather
## 1.134122               finished performing
## 1.134123                      performing 3
## 1.134124                           3 touch
## 1.134130                monterey peninsula
## 1.134131                 peninsula airport
## 1.134132                   airport shortly
## 1.134138                       fourth time
## 1.134139                    time witnesses
## 1.134140                   witnesses heard
## 1.134145                    popping noises
## 1.134146                       noises bank
## 1.134157                        steep dive
## 1.134162                          500 foot
## 1.134163                     foot altitude
## 1.134171                         150 yards
## 1.134172                    yards offshore
## 1.134173                   offshore singer
## 1.134174                       singer john
## 1.134175                       john denver
## 1.134176                         denver 53
## 1.134184                     killed denver
## 1.134187                 experienced pilot
## 1.134191                      2,800 flying
## 1.134192                      flying hours
## 1.134203                experimental plane
## 1.134211           inadvertent application
## 1.134225                     fuel selector
## 1.134226                   selector handle
## 1.134229                     unmarked fuel
## 1.134230                     fuel selector
## 1.134231                   selector handle
## 1.134246                      pilot's left
## 1.134247                     left shoulder
## 1.134255                 required removing
## 1.134266             inadvertently pressed
## 1.134273                      rudder pedal
## 1.134274                     pedal causing
## 1.134284                 dive contributing
## 1.134285              contributing factors
## 1.134307                       backup tank
## 1.134321                         tanks due
## 1.134325                     unmarked fuel
## 1.134326                     fuel quantity
## 1.134327                    quantity sight
## 1.134328                       sight gauge
## 1.134329                     gauge crashed
## 1.134333                   landing attempt
## 1.134341                     distress call
## 1.134354                           sea 200
## 1.134355                         200 yards
## 1.134356                    yards offshore
## 1.134359                 pilot's disregard
## 1.134362                      lateral fuel
## 1.134363                      fuel loading
## 1.134364                    loading limits
## 1.134367                  improper removal
## 1.134370                       frost prior
## 1.134376             resulting inadvertent
## 1.134377                 inadvertent stall
## 1.134378                        stall spin
## 1.134379                      spin factors
## 1.134380                  factors involved
## 1.134387             improper asymmetrical
## 1.134388                 asymmetrical fuel
## 1.134389                      fuel loading
## 1.134392                   reduced lateral
## 1.134393                  lateral aircraft
## 1.134394                  aircraft control
## 1.134398                  induced pressure
## 1.134408           inadequate surveillance
## 1.134412                company operations
## 1.134415                company management
## 1.134418                 military aircraft
## 1.134419                    aircraft bound
## 1.134422               vladivostok crashed
## 1.134426          residential neighborhood
## 1.134427               neighborhood twenty
## 1.134435                    engines failed
## 1.134439                   computer system
## 1.134447                    takeoff design
## 1.134448                       design flaw
## 1.134453           uncoordinated operation
## 1.134458              pressure compressors
## 1.134459               compressors crashed
## 1.134468                     approach path
## 1.134479                         low level
## 1.134482                  marginal weather
## 1.134493                 controlled flight
## 1.134497                      terrain crew
## 1.134498                   crew procedural
## 1.134499                  procedural error
## 1.134504                      1,000 pounds
## 1.134505                    pounds heavier
## 1.134509                 maximum allowable
## 1.134510                  allowable weight
## 1.134513                     gps installed
## 1.134522              primary navigational
## 1.134523                  navigational aid
## 1.134531                      landing gear
## 1.134538                aircraft's engines
## 1.134539                      engines lost
## 1.134540                        lost power
## 1.134544           propeller autofeathered
## 1.134547                   aircraft rolled
## 1.134552                      struck trees
## 1.134555                  crashed inverted
## 1.134558                  aircraft crashed
## 1.134574                     crew resulted
## 1.134596                          atc crew
## 1.134597                      crew fatigue
## 1.134609                  aircraft crashed
## 1.134612                        mt olympus
## 1.134615              approaching salonica
## 1.134628                        3,300 feet
## 1.134629                          feet due
## 1.134632                     heavy traffic
## 1.134633                     traffic tower
## 1.134634                       tower tapes
## 1.134640                   missed approach
## 1.134643                     crew reported
## 1.134647                     heading north
## 1.134653                      heading west
## 1.134656            investigation revealed
## 1.134661                     poor training
## 1.134662                     training flew
## 1.134672                   radar equipment
## 1.134684                     landing strip
## 1.134688                    crash occurred
## 1.134693                     130 transport
## 1.134694                   transport plane
## 1.134707                    search crashed
## 1.134710                   pastra mountain
## 1.134713                 plane disappeared
## 1.134716                     radar screens
## 1.134724                        musi river
## 1.134738                  experienced crew
## 1.134739                     crew suddenly
## 1.134740                     suddenly left
## 1.134741                       left normal
## 1.134742                     normal flight
## 1.134745                       35,000 feet
## 1.134757                   sumatran jungle
## 1.134766                  rudder separated
## 1.134775               indonesian national
## 1.134776           national transportation
## 1.134777          transportation committee
## 1.134778                   committee found
## 1.134783             insufficient evidence
## 1.134793                      u.s national
## 1.134794           national transportation
## 1.134795             transportation safety
## 1.134796                      safety board
## 1.134797                    board strongly
## 1.134798                strongly disagreed
## 1.134803                     jet's cockpit
## 1.134804                     cockpit voice
## 1.134805                    voice recorder
## 1.134808        intentionally disconnected
## 1.134812                   flight controls
## 1.134827                          u.s ntsb
## 1.134828                      ntsb stopped
## 1.134829                     stopped short
## 1.134834                      term suicide
## 1.134837                 dissenting report
## 1.134855                         july 2004
## 1.134858                   california jury
## 1.134859                        jury found
## 1.134865                         pcu valve
## 1.134868                   controls rudder
## 1.134869                rudder responsible
## 1.134888                   rudder hardover
## 1.134889                  hardover crashed
## 1.134893                  pastra mountains
## 1.134902                     aerosweet yak
## 1.134903                            yak 42
## 1.134911                          en route
## 1.134924                            fl 310
## 1.134927                    plane received
## 1.134928                  received reports
## 1.134933                    air turbulence
## 1.134940                         seat belt
## 1.134941                         belt sign
## 1.134949                 aircraft suddenly
## 1.134950                  suddenly dropped
## 1.134954                      hundred feet
## 1.134961                    causing damage
## 1.134967                      plane landed
## 1.134968                     landed safely
## 1.134975                    passenger died
## 1.134979                  injuries crashed
## 1.134982                      dense jungle
## 1.134983                          jungle 4
## 1.134984                           4 miles
## 1.134985                       miles short
## 1.134991                         heavy fog
## 1.134992                           fog fog
## 1.134995                    low visibility
## 1.134996                 visibility forced
## 1.135008                   missed approach
## 1.135011                  aircraft crashed
## 1.135012                       crashed 3.5
## 1.135013                            3.5 km
## 1.135014                          km short
## 1.135018                  runway threshold
## 1.135042                      poor weather
## 1.135049                       mountain 70
## 1.135050                          70 miles
## 1.135051                       miles north
## 1.135056                       khojak pass
## 1.135067                       running low
## 1.135070                      fuel crashed
## 1.135071                       crashed due
## 1.135074                   fuel starvation
## 1.135077                  aircraft crashed
## 1.135084                          2 engine
## 1.135085                     engine failed
## 1.135104                     flames flight
## 1.135105                        flight 387
## 1.135106                    387 originated
## 1.135116                        cagayan de
## 1.135117                            de oro
## 1.135120                  aircraft crashed
## 1.135126                          cagay de
## 1.135127                            de oro
## 1.135131                remote mountainous
## 1.135141                     pagalungan ne
## 1.135144                          cagay de
## 1.135145                            de oro
## 1.135149                     radio message
## 1.135158                        5,000 feet
## 1.135159                          feet sir
## 1.135162                     cockpit voice
## 1.135163                    voice recorder
## 1.135164                 recorder revealed
## 1.135168                       gpws warned
## 1.135173                       dozen times
## 1.135179                   crew apparently
## 1.135193                    mountain pilot
## 1.135194                       pilot error
## 1.135195                  error inadequate
## 1.135196               inadequate training
## 1.135197                training standards
## 1.135200               deficient equipment
## 1.135203                   aircraft struck
## 1.135211                   gondola causing
## 1.135215                          fall 300
## 1.135216                            300 ft
## 1.135222                        killing 20
## 1.135227                      plane landed
## 1.135228                     landed safely
## 1.135229                 safely negligence
## 1.135238                       speed limit
## 1.135244                prescribed minimum
## 1.135245                  minimum altitude
## 1.135255                        plane lost
## 1.135256                        lost power
## 1.135261                          3 engine
## 1.135267                          4 engine
## 1.135270                      plane rolled
## 1.135275                   stalled entered
## 1.135280                   crashed crashed
## 1.135284                         los hoyos
## 1.135285                   hoyos mountains
## 1.135290                 military training
## 1.135291                   training flight
## 1.135292                   flight overshot
## 1.135297                         heavy fog
## 1.135303                       sobat river
## 1.135312            taipei's international
## 1.135313             international airport
## 1.135321                    crew requested
## 1.135327                     plane crashed
## 1.135331          residential neighborhood
## 1.135332              neighborhood ripping
## 1.135338               structures skidding
## 1.135342                        rice paddy
## 1.135347                       flames dfdr
## 1.135348                         dfdr data
## 1.135351                complete autopilot
## 1.135352           autopilot disengagement
## 1.135356                 landing clearance
## 1.135363                attempted manually
## 1.135364                    manually flown
## 1.135369                  falling airspeed
## 1.135376                        40 degrees
## 1.135383                        1,000 feet
## 1.135386                    altitude total
## 1.135387                       total stall
## 1.135391                    dive resulting
## 1.135397                      ground pilot
## 1.135398                       pilot error
## 1.135401                       cargo plane
## 1.135402                      plane struck
## 1.135405                   approach lights
## 1.135412                          runway 3
## 1.135421                  aircraft crashed
## 1.135425                            sea 11
## 1.135426                             11 km
## 1.135429                   hsinchu shortly
## 1.135435                hsinchu instrument
## 1.135436                instrument failure
## 1.135462                      struck 3,000
## 1.135463                          3,000 ft
## 1.135464                         ft sharhi
## 1.135465                    sharhi baranta
## 1.135466                  baranta mountain
## 1.135467                      mountain 300
## 1.135468                          300 feet
## 1.135474                         dense fog
## 1.135479                  aircraft overran
## 1.135482                          6,888 ft
## 1.135483                         ft runway
## 1.135488                concrete perimeter
## 1.135489                   perimeter fence
## 1.135490                     fence crossed
## 1.135498                     karaoke house
## 1.135508                  legally released
## 1.135515                        1 reverser
## 1.135516              reverser deactivated
## 1.135519                      plane landed
## 1.135520                        landed mid
## 1.135521                        mid runway
## 1.135525                  crew incorrectly
## 1.135530                        2 reverser
## 1.135537                     plane causing
## 1.135547                          2 engine
## 1.135554                    forward thrust
## 1.135555                   thrust steering
## 1.135575                  aircraft overran
## 1.135580                      peruvian air
## 1.135581                         air force
## 1.135582                       force plane
## 1.135583                    plane carrying
## 1.135584                carrying villagers
## 1.135585                villagers stranded
## 1.135588                  flooding crashed
## 1.135595                     piura airport
## 1.135612                      shantytown 2
## 1.135613                      2 kilometers
## 1.135621                   losing altitude
## 1.135625                     engine failed
## 1.135631                    drainage canal
## 1.135637                    engine failure
## 1.135638                   failure shortly
## 1.135644                       cargo plane
## 1.135645                 plane experienced
## 1.135652                          2 engine
## 1.135655                     plane crashed
## 1.135662                 emergency landing
## 1.135668                   aircraft leased
## 1.135671                      tame crashed
## 1.135672                      crashed atop
## 1.135673                          atop fog
## 1.135674                       fog covered
## 1.135675                     covered cerro
## 1.135676                          cerro el
## 1.135677                          el cable
## 1.135678                    cable mountain
## 1.135690                       bogota's el
## 1.135691                         el dorado
## 1.135692                    dorado airport
## 1.135699                        air france
## 1.135702                     tame airlines
## 1.135711                  proper direction
## 1.135718                directional beacon
## 1.135723                       flight crew
## 1.135724                 crew acknowledged
## 1.135727                       air traffic
## 1.135728              traffic controller's
## 1.135729              controller's warning
## 1.135742                       los angeles
## 1.135743                     angeles based
## 1.135744                  based occidental
## 1.135745              occidental petroleum
## 1.135746             petroleum corporation
## 1.135749                     plane crashed
## 1.135752                        light rain
## 1.135756                    final approach
## 1.135763                       miles short
## 1.135772                   lightning flash
## 1.135773                   flash preceding
## 1.135776                  accident crashed
## 1.135777                   crashed shortly
## 1.135786                   aircraft struck
## 1.135789                    jungle covered
## 1.135790                  covered mountain
## 1.135797                 premature descent
## 1.135803                   heavy rainstorm
## 1.135806                helicopter's skids
## 1.135807                   skids contacted
## 1.135811                    tension static
## 1.135812                     static ground
## 1.135813                       ground wire
## 1.135816                          150 feet
## 1.135822                   pilot's failure
## 1.135825                 maintain altitude
## 1.135830                   adverse weather
## 1.135833               contributing factor
## 1.135837                      incoming fog
## 1.135841                    tension static
## 1.135842                       static wire
## 1.135845                  aircraft crashed
## 1.135854                         2,800m 13
## 1.135855                        13 minutes
## 1.135863                    plane designed
## 1.135870                     19 passengers
## 1.135873                        carring 26
## 1.135874                     26 overloaded
## 1.135875                 overloaded flight
## 1.135876                        flight 420
## 1.135881                 montreal's dorval
## 1.135882                    dorval airport
## 1.135890                        12 minutes
## 1.135899                       12,500 feet
## 1.135902                      crew advised
## 1.135903                       advised atc
## 1.135912               requested clearance
## 1.135921                       advised atc
## 1.135925                       left engine
## 1.135937                      crew decided
## 1.135942             mirabel international
## 1.135943             international airport
## 1.135948                       advised atc
## 1.135952                       engine fire
## 1.135959                         runway 24
## 1.135962                      crew advised
## 1.135963                       advised atc
## 1.135967                       left engine
## 1.135974                      landing gear
## 1.135979                       short final
## 1.135990                         left wing
## 1.135991                        wing broke
## 1.135992                     broke upwards
## 1.135995                 fuselage inverted
## 1.135996                   inverted struck
## 1.136001                        slid 2,500
## 1.136002                        2,500 feet
## 1.136014                         runway pc
## 1.136037                       left brakes
## 1.136038                   brakes dragging
## 1.136046                  brake components
## 1.136049                   dragging caused
## 1.136050                caused overheating
## 1.136059                      piston seals
## 1.136064                   brake hydraulic
## 1.136065                   hydraulic fluid
## 1.136068                   hydraulic fluid
## 1.136069                      fluid leaked
## 1.136073                         hot brake
## 1.136074                  brake components
## 1.136077                      fluid caught
## 1.136078                       caught fire
## 1.136083                      intense fire
## 1.136087                      left nacelle
## 1.136088                   nacelle leading
## 1.136094                    main hydraulic
## 1.136095                  hydraulic system
## 1.136100                         wing ovht
## 1.136101                        ovht light
## 1.136108                appeared corrected
## 1.136112                    fire continued
## 1.136145                         left wing
## 1.136151                       wing engine
## 1.136152                       engine fire
## 1.136155                  failed rendering
## 1.136158           aircraft uncontrollable
## 1.136161               helicopter impacted
## 1.136167                  sightseeing trip
## 1.136170                  pilot's decision
## 1.136173                      continue vfr
## 1.136174                        vfr flight
## 1.136177             deteriorating weather
## 1.136178                weather conditions
## 1.136179             conditions consisting
## 1.136182                 lowering ceilings
## 1.136187               mountainous terrain
## 1.136193                 inadvertent entry
## 1.136196         instrument meteorological
## 1.136197         meteorological conditions
## 1.136215                       chief pilot
## 1.136219                 directly observed
## 1.136222             deteriorating weather
## 1.136223                weather conditions
## 1.136235                       cargo plane
## 1.136236                      plane lifted
## 1.136241                     runway slowly
## 1.136242                       slowly sank
## 1.136251                grossly overloaded
## 1.136254                       cargo plane
## 1.136255                     plane crashed
## 1.136256                     crashed short
## 1.136264                      ils approach
## 1.136267                       cargo plane
## 1.136268                      plane struck
## 1.136273                  aircraft crashed
## 1.136281                      flying lower
## 1.136284                            500 ft
## 1.136285                          ft prior
## 1.136293                    missed attempt
## 1.136296                      plane landed
## 1.136304                     water entered
## 1.136310                       plane broke
## 1.136326                   training flight
## 1.136332                       cargo plane
## 1.136333                     plane stopped
## 1.136336                    engine stalled
## 1.136346                      aircraft due
## 1.136350               excessive reduction
## 1.136355                        low height
## 1.136361                      landing gear
## 1.136365                 intermediate flap
## 1.136366                     flap position
## 1.136372                    engine stopped
## 1.136376                   propeller pitch
## 1.136377                       pitch close
## 1.136382                  aircraft ditched
## 1.136386                  manacapuru river
## 1.136389                          en route
## 1.136403                        20 minutes
## 1.136404                   minutes earlier
## 1.136405                    earlier midair
## 1.136406                  midair collision
## 1.136417               lorient approaching
## 1.136418               approaching lorient
## 1.136422              requested permission
## 1.136428                       ocean liner
## 1.136429                      liner norway
## 1.136441                     killed aboard
## 1.136444                         cessna 14
## 1.136445                         14 aboard
## 1.136453                beechcraft decided
## 1.136469                       ocean liner
## 1.136470                          liner le
## 1.136471                         le france
## 1.136483                        2,000 feet
## 1.136489                   radar detection
## 1.136492                 planes approached
## 1.136497                       blind spots
## 1.136498                     spots failure
## 1.136510                    vfr conditions
## 1.136511                conditions shortly
## 1.136517                     plane pitched
## 1.136533              uncommanded downward
## 1.136534                 downward movement
## 1.136538             horizontal stabilizer
## 1.136545                partial detachment
## 1.136549                  actuator forward
## 1.136550                   forward bearing
## 1.136551                   bearing support
## 1.136552                   support fitting
## 1.136553                       fitting due
## 1.136562                     lok fasteners
## 1.136568                        low passes
## 1.136582                   fourth approach
## 1.136585                  aircraft touched
## 1.136591                 controlled manner
## 1.136597                     water surface
## 1.136618                      water impact
## 1.136621                  aircraft quickly
## 1.136622                quickly overturned
## 1.136627                     rest inverted
## 1.136635                    floats visible
## 1.136639                 occupants drowned
## 1.136644                     floats struck
## 1.136651                   flying attitude
## 1.136662                          wing dug
## 1.136667               aircraft overturned
## 1.136668           overturned contributing
## 1.136674                  conflicting wind
## 1.136677                  water conditions
## 1.136684                   occurrence blew
## 1.136689                   landing causing
## 1.136702                          en route
## 1.136705              aircraft experienced
## 1.136706                experienced double
## 1.136707                     double engine
## 1.136708                    engine failure
## 1.136711                     plane ditched
## 1.136714                    foveaux strait
## 1.136735                     double engine
## 1.136736                    engine failure
## 1.136739                  possibly related
## 1.136742                   fuel management
## 1.136745                  aircraft crashed
## 1.136749                remote mountainous
## 1.136756                       12,000 feet
## 1.136765                    potokari radio
## 1.136766                     radio contact
## 1.136769                            lost 5
## 1.136770                         5 minutes
## 1.136777                       cargo plane
## 1.136783                       steep angle
## 1.136784                      angle rolled
## 1.136798                     elevator trim
## 1.136799                          trim set
## 1.136814                 aircraft pitching
## 1.136818                  rotation causing
## 1.136823                      lose control
## 1.136843                          heho due
## 1.136846                      poor weather
## 1.136847                weather conditions
## 1.136853                  reported missing
## 1.136854                  missing wreckage
## 1.136859                  payakha mountain
## 1.136868               officials announced
## 1.136899                  nearby villagers
## 1.136906                    military plane
## 1.136909                  aircraft crashed
## 1.136931                   plane struggled
## 1.136934                     gain altitude
## 1.136935                   altitude rising
## 1.136944                     earth plowing
## 1.136945                      plowing past
## 1.136956                         auto body
## 1.136957                         body shop
## 1.136965                      soccer field
## 1.136973                     late decision
## 1.136989                       jfk airport
## 1.136994                geneva switzerland
## 1.136998                     crew reported
## 1.136999                    reported smoke
## 1.137007                 emergency landing
## 1.137014                      dumping fuel
## 1.137020                 emergency landing
## 1.137031                    atlantic ocean
## 1.137032                   ocean southwest
## 1.137040              entertainment system
## 1.137041                     system wiring
## 1.137042                    wiring started
## 1.137050                   cockpit ceiling
## 1.137053                    arcing ignited
## 1.137056                    cover material
## 1.137060                thermal insulation
## 1.137061               insulation blankets
## 1.137068                       flight fire
## 1.137089            aircraft certification
## 1.137090           certification standards
## 1.137093             material flammability
## 1.137102                     inadequate dr
## 1.137103                       dr jonathan
## 1.137104                     jonathan mann
## 1.137105                   mann researcher
## 1.137113                    joseph lamotta
## 1.137114                       lamotta son
## 1.137117                   boxing champion
## 1.137118                     champion jake
## 1.137119                      jake lamotta
## 1.137120                    lamotta killed
## 1.137124                        crash shot
## 1.137128                      unita rebels
## 1.137129                         rebels 30
## 1.137130                        30 minutes
## 1.137136                     plane crashed
## 1.137143                     mountain pass
## 1.137148                 company airplanes
## 1.137157                  miles visibility
## 1.137158                    visibility 700
## 1.137159                          700 feet
## 1.137160                     feet ceilings
## 1.137161                   ceilings clouds
## 1.137162                    clouds hanging
## 1.137168                        misty rain
## 1.137171                   pilot's failure
## 1.137174                 maintain adequate
## 1.137175                 adequate airspeed
## 1.137181                 inadvertent stall
## 1.137182               stall unfamiliarity
## 1.137189                        low clouds
## 1.137196                      blind canyon
## 1.137203                     audible stall
## 1.137204                     stall warning
## 1.137205                   warning circuit
## 1.137206                   circuit breaker
## 1.137212                   pulled disabled
## 1.137213                 disabled position
## 1.137233                       caught fire
## 1.137236                  aircraft crashed
## 1.137243                         forest 20
## 1.137244                          20 miles
## 1.137245                       miles north
## 1.137250                          12 miles
## 1.137261                melilla controlled
## 1.137262                 controlled flight
## 1.137267                  aircraft crashed
## 1.137280                        low clouds
## 1.137281                    clouds reduced
## 1.137282                reduced visibility
## 1.137285                    strong rapidly
## 1.137286                   rapidly veering
## 1.137287                      veering wind
## 1.137288                   wind conditions
## 1.137296               severe thunderstorm
## 1.137297                  thunderstorm ten
## 1.137298                       ten minutes
## 1.137306                 plane disappeared
## 1.137311                  aircraft crashed
## 1.137315                            sea 35
## 1.137316                             35 nm
## 1.137317                          nm north
## 1.137327                   ltte liberation
## 1.137328                 liberation tigers
## 1.137331                       tamil eelam
## 1.137332                      eelam rebels
## 1.137335                 sightseeing plane
## 1.137341                       angel falls
## 1.137342                     falls crashed
## 1.137343                     crashed short
## 1.137352                  aircraft crashed
## 1.137359                       rear engine
## 1.137365                        russian sa
## 1.137366                              sa 7
## 1.137367                         7 missile
## 1.137368                     missile fired
## 1.137371                       tutsi rebel
## 1.137372                      rebel forces
## 1.137373                    forces shortly
## 1.137381                     kindu airport
## 1.137382                     airport bound
## 1.137392                   aircraft struck
## 1.137395                      military bus
## 1.137401                    runway crashed
## 1.137405                rwenzori mountains
## 1.137408                  aircraft crashed
## 1.137411               mountainous terrain
## 1.137416                           rain 44
## 1.137417                        44 minutes
## 1.137420                     leaving playa
## 1.137421                      playa grande
## 1.137422                  grande guatemala
## 1.137431                    medical clinic
## 1.137434                            3 days
## 1.137438                    remote jungles
## 1.137441                      playa grande
## 1.137452                 aircraft carrying
## 1.137453                  carrying freight
## 1.137457                passengers crashed
## 1.137460                         burned 25
## 1.137461                             25 km
## 1.137464                     krasnoyarsk 4
## 1.137465                         4 minutes
## 1.137472                   snowstorm icing
## 1.137475                   homebuilt plane
## 1.137482                       lee airport
## 1.137490                     beard's creek
## 1.137491                      creek coming
## 1.137494                     rest inverted
## 1.137497                           18 feet
## 1.137500                       water actor
## 1.137501                     actor william
## 1.137502                   william gardner
## 1.137503                    gardner knight
## 1.137504                         knight 56
## 1.137514                   pilot's failure
## 1.137517                 maintain adequate
## 1.137518                 adequate altitude
## 1.137519                altitude clearance
## 1.137523                trees contributing
## 1.137530             pilot's unfamiliarity
## 1.137534               geographic location
## 1.137537                        dark night
## 1.137538                  night conditions
## 1.137541                  aircraft crashed
## 1.137545                       st lawrence
## 1.137546                    lawrence river
## 1.137549                     shallow water
## 1.137550                         water 2km
## 1.137562                     plane crashed
## 1.137563                         crashed 2
## 1.137564                           2 miles
## 1.137565                   miles southwest
## 1.137568                       surat thani
## 1.137569                     thani airport
## 1.137572                 accident occurred
## 1.137575                   poor visibility
## 1.137578                        heavy rain
## 1.137583                   landing attempt
## 1.137589                     gain altitude
## 1.137595                       paddy field
## 1.137598                   reports suggest
## 1.137601                  aircraft stalled
## 1.137607                       ground tail
## 1.137610            spatial disorientation
## 1.137614                      nose pitched
## 1.137620                nighttime approach
## 1.137623                    stormy weather
## 1.137624                     weather pilot
## 1.137625                       pilot error
## 1.137628                   leased aircraft
## 1.137634                      unita rebels
## 1.137640                            fl 150
## 1.137641                      150 carrying
## 1.137642                   carrying relief
## 1.137643                   relief supplies
## 1.137653                    crew attempted
## 1.137660                  aircraft touched
## 1.137671                       cargo plane
## 1.137672                     plane crashed
## 1.137677                   poor visibility
## 1.137684                     plane crashed
## 1.137687                      dense jungle
## 1.137688                         jungle 25
## 1.137689                             25 km
## 1.137693                    departure town
## 1.137696                      huambo heavy
## 1.137697                    heavy fighting
## 1.137702                 government forces
## 1.137705                      unita rebels
## 1.137714                    united nations
## 1.137715                 nations chartered
## 1.137716                   chartered plane
## 1.137722                      unita rebels
## 1.137723                         rebels 20
## 1.137724                        20 minutes
## 1.137733                      cargo planel
## 1.137734                    planel assumed
## 1.137739                  attitude stalled
## 1.137740                       stalled hit
## 1.137748                       field short
## 1.137761               balance limitations
## 1.137766                     air refueling
## 1.137767                 refueling mission
## 1.137770                     plane pitched
## 1.137771                    pitched upward
## 1.137772                    upward stalled
## 1.137775                   crashed shortly
## 1.137781                       cargo plane
## 1.137785                     lose altitude
## 1.137789                         hit trees
## 1.137799                      valley floor
## 1.137802                   accident flight
## 1.137811                    night obstacle
## 1.137812                obstacle clearance
## 1.137813            clearance requirements
## 1.137816                 canadian aviation
## 1.137817               aviation regulation
## 1.137820               kelowna flightcraft
## 1.137821               flightcraft company
## 1.137822                company operations
## 1.137823                 operations manual
## 1.137829            restrictive conditions
## 1.137830                conditions imposed
## 1.137833                      night visual
## 1.137834                     visual flight
## 1.137835                      flight rules
## 1.137836                         rules vfr
## 1.137837                        vfr flight
## 1.137840                        car 705.32
## 1.137852                  crew's awareness
## 1.137856                    night obstacle
## 1.137857                obstacle clearance
## 1.137858               clearance standards
## 1.137866                   aircraft veered
## 1.137867                       veered left
## 1.137872                     shallow climb
## 1.137875                  suddenly rolling
## 1.137879                descending steeply
## 1.137883                        tidal flat
## 1.137886                   pilot initiated
## 1.137892                    final approach
## 1.137902                    left propeller
## 1.137908                   rotation damage
## 1.137917                       left engine
## 1.137918                      engine power
## 1.137932                        pilot lost
## 1.137933                      lost control
## 1.137940                        low height
## 1.137946                    relief mission
## 1.137958                    blocked runway
## 1.137965                   landing attempt
## 1.137968                  aircraft crashed
## 1.137971               mountainous terrain
## 1.137988                        luanda due
## 1.137991                    engine trouble
## 1.137994                approaching luanda
## 1.137997                  aircraft crashed
## 1.138001                  cazenga district
## 1.138004                 luanda destroying
## 1.138009                  aircraft crashed
## 1.138010                        crashed 15
## 1.138011                        15 minutes
## 1.138017                        hoskins en
## 1.138018                          en route
## 1.138023                    aircraft broke
## 1.138029               encountering severe
## 1.138030                    severe weather
## 1.138036                          oil palm
## 1.138037                   palm plantation
## 1.138040                      flat terrain
## 1.138046                       cargo plane
## 1.138047                        plane lost
## 1.138051                          3 engine
## 1.138063                        plane lost
## 1.138064                     lost altitude
## 1.138088                   wenzhou airport
## 1.138089                 airport witnesses
## 1.138093                        plane nose
## 1.138094                         nose dive
## 1.138103                        2,300 feet
## 1.138109                       locking nut
## 1.138114                        castle nut
## 1.138117                        cotter pin
## 1.138131                          pull rod
## 1.138137                  elevator control
## 1.138138                    control system
## 1.138141                       nut screwed
## 1.138146                         bolt loss
## 1.138154                     pitch control
## 1.138157                  aircraft touched
## 1.138160                   briefly overran
## 1.138170                      strong winds
## 1.138175                     delhi airport
## 1.138178                    plane suddenly
## 1.138179                   suddenly veered
## 1.138183                      landing path
## 1.138189                     building site
## 1.138195                        water tank
## 1.138196                    tank reservoir
## 1.138208                  crashed exploded
## 1.138213                    severing power
## 1.138214                       power lines
## 1.138217                       heavy layer
## 1.138220                       fog covered
## 1.138229                        crash site
## 1.138232                         1.5 miles
## 1.138236                   airport crashed
## 1.138239                    huirotico hill
## 1.138240                     hill wreckage
## 1.138241                    wreckage found
## 1.138242                           found 4
## 1.138243                            4 days
## 1.138252                       cargo plane
## 1.138253                   plane descended
## 1.138273                 captain descended
## 1.138279                   aircraft struck
## 1.138284                 controlled flight
## 1.138285                          flight 2
## 1.138286                              2 nm
## 1.138287                          nm short
## 1.138297                   captain decided
## 1.138303                   minimum descent
## 1.138304                  descent altitude
## 1.138308                   required visual
## 1.138309                 visual references
## 1.138322                maintaining visual
## 1.138323                    visual contact
## 1.138331                adequately monitor
## 1.138334                flight instruments
## 1.138338                     aircraft flew
## 1.138346                      command lost
## 1.138347                      lost control
## 1.138357                 aircraft departed
## 1.138358                    departed adana
## 1.138363                  turkish pilgrims
## 1.138366                     plane crashed
## 1.138367                         crashed 9
## 1.138368                         9 minutes
## 1.138374                      poor weather
## 1.138375                weather conditions
## 1.138376                 conditions severe
## 1.138377                    severe weather
## 1.138386                    accident pitot
## 1.138387                        pitot anti
## 1.138388                        anti icing
## 1.138389                      icing system
## 1.138397                  missed checklist
## 1.138398                   checklist items
## 1.138401                       crew failed
## 1.138408                  erratic airspeed
## 1.138409              airspeed indications
## 1.138416               cockpit indications
## 1.138426                  aircraft crashed
## 1.138429                          la caida
## 1.138430                        caida hill
## 1.138433                            fog 10
## 1.138434                        10 minutes
## 1.138460                   planes altitude
## 1.138463                    captain pushed
## 1.138468                    control column
## 1.138472                     plane entered
## 1.138475                     rapid descent
## 1.138490                      gain control
## 1.138494                     plane crashed
## 1.138501                 destroyed crashed
## 1.138508                        heavy rain
## 1.138526                     water crashed
## 1.138535                     gain altitude
## 1.138547                positioning flight
## 1.138560                       dallas fort
## 1.138561                        fort worth
## 1.138562                       worth texas
## 1.138566                     rock arkansas
## 1.138574                      rock airport
## 1.138577                flight encountered
## 1.138578                 encountered heavy
## 1.138579               heavy thunderstorms
## 1.138580                thunderstorms rain
## 1.138583                      strong winds
## 1.138586                   aircraft landed
## 1.138587                       landed fast
## 1.138590                      hard skidded
## 1.138601                     landing light
## 1.138602                       light tower
## 1.138603                    tower breaking
## 1.138611                     flames crew's
## 1.138612                   crew's decision
## 1.138619              severe thunderstorms
## 1.138627                 exceeded american
## 1.138628                 american airlines
## 1.138629               airlines guidelines
## 1.138637                 automatic spoiler
## 1.138638                    spoiler system
## 1.138643                   manually deploy
## 1.138648                 touchdown fatigue
## 1.138657                          16 hours
## 1.138660            sightseeing helicopter
## 1.138661               helicopter impacted
## 1.138664               glacier.the pilot's
## 1.138665                 pilot's continued
## 1.138666                     continued vfr
## 1.138667                        vfr flight
## 1.138670                   adverse weather
## 1.138671                   weather spatial
## 1.138672            spatial disorientation
## 1.138677                 maintain aircraft
## 1.138678                  aircraft control
## 1.138679                   control factors
## 1.138691                  continue flights
## 1.138694                  marginal weather
## 1.138698                     flat lighting
## 1.138699                  lighting leading
## 1.138702               whiteout conditions
## 1.138707                          19 miles
## 1.138731             routine communication
## 1.138746                     engine failed
## 1.138750                     plane crashed
## 1.138757                 accident scenario
## 1.138766               water contamination
## 1.138767            contamination migrated
## 1.138771                       center fuel
## 1.138772                         fuel tank
## 1.138776                  engine resulting
## 1.138782                      engine power
## 1.138785                       cargo plane
## 1.138791                      unita rebels
## 1.138794                 aircraft carrying
## 1.138795                  carrying freight
## 1.138796                      freight flew
## 1.138803                       fog covered
## 1.138804                     covered ridge
## 1.138805                           ridge 8
## 1.138806                              8 km
## 1.138817                aircraft developed
## 1.138818                  developed engine
## 1.138819                    engine trouble
## 1.138820                   trouble shortly
## 1.138834                     steep descent
## 1.138842                   guatiquia river
## 1.138845                       cargo plane
## 1.138846                     plane crashed
## 1.138850              champadevi mountains
## 1.138856                          7,500 ft
## 1.138863                       low failure
## 1.138869               standard instrument
## 1.138870              instrument departure
## 1.138871               departure procedure
## 1.138889                       cargo plane
## 1.138890                         plane hit
## 1.138893                          wall 400
## 1.138894                        400 meters
## 1.138895                      meters short
## 1.138901                  aircraft piloted
## 1.138906                        kennedy jr
## 1.138907                             jr 38
## 1.138908                        38 crashed
## 1.138912                 sea approximately
## 1.138913                  approximately 34
## 1.138914                          34 miles
## 1.138915                        miles west
## 1.138918                 martha's vineyard
## 1.138921                          en route
## 1.138928                 martha's vineyard
## 1.138929            vineyard massachusetts
## 1.138930              massachusetts killed
## 1.138937                      wife carolyn
## 1.138941                     sister lauren
## 1.138942                   lauren bessette
## 1.138943                bessette kennedy's
## 1.138944                 kennedy's failure
## 1.138947                  maintain control
## 1.138964            spatial disorientation
## 1.138965       disorientation contributing
## 1.138966              contributing factors
## 1.138975                        dark night
## 1.138983                    haneda airport
## 1.138989                      knife forced
## 1.138992                  flight attendant
## 1.139006                   computer flight
## 1.139007                 flight simulation
## 1.139008                  simulation games
## 1.139018                        real plane
## 1.139037                           u.s air
## 1.139038                         air force
## 1.139039                        force base
## 1.139042                     western tokyo
## 1.139057                       sudden drop
## 1.139067                         duty crew
## 1.139081                     plane plunged
## 1.139085                          984 feet
## 1.139091                  plane ultimately
## 1.139092                 ultimately landed
## 1.139093                     landed safely
## 1.139097                      captain died
## 1.139103                     plane crashed
## 1.139106                 patascoy mountain
## 1.139109                          7,000 ft
## 1.139113             reconnaissance flight
## 1.139116                    drug producing
## 1.139120                     plane crashed
## 1.139130                        1,800 feet
## 1.139133                        15 minutes
## 1.139139                   nausori airport
## 1.139140                     airport bound
## 1.139143                nadi international
## 1.139144             international airport
## 1.139151                  witnesses flying
## 1.139152                        flying low
## 1.139153                         low prior
## 1.139162                aircraft descended
## 1.139167                          wing hit
## 1.139175                          1,300 ft
## 1.139176                      ft elevation
## 1.139184                insufficient sleep
## 1.139185                       sleep prior
## 1.139194                  excessive amount
## 1.139195              amount antihistamine
## 1.139204             performance published
## 1.139205             published operational
## 1.139206             operational standards
## 1.139209                          air fiji
## 1.139210                   fiji inadequate
## 1.139225                        cape verde
## 1.139226                       verde coast
## 1.139227                       coast guard
## 1.139228                     guard crashed
## 1.139236                      sol airfield
## 1.139240                        cape verde
## 1.139241                     verde islands
## 1.139255                       sao vicente
## 1.139259               originally departed
## 1.139260                      departed due
## 1.139263                      poor weather
## 1.139264                weather conditions
## 1.139268                  destination city
## 1.139271                    pilot possibly
## 1.139272                     possibly lost
## 1.139273                   lost visibility
## 1.139274                    visibility due
## 1.139287                       santo antao
## 1.139294                      strong winds
## 1.139301              command disconnected
## 1.139308              autothrottle engaged
## 1.139314                      weight close
## 1.139318                   maximum landing
## 1.139319                    landing weight
## 1.139320                  weight permitted
## 1.139321              permitted stabilized
## 1.139322               stabilized slightly
## 1.139323                      slightly low
## 1.139336                   aircraft landed
## 1.139337                       landed hard
## 1.139342                      landing gear
## 1.139347                          3 engine
## 1.139348                    engine touched
## 1.139354                      main landing
## 1.139355                      landing gear
## 1.139359                    wing separated
## 1.139362                             md 11
## 1.139372                   flames probable
## 1.139376             commander's unability
## 1.139384                  descent existing
## 1.139387                             50 ft
## 1.139388                             ft ra
## 1.139389                   ra contributory
## 1.139393               commander's failure
## 1.139401                 reducing airspeed
## 1.139402               airspeed increasing
## 1.139403                   increasing rate
## 1.139410                 thrust decreasing
## 1.139413                       flight idle
## 1.139416               commander's failure
## 1.139419                       apply power
## 1.139427                     descent prior
## 1.139430                touchdown probable
## 1.139431               probable variations
## 1.139434                    wind direction
## 1.139439                             50 ft
## 1.139440                             ft ra
## 1.139447                    momentary loss
## 1.139450                headwind component
## 1.139461                     thrust levers
## 1.139471                   maximum landing
## 1.139472                    landing weight
## 1.139473                        weight led
## 1.139477                             20 kt
## 1.139478                           kt loss
## 1.139497                 peripheral vision
## 1.139501                  aircraft entered
## 1.139507                     landing flare
## 1.139508                   flare resulting
## 1.139519                     descent prior
## 1.139527                     front portion
## 1.139534                  overhead luggage
## 1.139535               luggage compartment
## 1.139536                compartment caused
## 1.139537                      caused thick
## 1.139538                       thick black
## 1.139539                       black smoke
## 1.139545                  cabin accidental
## 1.139546               accidental ignition
## 1.139553                          2 bleach
## 1.139556                   softner bottles
## 1.139557                    bottles stored
## 1.139561                   overhead locker
## 1.139564                   aircraft struck
## 1.139565                      struck power
## 1.139566                       power lines
## 1.139567                      lines 2,000m
## 1.139568                       2,000m past
## 1.139587                    jorge newberry
## 1.139588                  newberry airport
## 1.139591                      crew aborted
## 1.139592                   aborted takeoff
## 1.139593                   takeoff overran
## 1.139596                    runway skidded
## 1.139600                      service road
## 1.139616                       crew forgot
## 1.139621                        wing flaps
## 1.139648                   sterile cockpit
## 1.139649                   cockpit sharing
## 1.139657                  flight attendant
## 1.139663           tribhuvan international
## 1.139664             international airport
## 1.139667                   aircraft struck
## 1.139670           telecommunication tower
## 1.139674                         left wing
## 1.139684                           6 miles
## 1.139685                   miles southwest
## 1.139691                  aircraft touched
## 1.139694                      hard bounced
## 1.139700                 heavier touchdown
## 1.139701                 touchdown causing
## 1.139702               causing substantial
## 1.139703                substantial damage
## 1.139712                        boeing 757
## 1.139713                          757 left
## 1.139719               speed approximately
## 1.139720              approximately 1,000m
## 1.139729                          ran 343m
## 1.139732                    flat grassland
## 1.139742                 substantial earth
## 1.139743                       earth mound
## 1.139744                    mound adjacent
## 1.139748                  airport boundary
## 1.139751                     semi airborne
## 1.139764                      medium sized
## 1.139765                       sized trees
## 1.139770                     engine struck
## 1.139773                    boundary fence
## 1.139789                      main landing
## 1.139790                     landing gears
## 1.139791                   gears collapsed
## 1.139794                   finally stopped
## 1.139811                  apparently minor
## 1.139812                    minor injuries
## 1.139818                          day died
## 1.139824              unsuspected internal
## 1.139825                 internal injuries
## 1.139826              injuries experienced
## 1.139827                 experienced pitch
## 1.139828                pitch oscillations
## 1.139835                landing inadequate
## 1.139836                   inadequate risk
## 1.139837                   risk assessment
## 1.139841                        pitch feel
## 1.139842                 feel malfunctions
## 1.139843           malfunctions overriding
## 1.139851                     pitch channel
## 1.139857                       cargo plane
## 1.139858                     plane crashed
## 1.139864                     plane crashed
## 1.139868             maintenance personell
## 1.139869                personell replaced
## 1.139878                helicopter crashed
## 1.139882                     water shortly
## 1.139888                           88 foot
## 1.139889                         foot tall
## 1.139890                     tall helideck
## 1.139891                  helideck located
## 1.139892                        located 35
## 1.139893                          35 miles
## 1.139894                    miles offshore
## 1.139904                 helicopter rolled
## 1.139910                     water crashed
## 1.139916                   plane scheduled
## 1.139921                   orlando florida
## 1.139924                      dallas texas
## 1.139925                        texas flew
## 1.139931                       1,500 miles
## 1.139934                       nose diving
## 1.139938                       grassy farm
## 1.139939                        farm field
## 1.139942                      south dakota
## 1.139950                  plane's altitude
## 1.139951                   altitude varied
## 1.139956                       51,000 feet
## 1.139963            pressurization failure
## 1.139968                   frosted windows
## 1.139969                  windows observed
## 1.139972                       fighter jet
## 1.139973                        jet pilots
## 1.139974                   pilots trailing
## 1.139982                        aboard pro
## 1.139983                        pro golfer
## 1.139984                      golfer payne
## 1.139985                     payne stewart
## 1.139986                        stewart 42
## 1.139987                         42 killed
## 1.139988             killed incapacitation
## 1.139992                flight crewmembers
## 1.140001              receive supplemental
## 1.140002               supplemental oxygen
## 1.140008              cabin pressurization
## 1.140011              undetermined reasons
## 1.140014               contributing factor
## 1.140017               emergency checklist
## 1.140044                              1 19
## 1.140045                            19 a.m
## 1.140046                         a.m bound
## 1.140049                       cairo egypt
## 1.140050                      egypt thirty
## 1.140060                       33,000 feet
## 1.140069                   extremely rapid
## 1.140070                     rapid descent
## 1.140078                         66 degree
## 1.140079                       degree dive
## 1.140082                         483 knots
## 1.140085                 descent continued
## 1.140088                       16,700 feet
## 1.140093                  aircraft climbed
## 1.140096                         24,000 ft
## 1.140111                         10,000 ft
## 1.140112                       ft crashing
## 1.140116                    atlantic ocean
## 1.140117                          ocean 60
## 1.140118                          60 miles
## 1.140119                   miles southeast
## 1.140122                  nantucket island
## 1.140127                   named thutmosis
## 1.140128                     thutmosis iii
## 1.140138                  officer's flight
## 1.140139                    flight control
## 1.140140                    control inputs
## 1.140145              airplane's departure
## 1.140148                     normal cruise
## 1.140149                     cruise flight
## 1.140152                 subsequent impact
## 1.140156                    atlantic ocean
## 1.140163                 officer's actions
## 1.140182                    commit suicide
## 1.140193                       mexico city
## 1.140202                  reaching uruapan
## 1.140203                   uruapan seventy
## 1.140206           passengers deplaned.one
## 1.140207               deplaned.one minute
## 1.140215                     crew declared
## 1.140233                        steep dive
## 1.140241                         3.3 miles
## 1.140242                       miles south
## 1.140248                  witnesses stated
## 1.140259                    ground taesa's
## 1.140260                 taesa's operation
## 1.140261                 operation license
## 1.140264                     suspended due
## 1.140270                prompted inquiries
## 1.140274                  airline's safety
## 1.140277            maintenance procedures
## 1.140286                        rome italy
## 1.140289                   pristina kosovo
## 1.140295                    tirana albania
## 1.140298                 plane disappeared
## 1.140305                          10 miles
## 1.140306                       miles north
## 1.140314                      poor weather
## 1.140320                       u.n charter
## 1.140321                    charter flight
## 1.140325              routine humanitarian
## 1.140326              humanitarian mission
## 1.140329                   distribute food
## 1.140330                         food lack
## 1.140333             procedural discipline
## 1.140340               mountainous terrain
## 1.140341                  terrain improper
## 1.140342                 improper tracking
## 1.140346                      military atc
## 1.140347                          atc crew
## 1.140348                      crew fatigue
## 1.140349                fatigue inoperable
## 1.140350                   inoperable gpws
## 1.140353                       cargo plane
## 1.140363                       wind caused
## 1.140375                 captain continued
## 1.140388                      gate shortly
## 1.140396                       plane yawed
## 1.140405                 airport perimeter
## 1.140406                    perimeter wall
## 1.140407                     wall bursting
## 1.140412               aircraft apparently
## 1.140413                   apparently flew
## 1.140431                   poor visibility
## 1.140432                visibility crashed
## 1.140433                     crashed 2,900
## 1.140434                          2,900 ft
## 1.140435                          ft short
## 1.140439                    runway causing
## 1.140440                 causing extensive
## 1.140441                  extensive damage
## 1.140450                 aircraft airborne
## 1.140454                    impact weather
## 1.140458                       minima crew
## 1.140459                       crew failed
## 1.140466             spatially disoriented
## 1.140476                     descent pilot
## 1.140481                     plane crashed
## 1.140482                        crashed 30
## 1.140483                        30 minutes
## 1.140486                     leaving ponta
## 1.140487                     ponta delgada
## 1.140488                       delgada sao
## 1.140489                        sao miguel
## 1.140490                     miguel island
## 1.140491                      island bound
## 1.140494                       horta faial
## 1.140495                      faial island
## 1.140501                        plane lost
## 1.140502                      lost contact
## 1.140506                     horta control
## 1.140507                     control tower
## 1.140508                          tower 10
## 1.140509                        10 minutes
## 1.140516                    land witnesses
## 1.140529                       plane crash
## 1.140532                   mount esperanca
## 1.140538                         sao jorge
## 1.140545                         la aurora
## 1.140546              aurora international
## 1.140547             international airport
## 1.140550                 aircraft overshot
## 1.140553                     runway rolled
## 1.140564                       la libertad
## 1.140565                  libertad section
## 1.140569                    city witnesses
## 1.140589                       crew failed
## 1.140600                        wet runway
## 1.140603         insufficient deceleration
## 1.140608                         safe stop
## 1.140609                       stop leased
## 1.140612                       aom shortly
## 1.140618                    adi comparator
## 1.140619                  comparator alarm
## 1.140620                     alarm sounded
## 1.140623                     times shortly
## 1.140627                   warning sounded
## 1.140635                 captain initiated
## 1.140644                comparator warning
## 1.140645                   warning sounded
## 1.140646                         sounded 9
## 1.140653                       banked left
## 1.140654                left progressively
## 1.140667                         40 degree
## 1.140668                       degree nose
## 1.140682             respond appropriately
## 1.140686               comparator warnings
## 1.140699                   flight engineer
## 1.140705                    handling pilot
## 1.140706                  pilot maintained
## 1.140709                         left roll
## 1.140710                      roll control
## 1.140711                     control input
## 1.140712                     input rolling
## 1.140717                  approximately 90
## 1.140720                         left bank
## 1.140726                     control input
## 1.140731                    pitch attitude
## 1.140744                 aircraft attitude
## 1.140761                    extreme unsafe
## 1.140762                   unsafe attitude
## 1.140771                subsequently flown
## 1.140774                    amritsar india
## 1.140775                      india lahore
## 1.140776                   lahore pakistan
## 1.140777                       pakistan al
## 1.140778                         al minhar
## 1.140779                        minhar air
## 1.140780                          air base
## 1.140781                        base dubai
## 1.140784              kandahar afghanistan
## 1.140787                  hijacking lasted
## 1.140788                          lasted 7
## 1.140789                            7 days
## 1.140801                        40 minutes
## 1.140804                           5 miles
## 1.140807                  valencia airport
## 1.140810                  aircraft crashed
## 1.140814                 tocuyito mountain
## 1.140815                    mountain range
## 1.140831                     simon bolivar
## 1.140832             bolivar international
## 1.140833             international airport
## 1.140834                   airport caracas
## 1.140845                  aircraft crashed
## 1.140846                         crashed 5
## 1.140847                         5 minutes
## 1.140861                       usual route
## 1.140869                positioning flight
## 1.140872                  aircraft crashed
## 1.140876                         black sea
## 1.140884                     ankara turkey
## 1.140888                   visual approach
## 1.140891                  aircraft stalled
## 1.140894                      pancaked 400
## 1.140895                            400 ft
## 1.140896                          ft short
## 1.140902                  aircraft crashed
## 1.140903                   crashed shortly
## 1.140908                              8 km
## 1.140914                        light rain
## 1.140933                   officer advised
## 1.140962                   pitch decreased
## 1.140963                 decreased rapidly
## 1.140964               rapidly accompanied
## 1.140968                      marked speed
## 1.140969                    speed increase
## 1.140972                     plane entered
## 1.140978                       rate spiral
## 1.140979                    spiral descent
## 1.140988                       flight crew
## 1.140989                      crew reacted
## 1.140990           reacted inappropriately
## 1.140996               departure clearance
## 1.140997                     clearance sid
## 1.140998                           sid zue
## 1.140999                            zue 1y
## 1.141028                           sid zue
## 1.141029                             zue 1
## 1.141030                        1 standard
## 1.141031               standard instrument
## 1.141032              instrument departure
## 1.141045                 captain dispensed
## 1.141053                 instrument flight
## 1.141054                 flight conditions
## 1.141060                   intensive climb
## 1.141061                       climb phase
## 1.141073                       spiral dive
## 1.141081             probability bordering
## 1.141087                      lost spatial
## 1.141088               spatial orientation
## 1.141095               inadequate measures
## 1.141103                       spiral dive
## 1.141114                          marsa el
## 1.141115                          el brega
## 1.141116                       brega libya
## 1.141117                    libya ferrying
## 1.141118                      ferrying oil
## 1.141119                       oil workers
## 1.141123                       twin engine
## 1.141124                      engine plane
## 1.141125                  plane approached
## 1.141126                  approached marsa
## 1.141127                          marsa el
## 1.141128                          el brega
## 1.141131                  crew experienced
## 1.141134                     double engine
## 1.141135                    engine failure
## 1.141141                       sea failure
## 1.141149                        anti icing
## 1.141150                      icing system
## 1.141158                       melting ice
## 1.141162                   engines causing
## 1.141163                   causing failure
## 1.141174                 maintain altitude
## 1.141187                   overloaded lack
## 1.141190                safety instruction
## 1.141193                  passengers flaps
## 1.141196                 properly selected
## 1.141203                  aircraft crashed
## 1.141207                    atlantic ocean
## 1.141215                   felix houphouet
## 1.141216                  houphouet boigny
## 1.141217                    boigny airport
## 1.141228                     stall warning
## 1.141229                   warning sounded
## 1.141250                    plane impacted
## 1.141255                  pilot's response
## 1.141268                      pilot failed
## 1.141271              complete established
## 1.141272             established procedure
## 1.141277                 emergency takeoff
## 1.141278                takeoff conditions
## 1.141288                   night hampering
## 1.141291                    crew's ability
## 1.141296                  plane's distance
## 1.141302                  aircraft crashed
## 1.141306                     pacific ocean
## 1.141307                       ocean south
## 1.141313                            650 ft
## 1.141314                           ft feet
## 1.141319                          en route
## 1.141322                   puerto vallarta
## 1.141325                     san francisco
## 1.141326                   francisco radio
## 1.141327               radio transmissions
## 1.141339                 jammed stabilizer
## 1.141344                        11 minutes
## 1.141350                       nose diving
## 1.141360                 emergency landing
## 1.141363                       los angeles
## 1.141364             angeles international
## 1.141365             international airport
## 1.141366                   airport control
## 1.141372                             md 83
## 1.141380                 attitude spinning
## 1.141386                   continuous roll
## 1.141387                     roll inverted
## 1.141393                          sea loss
## 1.141396                    airplane pitch
## 1.141397                     pitch control
## 1.141398                 control resulting
## 1.141402                    flight failure
## 1.141406             horizontal stabilizer
## 1.141407                   stabilizer trim
## 1.141408                       trim system
## 1.141409                  system jackscrew
## 1.141410              jackscrew assembly's
## 1.141411                   assembly's acme
## 1.141412                          acme nut
## 1.141413                        nut thread
## 1.141416                  component failed
## 1.141420                    excessive wear
## 1.141421                    wear resulting
## 1.141424                   alaska airlines
## 1.141425             airlines insufficient
## 1.141426          insufficient lubrication
## 1.141430                jackscrew assembly
## 1.141431             assembly contributing
## 1.141437                   alaska airlines
## 1.141438                 airlines extended
## 1.141439              extended lubrication
## 1.141440              lubrication interval
## 1.141444                  federal aviation
## 1.141445         aviation administration's
## 1.141446         administration's approval
## 1.141459            inadequate lubrication
## 1.141464                    excessive wear
## 1.141468                          acme nut
## 1.141469                       nut threads
## 1.141472                   alaska airlines
## 1.141473                 airlines extended
## 1.141476                        play check
## 1.141477                    check interval
## 1.141481                    faa's approval
## 1.141489                    excessive wear
## 1.141493                          acme nut
## 1.141494                       nut threads
## 1.141515                 mcdonnell douglas
## 1.141516                        douglas md
## 1.141517                             md 80
## 1.141521                         fail safe
## 1.141522                    safe mechanism
## 1.141527              catastrophic effects
## 1.141530                        total acme
## 1.141531                          acme nut
## 1.141532                        nut thread
## 1.141533                       thread loss
## 1.141534                      loss cynthia
## 1.141535                       cynthia oti
## 1.141536                         oti radio
## 1.141537                   radio financial
## 1.141538                    financial talk
## 1.141541                         host dean
## 1.141542                      dean forshee
## 1.141543                 forshee guitarist
## 1.141544                    guitarist jean
## 1.141545                  jean gandesberry
## 1.141546             gandesberry columnist
## 1.141547                     columnist tom
## 1.141548                      tom stockley
## 1.141549                stockley columnist
## 1.141554                    killed crashed
## 1.141560                       cargo plane
## 1.141561                        plane lost
## 1.141562                     lost altitude
## 1.141571                      auto salvage
## 1.141572                      salvage yard
## 1.141579                     pitch control
## 1.141580                 control resulting
## 1.141588                  elevator control
## 1.141589                       control tab
## 1.141599                   properly secure
## 1.141604                   attachment bolt
## 1.141611                   burbank airport
## 1.141614                     plane overran
## 1.141617                   runway collided
## 1.141621                       metal blast
## 1.141622                       blast fence
## 1.141626                 airport perimeter
## 1.141627                    perimeter wall
## 1.141635                       city street
## 1.141639                       gas station
## 1.141642                     plane touched
## 1.141646                         182 knots
## 1.141647                       knots 2,150
## 1.141648                        2,150 feet
## 1.141649                         feet past
## 1.141652                  runway threshold
## 1.141671                 accident sequence
## 1.141674                         nose gear
## 1.141675                    gear collapsed
## 1.141678                   forward service
## 1.141679                      service door
## 1.141680                           door 1r
## 1.141681                         1r escape
## 1.141682                      escape slide
## 1.141683                    slide inflated
## 1.141684                   inflated inside
## 1.141690                      forward dual
## 1.141691                       dual flight
## 1.141692                  flight attendant
## 1.141693                attendant jumpseat
## 1.141700                 flight attendants
## 1.141701              attendants partially
## 1.141702               partially collapsed
## 1.141705              passengers sustained
## 1.141710                     41 passengers
## 1.141714                 captain sustained
## 1.141715                   sustained minor
## 1.141716                    minor injuries
## 1.141719            flightcrew's excessive
## 1.141720                excessive airspeed
## 1.141723                       flight path
## 1.141724                        path angle
## 1.141739               stabilized approach
## 1.141740                 approach criteria
## 1.141744                  met contributing
## 1.141751          controller's positioning
## 1.141764                      safe options
## 1.141776                  aircraft climbed
## 1.141783                            100 ft
## 1.141784                        ft stalled
## 1.141785                      stalled lost
## 1.141786                      lost control
## 1.141789                       crashed ice
## 1.141790                         ice build
## 1.141795                       wings flaps
## 1.141796                 flaps incorrectly
## 1.141797                   incorrectly set
## 1.141798                       set crashed
## 1.141802               jungle mountainside
## 1.141803                   mountainside 15
## 1.141804                          15 miles
## 1.141805                       miles short
## 1.141811                          en route
## 1.141819                          2,500 ft
## 1.141820                          ft level
## 1.141824                          2,790 ft
## 1.141825                       ft mountain
## 1.141826                  mountain weather
## 1.141837                       cargo plane
## 1.141838                     plane entered
## 1.141841                        steep nose
## 1.141844                   attitude banked
## 1.141852                        pilot lost
## 1.141853                      lost control
## 1.141865                   aborted landing
## 1.141869                         ice strip
## 1.141872                 aircraft's center
## 1.141878                   accident flight
## 1.141894                 aircraft's weight
## 1.141901                      flight leaks
## 1.141905                     heater shroud
## 1.141906                    shroud allowed
## 1.141907                    allowed carbon
## 1.141908                   carbon monoxide
## 1.141909                      monoxide gas
## 1.141912               contaminate cockpit
## 1.141915                         cabin air
## 1.141916                       air crashed
## 1.141923                      poor weather
## 1.141950                     crashed short
## 1.141956                       cargo plane
## 1.141957                       plane broke
## 1.141967                   aircraft leased
## 1.141971                 ukrainian company
## 1.141972                   company overran
## 1.141983                   aborted takeoff
## 1.141984                     takeoff brake
## 1.141985                     brake failure
## 1.141989                   pilot attempted
## 1.141999                     crew reported
## 1.142000                   reported engine
## 1.142001                    engine trouble
## 1.142002                        trouble 10
## 1.142003                        10 minutes
## 1.142009                          en route
## 1.142014                 liberation tigers
## 1.142015                  tigers confessed
## 1.142018                   firing missiles
## 1.142027                   training flight
## 1.142028                    flight pitched
## 1.142033                      wing dropped
## 1.142037                   airplane struck
## 1.142038                      struck trees
## 1.142039                      trees struck
## 1.142040                      struck wires
## 1.142041                      wires caught
## 1.142042                       caught fire
## 1.142048                   pilot's failure
## 1.142051                  maintain control
## 1.142058                    final approach
## 1.142059                approach resulting
## 1.142063                 airplane striking
## 1.142064                    striking trees
## 1.142065                     trees factors
## 1.142071                 improper planning
## 1.142080                  proper alignment
## 1.142086                   military flight
## 1.142087                    flight crashed
## 1.142094                    striking birds
## 1.142095                      birds unable
## 1.142102                  aircraft circled
## 1.142103                     circled davao
## 1.142104                     davao airport
## 1.142115                coconut plantation
## 1.142119                 mountainous samal
## 1.142120                      samal island
## 1.142123                     plane aborted
## 1.142126                  previous landing
## 1.142127                   landing attempt
## 1.142135                    runway weather
## 1.142146                   landing attempt
## 1.142153                         low lying
## 1.142154                      lying clouds
## 1.142166                           7 miles
## 1.142172                    final approach
## 1.142182            aircraft disintegrated
## 1.142187                       mt kalangan
## 1.142193                     accident site
## 1.142197                          500 feet
## 1.142200                         sea level
## 1.142212                        1,500 feet
## 1.142218                      plane struck
## 1.142219                      struck trees
## 1.142226                    runway crashed
## 1.142232                   landing attempt
## 1.142235                         crew shut
## 1.142239                          1 engine
## 1.142252                      lyon satolas
## 1.142253                     satolas power
## 1.142259                  remaining engine
## 1.142263                      plane banked
## 1.142267                      left causing
## 1.142274                      ground crash
## 1.142277                        catch fire
## 1.142278                         fire loss
## 1.142283                      roll control
## 1.142294                    monitor flight
## 1.142295                   flight symmetry
## 1.142302                   thrust increase
## 1.142309                       cargo plane
## 1.142310                     plane crashed
## 1.142314                     cloud covered
## 1.142315                  covered mountain
## 1.142321                    charter flight
## 1.142322                        flight hit
## 1.142328               mountain inadequate
## 1.142329                   inadequate crew
## 1.142330                 crew coordination
## 1.142331                  coordination led
## 1.142335                captain's decision
## 1.142340               instrument approach
## 1.142341                approach procedure
## 1.142346               maneuvering descent
## 1.142347                    descent solely
## 1.142350                 visual references
## 1.142358               mountainous terrain
## 1.142361                       crew failed
## 1.142366               instrument approach
## 1.142367                approach procedure
## 1.142371                    copilot failed
## 1.142374                  provide accurate
## 1.142375              accurate information
## 1.142378                 terrain clearance
## 1.142386               instrument approach
## 1.142389                    charter flight
## 1.142390                    flight crashed
## 1.142400                     plane crashed
## 1.142404                      heavily wood
## 1.142415                      wilkes barre
## 1.142416                    barre scranton
## 1.142417            scranton international
## 1.142418             international airport
## 1.142419                airport visibility
## 1.142424                          wind low
## 1.142425                        low clouds
## 1.142428                        light rain
## 1.142436                    pilot reported
## 1.142449                     plane crashed
## 1.142450             crashed investigation
## 1.142451            investigation revealed
## 1.142452              revealed indications
## 1.142458                       left engine
## 1.142467                       power level
## 1.142476              propellers exhibited
## 1.142486                    impact failure
## 1.142494                   adequate supply
## 1.142509                        engine due
## 1.142512                   fuel exhaustion
## 1.142516             intermittent stoppage
## 1.142520                       left engine
## 1.142521                    engine failure
## 1.142529                      plane's fuel
## 1.142534               flightcrews failure
## 1.142537              maintain directional
## 1.142538               directional control
## 1.142542                  initial stoppage
## 1.142545                   hijacker robbed
## 1.142546                 robbed passengers
## 1.142547                 passengers jumped
## 1.142555                homemade parachute
## 1.142562                           jump en
## 1.142563                          en route
## 1.142570                          6,000 ft
## 1.142573                 pilot transmitted
## 1.142576                  mayday reporting
## 1.142608                     reach whyalla
## 1.142616                       position 15
## 1.142617                             15 nm
## 1.142638                      spencer gulf
## 1.142642               morning malfunction
## 1.142646                       engines due
## 1.142657              fractured connecting
## 1.142658                    connecting rod
## 1.142662                       left engine
## 1.142663                        engine led
## 1.142670                     power setting
## 1.142675                    engine leading
## 1.142680                          6 piston
## 1.142692                      hard landing
## 1.142693                     landing short
## 1.142704                   heavy rainstorm
## 1.142713                 whuan's wanjiatun
## 1.142714                 wanjiatun airport
## 1.142719                        heavy rain
## 1.142726                 lightning causing
## 1.142732                        crash half
## 1.142736                     plane crashed
## 1.142744                      half crashed
## 1.142751                    hanjiang river
## 1.142757                         shitai 15
## 1.142758                          15 miles
## 1.142763                     people aboard
## 1.142769                     southern bank
## 1.142788                     crash shortly
## 1.142793                 aircraft impacted
## 1.142813                    visual lookout
## 1.142818             maneuvering resulting
## 1.142823                  flight collision
## 1.142826              subsequent collision
## 1.142831                   terrain crashed
## 1.142838                       test flight
## 1.142839                     flight engine
## 1.142865                   fishermen major
## 1.142868                   santiago madrid
## 1.142869                      madrid chief
## 1.142873             southwestern military
## 1.142874                  military command
## 1.142875                    command killed
## 1.142878                     plane crashed
## 1.142882                  heavily forested
## 1.142885                          42 miles
## 1.142886                   miles southeast
## 1.142900                       time flying
## 1.142901                        flying vfr
## 1.142902                     vfr deviation
## 1.142905                     avoid weather
## 1.142906                  weather resulted
## 1.142909            spatial disorientation
## 1.142920                       safe flying
## 1.142921                   flying altitude
## 1.142928                       cargo plane
## 1.142931                         19 people
## 1.142932                     people aboard
## 1.142944                          2 engine
## 1.142957                positioning flight
## 1.142958                    flight crashed
## 1.142961                      rugged woods
## 1.142969                 pilot's continued
## 1.142970                     continued vfr
## 1.142971                        vfr flight
## 1.142974                    imc conditions
## 1.142979                 maintain altitude
## 1.142984                    vfr conditions
## 1.142992            subsequently impacting
## 1.142995                     trees factors
## 1.143001                reduced visibility
## 1.143002                    visibility due
## 1.143005                        dark night
## 1.143010                 additional factor
## 1.143019                 instrument flight
## 1.143034                    crew attempted
## 1.143042                   landing attempt
## 1.143053                     lost altitude
## 1.143062              gardanibagh district
## 1.143079                      aircraft due
## 1.143082                        crew error
## 1.143090                  correct approach
## 1.143091                approach procedure
## 1.143115                    stall recovery
## 1.143116                recovery procedure
## 1.143117               procedure resulting
## 1.143121                      actual stall
## 1.143125                     aircraft loss
## 1.143130                 subsequent impact
## 1.143140                       cargo plane
## 1.143141                        plane crew
## 1.143142                    crew requested
## 1.143145                   nearest airport
## 1.143163                 meduxnekeag river
## 1.143168                 command's failure
## 1.143171                  maintain minimum
## 1.143172                   minimum control
## 1.143173                  control airspeed
## 1.143181                   control factors
## 1.143192                      engine power
## 1.143195              undetermined reasons
## 1.143199                     cruise flight
## 1.143203                 airplane's single
## 1.143204                     single engine
## 1.143205                    engine service
## 1.143206                   service ceiling
## 1.143209                       cargo plane
## 1.143210                        plane lost
## 1.143215                      takeoff lost
## 1.143216                     lost altitude
## 1.143219                         crashed 2
## 1.143220                           2 miles
## 1.143221                        miles east
## 1.143230                  sightseeing tour
## 1.143231                      tour crashed
## 1.143237                    western slopes
## 1.143245                        2,850 feet
## 1.143246                    feet inclement
## 1.143247                 inclement weather
## 1.143250                aircraft struggled
## 1.143253                     gain altitude
## 1.143259                        charles de
## 1.143260                         de gaulle
## 1.143261                    gaulle airport
## 1.143264                    pilot reported
## 1.143268                          2 engine
## 1.143269                     engine failed
## 1.143276                        le bourget
## 1.143277                  bourget airfield
## 1.143282                      fire trailed
## 1.143285                        jet's left
## 1.143286                         left wing
## 1.143293                     gain altitude
## 1.143304                     hotel complex
## 1.143307                       metal strip
## 1.143308                        strip left
## 1.143315                      plane gashed
## 1.143320                  concorde's tires
## 1.143346                         fuel tank
## 1.143349                electrical severed
## 1.143355                    rubber sparked
## 1.143358                   ignited leaking
## 1.143359                      leaking fuel
## 1.143360                      fuel ignited
## 1.143365               uncontrollable fire
## 1.143366                        fire power
## 1.143376                         2 engines
## 1.143388                  subsequent crash
## 1.143389               crash investigation
## 1.143390            investigation revealed
## 1.143393                       metal strip
## 1.143398                   thrust reverser
## 1.143402              continental airlines
## 1.143403                       airlines dc
## 1.143404                             dc 10
## 1.143405                             10 30
## 1.143406                     30 registered
## 1.143407                 registered n13067
## 1.143410                    departed paris
## 1.143413                        flight 055
## 1.143426                  aviation history
## 1.143429                 french government
## 1.143430              government convicted
## 1.143431             convicted continental
## 1.143435              continental mechanic
## 1.143442                     appeals court
## 1.143443                    court reversed
## 1.143446                  decision crashed
## 1.143450                   training flight
## 1.143453                  aircraft crashed
## 1.143457                   churia mountain
## 1.143458                    mountain range
## 1.143461                          4,300 ft
## 1.143462                             ft 20
## 1.143463                        20 minutes
## 1.143467                         30 minute
## 1.143468                     minute flight
## 1.143477               helicopter exploded
## 1.143485                          1,000 ft
## 1.143488                  aircraft crashed
## 1.143495                    pilot reported
## 1.143501                      puerto montt
## 1.143505                     ice formation
## 1.143513                          found 15
## 1.143514                           15 days
## 1.143519                 aircraft collided
## 1.143525                jersey subdivision
## 1.143526            subdivision scattering
## 1.143527                 scattering debris
## 1.143539                   lakehurst naval
## 1.143540                         naval air
## 1.143541                       air station
## 1.143547            northeast philadelphia
## 1.143548              philadelphia airport
## 1.143551                    navajo crashed
## 1.143556                       story house
## 1.143560                     seminole fell
## 1.143564                     soybean field
## 1.143579                  pilot instructor
## 1.143586                  seminole failure
## 1.143602                   maintain proper
## 1.143603                   proper airspace
## 1.143604               airspace separation
## 1.143607                     visual flight
## 1.143608                      flight rules
## 1.143613              approaching tshikapa
## 1.143617                    pilot informed
## 1.143628                      landing gear
## 1.143631                        tower told
## 1.143638                           low fly
## 1.143648                 emergency landing
## 1.143652                     pilot refused
## 1.143661                     plane crashed
## 1.143662                        crashed 40
## 1.143663                          40 miles
## 1.143664                       miles north
## 1.143669                  aircraft crashed
## 1.143673                      persian gulf
## 1.143684             bahrain international
## 1.143685             international airport
## 1.143688                      crew decided
## 1.143693                   missed approach
## 1.143707                 fast instructions
## 1.143713                        180 degree
## 1.143719                        2,500 feet
## 1.143724                   missed approach
## 1.143727                    plane suddenly
## 1.143728                suddenly descended
## 1.143729                 descended rapidly
## 1.143735                        1,000 feet
## 1.143741                    shallow waters
## 1.143745                gulf approximately
## 1.143746                   approximately 1
## 1.143747                            1 mile
## 1.143759                 fatal combination
## 1.143762                 factors including
## 1.143765                 captain's failure
## 1.143770                standard operating
## 1.143771              operating procedures
## 1.143775                 copilot's actions
## 1.143781               captain's attention
## 1.143791                   standard flight
## 1.143792                 flight parameters
## 1.143800            spatial disorientation
## 1.143803                    ground warning
## 1.143804                   warning systems
## 1.143811                  falsely perceive
## 1.143825                   input resulting
## 1.143829                 aircraft starting
## 1.143834                  aircraft warning
## 1.143835                   warning systems
## 1.143841                 increase altitude
## 1.143842                     altitude flew
## 1.143845                      mt montezuma
## 1.143846                 montezuma shortly
## 1.143849                   departing perth
## 1.143859                 assigned altitude
## 1.143862                          pilotã â
## 1.143863                               â â
## 1.143868            significantly impaired
## 1.143872                   appeared unable
## 1.143877                  ats instructions
## 1.143880          microphone transmissions
## 1.143885                         8 minutes
## 1.143886                  minutes revealed
## 1.143889         progressive deterioration
## 1.143903                passenger activity
## 1.143909                    human response
## 1.143930                 aircraft impacted
## 1.143933                         ground 65
## 1.143934                             65 km
## 1.143935                            km ese
## 1.143938              burketown queensland
## 1.143942          destroyed incapacitation
## 1.143952                 hypobaric hypoxia
## 1.143953                       hypoxia due
## 1.143961           partially unpressurised
## 1.143966            receiving supplemental
## 1.143967               supplemental oxygen
## 1.143989              receive supplemental
## 1.143990               supplemental oxygen
## 1.143993                         air force
## 1.143994                  force helicopter
## 1.143999                   domestic flight
## 1.144005               mountainous terrain
## 1.144006                        terrain 75
## 1.144007                             75 km
## 1.144012                     helicopterã â
## 1.144013                               â â
## 1.144018                     contacted air
## 1.144019                       air traffic
## 1.144020               traffic controllers
## 1.144032                      altitude sri
## 1.144033                         sri lanka
## 1.144034                      lanka muslim
## 1.144035                   muslim congress
## 1.144036                   congress leader
## 1.144041                        ashraff 52
## 1.144052                 aircraft overshot
## 1.144057                    reynosa mexico
## 1.144064                     houses coming
## 1.144072                 accident happened
## 1.144076                   heavy rainstorm
## 1.144099                     killed aboard
## 1.144112                   chartered cargo
## 1.144113                       cargo plane
## 1.144114                         plane hit
## 1.144115                          hit tree
## 1.144116                         tree tops
## 1.144133                 instrument flight
## 1.144136                  pilot apparently
## 1.144137              apparently continued
## 1.144144                     visual flight
## 1.144145                      flight rules
## 1.144148             encountering marginal
## 1.144149                  marginal weather
## 1.144150                weather conditions
## 1.144153                reduced visibility
## 1.144156              undetermined reasons
## 1.144159                   pilot descended
## 1.144166               terrain surrounding
## 1.144169                airstrip resulting
## 1.144173                 controlled flight
## 1.144176                  terrain accident
## 1.144185                 pilot's excessive
## 1.144186                 excessive takeoff
## 1.144187                  takeoff rotation
## 1.144191                        aft center
## 1.144194                   gravity takeoff
## 1.144197                rearward migration
## 1.144206                  consequent shift
## 1.144210                    airplane's aft
## 1.144211                           aft c.g
## 1.144217                           aft c.g
## 1.144218                         c.g limit
## 1.144232             recovery contributing
## 1.144238           bombardier's inadequate
## 1.144239                 inadequate flight
## 1.144240                   flight planning
## 1.144241               planning procedures
## 1.144245                 challenger flight
## 1.144246                       flight test
## 1.144247                      test program
## 1.144255                  site operational
## 1.144256             operational oversight
## 1.144259                  transport canada
## 1.144263                  federal aviation
## 1.144264           aviation administration
## 1.144267                       twin engine
## 1.144268                     engine cessna
## 1.144269                    cessna crashed
## 1.144273                    densely wooded
## 1.144276                          30 miles
## 1.144277                       miles south
## 1.144280                          st louis
## 1.144281                          louis 25
## 1.144282                        25 minutes
## 1.144288                     parks airport
## 1.144300                    pilot reported
## 1.144305                        6,500 feet
## 1.144312                artificial horizon
## 1.144313                     horizon radar
## 1.144314                     radar contact
## 1.144321                aircraft witnesses
## 1.144322                witnesses reported
## 1.144323                  reported hearing
## 1.144333                explosion wreckage
## 1.144341                      mel carnahan
## 1.144342                       carnahan 66
## 1.144343                       66 governor
## 1.144355                     campaign aide
## 1.144359                         son roger
## 1.144367                  aircraft crashed
## 1.144373                          4,800 ft
## 1.144376                      poor weather
## 1.144383                          sam neua
## 1.144384               neua communications
## 1.144393                     approached mt
## 1.144394                         mt tirina
## 1.144397                        4,250 feet
## 1.144398                    feet preparing
## 1.144408                rapidly descending
## 1.144411               mountainous terrain
## 1.144419                     plane crashed
## 1.144430                        heavy rain
## 1.144431                   rain navigation
## 1.144432                  navigation error
## 1.144440                       final stage
## 1.144444                  landing approach
## 1.144445                    approach error
## 1.144449                        batumi atc
## 1.144462                    crew erroneous
## 1.144463                    erroneous data
## 1.144464                        data shown
## 1.144467                      ground radio
## 1.144468                   radio technical
## 1.144469              technical facilities
## 1.144472                    batumi airport
## 1.144475                 aircraft exploded
## 1.144478                         midair 20
## 1.144479                        20 minutes
## 1.144485                     saurimo unita
## 1.144486                      unita rebels
## 1.144487                    rebels claimed
## 1.144493                     plane weather
## 1.144494                weather conditions
## 1.144500                    extremely poor
## 1.144501                          poor due
## 1.144504                     typhoon xiang
## 1.144505                        xiang sane
## 1.144508                      notam issued
## 1.144511                            aug 31
## 1.144512                           31 2000
## 1.144516                        runway 05r
## 1.144519                        closed due
## 1.144524                            sep 13
## 1.144527                            nov 22
## 1.144534                        taxiway np
## 1.144540                        taxiway n1
## 1.144546                        180 degree
## 1.144550                        runway 05r
## 1.144555                      takeoff roll
## 1.144556                roll approximately
## 1.144557                 approximately 3.5
## 1.144561                       reaching v1
## 1.144564                      aircraft hit
## 1.144565                  hit construction
## 1.144566            construction equipment
## 1.144570                    runway crashed
## 1.144575                      ground broke
## 1.144583                   pilot attempted
## 1.144590                     closed runway
## 1.144594               factors contributed
## 1.144609                    correct runway
## 1.144619                    airport lacked
## 1.144620                      lacked guard
## 1.144621                      guard lights
## 1.144626                   pilots navigate
## 1.144633                    correct runway
## 1.144638                   poor visibility
## 1.144639          visibility international
## 1.144640         international regulations
## 1.144641               regulations require
## 1.144658                     closed runway
## 1.144668                         runway 5r
## 1.144682                contentious matter
## 1.144686                   runway remained
## 1.144690                       taxiing due
## 1.144694                        blown tire
## 1.144699                     pilot aborted
## 1.144702                   takeoff overran
## 1.144713                       caught fire
## 1.144718                       cargo plane
## 1.144719                      plane struck
## 1.144720                      struck trees
## 1.144721                     trees crashed
## 1.144724                       caught fire
## 1.144732                           hand ac
## 1.144733                            ac bus
## 1.144738                       low ceiling
## 1.144744                       low ceiling
## 1.144745                     ceiling night
## 1.144749                execssive workload
## 1.144752                 pilot experienced
## 1.144758                electrical failure
## 1.144766                     plane crashed
## 1.144775                           field 3
## 1.144776                           3 miles
## 1.144780                    runway shortly
## 1.144783                    takeoff engine
## 1.144784                    engine failure
## 1.144789                         16,000 ft
## 1.144792                   crew descovered
## 1.144793                  descovered cabin
## 1.144794                    cabin pressure
## 1.144808                           ram air
## 1.144809                        air switch
## 1.144810                     switch failed
## 1.144815                  aircraft moments
## 1.144819                     left foreward
## 1.144820                     foreward door
## 1.144821                     door exploded
## 1.144826                  flight attendant
## 1.144830               tarmac destabilized
## 1.144831             destabilized approach
## 1.144832                approach attempted
## 1.144835                  establish runway
## 1.144836                  runway alignment
## 1.144837            alignment insufficient
## 1.144838             insufficient altitude
## 1.144839                   altitude struck
## 1.144844                  aircraft crashed
## 1.144847                       caught fire
## 1.144850                        antonov 12
## 1.144851                         12 planes
## 1.144852                   planes collided
## 1.144855                    midair killing
## 1.144863                     ground struck
## 1.144864                     struck timika
## 1.144865                       timika peak
## 1.144868                         11,800 ft
## 1.144869                        ft shortly
## 1.144874                 controlled flight
## 1.144879                       cargo plane
## 1.144880                     plane crashed
## 1.144883                         table top
## 1.144884                      top mountain
## 1.144887                          en route
## 1.144890             airplane flightcrew's
## 1.144891              flightcrew's failure
## 1.144894                 maintain adequate
## 1.144895                 adequate distance
## 1.144896                 distance altitude
## 1.144899               mountainous terrain
## 1.144903                   departure climb
## 1.144906                     cruise flight
## 1.144910              captain's impairment
## 1.144913                     drugs factors
## 1.144919                        dark night
## 1.144920                  night conditions
## 1.144925              officer's impairment
## 1.144930                      plane caught
## 1.144931                       caught fire
## 1.144932                      fire shortly
## 1.144938                    ciudad bolivar
## 1.144945                    refueling stop
## 1.144959                  rolling inverted
## 1.144965                neighborhood south
## 1.144975                    charter flight
## 1.144978                  jefferson county
## 1.144979                    county airport
## 1.144982               stillwater oklahoma
## 1.144983                    oklahoma radio
## 1.144986                     radar contact
## 1.144989                           lost 20
## 1.144990                             20 30
## 1.144991                        30 minutes
## 1.145000                    reached 23,000
## 1.145001                       23,000 feet
## 1.145004                  aircraft crashed
## 1.145017                           farm 40
## 1.145018                          40 miles
## 1.145019                        miles east
## 1.145025                        light snow
## 1.145028                         1.5 miles
## 1.145029                  miles visibility
## 1.145046             university basketball
## 1.145047                   basketball team
## 1.145061                          pilotã â
## 1.145062                               â â
## 1.145065            spatial disorientation
## 1.145066          disorientation resulting
## 1.145072                 maintain positive
## 1.145073                   positive manual
## 1.145074                    manual control
## 1.145082            flight instrumentation
## 1.145083      instrumentation contributing
## 1.145095                    a.c electrical
## 1.145096                  electrical power
## 1.145099         instrument meteorological
## 1.145100         meteorological conditions
## 1.145109                     cargo plane's
## 1.145110                   plane's landing
## 1.145111                      landing gear
## 1.145112                       gear struck
## 1.145115                      ground short
## 1.145128                          1 engine
## 1.145135                           low oil
## 1.145136                      oil pressure
## 1.145139                        plane flew
## 1.145143                     control tower
## 1.145152                      landing gear
## 1.145160                         left main
## 1.145161                      main landing
## 1.145162                      landing gear
## 1.145187                    ground crashed
## 1.145193                       caught fire
## 1.145196                 plane experienced
## 1.145197           experienced asymetrical
## 1.145198                asymetrical thrust
## 1.145201                      takeoff rose
## 1.145202                          rose 200
## 1.145203                           200 300
## 1.145204                            300 ft
## 1.145205                        ft stalled
## 1.145213                    flight failure
## 1.145217                        left power
## 1.145218                       power plant
## 1.145219                 plant appromately
## 1.145220                     appromately 3
## 1.145221                         3 minutes
## 1.145227                inadequate conduct
## 1.145235                       short final
## 1.145238                  airplane stalled
## 1.145243                        low height
## 1.145249                       left engine
## 1.145254           intergranular fractures
## 1.145257                   retention posts
## 1.145262                  pressure turbine
## 1.145263                      turbine disk
## 1.145269                 incorrect service
## 1.145270                      service life
## 1.145271                   life recordings
## 1.145281                 exceeded impacted
## 1.145282                    impacted trees
## 1.145293              maintaining altitude
## 1.145294                altitude clearance
## 1.145298               circling instrument
## 1.145299               instrument approach
## 1.145300                  approach factors
## 1.145306                command initiating
## 1.145311                    proper weather
## 1.145312                 weather reporting
## 1.145313              reporting facilities
## 1.145324             alternate destination
## 1.145332                    faa procedures
## 1.145333             procedures directives
## 1.145349                    faa procedures
## 1.145350             procedures directives
## 1.145354                        dark night
## 1.145358                       low ceiling
## 1.145361                      losing radio
## 1.145362                     radio contact
## 1.145370                   observed flying
## 1.145371                        flying low
## 1.145377                    mountainside 2
## 1.145378                              2 nm
## 1.145381                jakobkondre double
## 1.145382                     double engine
## 1.145383                    engine failure
## 1.145390                       cargo plane
## 1.145399                     estuary icing
## 1.145410                      oceana naval
## 1.145411                         naval air
## 1.145412                       air station
## 1.145417                witnesses observed
## 1.145420                     plane gliding
## 1.145424                   losing altitude
## 1.145430                  ground exploding
## 1.145433                      flames heavy
## 1.145434                        heavy rain
## 1.145448                   accident weight
## 1.145449                 weight imbalances
## 1.145463                     cargo shifted
## 1.145480                 plane unbalancing
## 1.145487                        hit severe
## 1.145488                 severe turbulence
## 1.145504                 aircraft exploded
## 1.145507                       caught fire
## 1.145508                           fire 35
## 1.145509                        35 minutes
## 1.145513                 scheduled takeoff
## 1.145519                        cabin crew
## 1.145524                     people aboard
## 1.145530                    time witnesses
## 1.145538                    flames erupted
## 1.145539                    erupted aboard
## 1.145542                     aircraft ntsb
## 1.145543                ntsb investigators
## 1.145544            investigators reported
## 1.145548                       center fuel
## 1.145549                         fuel tank
## 1.145550                     tank exploded
## 1.145556                           tank 18
## 1.145557                        18 minutes
## 1.145568                       center fuel
## 1.145569                         fuel tank
## 1.145574                  air conditioning
## 1.145575                conditioning packs
## 1.145578                     generate heat
## 1.145582                   running nonstop
## 1.145583                     nonstop prior
## 1.145595                      medina saudi
## 1.145596                      saudi arabia
## 1.145604                     people killed
## 1.145611                   prinses juliana
## 1.145612                   juliana airport
## 1.145615                        st maarten
## 1.145619                         15 minute
## 1.145620                     minute flight
## 1.145623                           st jean
## 1.145624                      jean airport
## 1.145627                       st barthãƒâ
## 1.145628                     barthãƒâ lãƒâ
## 1.145636                       st barthãƒâ
## 1.145637                     barthãƒâ lãƒâ
## 1.145641                      plane veered
## 1.145642                    veered sharply
## 1.145648                  plunged straight
## 1.145658                    flames weather
## 1.145669                approaching juanda
## 1.145673                         8th touch
## 1.145679                   aircraft banked
## 1.145683                      left crashed
## 1.145686                       caught fire
## 1.145692                    final approach
## 1.145695                       sardy field
## 1.145699                     crashed short
## 1.145706                    hill northwest
## 1.145710                   airport killing
## 1.145715                       jet crashed
## 1.145720                      hillside 500
## 1.145721                         500 yards
## 1.145722                       yards short
## 1.145726                     runway jumped
## 1.145735                   bluff exploding
## 1.145738                   flames wreckage
## 1.145743                         100 yards
## 1.145747                        light snow
## 1.145750                     mist reported
## 1.145762                     flight crew's
## 1.145763                  crew's operation
## 1.145770                   minimum descent
## 1.145771                  descent altitude
## 1.145776                  visual reference
## 1.145791                    landing curfew
## 1.145796                  aircraft crashed
## 1.145802                 sandstorm killing
## 1.145803                   killing sudan's
## 1.145804                    sudan's deputy
## 1.145805                    deputy defense
## 1.145806                  defense minister
## 1.145811                  ranking military
## 1.145812                 military officers
## 1.145815               helicopter carrying
## 1.145828                        u.s troops
## 1.145829                    troops missing
## 1.145835                       vietnam war
## 1.145836                       war crashed
## 1.145842                         heavy fog
## 1.145845                  aircraft crashed
## 1.145848                       rugged farm
## 1.145849                         farm land
## 1.145850                          land 120
## 1.145851                         120 miles
## 1.145852                       miles south
## 1.145855                      buenos aires
## 1.145858                    icing agostino
## 1.145859                    agostino rocca
## 1.145860                   rocca president
## 1.145864                      buenos aires
## 1.145865                       aires based
## 1.145866                     based techint
## 1.145867              techint construction
## 1.145871                     german sopena
## 1.145872                   sopena managing
## 1.145873                   managing editor
## 1.145877               argentine newspaper
## 1.145878                      newspaper la
## 1.145879                         la nacion
## 1.145890                        steep dive
## 1.145893                       17,000 feet
## 1.145899                   field hydraulic
## 1.145900                 hydraulic failure
## 1.145901                    failure caused
## 1.145906                  aircraft crashed
## 1.145911                          12 miles
## 1.145912                       miles south
## 1.145915                           sari 55
## 1.145916                        55 minutes
## 1.145927                    gorgan shortly
## 1.145931                        tower lost
## 1.145932                      lost contact
## 1.145938                    pilot reported
## 1.145939                      reported bad
## 1.145940                       bad weather
## 1.145950                  tehran transport
## 1.145951                transport minister
## 1.145954                       iran rahman
## 1.145955                     rahman dadman
## 1.145956                         dadman 45
## 1.145957                         45 killed
## 1.145958                    killed shortly
## 1.145964                      plane veered
## 1.145973                      field engine
## 1.145974                    engine failure
## 1.145975                   failure crashed
## 1.145978                          en route
## 1.145981                 aircraft returned
## 1.145984                   sentani airport
## 1.145987               experiencing engine
## 1.145988                    engine trouble
## 1.145989                   trouble skidded
## 1.145999                     plane crashed
## 1.146006                siberian woodlands
## 1.146014                          21 miles
## 1.146019                  aircraft crashed
## 1.146027                  landing approach
## 1.146032                 intermediate stop
## 1.146045                          2,600 ft
## 1.146048                     audible alarm
## 1.146049                     alarm sounded
## 1.146050                sounded indicating
## 1.146053                        wide angle
## 1.146056                     attack eleven
## 1.146061                    aircraft swung
## 1.146064                       180 degrees
## 1.146069                         flat spin
## 1.146089                         plane hit
## 1.146092                      ground belly
## 1.146098                        burned.ã â
## 1.146099                       â incorrect
## 1.146100                 incorrect actions
## 1.146104                          crew due
## 1.146107                poor communication
## 1.146115                  wrong parameters
## 1.146118                   landing causing
## 1.146126                       wrong angle
## 1.146132                     plane stalled
## 1.146147                helicopter crashed
## 1.146158             electric transmission
## 1.146159                transmission tower
## 1.146166                     heavy monsoon
## 1.146167                     monsoon rains
## 1.146168                        rains poor
## 1.146169                   poor visibility
## 1.146175                      pilot stated
## 1.146178                      lost control
## 1.146189                       sudden gust
## 1.146194                  aircraft crashed
## 1.146197                    burned moments
## 1.146204                bartholomew salãƒâ
## 1.146210                    national guard
## 1.146211               guard demonstration
## 1.146215                   engine appeared
## 1.146222                    critical stage
## 1.146229                       8 civilians
## 1.146232                        5 military
## 1.146233                military personnel
## 1.146234                   personnel board
## 1.146237                       cargo plane
## 1.146243                chkalovsky airport
## 1.146249             construction material
## 1.146258                          150 feet
## 1.146265                      burned 1,600
## 1.146266                        1,600 feet
## 1.146267                         feet past
## 1.146279                          15 tones
## 1.146282                       cargo plane
## 1.146283                     plane crashed
## 1.146294                   follow standard
## 1.146295                standard operating
## 1.146296              operating procedures
## 1.146297                   procedures crew
## 1.146298                      crew fatigue
## 1.146301            sightseeing helicopter
## 1.146302                helicopter crashed
## 1.146307                        3,700 feet
## 1.146311                        5,600 foot
## 1.146312                        foot grand
## 1.146313                        grand wash
## 1.146314                       wash cliffs
## 1.146321                      grand canyon
## 1.146322                   canyon national
## 1.146323                     national park
## 1.146330            mccarran international
## 1.146331             international airport
## 1.146341                 victims including
## 1.146353                  pilot's decision
## 1.146361                     flight regime
## 1.146367                  density altitude
## 1.146368              altitude environment
## 1.146371           significantly decreased
## 1.146374          helicopter's performance
## 1.146375          performance capabilities
## 1.146376            capabilities resulting
## 1.146390              factors contributing
## 1.146397                  density altitude
## 1.146401                  pilot's decision
## 1.146410               precipitous terrain
## 1.146413               effectively limited
## 1.146414                  limited remedial
## 1.146415                  remedial options
## 1.146420                     engine failed
## 1.146423                     crew declared
## 1.146434                        crashed 10
## 1.146435                             10 km
## 1.146436                          km short
## 1.146440                   airport shortly
## 1.146446                       cargo plane
## 1.146447                     plane crashed
## 1.146455                         half mile
## 1.146461                   pilot's failure
## 1.146466                      proper climb
## 1.146467                        climb rate
## 1.146479            spatial disorientation
## 1.146480            disorientation factors
## 1.146487                    low visibility
## 1.146490                  cloud conditions
## 1.146494                        dark night
## 1.146497                     crew reported
## 1.146514                         lajes afb
## 1.146515                       afb shortly
## 1.146532                       reach lajes
## 1.146535                        airbus 330
## 1.146538                      engine power
## 1.146539                      power glided
## 1.146543                        20 minutes
## 1.146544                minutes descending
## 1.146550                         30,000 ft
## 1.146553                    landing safely
## 1.146556                     lajes airport
## 1.146559                        tires blew
## 1.146567              quickly extinguished
## 1.146570                   emergency crews
## 1.146571                      crews eleven
## 1.146572                 eleven passengers
## 1.146575                  slightly injured
## 1.146583                      damaged fuel
## 1.146584                         fuel feed
## 1.146585                         feed pipe
## 1.146594                     aft hydraulic
## 1.146595                    hydraulic pump
## 1.146596                    pump mechanics
## 1.146600                 completely follow
## 1.146603                       rolls royce
## 1.146604                     royce service
## 1.146605                  service bulletin
## 1.146608                 addition software
## 1.146609               software mistakenly
## 1.146610             mistakenly identified
## 1.146613                         fuel leak
## 1.146617                    fuel imbalance
## 1.146618               imbalance prompting
## 1.146623               respond erroneously
## 1.146629                   official report
## 1.146630                     report stated
## 1.146636                  pilots responded
## 1.146637             responded incorrectly
## 1.146641                         fuel leak
## 1.146644                      pilots acted
## 1.146658                      caution note
## 1.146662                    fuel imbalance
## 1.146663               imbalance checklist
## 1.146682                         fuel leak
## 1.146685                    aircraft crash
## 1.146686                      crash landed
## 1.146692                      ruiz picasso
## 1.146693                   picasso airport
## 1.146696                         mãƒâ laga
## 1.146700                    final approach
## 1.146703                    pilot reported
## 1.146704                  reported failure
## 1.146708                      plane's left
## 1.146709                       left engine
## 1.146710                    engine forcing
## 1.146717                 emergency landing
## 1.146720                     plane crashed
## 1.146721                     crashed 1,300
## 1.146722                          1,300 ft
## 1.146723                          ft short
## 1.146743              dulles international
## 1.146744             international airport
## 1.146754              deliberately crashed
## 1.146775                  hijacked shortly
## 1.146779                        left logan
## 1.146780               logan international
## 1.146781             international airport
## 1.146793              deliberately crashed
## 1.146798                       north tower
## 1.146802                       world trade
## 1.146803                      trade center
## 1.146809                       99th floors
## 1.146812                 approximately 450
## 1.146813                           450 mph
## 1.146816                       102 minutes
## 1.146819                building collapsed
## 1.146836                  hijacked shortly
## 1.146840                        left logan
## 1.146841               logan international
## 1.146842             international airport
## 1.146854              deliberately crashed
## 1.146859                       south tower
## 1.146863                       world trade
## 1.146864                      trade center
## 1.146870                       84th floors
## 1.146873                 approximately 550
## 1.146874                           550 mph
## 1.146877                        56 minutes
## 1.146880                building collapsed
## 1.146902              newark international
## 1.146903             international airport
## 1.146917                    washington d.c
## 1.146920                   struggle ensued
## 1.146930                     plane crashed
## 1.146943          pennsylvania countryside
## 1.146958                  aircraft crashed
## 1.146959                       crashed 4.4
## 1.146960                         4.4 miles
## 1.146963                      kura airport
## 1.146964                   airport shortly
## 1.146968                    normal takeoff
## 1.146976                        1,500 feet
## 1.146988                       air traffic
## 1.146989                traffic controller
## 1.146997                  suddenly plunged
## 1.147007                    belo horizonte
## 1.147010               cabin depressurized
## 1.147011             depressurized causing
## 1.147022                 emergency landing
## 1.147030                     77 passengers
## 1.147031                 passengers aboard
## 1.147032                   aboard suffered
## 1.147033                    suffered minor
## 1.147034                    minor injuries
## 1.147035           injuries pressurization
## 1.147043                       33,000 feet
## 1.147048              engine disintegrated
## 1.147049             disintegrated causing
## 1.147050                    causing pieces
## 1.147058                     cabin windows
## 1.147066                guatemala's aurora
## 1.147067                    aurora airport
## 1.147071                        lost power
## 1.147084                 aircraft exploded
## 1.147087                           mid air
## 1.147090                         36,000 ft
## 1.147093                          en route
## 1.147097                         black sea
## 1.147102                        nose dived
## 1.147103                    dived crashing
## 1.147116                 ukrainian surface
## 1.147119                       air missile
## 1.147120                     missile fired
## 1.147123                military exercises
## 1.147126                  seaplane crashed
## 1.147129                       mollet lake
## 1.147136                  seaplane stalled
## 1.147146                        pilot time
## 1.147154                    stall occurred
## 1.147157           circumstances conducive
## 1.147160                 illusions created
## 1.147165                             md 87
## 1.147166                       87 aircraft
## 1.147172                    linate airport
## 1.147177                   poor visibility
## 1.147183                     german cessna
## 1.147184                   cessna citation
## 1.147185                       citation ii
## 1.147186                       ii business
## 1.147187                      business jet
## 1.147190                             md 87
## 1.147191                        87 rotated
## 1.147210                    sustain flight
## 1.147223                 airport's baggage
## 1.147224                  baggage handling
## 1.147225                 handling building
## 1.147226                 building bursting
## 1.147239                     paris entered
## 1.147242                     active runway
## 1.147259                        hold short
## 1.147269                            6 crew
## 1.147273                             md 87
## 1.147276                      2 passengers
## 1.147279                            2 crew
## 1.147293                             md 87
## 1.147296                        named lage
## 1.147297                       lage viking
## 1.147298                     viking caused
## 1.147302                       human error
## 1.147307                 safety procedures
## 1.147310              improper terminology
## 1.147315               tower communication
## 1.147332                aviation standards
## 1.147343                   poor visibility
## 1.147346               inadequately marked
## 1.147347                    marked airport
## 1.147348                 airport landmarks
## 1.147351                     control tower
## 1.147352                   tower operators
## 1.147353                  operators failed
## 1.147373                      ground radar
## 1.147374                      radar runway
## 1.147375                     runway motion
## 1.147376                    motion sensors
## 1.147384                        20 minutes
## 1.147397                          en route
## 1.147400                   barcelona spain
## 1.147403                      oran algeria
## 1.147404                        algeria 80
## 1.147405                          80 miles
## 1.147411                    valencia spain
## 1.147415                 informed valencia
## 1.147416                      valencia atc
## 1.147427                         avoid bad
## 1.147428                       bad weather
## 1.147437                   aircraft debris
## 1.147446                  water electrical
## 1.147447                  electrical power
## 1.147454                  lightning strike
## 1.147455                    strike control
## 1.147461                  airplane crashed
## 1.147465                       sea shortly
## 1.147473                   aircraft's wing
## 1.147474                       wing dipped
## 1.147477                      nose pitched
## 1.147503                       flight loss
## 1.147506                 control resulting
## 1.147509                     upper surface
## 1.147510                       surface ice
## 1.147511                 ice contamination
## 1.147517                    command failed
## 1.147523              preflight inspection
## 1.147527             airplane contributing
## 1.147537              preflight inspection
## 1.147538            inspection requirement
## 1.147541                            ce 208
## 1.147542                        208 pilots
## 1.147547                       close range
## 1.147550                     upper surface
## 1.147556                 ice contamination
## 1.147559                      ground icing
## 1.147560                  icing conditions
## 1.147561                  conditions exist
## 1.147564                     air ambulance
## 1.147575                    required climb
## 1.147576                       climb angle
## 1.147586                     positive rate
## 1.147598             somatogravic illusion
## 1.147606                    captain losing
## 1.147607                losing situational
## 1.147608             situational awareness
## 1.147621                  instrument rated
## 1.147624                          skid hit
## 1.147631                        tail rotor
## 1.147635                helicopter crashed
## 1.147638                   pilot's failure
## 1.147641                maintain clearance
## 1.147653          intentionally attempting
## 1.147659                      low altitude
## 1.147663                     cruise flight
## 1.147664                    flight factors
## 1.147665                   factors include
## 1.147666                   include falling
## 1.147667                      falling snow
## 1.147668                          snow low
## 1.147669                      low ceilings
## 1.147670                 ceilings whiteout
## 1.147671                  whiteout greyout
## 1.147672                greyout conditions
## 1.147675                       flat glassy
## 1.147676                      glassy water
## 1.147687                     climbing left
## 1.147691                          2,800 ft
## 1.147696                   plane including
## 1.147699               vertical stabilizer
## 1.147702                       rudder fell
## 1.147710                      lost control
## 1.147716                        nose dived
## 1.147722          residential neighborhood
## 1.147728                   wake turbulence
## 1.147738              flight investigators
## 1.147744                      quick rudder
## 1.147745                     rudder swings
## 1.147749                   copilot whipped
## 1.147757                         fin broke
## 1.147761           national transportation
## 1.147762             transportation safety
## 1.147763                      safety board
## 1.147768                       pilot error
## 1.147774               sharply criticizing
## 1.147775              criticizing american
## 1.147776                 american airlines
## 1.147777                 airlines advanced
## 1.147778                 advanced aircraft
## 1.147779              aircraft maneuvering
## 1.147780               maneuvering program
## 1.147786                 american airlines
## 1.147787                    airlines pilot
## 1.147788                    pilot training
## 1.147789                 training included
## 1.147792                simulator exercise
## 1.147806                  exaggerated view
## 1.147812                   wake turbulence
## 1.147813            turbulence erroneously
## 1.147814             erroneously associate
## 1.147815                    associate wake
## 1.147816                   wake turbulence
## 1.147817             turbulence encounters
## 1.147823                   aggressive roll
## 1.147824                        roll upset
## 1.147825                    upset recovery
## 1.147826               recovery techniques
## 1.147829                   develop control
## 1.147830                control strategies
## 1.147839            potentially surprising
## 1.147842                confusing response
## 1.147858                           300 600
## 1.147859                        600 rudder
## 1.147860                    rudder control
## 1.147861                    control system
## 1.147866             potentially hazardous
## 1.147867                  hazardous rudder
## 1.147868                      rudder pedal
## 1.147869                      pedal inputs
## 1.147873                airspeed residents
## 1.147874                   residents heard
## 1.147877                        loud noise
## 1.147884                         night sky
## 1.147888                  aircraft clipped
## 1.147889                  clipped treetops
## 1.147892                      summer homes
## 1.147898                      snowy forest
## 1.147899                   forest wreckage
## 1.147905                          1.5 mile
## 1.147909            maintenance violations
## 1.147912            operational procedures
## 1.147923                       cargo plane
## 1.147929                     gain altitude
## 1.147930                   altitude veered
## 1.147938                undetermined pilot
## 1.147949                   airplane's nose
## 1.147953                   takeoff attempt
## 1.147959              maintain directional
## 1.147960               directional control
## 1.147966              captain's inadequate
## 1.147967               inadequate remedial
## 1.147968                   remedial action
## 1.147973                   takeoff attempt
## 1.147978                 airplane departed
## 1.147983                     plane crashed
## 1.147987                   marshy forested
## 1.147991                       2 kilometer
## 1.147992                   kilometer short
## 1.147998                    kardla airport
## 1.148017                    final approach
## 1.148026                         5.5 miles
## 1.148029                    zurich airport
## 1.148038                         runway 28
## 1.148047                           4000 ft
## 1.148050                    final approach
## 1.148055                  captain reported
## 1.148056                 reported reaching
## 1.148059                   minimum descent
## 1.148060                  descent altitude
## 1.148068                    ground shortly
## 1.148072                   radio altimeter
## 1.148073                altimeter reported
## 1.148074                      reported 500
## 1.148075                            500 ft
## 1.148076                            ft agl
## 1.148081                   minimum warning
## 1.148095                   aircraft struck
## 1.148096                      struck trees
## 1.148099                  crashed american
## 1.148100                      american pop
## 1.148101                        pop singer
## 1.148102                    singer melanie
## 1.148103                  melanie thornton
## 1.148104                       thornton 34
## 1.148105                         34 killed
## 1.148106                      killed maria
## 1.148107                      maria serano
## 1.148108                     serano serano
## 1.148111                       nathaly van
## 1.148112                           van het
## 1.148113                          het ende
## 1.148121                         pop music
## 1.148122                        music trio
## 1.148123                      trio passion
## 1.148124                     passion fruit
## 1.148135                          13 hours
## 1.148145                  exceeded maximum
## 1.148146                      maximum duty
## 1.148152                    days preceding
## 1.148157                 controlled flight
## 1.148160                    terrain caused
## 1.148164              captain deliberately
## 1.148165           deliberately descending
## 1.148169                   minimum descent
## 1.148170                  descent altitude
## 1.148175                   required visual
## 1.148176                    visual contact
## 1.148181                   approach lights
## 1.148201                   minimum descent
## 1.148202                  descent altitude
## 1.148205                   report revealed
## 1.148213                   perform correct
## 1.148214                correct navigation
## 1.148217                landing procedures
## 1.148234                     plane crashed
## 1.148242                 jeppesen approach
## 1.148243                    approach chart
## 1.148251                     hilly terrain
## 1.148256                         runway 28
## 1.148263                      minimum safe
## 1.148264                     safe altitude
## 1.148265                  altitude warning
## 1.148266                      warning msaw
## 1.148267                       msaw system
## 1.148275                      minimum safe
## 1.148276                     safe altitude
## 1.148282                   airport's means
## 1.148285            determining visibility
## 1.148290                         runway 28
## 1.148294                   visual minimums
## 1.148308                 standard approach
## 1.148311                         runway 28
## 1.148314                       cargo plane
## 1.148315                   plane contacted
## 1.148318                        ground 700
## 1.148319                        700 meters
## 1.148320                      meters short
## 1.148324                      runway broke
## 1.148331                        fire broke
## 1.148338                          en route
## 1.148348                 emergency landing
## 1.148352                   explosions tore
## 1.148356                     plane causing
## 1.148369                 allied democratic
## 1.148370                 democratic forces
## 1.148371                     forces rebels
## 1.148374                  aircraft crashed
## 1.148377                       el silencio
## 1.148378                       silencio de
## 1.148379                             de el
## 1.148380                     el manzanillo
## 1.148381               manzanillo mountain
## 1.148384                          7,800 ft
## 1.148385                              ft 3
## 1.148386                         3 minutes
## 1.148392                        heavy rain
## 1.148395                   poor visibility
## 1.148398                  medellin airport
## 1.148401                  aircraft crashed
## 1.148405                       weser river
## 1.148406                     river shortly
## 1.148412               bremerhaven airport
## 1.148424                      died shortly
## 1.148439                         left wing
## 1.148440                    wing contacted
## 1.148441                  contacted ground
## 1.148444                      fire erupted
## 1.148448                    aircraft broke
## 1.148456                            de ice
## 1.148465                  crew performance
## 1.148469                  combined effects
## 1.148474                 prescription drug
## 1.148475                          drug jet
## 1.148476                           jet lag
## 1.148482                considered factors
## 1.148488                   aircraft struck
## 1.148494                      hundred feet
## 1.148495                        feet short
## 1.148500                      poor weather
## 1.148505                       cargo plane
## 1.148506                      plane struck
## 1.148507                      struck mount
## 1.148508                       mount santa
## 1.148509                       santa maria
## 1.148510                       maria vieja
## 1.148511                          vieja 35
## 1.148512                             35 km
## 1.148520                   poor visibility
## 1.148524                   landing attempt
## 1.148529                     aircraft left
## 1.148532                     runway struck
## 1.148535                concrete perimeter
## 1.148536                    perimeter wall
## 1.148537                   wall overturned
## 1.148542                  government plane
## 1.148543                    plane belonged
## 1.148551                    judge advocate
## 1.148554                 aircraft suffered
## 1.148563                  torrential rains
## 1.148574                 emergency landing
## 1.148578                     bengawan solo
## 1.148579                        solo river
## 1.148582                     shallow water
## 1.148585                     plane circled
## 1.148599                      plane's left
## 1.148600                         left wing
## 1.148601                       wing struck
## 1.148604                        river bank
## 1.148615                         crew flew
## 1.148618                   extreme weather
## 1.148622                        heavy rain
## 1.148634                        radar view
## 1.148642                  partially failed
## 1.148643                    failed battery
## 1.148654                 engines producing
## 1.148657                  total electrical
## 1.148658                electrical failure
## 1.148661                  flight attendant
## 1.148662                 attendant drowned
## 1.148666                     shallow water
## 1.148675                     plane crashed
## 1.148678                         del cerro
## 1.148679                          cerro el
## 1.148680                          el tigre
## 1.148681                    tigre mountain
## 1.148693                         14,700 ft
## 1.148696                         35 minute
## 1.148697                     minute flight
## 1.148700                  transporting oil
## 1.148701                       oil workers
## 1.148705                        remote oil
## 1.148706                         oil field
## 1.148707                     field crashed
## 1.148708                       crashed 2km
## 1.148709                         2km short
## 1.148716                     luena airport
## 1.148723                        heavy rain
## 1.148726                  airliner crashed
## 1.148730                   fogbound 15,721
## 1.148731                         15,721 ft
## 1.148732                         ft nevado
## 1.148733                         nevado de
## 1.148734                         de cumbal
## 1.148735                    cumbal volcano
## 1.148739                   andes mountains
## 1.148743                 ecuador colombian
## 1.148744                  colombian border
## 1.148745                        border air
## 1.148746                       air traffic
## 1.148747                   traffic control
## 1.148748                      control lost
## 1.148749                      lost contact
## 1.148758               colombian territory
## 1.148763                       snow capped
## 1.148764                   capped mountain
## 1.148765                    mountain peaks
## 1.148771                 ecuadorian border
## 1.148772                       border city
## 1.148778                  pilot's decision
## 1.148792            minimum meteorological
## 1.148793         meteorological conditions
## 1.148794            conditions established
## 1.148798                company's standard
## 1.148799                standard operating
## 1.148800               operating procedure
## 1.148801              procedure inadequate
## 1.148802             inadequate navigation
## 1.148813                command consistent
## 1.148818                   holding pattern
## 1.148829                         230 knots
## 1.148835                        bank angle
## 1.148838                        15 degrees
## 1.148839                 degrees exceeding
## 1.148842                     maximum limit
## 1.148845                         180 knots
## 1.148846                  knots stipulated
## 1.148854                        bank angle
## 1.148855                    angle inferior
## 1.148859                    recommended 25
## 1.148862                        30 degrees
## 1.148865                 departing holding
## 1.148866                   holding pattern
## 1.148867                  pattern obstacle
## 1.148868               obstacle protection
## 1.148869                protection leading
## 1.148876                    cumbal volcano
## 1.148877                   volcano crashed
## 1.148886                         heavy fog
## 1.148890                        sefid kouh
## 1.148891                     kouh mountain
## 1.148892                    mountain range
## 1.148902                 totally destroyed
## 1.148911                    mountain pilot
## 1.148912                       pilot error
## 1.148915                       cargo plane
## 1.148916                     plane crashed
## 1.148923                 emergency landing
## 1.148930                 emergency landing
## 1.148934                 previous attempts
## 1.148937                        heavy snow
## 1.148940                      strong winds
## 1.148944                  clipped treetops
## 1.148950               field approximately
## 1.148951               approximately 1.5km
## 1.148952                       1.5km short
## 1.148958               helicopter ferrying
## 1.148959                      ferrying u.s
## 1.148960                        u.s troops
## 1.148964                 counter terrorism
## 1.148965                terrorism exercise
## 1.148966                  exercise crashed
## 1.148970                            sea 30
## 1.148971                        30 minutes
## 1.148975                 scheduled arrival
## 1.148978                     mactan island
## 1.148988                          u.s army
## 1.148989                      army chinook
## 1.148995                          en route
## 1.148998                       cargo plane
## 1.148999                    plane impacted
## 1.149010                          6,167 ft
## 1.149011                          ft pilot
## 1.149012                       pilot error
## 1.149025                      track change
## 1.149030                   required flight
## 1.149031                 flight parameters
## 1.149039                suitable alternate
## 1.149040                 alternate airport
## 1.149043                          en route
## 1.149044                          route 35
## 1.149045                        35 minutes
## 1.149051                          bi plane
## 1.149052                     plane crashed
## 1.149055                       santa clara
## 1.149071                       strong gust
## 1.149074                     wind possibly
## 1.149078                      tornado tore
## 1.149086                         left wing
## 1.149089                       cargo plane
## 1.149090                     plane crashed
## 1.149099                         runway 27
## 1.149102                       cargo plane
## 1.149103                     plane crashed
## 1.149109                  runway threshold
## 1.149116                        runway 24l
## 1.149119                  aircraft crashed
## 1.149125                          fog wind
## 1.149134                    kimhae airport
## 1.149137                  strong southerly
## 1.149138                    southerly wind
## 1.149139                     wind required
## 1.149155                  aircraft crashed
## 1.149161                        mt mulbong
## 1.149162             mulbong approximately
## 1.149163                   approximately 3
## 1.149164                            3 mile
## 1.149165                        mile north
## 1.149171                     plane bounced
## 1.149183                       1,000 trees
## 1.149202                       flight crew
## 1.149203                    crew performed
## 1.149206                 circling approach
## 1.149213                    weather minima
## 1.149216                         wide body
## 1.149217                     body aircraft
## 1.149218                     aircraft b767
## 1.149219                          b767 200
## 1.149226                 approach briefing
## 1.149232                   missed approach
## 1.149240                        air chinaã
## 1.149241                          chinaã â
## 1.149242                               â â
## 1.149247                  training manuals
## 1.149250                       flight crew
## 1.149251                    crew exercised
## 1.149252                    exercised poor
## 1.149253                         poor crew
## 1.149254                     crew resource
## 1.149255               resource management
## 1.149258                  lost situational
## 1.149259             situational awareness
## 1.149263                 circling approach
## 1.149266                        runway 18r
## 1.149276                 circling approach
## 1.149286                        captainã â
## 1.149287                               â â
## 1.149294                       timely base
## 1.149298                       flight crew
## 1.149304                   missed approach
## 1.149308                        lost sight
## 1.149315                 circling approach
## 1.149318                        runway 18r
## 1.149326                  terrain mountain
## 1.149334                   officer advised
## 1.149357                  officer initiate
## 1.149360                   missed approach
## 1.149372                   prison national
## 1.149373                national institute
## 1.149374                   institute inpec
## 1.149377                     fly prisoners
## 1.149388                   finished flying
## 1.149389                         flying 50
## 1.149390                      50 prisoners
## 1.149408                    aircraft nosed
## 1.149412                    ground shortly
## 1.149418                 helicopter struck
## 1.149419                      struck power
## 1.149420                       power lines
## 1.149427               visibility governor
## 1.149430             krasnoyarsk territory
## 1.149431               territory alexander
## 1.149432                   alexander lebed
## 1.149433                          lebed 52
## 1.149438                      killed power
## 1.149439                        power line
## 1.149440                        line power
## 1.149441                        power line
## 1.149449                       pilot thick
## 1.149450                         thick fog
## 1.149451                    fog concealing
## 1.149454                     frost covered
## 1.149455                     covered power
## 1.149456                        power line
## 1.149457                          line led
## 1.149461                  helicopter crash
## 1.149464                  aircraft crashed
## 1.149475                 densely populated
## 1.149476            populated neighborhood
## 1.149479            gwammaja approximately
## 1.149480                 approximately 1.2
## 1.149481                         1.2 miles
## 1.149484                kano international
## 1.149485             international airport
## 1.149486                   airport shortly
## 1.149496                    engine failure
## 1.149502                     takeoff prior
## 1.149506                       fatal crash
## 1.149509                 aircraft involved
## 1.149519                previous occasions
## 1.149522                    perform engine
## 1.149523                engine maintenance
## 1.149526                      jet airliner
## 1.149527                  airliner crashed
## 1.149531                        hillside 4
## 1.149532                           4 miles
## 1.149536                    tunis carthage
## 1.149537                  carthage airport
## 1.149541                   pilot attempted
## 1.149548                   plane's landing
## 1.149549                      landing gear
## 1.149559                    tunis carthage
## 1.149560                  carthage airport
## 1.149572                     fresh landing
## 1.149576                     plane crashed
## 1.149579                        heavy rain
## 1.149590                     rough weather
## 1.149591                weather conditions
## 1.149595                 pilot's inability
## 1.149603                             md 82
## 1.149604                        82 crashed
## 1.149608                        dalian bay
## 1.149609                            bay 12
## 1.149610                          12 miles
## 1.149611                        miles east
## 1.149614                    dalian airport
## 1.149617                    pilot reported
## 1.149620                       fire aboard
## 1.149626                      cabin lights
## 1.149633                   plane impacting
## 1.149660                   bought multiple
## 1.149661                multiple insurance
## 1.149662                insurance policies
## 1.149669                     plane crashed
## 1.149670             crashed approximately
## 1.149671                  approximately 12
## 1.149672                          12 miles
## 1.149681               passengers departed
## 1.149684                     port harcourt
## 1.149695               premature departure
## 1.149702                    normal minimum
## 1.149703                      minimum safe
## 1.149704                     safe altitude
## 1.149707                          2,500 ft
## 1.149710                       air traffic
## 1.149711              traffic controller's
## 1.149712            controller's clearance
## 1.149721              contributing factors
## 1.149745               unfavorable weather
## 1.149746                weather conditions
## 1.149749                       low ceiling
## 1.149754               impaired visibility
## 1.149758                     critical time
## 1.149763                    flight crashed
## 1.149767                            sea 31
## 1.149768                          31 miles
## 1.149769                          miles ne
## 1.149773                  penghu pescadore
## 1.149774                 pescadore islands
## 1.149778                     taiwan strait
## 1.149781                 plane disappeared
## 1.149788                         35,000 ft
## 1.149789                  ft approximately
## 1.149790                  approximately 20
## 1.149791                        20 minutes
## 1.149797                        chiang kai
## 1.149798                          kai shek
## 1.149799                      shek airport
## 1.149804                     distress call
## 1.149813                     time military
## 1.149814                    military radar
## 1.149815                    radar revealed
## 1.149818            aircraft disintegrated
## 1.149821                   midair breaking
## 1.149829                        225 bodies
## 1.149834                    carrier failed
## 1.149839                   preventive anti
## 1.149840                         anti rust
## 1.149841                    rust operation
## 1.149845                     timely manner
## 1.149853                   1980 tailstrike
## 1.149857                 properly repaired
## 1.149860                    fatigue cracks
## 1.149861                     cracks formed
## 1.149864                    eventually led
## 1.149868                structural failure
## 1.149871                  aircraft crashed
## 1.149876                        heavy rain
## 1.149879                          en route
## 1.149882                    private postal
## 1.149883                    postal service
## 1.149884                     service plane
## 1.149885                     plane crashed
## 1.149889               outeniqua mountains
## 1.149892                    outeniqua pass
## 1.149896                   missed approach
## 1.149899                    george airport
## 1.149902                  aircraft crashed
## 1.149909                landing attempting
## 1.149910                   attempting poor
## 1.149911                      poor weather
## 1.149912                weather conditions
## 1.149915                     south african
## 1.149916                   african cricket
## 1.149917                   cricket captain
## 1.149918                    captain hansie
## 1.149919                     hansie cronje
## 1.149920                         cronje 32
## 1.149924                  passenger aboard
## 1.149931                        crew pilot
## 1.149932                       pilot error
## 1.149935                       pilot broke
## 1.149945                       cargo plane
## 1.149950                     heed warnings
## 1.149961                helicopter crashed
## 1.149964                      poor weather
## 1.149972                       remote town
## 1.149976                symbolic surrender
## 1.149979                         arms held
## 1.149982                      unita rebels
## 1.149985                       top ranking
## 1.149986                  ranking generals
## 1.149999                     night mission
## 1.150002                        remove u.s
## 1.150003                       u.s special
## 1.150004                    special forces
## 1.150005                     forces troops
## 1.150008                     plane crashed
## 1.150009                       crashed 2.5
## 1.150010                         2.5 miles
## 1.150014               airstrip overloaded
## 1.150017                   excessive cargo
## 1.150018                      cargo weight
## 1.150019                     weight loaded
## 1.150028                        sardeh dam
## 1.150029                       dam landing
## 1.150030                      landing zone
## 1.150035                       cargo plane
## 1.150036                    plane collided
## 1.150039                  southern germany
## 1.150042                         35,400 ft
## 1.150043                         ft debris
## 1.150049                           20 mile
## 1.150050                       mile radius
## 1.150051                      radius fifty
## 1.150057                     beach holiday
## 1.150062                         69 aboard
## 1.150067                     tupolev pilot
## 1.150068                    pilot received
## 1.150069            received contradictory
## 1.150070        contradictory instructions
## 1.150073               collision avoidance
## 1.150074                 avoidance warning
## 1.150075                    warning system
## 1.150076                       system tcas
## 1.150077                         tcas told
## 1.150089                         swiss air
## 1.150090                       air traffic
## 1.150091                traffic controller
## 1.150099                     russian plane
## 1.150103               immediately respond
## 1.150115                        command 14
## 1.150124                   planes collided
## 1.150127                    tupolev's tcas
## 1.150136                     boeing's tcas
## 1.150145                         swiss air
## 1.150146                       air traffic
## 1.150147                traffic controller
## 1.150152                  tupolev's pilots
## 1.150157                       air traffic
## 1.150158                traffic controller
## 1.150170                     russian pilot
## 1.150173           receiving contradictory
## 1.150174         contradictory instruction
## 1.150178                      cockpit tcas
## 1.150185                     pilot russian
## 1.150186                  russian aviation
## 1.150187                aviation officials
## 1.150191                   pilot correctly
## 1.150197                     control tower
## 1.150200                  western aviation
## 1.150201                  aviation experts
## 1.150212                   cockpit warning
## 1.150238                   accepted policy
## 1.150243                         swiss air
## 1.150244                       air control
## 1.150245                   control company
## 1.150248              addition maintenance
## 1.150249                 maintenance crews
## 1.150254                   computer system
## 1.150255                    system limited
## 1.150258          controller's information
## 1.150262               receiving including
## 1.150263                including conflict
## 1.150264                    conflict alert
## 1.150265                    alert warnings
## 1.150266                    warnings sadly
## 1.150275                  controller peter
## 1.150276                     peter nielsen
## 1.150298                  aircraft crashed
## 1.150299                         crashed 2
## 1.150300                           2 miles
## 1.150301                       miles short
## 1.150308           guitangola neighborhood
## 1.150332                      injuries air
## 1.150333                       air traffic
## 1.150334                   traffic control
## 1.150335                      control lost
## 1.150336                      lost contact
## 1.150340                       aircraft 15
## 1.150341                        15 minutes
## 1.150352                        found atop
## 1.150355                          5,300 ft
## 1.150356                       ft mountain
## 1.150357               mountain surrounded
## 1.150360                      thick jungle
## 1.150361                          jungle 5
## 1.150362                           5 miles
## 1.150370                  ferrying workers
## 1.150374                           gas rig
## 1.150378                      oil platform
## 1.150382                         north sea
## 1.150392                          speed 28
## 1.150393                          28 miles
## 1.150394                   miles northeast
## 1.150405                            320 ft
## 1.150406                         ft flying
## 1.150410                    south easterly
## 1.150411                  easterly heading
## 1.150417                      rotor blades
## 1.150418                     blades failed
## 1.150426                      broken rotor
## 1.150427                       rotor blade
## 1.150428                      blade caused
## 1.150431                   fatigue brought
## 1.150436                  lightning strike
## 1.150442                      aircraft hit
## 1.150450                            hill 6
## 1.150451                           6 miles
## 1.150452                       miles north
## 1.150457                      poor weather
## 1.150458                weather conditions
## 1.150459               conditions wreckage
## 1.150468                             su 76
## 1.150471             performing aerobatics
## 1.150485                   skniliv airport
## 1.150506                        steep dive
## 1.150516                 pilots parachuted
## 1.150519                      safety pilot
## 1.150520                       pilot error
## 1.150526                      flight plans
## 1.150529                 performed untried
## 1.150532             complicated maneuvers
## 1.150544                     jail sentence
## 1.150550                 russian passenger
## 1.150551                passenger airliner
## 1.150555                   training flight
## 1.150556                    flight crashed
## 1.150557                   crashed shortly
## 1.150562             moscow's sheremetyevo
## 1.150563              sheremetyevo airport
## 1.150571                            600 ft
## 1.150574                      plane banked
## 1.150575                       banked hard
## 1.150576                         hard left
## 1.150577                          left hit
## 1.150582                  exploded sixteen
## 1.150585                    18 crewmembers
## 1.150586                crewmembers aboard
## 1.150591                 flight attendants
## 1.150592               attendants survived
## 1.150593            survived investigation
## 1.150594            investigation revealed
## 1.150598          stabilizer spontaneously
## 1.150599             spontaneously shifted
## 1.150623                     control stick
## 1.150624                     stick forward
## 1.150634                    regain control
## 1.150640                    military plane
## 1.150641                     plane crashed
## 1.150645                      mountain top
## 1.150646                 top approximately
## 1.150647                  approximately 10
## 1.150648                          10 miles
## 1.150649                       miles south
## 1.150652                          san juan
## 1.150653                       juan puerto
## 1.150654                       puerto rico
## 1.150657                     rough terrain
## 1.150660                    performing low
## 1.150661                         low level
## 1.150662                    level training
## 1.150663                training exercises
## 1.150664               exercises witnesses
## 1.150665                witnesses reported
## 1.150670                        flying low
## 1.150680                   ravine bursting
## 1.150698                    military plane
## 1.150699                   plane developed
## 1.150700                  developed engine
## 1.150701                    engine trouble
## 1.150704                          en route
## 1.150716                       paddy field
## 1.150722                 russian transport
## 1.150723              transport helicopter
## 1.150724               helicopter carrying
## 1.150725                   carrying troops
## 1.150726                    troops crashed
## 1.150729                  russian military
## 1.150730              military headquarter
## 1.150734                      capital city
## 1.150737                  grozny reporting
## 1.150740                       engine fire
## 1.150743                   pilot attempted
## 1.150748                 emergency landing
## 1.150752                   helicopter fell
## 1.150758                          660 feet
## 1.150765                          990 feet
## 1.150766                      feet crashed
## 1.150769                       caught fire
## 1.150777                 chechen guerillas
## 1.150781                 shoulder launched
## 1.150782                     launched heat
## 1.150783                      heat seeking
## 1.150784                      seeking anti
## 1.150785                     anti aircraft
## 1.150786                  aircraft missile
## 1.150789                 missile destroyed
## 1.150802                       left engine
## 1.150803                    engine stopped
## 1.150810                  entire hydraulic
## 1.150811                 hydraulic control
## 1.150812                    control system
## 1.150813                  system including
## 1.150821                         rear door
## 1.150827                      burning fuel
## 1.150828                       fuel gushed
## 1.150832                    cabin trapping
## 1.150833                   trapping people
## 1.150834                     people inside
## 1.150839                  worst helicopter
## 1.150840               helicopter disaster
## 1.150843                  aviation history
## 1.150846                     plane crashed
## 1.150850                            hill 3
## 1.150851                           3 miles
## 1.150852                   miles southeast
## 1.150855                   pokhara airport
## 1.150861                       plane broke
## 1.150878                      poor weather
## 1.150888               accident controlled
## 1.150889                 controlled flight
## 1.150894                         twin prop
## 1.150895                        prop plane
## 1.150896                     plane crashed
## 1.150902                         dense fog
## 1.150910                          ayan atc
## 1.150911                          atc lost
## 1.150912                      lost contact
## 1.150916                       aircraft 12
## 1.150917                        12 minutes
## 1.150935                        radar crew
## 1.150936                        crew error
## 1.150939                     plane crashed
## 1.150942                            1 mile
## 1.150943                        mile short
## 1.150949                        heavy rain
## 1.150952                      strong winds
## 1.150959                        rio branco
## 1.150960                    branco airport
## 1.150961               airport congressman
## 1.150962             congressman ildefonso
## 1.150963                ildefonso cordeiro
## 1.150976                 plane disappeared
## 1.150979                      curitiba atc
## 1.150990                    crater unknown
## 1.150994                   hunting charter
## 1.150995                   charter crashed
## 1.150996                  crashed inverted
## 1.151006                     agunish river
## 1.151013                weather conditions
## 1.151019                   trouble judging
## 1.151024                 vertical distance
## 1.151033                  aircraft crashed
## 1.151037                     navy aircraft
## 1.151038                   aircraft flying
## 1.151044                    military flyby
## 1.151045                     flyby crashed
## 1.151049                    wings collided
## 1.151052                     plane crashed
## 1.151085                     plane crashed
## 1.151086                         crashed 6
## 1.151087                           6 miles
## 1.151088                       miles short
## 1.151094                    findel airport
## 1.151101                         heavy fog
## 1.151102                          fog crew
## 1.151103                        crew error
## 1.151104                      error caused
## 1.151125                  standard actions
## 1.151126                  actions resulted
## 1.151129                       severe loss
## 1.151132                      airspeed due
## 1.151136                  propeller blades
## 1.151139             accidentally switched
## 1.151142                  reverse position
## 1.151145                 subsequent impact
## 1.151146                      impact short
## 1.151150               runway contributing
## 1.151162           security recommendation
## 1.151172                         fokker 50
## 1.151173                      50 operators
## 1.151180           adequately communicated
## 1.151184                      flight crews
## 1.151201                            1 mile
## 1.151204                    juwata airport
## 1.151207                     pilot radioed
## 1.151218                    engine failure
## 1.151223                positioning flight
## 1.151226                     plane entered
## 1.151229              uncontrolled descent
## 1.151234               pilot's inadvertent
## 1.151235                inadvertent flight
## 1.151238                     mountain wave
## 1.151239                      wave weather
## 1.151240                weather conditions
## 1.151243                     imc resulting
## 1.151249                  aircraft control
## 1.151252                 plane experienced
## 1.151253               experienced failure
## 1.151257                       left engine
## 1.151258                    engine shortly
## 1.151264                      ninoy aquino
## 1.151265                    aquino airport
## 1.151268                    pilot declared
## 1.151274                  aircraft ditched
## 1.151277                        manila bay
## 1.151284                         half mile
## 1.151285                     mile offshore
## 1.151286                     offshore fuel
## 1.151287                   fuel starvation
## 1.151288                starvation failure
## 1.151299                        fuel valve
## 1.151304                    observe safety
## 1.151305                  safety standards
## 1.151308                     measures poor
## 1.151309                   poor management
## 1.151312            maintenance procedures
## 1.151315                     plane crashed
## 1.151318                 developing engine
## 1.151319                    engine trouble
## 1.151330                        masai mara
## 1.151331                     mara national
## 1.151332                  national reserve
## 1.151341                     aircraft flew
## 1.151351                  inaugural flight
## 1.151354                     gohu airstrip
## 1.151358              finisterre mountains
## 1.151365                       cargo plane
## 1.151366                      plane struck
## 1.151367                      struck trees
## 1.151375                   pilot's failure
## 1.151378                  maintain control
## 1.151385                      ils approach
## 1.151386                  approach factors
## 1.151394                      low ceilings
## 1.151397                   winds crosswind
## 1.151400                        wind shear
## 1.151401                  shear conditions
## 1.151406                          en route
## 1.151409                     stall warning
## 1.151410                   warning sounded
## 1.151414                      stick shaker
## 1.151415                  shaker activated
## 1.151421                       cargo plane
## 1.151422                plane disconnected
## 1.151429                      gain control
## 1.151453               ukrainian passenger
## 1.151454                   passenger plane
## 1.151455                     plane crashed
## 1.151461                             70 km
## 1.151466                    losing contact
## 1.151469                ground controllers
## 1.151470              controllers improper
## 1.151475                global positioning
## 1.151476                positioning system
## 1.151484              aerospace scientists
## 1.151489                    plane diverted
## 1.151493                    original route
## 1.151498                 emergency landing
## 1.151503               experiencing engine
## 1.151504                    engine trouble
## 1.151507                     crashed 3.5km
## 1.151508                       3.5km short
## 1.151518                   holding pattern
## 1.151519                       pattern due
## 1.151522                       bad weather
## 1.151527                 weather condtions
## 1.151528                condtions improved
## 1.151529                improved clearance
## 1.151535                    final approach
## 1.151550                     airplane lost
## 1.151553               artificial horizons
## 1.151556                    gyro compasses
## 1.151563                  lightning strike
## 1.151564                    strike control
## 1.151570                     plane crashed
## 1.151573                    commuter plane
## 1.151579                 maintain altitude
## 1.151585                 charlotte douglas
## 1.151586             douglas international
## 1.151587             international airport
## 1.151611                          10 miles
## 1.151612                  miles visibility
## 1.151621                   airplane's loss
## 1.151624                     pitch control
## 1.151632                 incorrect rigging
## 1.151636                  elevator control
## 1.151637                    control system
## 1.151638                 system compounded
## 1.151642                 airplane's center
## 1.151648                 substantially aft
## 1.151652                     certified aft
## 1.151653                         aft limit
## 1.151654                limit contributing
## 1.151663                             1 air
## 1.151664                     air midwest's
## 1.151665                    midwest's lack
## 1.151676                   huntington west
## 1.151677                     west virginia
## 1.151678              virginia maintenance
## 1.151679               maintenance station
## 1.151680                         station 2
## 1.151681                             2 air
## 1.151682                     air midwest's
## 1.151683             midwest's maintenance
## 1.151684            maintenance procedures
## 1.151687                   documentation 3
## 1.151688                             3 air
## 1.151689                     air midwest's
## 1.151690                  midwest's weight
## 1.151693                   balance program
## 1.151700                        accident 4
## 1.151703                raytheon aerospace
## 1.151704                 aerospace quality
## 1.151705                 quality assurance
## 1.151706             assurance inspector's
## 1.151707               inspector's failure
## 1.151712                 incorrect rigging
## 1.151716                   elevator system
## 1.151717                          system 5
## 1.151720                     faa's average
## 1.151721                    average weight
## 1.151722                weight assumptions
## 1.151728                   balance program
## 1.151729                  program guidance
## 1.151740                        faa's lack
## 1.151745                     air midwest's
## 1.151746             midwest's maintenance
## 1.151747               maintenance program
## 1.151753                   balance program
## 1.151756                  aircraft crashed
## 1.151761                          130 feet
## 1.151762                        feet short
## 1.151766                  runway threshold
## 1.151773                         heavy fog
## 1.151774                    fog visibility
## 1.151779                          200 feet
## 1.151782                   pilots insisted
## 1.151790                          2,800 ft
## 1.151793               insufficient visual
## 1.151794                  visual reference
## 1.151801                   environment bad
## 1.151802                       bad weather
## 1.151803                weather conditions
## 1.151814                  aircraft crashed
## 1.151817                         11,500 ft
## 1.151818                        ft coloque
## 1.151819                  coloque mountain
## 1.151825                          7,550 ft
## 1.151828                        30 minutes
## 1.151831                  leaving chiclayo
## 1.151839            chachapoyas controlled
## 1.151840                 controlled flight
## 1.151843                      terrain crew
## 1.151847                   follow standard
## 1.151848               standard procedures
## 1.151849                   procedures lack
## 1.151858                positioning flight
## 1.151868              navigation equipment
## 1.151869                 equipment circled
## 1.151872                         airport 4
## 1.151873                           4 times
## 1.151879                   wooded hillside
## 1.151882                      plane failed
## 1.151885                     gain altitude
## 1.151888                       takeoff hit
## 1.151889                         hit power
## 1.151890                       power lines
## 1.151893                  crashed inverted
## 1.151897                      house kenyan
## 1.151898                      kenyan labor
## 1.151899                    labor minister
## 1.151900                    minister ahmed
## 1.151901                      ahmed khalif
## 1.151912                grossly overloaded
## 1.151917                        weighed 16
## 1.151918                           16 tons
## 1.151925                 airstrip designed
## 1.151928                 aircraft weighing
## 1.151932                          5.7 tons
## 1.151935                       cargo plane
## 1.151936                      plane struck
## 1.151937                     struck ground
## 1.151938                          ground 2
## 1.151939                              2 km
## 1.151940                          km short
## 1.151946                         heavy fog
## 1.151949                       flight crew
## 1.151958              precision instrument
## 1.151959               instrument approach
## 1.151962                       flight crew
## 1.151963                    crew conducted
## 1.151964                    conducted user
## 1.151965                      user defined
## 1.151968              precision instrument
## 1.151969             instrument approaches
## 1.151972                         runway 14
## 1.151979         instrument meteorological
## 1.151980         meteorological conditions
## 1.151985                 command permitted
## 1.151993                       mda crashed
## 1.151997                    atlas mountain
## 1.151998                    mountain range
## 1.152001                        9,900 feet
## 1.152004                          en route
## 1.152005                     route shortly
## 1.152010                  aircraft stalled
## 1.152011                   stalled crashed
## 1.152021                    engine failure
## 1.152035                 ferguson kentucky
## 1.152040               instrument approach
## 1.152043                  somerset pulaski
## 1.152044                    pulaski county
## 1.152045                    county airport
## 1.152048                   pilot's failure
## 1.152053               instrument approach
## 1.152054                approach procedure
## 1.152065                   terrain factors
## 1.152066                  factors included
## 1.152069                       low ceiling
## 1.152073                    night lighting
## 1.152074               lighting conditions
## 1.152077                     plane crashed
## 1.152081                         11,500 ft
## 1.152082                       ft mountain
## 1.152085                      poor weather
## 1.152088                          20 miles
## 1.152097                           18 crew
## 1.152101                  victims included
## 1.152102                   included iran's
## 1.152103              iran's revolutionary
## 1.152104               revolutionary guard
## 1.152107                     plane crashed
## 1.152114                     remote region
## 1.152122                    250 kilometers
## 1.152123              kilometers northwest
## 1.152131                         air force
## 1.152132                       force chief
## 1.152133                      chief mushaf
## 1.152134                        mushaf ali
## 1.152135                           ali mir
## 1.152136                         mir pilot
## 1.152137                       pilot error
## 1.152138                     error pilot's
## 1.152139                 pilot's premature
## 1.152140                 premature descent
## 1.152148                  aircraft hitting
## 1.152151                     cloud covered
## 1.152152                     covered ridge
## 1.152155                        3,000 feet
## 1.152158                         sea level
## 1.152165                 parachute jumpers
## 1.152173                           mid air
## 1.152182                         10,000 ft
## 1.152187                         left wing
## 1.152188                    wing separated
## 1.152200                         deep snow
## 1.152218                      crashed crew
## 1.152219                        crew error
## 1.152222                  starboard engine
## 1.152223                     engine caught
## 1.152224                       caught fire
## 1.152237                aircraft continued
## 1.152240                          2,000 ft
## 1.152241                           ft past
## 1.152262                    critical phase
## 1.152271                      landing gear
## 1.152275                    engine failure
## 1.152283                     flying taking
## 1.152299                          7,000 ft
## 1.152300                       ft mountain
## 1.152309                    aircraft owned
## 1.152313                       flying club
## 1.152317                   rental airplane
## 1.152323              uncontrolled descent
## 1.152328                           2 miles
## 1.152329                        miles west
## 1.152333                       vienna iowa
## 1.152336                 improper planning
## 1.152337                 planning decision
## 1.152345                    forecast icing
## 1.152346                  icing conditions
## 1.152355                 certified deicing
## 1.152356                    deicing system
## 1.152365                  continued flight
## 1.152369                  icing conditions
## 1.152375                 performing flight
## 1.152379             alternate destination
## 1.152382               contributing factor
## 1.152386                      pilot's lack
## 1.152392                       air carrier
## 1.152398                military personnel
## 1.152414                 ramp accidentally
## 1.152415              accidentally dropped
## 1.152425                   pressure system
## 1.152426                      system broke
## 1.152430                      crew managed
## 1.152443                  kinshasa airport
## 1.152451                        45 minutes
## 1.152459                  wide discrepancy
## 1.152464                    killed ranging
## 1.152471                      plane struck
## 1.152477                    steep mountain
## 1.152480                         heavy fog
## 1.152493                    pilot reported
## 1.152508                  aircraft charter
## 1.152511                  carrying spanish
## 1.152512              spanish peacekeeping
## 1.152513               peacekeeping forces
## 1.152517                     zaragoza crew
## 1.152518                        crew error
## 1.152528                      snow covered
## 1.152529                   covered glacial
## 1.152530                   glacial terrain
## 1.152538                     cruise flight
## 1.152541                          40 miles
## 1.152542                       miles north
## 1.152543                   north northwest
## 1.152546                  talkeetna alaska
## 1.152555                     visual flight
## 1.152556                      flight rules
## 1.152559                   pilot's failure
## 1.152562                 maintain adequate
## 1.152563                 adequate airspeed
## 1.152569                 inadvertent stall
## 1.152572              uncontrolled descent
## 1.152576                  flight collision
## 1.152587                    rising terrain
## 1.152588                   terrain shortly
## 1.152594                         jet nosed
## 1.152598                ground malfunction
## 1.152602                          trim tab
## 1.152603                        tab system
## 1.152604                      system forty
## 1.152605                       forty miles
## 1.152611                  aircraft crashed
## 1.152615                     amazon forest
## 1.152623                        ifr flight
## 1.152624                      flight heavy
## 1.152625                       heavy cloud
## 1.152626                       cloud cover
## 1.152627                     cover existed
## 1.152631                      flight route
## 1.152634                  aircraft crashed
## 1.152635                     crashed short
## 1.152646              christchurch airport
## 1.152649                     plane crashed
## 1.152655                   airport hitting
## 1.152658                        farm hedge
## 1.152675                    pilot reported
## 1.152676                      reported low
## 1.152677                      low pressure
## 1.152695                        270 degree
## 1.152700                    final approach
## 1.152701                  approach stalled
## 1.152709               helicopter impacted
## 1.152712                        lava field
## 1.152716                       pulama pali
## 1.152720                volcanoes national
## 1.152721                     national park
## 1.152722                      park volcano
## 1.152723                    volcano hawaii
## 1.152728                      engine power
## 1.152729                         power due
## 1.152733                  fatigue fracture
## 1.152739               compressor coupling
## 1.152740                  coupling adapter
## 1.152743                  fatigue fracture
## 1.152751                    pilot diameter
## 1.152752                      diameter due
## 1.152757                 inadequate design
## 1.152764              coaxial misalignment
## 1.152768                      spur adapter
## 1.152769                      adapter gear
## 1.152770                   gear compressor
## 1.152771               compressor coupling
## 1.152772                  coupling adapter
## 1.152775               compressor impeller
## 1.152778                     recent engine
## 1.152779                engine maintenance
## 1.152795                 unsuitable nature
## 1.152803                 emergency landing
## 1.152806                  aircraft crashed
## 1.152812                       caught fire
## 1.152813                            fire 1
## 1.152814                              1 km
## 1.152817                    brest guipavas
## 1.152818                  guipavas airport
## 1.152821                 france's brittany
## 1.152822                   brittany region
## 1.152823                    region killing
## 1.152838                        800 meters
## 1.152839                 meters visibility
## 1.152848                        nose dived
## 1.152852                    ground shortly
## 1.152858                        shur river
## 1.152869                      ocean waters
## 1.152873                        cook inlet
## 1.152876                           7 miles
## 1.152877                   miles southwest
## 1.152897                   fatally injured
## 1.152898                 injured passenger
## 1.152903                            july 3
## 1.152906                      ocean waters
## 1.152913                  flight collision
## 1.152919               undetermined reason
## 1.152920                    reason shortly
## 1.152926                     air ambulance
## 1.152927                     ambulance hit
## 1.152934                gamsberg mountains
## 1.152937                    military plane
## 1.152938                     plane crashed
## 1.152944                        beni mered
## 1.152945                mered neighborhood
## 1.152946                 neighborhood west
## 1.152950                  algerian capital
## 1.152951                   capital shortly
## 1.152957                 boufarik military
## 1.152958                  military airport
## 1.152959                        airport 25
## 1.152960                          25 miles
## 1.152961                   miles southwest
## 1.152965                 capital witnesses
## 1.152966                witnesses reported
## 1.152972                        fire prior
## 1.152978                     plane crashed
## 1.152981                    final approach
## 1.152984                     belem airport
## 1.152988               strong thunderstorm
## 1.152999                        ship toisa
## 1.153000                     toisa mariner
## 1.153004                        tail rotor
## 1.153005                    rotor collided
## 1.153014                        pilot lost
## 1.153020                helicopter crashed
## 1.153026                      plane's crew
## 1.153027                     crew reported
## 1.153028                reported technical
## 1.153029            technical difficulties
## 1.153030               difficulties engine
## 1.153031                    engine failure
## 1.153032                        failure 10
## 1.153033                        10 minutes
## 1.153039                        port sudan
## 1.153040                     sudan airport
## 1.153043                     plane crashed
## 1.153047                        hillside 3
## 1.153048                           3 miles
## 1.153061                 emergency landing
## 1.153071                  survivor crashed
## 1.153072                      crashed atop
## 1.153077                        chorro del
## 1.153078                         del indio
## 1.153079                    indio national
## 1.153080                     national park
## 1.153086                     san cristobal
## 1.153087                  cristobal twenty
## 1.153088                      twenty miles
## 1.153089                        miles west
## 1.153098                          3,500 ft
## 1.153118                   feathered flaps
## 1.153121                    gear retracted
## 1.153125                     power applied
## 1.153129                       left engine
## 1.153135                 maintain altitude
## 1.153139                     pilot ditched
## 1.153142                       aircraft 15
## 1.153143                          15 miles
## 1.153164                      2 passengers
## 1.153165           passengers subsequently
## 1.153166                 subsequently died
## 1.153170                    flight failure
## 1.153178                   pilot's failure
## 1.153181                 adequately manage
## 1.153184            airplane's performance
## 1.153188                     engine failed
## 1.153192                    engine failure
## 1.153193                  failure resulted
## 1.153196            inadequate maintenance
## 1.153202                    air sunshine's
## 1.153203            sunshine's maintenance
## 1.153204             maintenance personnel
## 1.153207          undocumented maintenance
## 1.153208          maintenance contributing
## 1.153212              passenger fatalities
## 1.153216                   pilot's failure
## 1.153221                emergency briefing
## 1.153226                     engine failed
## 1.153229                     plane crashed
## 1.153233                    eastern slopes
## 1.153236                       mount kenya
## 1.153242                       16,355 feet
## 1.153250                       lenana peak
## 1.153255                  samburu national
## 1.153256                     national park
## 1.153257                          park ten
## 1.153258                      ten american
## 1.153259                 american tourists
## 1.153262                          2 pilots
## 1.153268                         plane hit
## 1.153271                      mountain 450
## 1.153272                          450 feet
## 1.153276                      snow covered
## 1.153277                      covered peak
## 1.153282                       impact poor
## 1.153283                   poor visibility
## 1.153291              helilcopter collided
## 1.153299                  waialeale crater
## 1.153300                      crater kauai
## 1.153301                      kauai hawaii
## 1.153304               helicopter impacted
## 1.153305                    impacted steep
## 1.153306                   steep upsloping
## 1.153307                 upsloping terrain
## 1.153311               northwestern inside
## 1.153312                     inside crater
## 1.153313                       crater wall
## 1.153319                   pilot's failure
## 1.153322                 maintain adequate
## 1.153323                  adequate terrain
## 1.153324                 terrain clearance
## 1.153325                clearance altitude
## 1.153330               mountainous terrain
## 1.153334                  continued flight
## 1.153337                   adverse weather
## 1.153338                   weather factors
## 1.153339              factors contributing
## 1.153348                       low ceiling
## 1.153352                positioning flight
## 1.153355                       jet crashed
## 1.153368             officer's inadvertent
## 1.153369            inadvertent retraction
## 1.153376                      low altitude
## 1.153377              altitude maneuvering
## 1.153383                 inadvertent stall
## 1.153388                  flight collision
## 1.153392                  residential home
## 1.153393                      home factors
## 1.153400                captain's decision
## 1.153405                      low altitude
## 1.153406                 altitude maneuver
## 1.153409                    excessive bank
## 1.153410                        bank angle
## 1.153413                      flight crews
## 1.153414                  crews inadequate
## 1.153415           inadequate coordination
## 1.153418                        low clouds
## 1.153419                clouds surrounding
## 1.153424                     pilot decided
## 1.153431               experiencing engine
## 1.153437                         trees 100
## 1.153438                        100 meters
## 1.153439                      meters short
## 1.153445                       cargo plane
## 1.153446                     plane crashed
## 1.153450                        ocean 30.5
## 1.153451                        30.5 miles
## 1.153452                   miles southwest
## 1.153455                     barrow alaska
## 1.153475                          13 meter
## 1.153476                      meter height
## 1.153480                      pilot pulled
## 1.153491                    close obstacle
## 1.153494                   maneuver caused
## 1.153497                helicopter's rotor
## 1.153498                      rotor blades
## 1.153505                      tail causing
## 1.153508                    crash sakhalin
## 1.153509                 sakhalin governor
## 1.153510                     governor igor
## 1.153511                 igor farkhutdinov
## 1.153518                     plane crashed
## 1.153519                   crashed shortly
## 1.153525                       cap haitien
## 1.153526                   haitien airport
## 1.153527                 airport witnesses
## 1.153528                witnesses reported
## 1.153531                      smoke coming
## 1.153543                        nose dived
## 1.153547                   sugarcane field
## 1.153550                  exploded shortly
## 1.153556                    pilot declared
## 1.153562                  aircraft crashed
## 1.153565                   nantucket sound
## 1.153572              improper replacement
## 1.153576                  forward elevator
## 1.153577                     elevator trim
## 1.153578                        trim cable
## 1.153581             subsequent inadequate
## 1.153582             inadequate functional
## 1.153583                  functional check
## 1.153587             maintenance performed
## 1.153596                     elevator trim
## 1.153597                       trim system
## 1.153605                    flight factors
## 1.153609              flightcrew's failure
## 1.153614              checklist procedures
## 1.153618           aircraft manufacturer's
## 1.153619          manufacturer's erroneous
## 1.153620               erroneous depiction
## 1.153624                     elevator trim
## 1.153625                         trim drum
## 1.153629                maintenance manual
## 1.153632                  aircraft crashed
## 1.153633                       crashed ten
## 1.153634                    ten kilometers
## 1.153635              kilometers northwest
## 1.153638                     summer beaver
## 1.153643                    leaving pickle
## 1.153644                       pickle lake
## 1.153645                      lake airport
## 1.153646              airport thunderstorm
## 1.153647             thunderstorm activity
## 1.153653                     route crashed
## 1.153656                          en route
## 1.153665                   brake correctly
## 1.153670                    runway crashed
## 1.153680                 pilot's misjudged
## 1.153681                misjudged distance
## 1.153696                  proper touchdown
## 1.153704               contributing factor
## 1.153708                   pilot's failure
## 1.153715            sightseeing helicopter
## 1.153716                 helicopter headed
## 1.153723                      grand canyon
## 1.153724                        canyon hit
## 1.153734                    rugged terrain
## 1.153735                   terrain killing
## 1.153738                   aboard tourists
## 1.153745                      pontoon boat
## 1.153749                 accident occurred
## 1.153750                        occurred 2
## 1.153751                               2 3
## 1.153760                 pilot's disregard
## 1.153763                       safe flying
## 1.153764                 flying procedures
## 1.153770            helicopter's proximity
## 1.153773              terrain contributing
## 1.153782              sundance helicopters
## 1.153788                  provide adequate
## 1.153789             adequate surveillance
## 1.153792                    sundance's air
## 1.153793                          air tour
## 1.153794                   tour operations
## 1.153797                    descent canyon
## 1.153798                     canyon cashed
## 1.153802                approached gaspãƒâ
## 1.153807                       low ceiling
## 1.153810                   pilot descended
## 1.153814                   minimum descent
## 1.153815                  descent altitude
## 1.153816                      altitude mda
## 1.153823                   localizer track
## 1.153830              precarious situation
## 1.153839             obstruction clearance
## 1.153843               instrument approach
## 1.153846                   pilot continued
## 1.153856                 visual references
## 1.153857               references required
## 1.153869                   cfit controlled
## 1.153870                 controlled flight
## 1.153875                 plane disappeared
## 1.153876               disappeared shortly
## 1.153885                           2 miles
## 1.153886                       miles south
## 1.153889                        gabrielã â
## 1.153890                               â â
## 1.153896                     amazon forest
## 1.153897                          forest 2
## 1.153898                            2 days
## 1.153901                mechanical failure
## 1.153905                     takoff remote
## 1.153914                  crusing altitude
## 1.153922                 aircraft suddenly
## 1.153923                 suddenly exploded
## 1.153928                   unknown reasons
## 1.153929                   reasons crashed
## 1.153933                      caroni river
## 1.153934                     river shortly
## 1.153945                      buenos aires
## 1.153946                     aires airport
## 1.153949                     crew reported
## 1.153965                         runway 17
## 1.153968                        crashed 30
## 1.153969                             30 km
## 1.153970                      km southwest
## 1.153973                      buenos aires
## 1.153980                positioning flight
## 1.153983                      poor weather
## 1.153986                      crew decided
## 1.153996                          1,600 ft
## 1.153997                           ft hill
## 1.154004                         18 minute
## 1.154005                    minute holding
## 1.154006                   holding pattern
## 1.154009                       cargo plane
## 1.154010                     plane crashed
## 1.154023                       alkali lake
## 1.154024                      lake located
## 1.154025                     located short
## 1.154030                   pilot's failure
## 1.154033                 maintain aircraft
## 1.154034                  aircraft control
## 1.154035              control contributing
## 1.154036              contributing factors
## 1.154037                   factors include
## 1.154040                   pilot's failure
## 1.154046                 alternate airport
## 1.154049                 inadvertent stall
## 1.154055                  icing conditions
## 1.154058                helicopter crashed
## 1.154062                        corn field
## 1.154065                   ferrying troops
## 1.154072                             ch 47
## 1.154073                     47 helicopter
## 1.154074               helicopter belonged
## 1.154078                     12th aviation
## 1.154079                  aviation brigade
## 1.154088                    shoulder fired
## 1.154089                     fired missile
## 1.154092                helicopter crashed
## 1.154096                    remote outback
## 1.154108                        post crash
## 1.154109                        crash fire
## 1.154110                       fire visual
## 1.154111             visual meteorological
## 1.154112         meteorological conditions
## 1.154113              conditions prevailed
## 1.154123                     engine failed
## 1.154130                    pilot declared
## 1.154137                    forced landing
## 1.154141                        cane field
## 1.154144                         plane hit
## 1.154149                slid approximately
## 1.154150                 approximately 100
## 1.154151                            100 ft
## 1.154158                  flight attendant
## 1.154162                passenger received
## 1.154163                    received fatal
## 1.154164                    fatal injuries
## 1.154167                  midair collision
## 1.154168                collision occurred
## 1.154172                        black hawk
## 1.154173                  hawk helicopters
## 1.154180                     avoid gunfire
## 1.154184                      rotor struck
## 1.154189                       cargo plane
## 1.154190                      plane struck
## 1.154191                      struck trees
## 1.154194                        mile short
## 1.154202                 command's failure
## 1.154205                   maintain proper
## 1.154206                  proper glidepath
## 1.154207               glidepath alignment
## 1.154211                      ils approach
## 1.154214                      poor weather
## 1.154215                 weather resulting
## 1.154222              terrain contributing
## 1.154223              contributing factors
## 1.154227                 unreliable status
## 1.154231                       primary nav
## 1.154232                             nav 1
## 1.154233                             1 ils
## 1.154234                      ils receiver
## 1.154235                  receiver leaving
## 1.154242                     secondary nav
## 1.154243                             nav 2
## 1.154244                             2 ils
## 1.154245                      ils receiver
## 1.154248                      low ceilings
## 1.154253                 aircraft suffered
## 1.154290                     market square
## 1.154291                    square crashed
## 1.154294                   blackwater lake
## 1.154295                      lake shortly
## 1.154302                    remote landing
## 1.154303                     landing strip
## 1.154310                       cargo plane
## 1.154311                    plane obtained
## 1.154320                          7,000 ft
## 1.154325                      radar screen
## 1.154331                 mountain wreckage
## 1.154334                           found 5
## 1.154335                            5 days
## 1.154339                          en route
## 1.154344                         24,000 ft
## 1.154350                       cargo plane
## 1.154351                    plane declared
## 1.154360                     chino airport
## 1.154364                 aircraft suddenly
## 1.154365                     suddenly nose
## 1.154366                        nose dived
## 1.154372                     mojave desert
## 1.154377                  airplane control
## 1.154380              undetermined reasons
## 1.154394                   cotonou airport
## 1.154397                      landing gear
## 1.154398                       gear struck
## 1.154401                  building housing
## 1.154402               housing electronics
## 1.154403               electronics crashed
## 1.154407                     barrier fence
## 1.154414                shoreline adjacent
## 1.154424                           10 tons
## 1.154430            improperly distributed
## 1.154446                    lebanese court
## 1.154447                     court shortly
## 1.154453                  aircraft crashed
## 1.154457                           red sea
## 1.154458                             sea 7
## 1.154459                           7 miles
## 1.154460                       miles south
## 1.154468                   french tourists
## 1.154471                     board heading
## 1.154472                      heading home
## 1.154476                 holidays possibly
## 1.154479                    pilot suffered
## 1.154480                  suffered spatial
## 1.154481            spatial disorientation
## 1.154492              experienced superior
## 1.154500                     found crashed
## 1.154507                         heavy fog
## 1.154510                   aircraft struck
## 1.154515                   approach lights
## 1.154525                  wall surrounding
## 1.154530                        crew error
## 1.154533                       twin engine
## 1.154534                   engine aircraft
## 1.154535                  aircraft crashed
## 1.154539                southern mountains
## 1.154544                      poor weather
## 1.154545                weather conditions
## 1.154546                conditions minutes
## 1.154552                 mostar macedonian
## 1.154553              macedonian president
## 1.154554                   president boris
## 1.154555                  boris trajkovski
## 1.154556                     trajkovski 47
## 1.154557                         47 killed
## 1.154561                            6 aids
## 1.154562                        aids pilot
## 1.154563                       pilot error
## 1.154568               crew misinterpreted
## 1.154569            misinterpreted crucial
## 1.154570                    crucial flight
## 1.154571                       flight data
## 1.154574                    stormy weather
## 1.154577                  aircraft crashed
## 1.154580                        approach 2
## 1.154581                           2 miles
## 1.154582                       miles short
## 1.154590                 emergency landing
## 1.154595                     plane crashed
## 1.154596                    crashed midway
## 1.154600             residential compounds
## 1.154603                       flight data
## 1.154604                     data recorder
## 1.154613                        reverse 10
## 1.154618                  accident shortly
## 1.154627                          150 feet
## 1.154630                    aircraft pitch
## 1.154637                           field 4
## 1.154638                              4 km
## 1.154651                    pilot suffered
## 1.154654                    sudden cardiac
## 1.154655                     cardiac death
## 1.154656                        death half
## 1.154666                   gradual descent
## 1.154674                    airplane broke
## 1.154682                   pilot willfully
## 1.154683                willfully deceived
## 1.154684                   deceived flight
## 1.154685                    flight medical
## 1.154686                 medical examiners
## 1.154689                suppressed medical
## 1.154690               medical information
## 1.154693            ingested inappropriate
## 1.154694         inappropriate medications
## 1.154700                  dangerous health
## 1.154701                  health condition
## 1.154704               helicopter impacted
## 1.154705                  impacted terrain
## 1.154710                reduced visibility
## 1.154711             visibility conditions
## 1.154714               pilot's inadvertent
## 1.154715             inadvertent encounter
## 1.154718                   adverse weather
## 1.154724                     pilot failing
## 1.154727                  maintain terrain
## 1.154728                 terrain clearance
## 1.154729            clearance contributing
## 1.154730              contributing factors
## 1.154734                        dark night
## 1.154735                  night conditions
## 1.154738                pilot's inadequate
## 1.154739              inadequate preflight
## 1.154740             preflight preparation
## 1.154750                   mission induced
## 1.154763                       ems mission
## 1.154766                  aircraft crashed
## 1.154777                          en route
## 1.154780                   cruise altitude
## 1.154783                         23,000 ft
## 1.154786          encountering unfavorable
## 1.154787               unfavorable weather
## 1.154788                weather conditions
## 1.154794                         plane hit
## 1.154797                        ground 300
## 1.154798                            300 ft
## 1.154799                          ft short
## 1.154805                     plane crashed
## 1.154818           delivering humanitarian
## 1.154819                  humanitarian aid
## 1.154824                     cargo shifted
## 1.154827                   takeoff causing
## 1.154846                         plane hit
## 1.154854                     survivor died
## 1.154863                     plane dropped
## 1.154868                    manaus eduardo
## 1.154869                     eduardo gomes
## 1.154870               gomes international
## 1.154871             international airport
## 1.154874                          10 miles
## 1.154881                 suspended landing
## 1.154882                landing procedures
## 1.154887                    plane carrying
## 1.154888                     carrying sick
## 1.154889                       sick people
## 1.154900                     plane crashed
## 1.154903                      dense jungle
## 1.154909                      rescue crews
## 1.154924                  aircraft stalled
## 1.154930                          field 10
## 1.154931                             10 km
## 1.154935                   airport crashed
## 1.154955                          en route
## 1.154958                       cargo plane
## 1.154959                    plane collided
## 1.154971                  aircraft crashed
## 1.154972                   crashed killing
## 1.154981                      safe landing
## 1.154989                       cargo plane
## 1.154990                     plane crashed
## 1.154993                      lamjura hill
## 1.154996                       heavy cloud
## 1.154997                       cloud cover
## 1.154998                   cover hazardous
## 1.154999                hazardous behavior
## 1.155011                         care free
## 1.155018                regulations caused
## 1.155023                aircraft nosedived
## 1.155029                        100 meters
## 1.155033                     beach shortly
## 1.155039                          leon mba
## 1.155040                 mba international
## 1.155041             international airport
## 1.155042                    airport engine
## 1.155043                    engine failure
## 1.155044                    failure forced
## 1.155053                helicopter crashed
## 1.155071                      sierra leone
## 1.155072                     leone capital
## 1.155082                      western city
## 1.155087                          en route
## 1.155090                       cargo plane
## 1.155091                 plane experienced
## 1.155108                        plane sank
## 1.155111                          1,000 ft
## 1.155130                            31 oil
## 1.155131                           oil rig
## 1.155137                            500 ft
## 1.155140                     alarm sounded
## 1.155144                      left turbine
## 1.155151                        loud noise
## 1.155155                        main rotor
## 1.155159                      turbine lost
## 1.155160                     lost rotation
## 1.155164                helicopter crashed
## 1.155170                       cargo plane
## 1.155171                    plane diverted
## 1.155174                    yongai airport
## 1.155178                       bad weather
## 1.155185            crashed.the loadmaster
## 1.155198                     crew reported
## 1.155199                   reported engine
## 1.155200                    engine trouble
## 1.155201                   trouble shortly
## 1.155205                  aircraft crashed
## 1.155213                        runway 36r
## 1.155214                          36r fuel
## 1.155215                   fuel starvation
## 1.155216              starvation resulting
## 1.155220                captain's decision
## 1.155224                   follow approved
## 1.155225                     approved fuel
## 1.155226                    fuel crossfeed
## 1.155227              crossfeed procedures
## 1.155228           procedures contributing
## 1.155235              captain's inadequate
## 1.155236              inadequate preflight
## 1.155237                preflight planning
## 1.155240            subsequent distraction
## 1.155252              flightcrew's failure
## 1.155257                       fuel gauges
## 1.155264               airplane's changing
## 1.155265                 changing handling
## 1.155266          handling characteristics
## 1.155272                    fuel imbalance
## 1.155273                     imbalance air
## 1.155274                       air traffic
## 1.155275               traffic controllers
## 1.155276                  controllers lost
## 1.155277                      lost contact
## 1.155288                  caribbean island
## 1.155291                        la orchila
## 1.155296                          9,500 ft
## 1.155299                     plane crashed
## 1.155303                mountainous region
## 1.155306            northeastern venezuela
## 1.155319               civilian passengers
## 1.155322                     plane crashed
## 1.155323                        crashed 19
## 1.155324                        19 minutes
## 1.155337                        volga avia
## 1.155338                      avia express
## 1.155339                express tupolov134
## 1.155344                             22 56
## 1.155345                     56 detonation
## 1.155349                   exposive device
## 1.155350                     device aboard
## 1.155353                     plane crashed
## 1.155354                        crashed 26
## 1.155355                        26 minutes
## 1.155361                  moscow witnesses
## 1.155362                  witnesses stated
## 1.155367                     plane explode
## 1.155379                  sibir tupolov154
## 1.155384                             22 59
## 1.155385                     59 detonation
## 1.155389                   exposive device
## 1.155390                     device aboard
## 1.155391                     aboard thirty
## 1.155392                    thirty minutes
## 1.155399                 pilot encountered
## 1.155400                   encountered low
## 1.155401                    low visibility
## 1.155402                    visibility due
## 1.155414                    lower altitude
## 1.155417                   aircraft struck
## 1.155418                      struck trees
## 1.155424                     forest rescue
## 1.155425                      rescue teams
## 1.155426                       teams found
## 1.155432                       survivors 2
## 1.155433                            2 days
## 1.155437                pilot's inadequate
## 1.155440                   flight planning
## 1.155441                 planning decision
## 1.155445                     continued vfr
## 1.155446                        vfr flight
## 1.155449         instrument meteorological
## 1.155450         meteorological conditions
## 1.155456                 maintain obstacle
## 1.155457                obstacle clearance
## 1.155458                 clearance factors
## 1.155459              factors contributing
## 1.155465                      low ceilings
## 1.155466                      ceilings due
## 1.155469                        smoke rain
## 1.155474                    final approach
## 1.155477                      cargo flight
## 1.155478                    flight crashed
## 1.155484                              3 km
## 1.155493                helicopter crashed
## 1.155497                        aegean sea
## 1.155498                           sea 5.5
## 1.155499                      5.5 nautical
## 1.155500                    nautical miles
## 1.155503               halkidiki peninsula
## 1.155504               peninsula patriarch
## 1.155505                  patriarch petros
## 1.155506                        petros vii
## 1.155509                  alexandria egypt
## 1.155510                   egypt spiritual
## 1.155511                  spiritual leader
## 1.155514               orthodox christians
## 1.155517                     africa killed
## 1.155524                       cargo plane
## 1.155525                         plane hit
## 1.155528                        heavy rain
## 1.155529                       rain shower
## 1.155532                    losing control
## 1.155537                 toruuguero lagoon
## 1.155540                  pilot's improper
## 1.155541                 improper inflight
## 1.155542                 inflight planning
## 1.155548                inflight encounter
## 1.155551                       weather low
## 1.155552                      low ceilings
## 1.155559                  aircraft control
## 1.155563                inflight collision
## 1.155569              uncontrolled descent
## 1.155572                       cargo plane
## 1.155573                    plane reported
## 1.155576                    engine failure
## 1.155584                   nearest airport
## 1.155595                             50 km
## 1.155600                       cargo plane
## 1.155604                     gain altitude
## 1.155620                  aircraft's lower
## 1.155621                         lower aft
## 1.155622                      aft fuselage
## 1.155623                   fuselage struck
## 1.155626                   berm supporting
## 1.155629                 localizer antenna
## 1.155630                 antenna resulting
## 1.155634                   tail separating
## 1.155638                aircraft rendering
## 1.155641           aircraft uncontrollable
## 1.155648                    thrust setting
## 1.155663                     actual weight
## 1.155677                       gross error
## 1.155678                       error check
## 1.155684                company's standard
## 1.155685                standard operating
## 1.155686              operating procedures
## 1.155687                   procedures sops
## 1.155694                  performance data
## 1.155698                     detected crew
## 1.155699                      crew fatigue
## 1.155703               night repositioning
## 1.155704              repositioning flight
## 1.155707                          en route
## 1.155710                      stick shaker
## 1.155711                  shaker activated
## 1.155717                     plane entered
## 1.155720                 aerodynamic stall
## 1.155725                   engines stopped
## 1.155728                     crew declared
## 1.155739                   airport crashed
## 1.155746             pilots unprofessional
## 1.155747           unprofessional behavior
## 1.155748                behavior deviation
## 1.155751                standard operating
## 1.155752              operating procedures
## 1.155755                   poor airmanship
## 1.155762                  flight emergency
## 1.155776                 pilots inadequate
## 1.155777               inadequate training
## 1.155780                    pilots failure
## 1.155786                 emergency landing
## 1.155790                     timely manner
## 1.155791                  manner including
## 1.155792           including communicating
## 1.155795                       air traffic
## 1.155796               traffic controllers
## 1.155797           controllers immediately
## 1.155812                     landing sites
## 1.155816                    pilots failure
## 1.155823                   target airspeed
## 1.155827                     double engine
## 1.155828                    engine failure
## 1.155829                 failure checklist
## 1.155834                      engine cores
## 1.155837                     stop rotating
## 1.155843                         core lock
## 1.155844                       lock engine
## 1.155845                  engine condition
## 1.155846            condition contributing
## 1.155853                       engine core
## 1.155854                         core lock
## 1.155855                    lock condition
## 1.155868                   airplane flight
## 1.155869                    flight manuals
## 1.155882                  minimum airspeed
## 1.155887                      engine cores
## 1.155888                    cores rotating
## 1.155893                      poor weather
## 1.155896                       cargo plane
## 1.155897                      plane struck
## 1.155910                       cargo plane
## 1.155911                      plane struck
## 1.155915                   tagbao mountain
## 1.155924                 turboprop crashed
## 1.155925                         crashed 4
## 1.155926                           4 miles
## 1.155927                       miles south
## 1.155935              kirksville municipal
## 1.155936                 municipal airport
## 1.155939                     plane clipped
## 1.155940                      clipped tree
## 1.155941                         tree tops
## 1.155955                  plane descending
## 1.155958                 climbing slightly
## 1.155968                      plane lacked
## 1.155971                    modern terrain
## 1.155972                   terrain warning
## 1.155973                    warning system
## 1.155979                required equipment
## 1.155985                    pilots failure
## 1.155988                follow established
## 1.155989            established procedures
## 1.155992                  properly conduct
## 1.155995           nonprecision instrument
## 1.155996               instrument approach
## 1.156001         instrument meteorological
## 1.156002         meteorological conditions
## 1.156003              conditions including
## 1.156009                   minimum descent
## 1.156010                  descent altitude
## 1.156013                   required visual
## 1.156014                       visual cues
## 1.156019             continued unmoderated
## 1.156023                   airplane struck
## 1.156034              established division
## 1.156042                  nonflying pilots
## 1.156043               pilots contributing
## 1.156050                    pilots failure
## 1.156054                 standard callouts
## 1.156058                   current federal
## 1.156059                  federal aviation
## 1.156060              aviation regulations
## 1.156075                     safe obstacle
## 1.156076                obstacle clearance
## 1.156080                     assured based
## 1.156085                  airport approach
## 1.156086                   approach lights
## 1.156089                    pilots failure
## 1.156096             professional demeanor
## 1.156108              degraded performance
## 1.156116                     air ambulance
## 1.156117                 ambulance crashed
## 1.156120                         otay peak
## 1.156127                       mountains 8
## 1.156128                           8 miles
## 1.156129                        miles east
## 1.156132                       brown field
## 1.156133                   field municipal
## 1.156134                 municipal airport
## 1.156135                      airport dark
## 1.156136                        dark night
## 1.156137                      night visual
## 1.156138                 visual conditions
## 1.156139              conditions prevailed
## 1.156142              controller's minimum
## 1.156143                      minimum safe
## 1.156144                     safe altitude
## 1.156145                  altitude warning
## 1.156146                    warning system
## 1.156147                     system issued
## 1.156155                     radar returns
## 1.156158                       air traffic
## 1.156159                traffic controller
## 1.156160                 controller failed
## 1.156167                 altitude warnings
## 1.156181             controller identified
## 1.156187                      radar screen
## 1.156190                   instructed crew
## 1.156194                  expect clearance
## 1.156197                        5,000 feet
## 1.156208                      flight track
## 1.156209                    track directly
## 1.156218                        3,556 feet
## 1.156219                     feet altitude
## 1.156223                       flight crew
## 1.156229             recommended departure
## 1.156230              departure procedures
## 1.156239               mountainous terrain
## 1.156240                   terrain failure
## 1.156246                  maintain terrain
## 1.156247                 terrain clearance
## 1.156251                     vfr departure
## 1.156256                 controlled flight
## 1.156262                       air traffic
## 1.156263              traffic controller's
## 1.156264             controller's issuance
## 1.156274                 terrain clearance
## 1.156283              controller's failure
## 1.156286                   provide terrain
## 1.156287                 terrain clearance
## 1.156288            clearance instructions
## 1.156300                      minimum safe
## 1.156301                     safe altitude
## 1.156302                  altitude warning
## 1.156303                    warning alerts
## 1.156304               alerts contributing
## 1.156311                    pilots fatigue
## 1.156318                 degraded decision
## 1.156322                      plane struck
## 1.156325                     steep incline
## 1.156329                     bull mountain
## 1.156336                        blue ridge
## 1.156337                    ridge regional
## 1.156338                  regional airport
## 1.156341                         heavy fog
## 1.156342                      fog wreckage
## 1.156350                 approximately 200
## 1.156351                            200 ft
## 1.156362              hendrick motorsports
## 1.156363                motorsports racing
## 1.156364                       racing team
## 1.156365                    team including
## 1.156368                       son brother
## 1.156374                        owner rick
## 1.156375                     rick hendrick
## 1.156376                  hendrick failure
## 1.156382                  properly execute
## 1.156385              published instrument
## 1.156386               instrument approach
## 1.156387                approach procedure
## 1.156394                    crew's failure
## 1.156399                 navigational aids
## 1.156415                         runway 09
## 1.156418                     simon bolivar
## 1.156419                   bolivar airport
## 1.156434                      airport fire
## 1.156435                        fire house
## 1.156436                     house weather
## 1.156447                       low ceiling
## 1.156450                   torrential rain
## 1.156453                  aircraft crashed
## 1.156457                       frozen lake
## 1.156460                       nanhai park
## 1.156461                           park 10
## 1.156467                     ice pollution
## 1.156474                      aircraft led
## 1.156478                  accident failure
## 1.156486                    final approach
## 1.156489                   aircraft struck
## 1.156492                        light pole
## 1.156493                      pole located
## 1.156494                       located 1.5
## 1.156495                          1.5 mile
## 1.156496                        mile short
## 1.156499                         runway 04
## 1.156502                         thick fog
## 1.156508                      nearby field
## 1.156511                     flight crew's
## 1.156512                    crew's failure
## 1.156515                adequately monitor
## 1.156518                       cross check
## 1.156521                flight instruments
## 1.156525             approach contributing
## 1.156532                     flight crew's
## 1.156533                    crew's failure
## 1.156538                instrument landing
## 1.156539                    landing system
## 1.156540                  system frequency
## 1.156544                     timely manner
## 1.156550                  approved company
## 1.156551                  company approach
## 1.156552               approach procedures
## 1.156553              procedures including
## 1.156556               stabilized approach
## 1.156557                 approach criteria
## 1.156558                  criteria crashed
## 1.156562                       mountain 80
## 1.156563                          80 miles
## 1.156564                        miles west
## 1.156569                          en route
## 1.156572                     wreckage site
## 1.156578                         14,000 ft
## 1.156579                          ft level
## 1.156583                         16,739 ft
## 1.156584                       ft mountain
## 1.156587                 crew deliberately
## 1.156588              deliberately avoided
## 1.156591                    standard route
## 1.156596                          joy ride
## 1.156600              direction eventually
## 1.156620                  aircraft skidded
## 1.156621                  skidded sideways
## 1.156630                   perimeter fence
## 1.156631                     fence ripping
## 1.156644                        light snow
## 1.156645                      snow falling
## 1.156650                reduced visibility
## 1.156660                       pilot chose
## 1.156667                          7,500 ft
## 1.156668                         ft runway
## 1.156675                         10,000 ft
## 1.156676                         ft runway
## 1.156685                        nbc sports
## 1.156686                   sports chairman
## 1.156687                     chairman dick
## 1.156688                      dick ebersol
## 1.156691                     actress susan
## 1.156692                       susan saint
## 1.156693                       saint james
## 1.156694                      james killed
## 1.156695                         killed st
## 1.156696                          st james
## 1.156702                  accident vehicle
## 1.156709              flightcrew's failure
## 1.156715                  airplane's wings
## 1.156722                snow contamination
## 1.156737                 attempted takeoff
## 1.156740                        upper wing
## 1.156741                wing contamination
## 1.156747                  subsequent stall
## 1.156755               factor contributing
## 1.156762                       pilots lack
## 1.156765                 experience flying
## 1.156768                    winter weather
## 1.156769                weather conditions
## 1.156776                     plane overran
## 1.156784                   airport barrier
## 1.156785                     barrier fence
## 1.156789                        rice field
## 1.156790                       field broke
## 1.156800                      cemetery 300
## 1.156801                        300 meters
## 1.156805                        runway bad
## 1.156806                       bad weather
## 1.156810            malfunctioning spoiler
## 1.156816                     crash crashed
## 1.156819                          en route
## 1.156822               mountainous terrain
## 1.156825                 forward emergency
## 1.156826                    emergency exit
## 1.156830                    flight causing
## 1.156842                 emergency landing
## 1.156853                       mail flight
## 1.156856                      total linhas
## 1.156857                       linhas aãƒâ
## 1.156858                         aãƒâ reas
## 1.156861                         sao paulo
## 1.156862                   paulo guarulhos
## 1.156863                 guarulhos airport
## 1.156869                    final approach
## 1.156874                       cargo plane
## 1.156875                     plane crashed
## 1.156878                    houses located
## 1.156879                     located short
## 1.156886              aircraft disappeared
## 1.156900                            hill 6
## 1.156901                           6 miles
## 1.156905                  destination poor
## 1.156906                      poor weather
## 1.156907                weather conditions
## 1.156908                conditions existed
## 1.156915                     accident crew
## 1.156916                        crew error
## 1.156917                      error ground
## 1.156918                  ground proximity
## 1.156919                 proximity warning
## 1.156920                  warning disabled
## 1.156921               disabled artificial
## 1.156922                artificial horizon
## 1.156931                 counter narcotics
## 1.156932                 narcotics mission
## 1.156938                         heavy fog
## 1.156941                       cargo plane
## 1.156942                    plane diverted
## 1.156945                         keene due
## 1.156948                      poor weather
## 1.156952                    final approach
## 1.156957                         plane hit
## 1.156960                      ground short
## 1.156963                         runway 02
## 1.156969                helicopter crashed
## 1.156977                       cargo plane
## 1.157006                         low level
## 1.157013                        enemy fire
## 1.157017                    wing separated
## 1.157024                        plane lost
## 1.157025                      lost control
## 1.157026                   control crashed
## 1.157030                  destroyed unable
## 1.157044                    reach peshawar
## 1.157045                 peshawar pakistan
## 1.157050                         11,000 ft
## 1.157051                        ft chaperi
## 1.157052                  chaperi mountain
## 1.157057                   developing fuel
## 1.157058                       fuel system
## 1.157062                      cargo flight
## 1.157063                   flight carrying
## 1.157064             carrying humanitarian
## 1.157072                       aad babaker
## 1.157081                        crashed 15
## 1.157082                             15 km
## 1.157083                           km east
## 1.157091                   business flight
## 1.157092                  flight descended
## 1.157098                         left wing
## 1.157099                    wing contacted
## 1.157104                     plane crashed
## 1.157112                     plane crashed
## 1.157116                     pilots failed
## 1.157126                      unsafe speed
## 1.157139                        thin layer
## 1.157145                  aircraft's wings
## 1.157148                     flight crew's
## 1.157149                    crew's failure
## 1.157152               effectively monitor
## 1.157155                 maintain airspeed
## 1.157162                        deice boot
## 1.157163                   boot activation
## 1.157171                 aerodynamic stall
## 1.157178              recover contributing
## 1.157185                     faa's failure
## 1.157188                establish adequate
## 1.157189            adequate certification
## 1.157190        certification requirements
## 1.157195                  icing conditions
## 1.157201                  inadequate stall
## 1.157202                     stall warning
## 1.157203                    warning margin
## 1.157204                   margin provided
## 1.157208                  airplane's stall
## 1.157209                     stall warning
## 1.157210                    warning system
## 1.157216                         runway 29
## 1.157219                  aircraft crashed
## 1.157225                    final approach
## 1.157228                  aircraft crashed
## 1.157232                           sea 100
## 1.157233                        100 meters
## 1.157236                         shore 400
## 1.157237                        400 meters
## 1.157238                      meters short
## 1.157243                       cargo plane
## 1.157244                     plane crashed
## 1.157259                    final approach
## 1.157262                     air ambulance
## 1.157263                 ambulance crashed
## 1.157272                   poor visibility
## 1.157275                 russian turboprop
## 1.157276                turboprop carrying
## 1.157277                      carrying oil
## 1.157278                       oil workers
## 1.157279                   workers crashed
## 1.157285                       caught fire
## 1.157289                    final approach
## 1.157294                         heavy fog
## 1.157297                          planeã â
## 1.157298                               â â
## 1.157306                 emergency landing
## 1.157317                     plane touched
## 1.157322                        plane fell
## 1.157330                       caught fire
## 1.157331                        fire pilot
## 1.157332                       pilot error
## 1.157333                        error lack
## 1.157342                blinding whiteness
## 1.157350                 pilots apparently
## 1.157351                apparently causing
## 1.157357                    wrong maneuver
## 1.157360                       cargo plane
## 1.157365                     climbing lost
## 1.157366                     lost altitude
## 1.157371                     lake victoria
## 1.157375                  airliner crashed
## 1.157382               colombian caribbean
## 1.157383                  caribbean island
## 1.157389                  aircraft climbed
## 1.157396                          100 feet
## 1.157400                      lost control
## 1.157410                  training mission
## 1.157413                  aircraft crashed
## 1.157423                     plane crashed
## 1.157426                          en route
## 1.157431                       hour flight
## 1.157436                           found 5
## 1.157437                            5 days
## 1.157444                      hard landing
## 1.157466                         kan river
## 1.157471                passenger's infant
## 1.157472                       infant fell
## 1.157482                     aircraft shot
## 1.157490                   training flight
## 1.157493                       twin engine
## 1.157494                   engine aircraft
## 1.157495                  aircraft stalled
## 1.157501                petroleum facility
## 1.157507                     plane entered
## 1.157510                    spiral descent
## 1.157518                   captain noticed
## 1.157521                    fuel imbalance
## 1.157537                    sideslip angle
## 1.157542                 autopilot control
## 1.157548                       rudder trim
## 1.157549                    trim mechanism
## 1.157550                   mechanism forty
## 1.157556                        cross flow
## 1.157563                        bank angle
## 1.157564                     angle warning
## 1.157569                     warning chime
## 1.157581                  correct altitude
## 1.157584             autopilot disengaging
## 1.157590                    servo reaching
## 1.157593                      torque limit
## 1.157601              compensation applied
## 1.157605                       rudder trim
## 1.157606                        trim input
## 1.157610                     plane entered
## 1.157615                     steep descent
## 1.157616            descent disintegrating
## 1.157619                            fl 199
## 1.157622               investigation found
## 1.157623                        found poor
## 1.157624                   poor visibility
## 1.157629                         low cloud
## 1.157637                  pilots realizing
## 1.157638                  realizing sooner
## 1.157651                        lost radio
## 1.157652                     radio contact
## 1.157661                     propeller hit
## 1.157667                        plane lost
## 1.157668                      lost control
## 1.157671                     plane crashed
## 1.157681                 remote aboriginal
## 1.157682              aboriginal community
## 1.157685                    lockhart river
## 1.157688                         cape york
## 1.157689                    york peninsula
## 1.157696                        heavy rain
## 1.157699                      strong winds
## 1.157709                 rugged rainforest
## 1.157710                rainforest terrain
## 1.157711                 terrain controled
## 1.157712                  controled flight
## 1.157717                       flight crew
## 1.157724                   mountain rising
## 1.157742                instrument landing
## 1.157743                  landing approach
## 1.157744                approach attempted
## 1.157747                         rnav gnss
## 1.157748                     gnss approach
## 1.157751                    charter flight
## 1.157752                    flight crashed
## 1.157760              unkown circumstances
## 1.157767                routine operations
## 1.157770               delivering military
## 1.157771                 military supplies
## 1.157777                  drought stricken
## 1.157783                 western provinces
## 1.157789                 accident occurred
## 1.157798                    safely reached
## 1.157799               reached livingstone
## 1.157818                   crashed crashed
## 1.157823                      dense forest
## 1.157826                        plane lost
## 1.157827                      lost contact
## 1.157831                          tower 30
## 1.157832                        30 minutes
## 1.157850                     plane crashed
## 1.157856                      fire erupted
## 1.157861                          1 engine
## 1.157864                      crew aborted
## 1.157877              airliner disappeared
## 1.157884                      dense jungle
## 1.157885                    jungle shortly
## 1.157895                     flames coming
## 1.157902                     plane shortly
## 1.157912                      fell skidded
## 1.157939                     48 passengers
## 1.157942                      plane landed
## 1.157948                         runway 24
## 1.157949                        24 overran
## 1.157952                      runway broke
## 1.157957                       caught fire
## 1.157961              severe thunderstorms
## 1.157970                    rain lightning
## 1.157975                        309 aboard
## 1.157976                    aboard escaped
## 1.157980                       43 injuries
## 1.157983                      pilot landed
## 1.157991                        rain slick
## 1.157992                      slick runway
## 1.157996              virtually impossible
## 1.158011                    reverse thrust
## 1.158021                    wheels touched
## 1.158025                aircraft developed
## 1.158026                  developed engine
## 1.158027                    engine trouble
## 1.158030                          en route
## 1.158033                        bari italy
## 1.158036                    djerba tunisia
## 1.158039                    crew contacted
## 1.158040                 contacted palermo
## 1.158041                       palermo atc
## 1.158045                 emergency landing
## 1.158051                 sea approximately
## 1.158052                  approximately 19
## 1.158053                          19 miles
## 1.158054                       miles north
## 1.158059                    pilot reported
## 1.158065                       failed fuel
## 1.158066                   fuel starvation
## 1.158069                  maintenance crew
## 1.158070                  crew incorrectly
## 1.158071             incorrectly installed
## 1.158074                        fuel gauge
## 1.158078                            atr 42
## 1.158082                            atr 72
## 1.158090               contributing factor
## 1.158101                  proper emergency
## 1.158102              emergency procedures
## 1.158106                         plane ran
## 1.158112                        march 2009
## 1.158115                     italian court
## 1.158116                   court sentenced
## 1.158126          manslaughter prosecutors
## 1.158132                   plane's engines
## 1.158133                   engines stopped
## 1.158134               stopped functioning
## 1.158135                 functioning garbi
## 1.158136                      garbi failed
## 1.158139                  follow emergency
## 1.158140              emergency procedures
## 1.158148                    reached runway
## 1.158149                         runway 25
## 1.158152                     palermo punta
## 1.158153                       punta raisi
## 1.158154                     raisi airport
## 1.158159                   standard runway
## 1.158160                         runway 20
## 1.158161                      20 witnesses
## 1.158182                   nearest airport
## 1.158185                helicopter crashed
## 1.158190                           3 miles
## 1.158203                       tallinn atc
## 1.158204                         atc radar
## 1.158205                           radar 3
## 1.158206                         3 minutes
## 1.158214                        gusty wind
## 1.158215                   wind conditions
## 1.158216                conditions failure
## 1.158220                    power steering
## 1.158221                   steering system
## 1.158222                     system caused
## 1.158225                   coating flaking
## 1.158229                     servo pistons
## 1.158232                   loosened plasma
## 1.158233                    plasma coating
## 1.158234                    coating flakes
## 1.158235                    flakes blocked
## 1.158238                     return valves
## 1.158242                    servos causing
## 1.158247                     abruptly lose
## 1.158258                     crew reported
## 1.158263                  air conditioning
## 1.158264               conditioning system
## 1.158268                  airliner entered
## 1.158269                     entered greek
## 1.158270                    greek airspace
## 1.158271                      airspace atc
## 1.158272                          atc lost
## 1.158273                      lost contact
## 1.158281                       16 fighters
## 1.158291                         16 pilots
## 1.158292                   pilots reported
## 1.158313                      oxygen masks
## 1.158321                   plane continued
## 1.158325                  programmed route
## 1.158329                   holding pattern
## 1.158347                 flight attendants
## 1.158350                      stayed awake
## 1.158353                   portable oxygen
## 1.158354                    oxygen bottles
## 1.158362                  locked terrorist
## 1.158363                   terrorist proof
## 1.158364                     proof cockpit
## 1.158365                      cockpit door
## 1.158372                     engine failed
## 1.158375                   fuel starvation
## 1.158379               computer controlled
## 1.158380                controlled systems
## 1.158381                    systems aboard
## 1.158384                    plane unlocked
## 1.158389                   plane continued
## 1.158397               mountainous terrain
## 1.158400                          25 miles
## 1.158401                       miles north
## 1.158404                        athens cvr
## 1.158405                         cvr tapes
## 1.158410                     student pilot
## 1.158411                      pilot flight
## 1.158412                  flight attendant
## 1.158413                 attendant andreas
## 1.158414                 andreas prodromou
## 1.158428                    mayday message
## 1.158438                   wrong frequency
## 1.158441                    cabin pressure
## 1.158442                  pressure control
## 1.158452                     auto position
## 1.158455               maintenance workers
## 1.158469                  subsequent check
## 1.158470                       check lists
## 1.158479                      oxygen masks
## 1.158480                        masks fell
## 1.158484                   passenger cabin
## 1.158487                    eventually led
## 1.158492                     pilots losing
## 1.158493              losing consciousness
## 1.158497                    plane crashing
## 1.158500                          en route
## 1.158503                     crew reported
## 1.158504                   reported engine
## 1.158505                    engine trouble
## 1.158519                   losing altitude
## 1.158522                eventually crashed
## 1.158526                         sierra de
## 1.158527                         de perija
## 1.158528                  perija mountains
## 1.158532              columbian venezuelan
## 1.158533                 venezuelan border
## 1.158539                    reduced engine
## 1.158540                      engine power
## 1.158546                       rapid climb
## 1.158549                    fl330 allowing
## 1.158550                 allowing airspeed
## 1.158563                     data recorder
## 1.158579                       pilots held
## 1.158601                        ice inside
## 1.158604                      engine's pt2
## 1.158605                         pt2 probe
## 1.158624                      strong winds
## 1.158628                    tropical storm
## 1.158636                 emergency landing
## 1.158640                      landing gear
## 1.158647                    jungle airport
## 1.158650                     plane crashed
## 1.158651                     crashed broke
## 1.158655                       caught fire
## 1.158658                           2 miles
## 1.158662                airport passengers
## 1.158663               passengers reported
## 1.158664                    reported heavy
## 1.158665                  heavy turbulence
## 1.158671                     plane crashed
## 1.158692                 emergency landing
## 1.158703                    jetliner shook
## 1.158704                   shook violently
## 1.158705                  violently veered
## 1.158714          residential neighborhood
## 1.158715                  neighborhood 500
## 1.158716                         500 yards
## 1.158717                        yards past
## 1.158736                         runway 31
## 1.158739                         plane hit
## 1.158740                         hit trees
## 1.158741                     trees crashed
## 1.158746                          en route
## 1.158752                        plane lose
## 1.158753                     lose altitude
## 1.158763                      pieces north
## 1.158766               brazzaville weather
## 1.158773                      strong winds
## 1.158776                 aircraft carrying
## 1.158777                   carrying troops
## 1.158781                      hard landing
## 1.158782                   landing causing
## 1.158785                      landing gear
## 1.158810                        tower lost
## 1.158811                        lost sight
## 1.158825                  murtala muhammad
## 1.158826            muhammad international
## 1.158827             international airport
## 1.158830                     plane crashed
## 1.158833                          30 miles
## 1.158834                       miles north
## 1.158856                  poor maintenance
## 1.158863                       ground crew
## 1.158868                  lightning strike
## 1.158876                      plane caused
## 1.158882                    ignite causing
## 1.158887                      bank heavily
## 1.158893                   eventually lose
## 1.158894                      lose control
## 1.158897                    military plane
## 1.158898                     plane crashed
## 1.158902                apartment building
## 1.158906                    azari district
## 1.158912                  mehrabad airport
## 1.158915                    plane suffered
## 1.158916                   suffered engine
## 1.158917                    engine failure
## 1.158926                 emergency landing
## 1.158929                     jetliner slid
## 1.158932                        runway 13c
## 1.158935                  chicago's midway
## 1.158936                    midway airport
## 1.158941                  airport boundary
## 1.158942                    boundary fence
## 1.158951               nearby intersection
## 1.158952              intersection killing
## 1.158959                         boy heavy
## 1.158960                        heavy snow
## 1.158979                        35 minutes
## 1.158986                    pilots failure
## 1.158991                    reverse thrust
## 1.158995                     timely manner
## 1.158998                       safely slow
## 1.159010                    runway overrun
## 1.159013                  failure occurred
## 1.159026              airplane's autobrake
## 1.159027                  autobrake system
## 1.159028                 system distracted
## 1.159032                   thrust reverser
## 1.159033                    reverser usage
## 1.159037               challenging landing
## 1.159038              landing contributing
## 1.159044               southwest airline's
## 1.159045                       airline's 1
## 1.159046                         1 failure
## 1.159055               consistent guidance
## 1.159060                  company policies
## 1.159063                procedures related
## 1.159066                   arrival landing
## 1.159067                  landing distance
## 1.159068             distance calculations
## 1.159069                    calculations 2
## 1.159070                     2 programming
## 1.159076               onboard performance
## 1.159077              performance computer
## 1.159083              inherent assumptions
## 1.159087                  program critical
## 1.159090                    pilot decision
## 1.159093                            3 plan
## 1.159098              autobrake procedures
## 1.159102            familiarization period
## 1.159105                         4 failure
## 1.159115                arrival assessment
## 1.159120         operational uncertainties
## 1.159129                    pilots failure
## 1.159139                     included poor
## 1.159140                      poor braking
## 1.159141                    braking action
## 1.159145                tailwind component
## 1.159149                           5 knots
## 1.159150                knots contributing
## 1.159163             engineering materials
## 1.159164               materials arresting
## 1.159165                  arresting system
## 1.159173                    limited runway
## 1.159174                     runway safety
## 1.159182                        runway 31c
## 1.159185                       plane crash
## 1.159186                      crash landed
## 1.159194                   lightning storm
## 1.159201                     port harcourt
## 1.159202                  harcourt airport
## 1.159203                     airport pilot
## 1.159204                       pilot error
## 1.159207                   crew's decision
## 1.159215                 decision altitude
## 1.159231                   nigerian pilots
## 1.159238                   adverse weather
## 1.159239                weather conditions
## 1.159240              conditions including
## 1.159241               including windshear
## 1.159253                  detect windshear
## 1.159269                  detect windshear
## 1.159272                  seaplane crashed
## 1.159275                       miami beach
## 1.159295                    wing separated
## 1.159296                   separated prior
## 1.159300                   plane impacting
## 1.159303                 water examination
## 1.159307                 wreckage revealed
## 1.159308                  revealed fatigue
## 1.159309                    fatigue cracks
## 1.159318                     chalk's ocean
## 1.159319                     ocean airways
## 1.159320               airways maintenance
## 1.159321               maintenance program
## 1.159326                   properly repair
## 1.159327                    repair fatigue
## 1.159328                    fatigue cracks
## 1.159342              correct deficiencies
## 1.159346             company's maintenance
## 1.159347               maintenance program
## 1.159351                           16 inch
## 1.159352                        inch crack
## 1.159362                  significant flaw
## 1.159366                    nearby support
## 1.159367                      support beam
## 1.159382                     plane crashed
## 1.159389                       caspian sea
## 1.159390                             sea 8
## 1.159391                         8 minutes
## 1.159397                   baku instrument
## 1.159398                instrument failure
## 1.159399                      failure left
## 1.159402                       crew unable
## 1.159410               positionning flight
## 1.159422                    final approach
## 1.159425                  aircraft crashed
## 1.159429                       frozen lake
## 1.159430                            lake 3
## 1.159431                              3 km
## 1.159434                  runway threshold
## 1.159435                 threshold crashed
## 1.159438                       bad weather
## 1.159441                       cargo plane
## 1.159442                    plane carrying
## 1.159443             carrying humanitarian
## 1.159444               humanitarian relief
## 1.159445                      relief items
## 1.159446                     items crashed
## 1.159447                   crashed shortly
## 1.159457                    engine failure
## 1.159463               improperly balanced
## 1.159464                    balanced plane
## 1.159473                     stuck landing
## 1.159474                      landing gear
## 1.159477                    plane suffered
## 1.159480                     double engine
## 1.159481                      engine flame
## 1.159490                      poor weather
## 1.159491                weather conditions
## 1.159494                    plane carrying
## 1.159495             carrying peacekeeping
## 1.159496             peacekeeping soldiers
## 1.159497                  soldiers crashed
## 1.159501                      snowy forest
## 1.159507                        2,300 feet
## 1.159512                      wrong flight
## 1.159513                       flight path
## 1.159516                     plane crashed
## 1.159519                          18 miles
## 1.159525                      kosice pilot
## 1.159526                       pilot error
## 1.159529                       pilot chose
## 1.159538                  airport's radars
## 1.159539                    radars relying
## 1.159545                    visual contact
## 1.159551                       cargo plane
## 1.159556                       test flight
## 1.159564                      plane taking
## 1.159565                   taking pictures
## 1.159568                         left wing
## 1.159569                     wing impacted
## 1.159572                         left wing
## 1.159581                        plane lost
## 1.159582                      lost contorl
## 1.159583                   contorl crashed
## 1.159588                       flight crew
## 1.159589                       crew failed
## 1.159592                maintain clearance
## 1.159601                   break formation
## 1.159602                  formation flight
## 1.159605          maneuvering contributing
## 1.159615                      flight crews
## 1.159625                      cargo flight
## 1.159626                   flight reported
## 1.159631                   asymmetric fuel
## 1.159632                    fuel condition
## 1.159639                    lower altitude
## 1.159642               controllers cleared
## 1.159647                        4,000 feet
## 1.159654                 pilot transmitted
## 1.159665                     vertical dive
## 1.159674                  pilot's inflight
## 1.159675                     inflight loss
## 1.159681                     reported fuel
## 1.159682                    fuel asymmetry
## 1.159683               asymmetry condition
## 1.159686              undetermined reasons
## 1.159687                    reasons twenty
## 1.159688                    twenty minutes
## 1.159696                 plane disappeared
## 1.159699                            rio de
## 1.159700                        de janeiro
## 1.159701                     janeiro radar
## 1.159706                        flying vfr
## 1.159709                      poor weather
## 1.159710                weather conditions
## 1.159715                  route attempting
## 1.159723                     plane crashed
## 1.159736                     airplane flew
## 1.159742                    mount marsabit
## 1.159753                      cargo flight
## 1.159768                     plane crashed
## 1.159773                     field located
## 1.159778                       cargo plane
## 1.159779                    plane carrying
## 1.159780                      carrying u.s
## 1.159781                          u.s anti
## 1.159782                    anti narcotics
## 1.159783               narcotics officials
## 1.159784                 officials crashed
## 1.159791                      bost airport
## 1.159794                       lashkar gah
## 1.159797                     plane overran
## 1.159819                      pilot pulled
## 1.159823                     avoid hitting
## 1.159831                   gain sufficient
## 1.159832                  sufficient speed
## 1.159835                   remain airborne
## 1.159838                  jetliner crashed
## 1.159842                         black sea
## 1.159848                      driving rain
## 1.159851                    low visibility
## 1.159861                 plane disappeared
## 1.159864                     radar screens
## 1.159881                     adler airport
## 1.159885                     landing pilot
## 1.159886                       pilot error
## 1.159893            psychoemotional stress
## 1.159894                  stress condition
## 1.159899                    control inputs
## 1.159900                        inputs due
## 1.159908               roll awareness.this
## 1.159909            awareness.this started
## 1.159912                abnormal situation
## 1.159915            captain's insufficient
## 1.159916                insufficient pitch
## 1.159917                     pitch control
## 1.159918                    control inputs
## 1.159919                        inputs led
## 1.159936                inadequate control
## 1.159937                    control inputs
## 1.159943              contributing factors
## 1.159955                  aircraft's pitch
## 1.159956                    pitch attitude
## 1.159957                 attitude altitude
## 1.159960                    vertical speed
## 1.159968                   proper reaction
## 1.159974                     gpws warnings
## 1.159986                   aircraft veered
## 1.159990                         left lost
## 1.159991                     lost altitude
## 1.159999                              1 nm
## 1.160000                      nm northwest
## 1.160006              aircraft disappeared
## 1.160009                     radar screens
## 1.160017                     tomãƒâ island
## 1.160020                  aircraft crashed
## 1.160028                   shore witnesses
## 1.160040                        crash site
## 1.160053                         main body
## 1.160063                     bamboo forest
## 1.160071                     nearby fields
## 1.160074                     plane crashed
## 1.160077                         125 miles
## 1.160078                   miles southwest
## 1.160081                   shanghai caused
## 1.160089                       icy regions
## 1.160097                    military plane
## 1.160098                     plane crashed
## 1.160101                        trees past
## 1.160117                     unlit airport
## 1.160118                   airport chadian
## 1.160119                    chadian rebels
## 1.160132                       air missile
## 1.160137                  copilot survived
## 1.160140                     plane crashed
## 1.160154                    pilot executed
## 1.160160                 accident happened
## 1.160161                        happened 1
## 1.160162                       1 kilometer
## 1.160168                       cargo plane
## 1.160171                    engine failure
## 1.160179                     lost altitude
## 1.160186             irkutsk international
## 1.160187             international airport
## 1.160192                    low visibility
## 1.160201                     runway struck
## 1.160224                       landed crew
## 1.160225                        crew error
## 1.160230              uncontrolled actions
## 1.160246             uncontrolled movement
## 1.160263                        plane lost
## 1.160270                      struck power
## 1.160271                       power lines
## 1.160277                       wheat field
## 1.160278                    field bursting
## 1.160283                       engine fire
## 1.160284                      fire crashed
## 1.160287                          en route
## 1.160294                         low cloud
## 1.160297                      poor weather
## 1.160298                weather conditions
## 1.160318                          flames 9
## 1.160319                           9 miles
## 1.160320                       miles short
## 1.160326                       cargo plane
## 1.160333                weekly maintenance
## 1.160342                   poor visibility
## 1.160350                     plane circled
## 1.160360         pilot's misinterpretation
## 1.160364               airplane's position
## 1.160365                 position relative
## 1.160369                    final approach
## 1.160370                      approach fix
## 1.160379                   descent profile
## 1.160382                        6 nautical
## 1.160383                    nautical miles
## 1.160387             subsequent controlled
## 1.160388                 controlled flight
## 1.160391                    rising terrain
## 1.160392              terrain contributing
## 1.160399                        low clouds
## 1.160402                       cargo plane
## 1.160403                     plane crashed
## 1.160406                  reporting engine
## 1.160410                          en route
## 1.160413                 plane disappeared
## 1.160416                     radar shortly
## 1.160421                     distress call
## 1.160424                     distress call
## 1.160444                     plane crashed
## 1.160448                          field 30
## 1.160449                          30 miles
## 1.160450                       miles north
## 1.160457               weather forecasters
## 1.160458              forecasters reported
## 1.160459            reported thunderstorms
## 1.160473                       crew pushed
## 1.160487                     thunder storm
## 1.160490                      crew steered
## 1.160495                    manual control
## 1.160513             subsequent transition
## 1.160517                         flat spin
## 1.160526                      jet commuter
## 1.160546                         runway 22
## 1.160558                         runway 22
## 1.160561              subsequently cleared
## 1.160566                       flight 5191
## 1.160569                         runway 26
## 1.160578                         runway 22
## 1.160581                 plane accelerated
## 1.160584                         137 knots
## 1.160585                       knots befoe
## 1.160594                        runway ran
## 1.160598                 airport perimeter
## 1.160599                   perimeter fence
## 1.160602                    impacted trees
## 1.160606                    adjacent horse
## 1.160607                        horse farm
## 1.160614                  takeoff sequence
## 1.160629                         plane ran
## 1.160633                  runway.the plane
## 1.160639                        1,800 feet
## 1.160640                         feet past
## 1.160648                        light rain
## 1.160680                     lone survivor
## 1.160683                     flight crew's
## 1.160684                    crew's failure
## 1.160695               airplane's location
## 1.160699                   airport surface
## 1.160707                       cross check
## 1.160717                    correct runway
## 1.160720              takeoff contributing
## 1.160727                     flight crew's
## 1.160728               crew's nonpertinent
## 1.160729         nonpertinent conversation
## 1.160738              positional awareness
## 1.160742                  federal aviation
## 1.160743         aviation administration's
## 1.160744          administration's failure
## 1.160750                  runway crossings
## 1.160756                      specific air
## 1.160757                       air traffic
## 1.160758                   traffic control
## 1.160759                control clearances
## 1.160762                     plane crashed
## 1.160769                      plane's left
## 1.160770                         left wing
## 1.160779                    ground causing
## 1.160789                        catch fire
## 1.160792                   nato supporting
## 1.160793               supporting aircraft
## 1.160794                  aircraft crashed
## 1.160795                        crashed 12
## 1.160796                          12 miles
## 1.160797                        miles west
## 1.160803                     crew reported
## 1.160804                reported technical
## 1.160815                      ignited fuel
## 1.160816                         fuel leak
## 1.160817                       leak eleven
## 1.160820                  ranking officers
## 1.160826                helicopter crashed
## 1.160830                      ground split
## 1.160835                       caught fire
## 1.160838                    north ossetian
## 1.160839                 ossetian militant
## 1.160842                     called kataib
## 1.160843                         kataib al
## 1.160844                          al khoul
## 1.160845                     khoul claimed
## 1.160846            claimed responsibility
## 1.160854                    military plane
## 1.160855                     plane crashed
## 1.160856                        crashed en
## 1.160857                          en route
## 1.160861                        20 minutes
## 1.160869                       hour flight
## 1.160870                         flight 18
## 1.160871                             18 nm
## 1.160875                   destination ten
## 1.160876                           ten top
## 1.160877                       top ranking
## 1.160878                  ranking military
## 1.160879                military officials
## 1.160897                flight disappeared
## 1.160902                             16 50
## 1.160905                    leaving manaus
## 1.160908                             15 35
## 1.160909                      35 scheduled
## 1.160916                             18 12
## 1.160919                          en route
## 1.160922                 jetliner collided
## 1.160926                       embraer emb
## 1.160927                         emb 135bj
## 1.160928                     135bj legaacy
## 1.160929                       legaacy 600
## 1.160930                      600 business
## 1.160931                      business jet
## 1.160938                       land safely
## 1.160941                          serra de
## 1.160942                       de cachimbo
## 1.160946                      damaged wing
## 1.160971                   flight recorder
## 1.160972               recorder transcript
## 1.160976                     executive jet
## 1.160985                     brazilian air
## 1.160986                       air traffic
## 1.160987                   traffic control
## 1.160997                        boeing 737
## 1.161001                   planes collided
## 1.161004                     brazilian air
## 1.161005                         air force
## 1.161006               force investigation
## 1.161007           investigation concluded
## 1.161016                           emb 135
## 1.161017                   135 contributed
## 1.161020                       plane crash
## 1.161026                flight controllers
## 1.161027                controllers failed
## 1.161053                     charter plane
## 1.161054                     plane skidded
## 1.161061                       runway slid
## 1.161067                       caught fire
## 1.161073                       hurt eleven
## 1.161079                   injured burning
## 1.161080                      burning fuel
## 1.161087                       main reason
## 1.161100                     badly injured
## 1.161104                   spoilers failed
## 1.161111                   failed spoilers
## 1.161114                       damp runway
## 1.161118                   slight tailwind
## 1.161131                   pilots realized
## 1.161140                selected emergency
## 1.161141                 emergency braking
## 1.161149                  antilock braking
## 1.161150                    braking system
## 1.161153                   plane belonging
## 1.161156                uzbekistan airways
## 1.161159                    carrying uzbek
## 1.161160                  uzbek servicemen
## 1.161161                servicemen crashed
## 1.161164                    losing control
## 1.161171                      poor weather
## 1.161172                weather conditions
## 1.161176                    final approach
## 1.161177                      approach fog
## 1.161178                       fog reduced
## 1.161179                reduced visibility
## 1.161183                aircraft descended
## 1.161197                  jetliner crashed
## 1.161201                        corn field
## 1.161223                          heed air
## 1.161224                       air traffic
## 1.161225               traffic controllers
## 1.161226                controllers advice
## 1.161232                    stormy weather
## 1.161235                         pilotsã â
## 1.161236                               â â
## 1.161237                       â incorrect
## 1.161238                 incorrect actions
## 1.161239                   actions stalled
## 1.161244                   aircraft struck
## 1.161258                 remote indonesian
## 1.161259               indonesian province
## 1.161264                       cargo plane
## 1.161268                    final approach
## 1.161274                     antenna tower
## 1.161277                       crashed fog
## 1.161280                   poor visibility
## 1.161281              visibility prevailed
## 1.161290                  aircraft crashed
## 1.161305                     plane stalled
## 1.161306                    stalled veered
## 1.161323                     air ambulance
## 1.161324                 ambulance crashed
## 1.161328              repositioning flight
## 1.161331                        loma linda
## 1.161332                     linda medical
## 1.161333                    medical center
## 1.161337                         home base
## 1.161354               pilot's inadvertent
## 1.161355             inadvertent encounter
## 1.161358         instrument meteorological
## 1.161359         meteorological conditions
## 1.161362                subsequent failure
## 1.161365                  maintain terrain
## 1.161366                 terrain clearance
## 1.161367            clearance contributing
## 1.161374                        dark night
## 1.161375                  night conditions
## 1.161376                    conditions fog
## 1.161379               mountainous terrain
## 1.161394                      poor weather
## 1.161395                weather conditions
## 1.161399                    pilot reported
## 1.161400                   reported strong
## 1.161401                      strong winds
## 1.161402                    winds wreckage
## 1.161405                           found 5
## 1.161406                           5 miles
## 1.161407                       miles south
## 1.161419         accidentally disconnected
## 1.161433                plane's navigation
## 1.161434            navigation instruments
## 1.161442                      lost control
## 1.161455                   control listing
## 1.161464                    irs navigation
## 1.161465                 navigation system
## 1.161468               repeatedly reported
## 1.161469           reported malfunctioning
## 1.161478              initially distracted
## 1.161483                       cargo plane
## 1.161484                     plane crashed
## 1.161497                         balad air
## 1.161498                          air base
## 1.161509                     plane crashed
## 1.161510                     crashed 2.5km
## 1.161511                       2.5km short
## 1.161515                  runway.the plane
## 1.161518                  carrying turkish
## 1.161519              turkish construction
## 1.161520              construction workers
## 1.161523                helicopter crashed
## 1.161524                 crashed northeast
## 1.161527                      baghdad shot
## 1.161535                     heavy machine
## 1.161536                      machine guns
## 1.161540                    shoulder fired
## 1.161541                     fired missile
## 1.161544                    crew abandoned
## 1.161553                        engine due
## 1.161556                    bird ingestion
## 1.161559                      jet overshot
## 1.161567                     truck killing
## 1.161572                      landing gear
## 1.161573                      gear sheared
## 1.161590                    plane overshot
## 1.161593                    runway crashed
## 1.161597                   airport barrier
## 1.161598                     barrier fence
## 1.161605                     cockpit voice
## 1.161606                    voice recorder
## 1.161607                 recorder revealed
## 1.161621                         wing flap
## 1.161622                       flap angles
## 1.161623                    angles moments
## 1.161629               investigator stated
## 1.161632                     passenger jet
## 1.161639                           265 mph
## 1.161644                    normal landing
## 1.161645                     landing speed
## 1.161655                          planeã â
## 1.161656                               â â
## 1.161659                 automated warning
## 1.161660                    warning system
## 1.161664                    sounded alarms
## 1.161665                    alarms fifteen
## 1.161666                     fifteen times
## 1.161684                helicopter crashed
## 1.161687                     kauai shortly
## 1.161691                     pilot radioed
## 1.161702                    helicopter hit
## 1.161707                         200 yards
## 1.161711                    normal landing
## 1.161712                       landing pad
## 1.161717             maintenance personnel
## 1.161720                  properly tighten
## 1.161721                    tighten torque
## 1.161724                    flight control
## 1.161725                     control servo
## 1.161726                       servo lower
## 1.161727                  lower attachment
## 1.161728                 attachment clevis
## 1.161733                  functioning lock
## 1.161734                       lock washer
## 1.161740                    flight control
## 1.161741                control disconnect
## 1.161745                     complete loss
## 1.161748                helicopter control
## 1.161749              control contributing
## 1.161756                operator's failure
## 1.161761               maintenance program
## 1.161769               federal regulations
## 1.161774                        flying low
## 1.161783                         loud bang
## 1.161789                        tail rotor
## 1.161790                        rotor fell
## 1.161798                         hit trees
## 1.161812                   fatigue failure
## 1.161816                        tail rotor
## 1.161817                       rotor blade
## 1.161818                        blade root
## 1.161819                      root fitting
## 1.161820                       fitting due
## 1.161824              manufacturing defect
## 1.161833                        tail rotor
## 1.161834                      rotor system
## 1.161839                        tail rotor
## 1.161840                     rotor control
## 1.161843               contributing factor
## 1.161853                 helicopter struck
## 1.161857              autorotation fifteen
## 1.161858                   fifteen minutes
## 1.161866                     crew informed
## 1.161867                      informed atc
## 1.161877                   losing altitude
## 1.161883                       twin engine
## 1.161884                      engine plane
## 1.161885                     plane crashed
## 1.161896                         heavy fog
## 1.161899                airplane contacted
## 1.161902                        ground 400
## 1.161910                         left wing
## 1.161911                          wing hit
## 1.161928                    fuselage broke
## 1.161948                reduced visibility
## 1.161951                          time due
## 1.161967               correct information
## 1.161971                landing trajectory
## 1.161981                 landing procedure
## 1.161998                       cargo plane
## 1.161999                    plane carrying
## 1.162000                  carrying african
## 1.162001              african peacekeepers
## 1.162007                     anti aircraft
## 1.162008                  aircraft missile
## 1.162009                   missile shortly
## 1.162015                 mogadishu airport
## 1.162018                     aircraft lost
## 1.162024                      indian ocean
## 1.162032                 eastern outskirts
## 1.162037                      plane landed
## 1.162048                       bad weather
## 1.162049                    weather twenty
## 1.162050                    twenty minutes
## 1.162053                 eventually taking
## 1.162057                     plane crashed
## 1.162062                          en route
## 1.162071                        son walked
## 1.162075                          16 hours
## 1.162078                   guyana's jungle
## 1.162099                       rotor blade
## 1.162100                      blade struck
## 1.162107                  land conflicting
## 1.162108               conflicting reports
## 1.162119                  chechnyan rebels
## 1.162122                     plane crashed
## 1.162126                      dense swampy
## 1.162127                   swampy forested
## 1.162130                              5 km
## 1.162133                    douala airport
## 1.162134                   airport moments
## 1.162140                    stormy weather
## 1.162176                    pilot released
## 1.162179                   flight controls
## 1.162188                        auto pilot
## 1.162195                     banking angle
## 1.162199                        34 degrees
## 1.162203             intervention worsened
## 1.162208                    captain grabed
## 1.162211                 controls appeared
## 1.162212                 appeared confused
## 1.162225                    erratic manner
## 1.162226                 manner increasing
## 1.162229                     banking angle
## 1.162232                        50 degrees
## 1.162236                        bank angle
## 1.162237                   angle increased
## 1.162240                        70 degrees
## 1.162243                    captain stated
## 1.162250                      officer told
## 1.162258                 quickly corrected
## 1.162263                         left left
## 1.162264                         left left
## 1.162265                      left captain
## 1.162270                      plunged nose
## 1.162275                    mangrove swamp
## 1.162276                    swamp collided
## 1.162286                 emergency landing
## 1.162290                       road french
## 1.162291                   french soldiers
## 1.162292                   soldiers aboard
## 1.162297              sinai's peacekeeping
## 1.162298                peacekeeping force
## 1.162301               multinational force
## 1.162302                   force observers
## 1.162308                       cargo plane
## 1.162309                      plane caught
## 1.162310                       caught fire
## 1.162311                      fire shortly
## 1.162317                  emergency return
## 1.162318                    return attempt
## 1.162327                     plane crashed
## 1.162331                     nearby forest
## 1.162332                    forest crashed
## 1.162335                      dense jungle
## 1.162336                    jungle shortly
## 1.162342                     pampa hermosa
## 1.162345                         plane hit
## 1.162354                helicopter crashed
## 1.162360                    airport runway
## 1.162368              shuttling passengers
## 1.162371                    sierra leone's
## 1.162372                   leone's coastal
## 1.162373                   coastal capital
## 1.162378                     lungi airport
## 1.162381                      pilot issued
## 1.162384                   distress signal
## 1.162394            mitchell international
## 1.162395             international airport
## 1.162398              milwaukee requesting
## 1.162401                  emergency return
## 1.162411                     lake michigan
## 1.162422                  organ transplant
## 1.162423                   transplant team
## 1.162426                    pilot reported
## 1.162432                      runaway trim
## 1.162433                        trim prior
## 1.162439             pilot's mismanagement
## 1.162443                   abnormal flight
## 1.162444                    flight control
## 1.162445                 control situation
## 1.162448                  improper actions
## 1.162449                 actions including
## 1.162450                    including lack
## 1.162453                 crew coordination
## 1.162458                  control airspeed
## 1.162462                prioritize control
## 1.162480                 resulting control
## 1.162481                    control forces
## 1.162495                  airplane's speed
## 1.162502                poorly coordinated
## 1.162503       coordinated troubleshooting
## 1.162504           troubleshooting efforts
## 1.162507                    pilots allowed
## 1.162510                abnormal situation
## 1.162518                          en route
## 1.162522                       forest fire
## 1.162525                helicopter crashed
## 1.162528                      dense forest
## 1.162537                        6,100 feet
## 1.162540                     plane crashed
## 1.162541                   crashed shortly
## 1.162548                      swamp coming
## 1.162551                       rest upside
## 1.162559               democratic republic
## 1.162566                  aircraft crashed
## 1.162569                      phnom damrey
## 1.162570                   damrey mountain
## 1.162576                        1,640 feet
## 1.162579                         5 minutes
## 1.162587                    crew undershot
## 1.162596                   landing causing
## 1.162599                      landing gear
## 1.162618                   control overran
## 1.162631                         cargo jet
## 1.162632                          jet blew
## 1.162646                  navolato highway
## 1.162651                       cars coming
## 1.162661                       twin engine
## 1.162662                      engine plane
## 1.162663                     plane crashed
## 1.162664                   crashed shortly
## 1.162671                   gravel airstrip
## 1.162674                       muncho lake
## 1.162681                      jet airliner
## 1.162682                  airliner crashed
## 1.162689                        heavy rain
## 1.162692                 congonhas airport
## 1.162695                     plane skidded
## 1.162705                     major roadway
## 1.162710                       gas station
## 1.162713                 building bursting
## 1.162722           malfunctioning reverser
## 1.162728                 correct procedure
## 1.162783                operating reverser
## 1.162798                      pilot forgot
## 1.162806                      idle leaving
## 1.162809                   engine reversed
## 1.162814                 thrusting forward
## 1.162826                 stopping distance
## 1.162837                   slippery runway
## 1.162853               contributing factor
## 1.162857                        heavy rain
## 1.162866                  newly resurfaced
## 1.162867                 resurfaced runway
## 1.162872                 grooves installed
## 1.162876                       cargo plane
## 1.162877                     plane crashed
## 1.162878                   crashed shortly
## 1.162885                     engine failed
## 1.162895                 emergency landing
## 1.162898                     single engine
## 1.162899                   engine aircraft
## 1.162900                  aircraft crashed
## 1.162904                  heavily forested
## 1.162905                 forested mountain
## 1.162906                       mountain 30
## 1.162907                          30 miles
## 1.162908                        miles east
## 1.162915                  sightseeing trip
## 1.162918                      misty fiords
## 1.162921                  pilot's decision
## 1.162926                     visual flight
## 1.162927                      flight rules
## 1.162933         instrument meteorological
## 1.162934         meteorological conditions
## 1.162935           conditions contributing
## 1.162942                pilot's inadequate
## 1.162943                inadequate weather
## 1.162944                weather evaluation
## 1.162948                  faa's inadequate
## 1.162949           inadequate surveillance
## 1.162953                    commercial air
## 1.162954                          air tour
## 1.162955                     tour operator
## 1.162958                       cargo plane
## 1.162959                    plane carrying
## 1.162960                        carrying 9
## 1.162961                            9 tons
## 1.162964                     cargo crashed
## 1.162965                         crashed 4
## 1.162966                              4 km
## 1.162979                domodedovo airport
## 1.162982                  aircraft slammed
## 1.162986                  field shattering
## 1.162987                 shattering debris
## 1.163000                  loosing altitude
## 1.163012                             sea 1
## 1.163013                            1 mile
## 1.163017                       runway loss
## 1.163020                     pitch control
## 1.163030                    elevator cable
## 1.163033                       float plane
## 1.163034                     plane crashed
## 1.163040                          tree 200
## 1.163041                          200 feet
## 1.163062                      pilot's poor
## 1.163063                     poor decision
## 1.163067               inadequate planning
## 1.163072                      rising waves
## 1.163075                     pilot decided
## 1.163082                sheltered interior
## 1.163089                    rising terrain
## 1.163101                   pilot attempted
## 1.163109                      airplane hit
## 1.163120                 closing landscape
## 1.163129                           60 feet
## 1.163136                    normal landing
## 1.163152                         fuel tank
## 1.163159                         stop bolt
## 1.163169                    tank breaching
## 1.163173                      leaking fuel
## 1.163174                         fuel blew
## 1.163182                     plane stopped
## 1.163188                  spilled straight
## 1.163195                      engine's hot
## 1.163196                      hot tailpipe
## 1.163207                  destroyed boeing
## 1.163208                      boeing aware
## 1.163212                      failure mode
## 1.163213                          mode due
## 1.163216                    past incidents
## 1.163227                         stop bolt
## 1.163238            maintenance technician
## 1.163248                inadvertently lost
## 1.163260                   crashed shortly
## 1.163266                  curitiba crashed
## 1.163282                       cargo plane
## 1.163283                    plane carrying
## 1.163284                      carrying tin
## 1.163285                           tin ore
## 1.163286                          ore lost
## 1.163292                    engines eleven
## 1.163293                    eleven minutes
## 1.163304                       airport due
## 1.163313                      loaded plane
## 1.163316                  aircraft clipped
## 1.163317                      clipped tree
## 1.163318                         tree tops
## 1.163323                          burned 3
## 1.163324                              3 km
## 1.163325                          km short
## 1.163335                            3 tons
## 1.163338                       cargo plane
## 1.163339                    plane carrying
## 1.163340                     carrying palm
## 1.163341                          palm oil
## 1.163342                      oil overshot
## 1.163345                    runway crashed
## 1.163349                    petrified lava
## 1.163350                         lava flow
## 1.163353                       caught fire
## 1.163358                        heavy rain
## 1.163361                      strong cross
## 1.163362                       cross winds
## 1.163365                  aircraft skidded
## 1.163369                     runway struck
## 1.163372                  earth embankment
## 1.163375                       caught fire
## 1.163378                   pilot attempted
## 1.163383                        15 warning
## 1.163384                    warning alarms
## 1.163388                   copilot's calls
## 1.163398                  traveling faster
## 1.163405                    normal crashed
## 1.163425                          2 engine
## 1.163426                     engine failed
## 1.163429                       cargo plane
## 1.163430                     plane crashed
## 1.163434            congolese neighborhood
## 1.163437                       caught fire
## 1.163446                  plane's mechanic
## 1.163451                   survivor aboard
## 1.163454                 plane disappeared
## 1.163457                          en route
## 1.163466                       cargo plane
## 1.163467                      plane failed
## 1.163471                         plane hit
## 1.163495       international organizations
## 1.163500                 sudanese soldiers
## 1.163514                   passenger plane
## 1.163515                      plane struck
## 1.163522                         7.5 miles
## 1.163525                   isparta airport
## 1.163532                       pilot error
## 1.163542            spatial disorientation
## 1.163563                flight instruments
## 1.163564              instruments diverted
## 1.163573                    crash occurred
## 1.163574                  occurred crashed
## 1.163580                          en route
## 1.163583                  pilot's decision
## 1.163586                      continue vfr
## 1.163587                        vfr flight
## 1.163590                  night instrument
## 1.163591         instrument meteorological
## 1.163592         meteorological conditions
## 1.163593           conditions contributing
## 1.163600                operator's failure
## 1.163606                      faa approved
## 1.163609                   mandated safety
## 1.163610                       safety risk
## 1.163611                   risk management
## 1.163612                management program
## 1.163615                     faa's failure
## 1.163618                provide sufficient
## 1.163619              sufficient oversight
## 1.163632                   risk management
## 1.163633                management program
## 1.163636                      pilot's lack
## 1.163641                      night winter
## 1.163642                 winter operations
## 1.163648                   operator's lack
## 1.163652                      ems dispatch
## 1.163659                       cargo plane
## 1.163660                     plane crashed
## 1.163664                      brushy field
## 1.163665                    field inverted
## 1.163666                  inverted shortly
## 1.163672                        heavy snow
## 1.163673                        snow radar
## 1.163674                        radar data
## 1.163686                      ground speed
## 1.163689                         109 knots
## 1.163694                 impacting terrain
## 1.163699                   carrying checks
## 1.163706                  banking customer
## 1.163709                   pilot's failure
## 1.163712                 maintain aircraft
## 1.163713                  aircraft control
## 1.163716               collision avoidance
## 1.163719                       terrain due
## 1.163722            spatial disorientation
## 1.163723       disorientation contributing
## 1.163729                         low cloud
## 1.163730                     cloud ceiling
## 1.163733                  night conditions
## 1.163736                 commuter airliner
## 1.163737                  airliner crashed
## 1.163743                          en route
## 1.163747                    pilot reported
## 1.163748                   reported engine
## 1.163752                helicopter crashed
## 1.163753                        crashed 15
## 1.163754                          15 miles
## 1.163755                   miles southeast
## 1.163760                         heavy fog
## 1.163771                    european union
## 1.163772                         union led
## 1.163773                  led peacekeeping
## 1.163774           peacekeeping operations
## 1.163786                        runway 27l
## 1.163789                  heathrow airport
## 1.163796                 approximately 600
## 1.163797                            600 ft
## 1.163800                           2 miles
## 1.163806                aircraft descended
## 1.163807                 descended rapidly
## 1.163812                      ground 1,000
## 1.163813                          1,000 ft
## 1.163814                          ft short
## 1.163818                      paved runway
## 1.163819                    runway surface
## 1.163824                 airfield boundary
## 1.163825                    boundary fence
## 1.163828             investigation showned
## 1.163832                         fuel flow
## 1.163846                         fuel feed
## 1.163847                       feed system
## 1.163859                occurred naturally
## 1.163871                          fuel oil
## 1.163872                          oil heat
## 1.163873                    heat exchanger
## 1.163874                    exchanger fohe
## 1.163896             certified operational
## 1.163897              operational envelope
## 1.163906                          low fuel
## 1.163907                         fuel flow
## 1.163911                    unusually cold
## 1.163912                  cold environment
## 1.163917                 throttle increase
## 1.163922                           ice jam
## 1.163943                        plane fell
## 1.163950                           500 650
## 1.163951                          650 feet
## 1.163959                           2 miles
## 1.163965                       cargo plane
## 1.163966                     plane crashed
## 1.163969                          en route
## 1.163970                      route struck
## 1.163975                       13,500 feet
## 1.163978             disintegrated shortly
## 1.163981                  departing merida
## 1.163993                 navigation system
## 1.163996               properly initialize
## 1.164004               mountainous terrain
## 1.164005               terrain surrounding
## 1.164008                  airport crashing
## 1.164024                       half minute
## 1.164032                           oil rig
## 1.164040                      low altitude
## 1.164046                        tail rotor
## 1.164047                      rotor caused
## 1.164048                       caused loss
## 1.164059                helicopter crashed
## 1.164065               helicopter carrying
## 1.164066                   carrying united
## 1.164067                    united nations
## 1.164068                 nations personnel
## 1.164069                 personnel crashed
## 1.164072                     hilly terrain
## 1.164075                      poor weather
## 1.164076                weather conditions
## 1.164087                      crew aborted
## 1.164100                        plane flew
## 1.164109                        mail plane
## 1.164110                    plane reported
## 1.164117             aircraft disapppeared
## 1.164142                        100 metres
## 1.164147                     runway pilots
## 1.164160                          2.3 tons
## 1.164166                       wing struck
## 1.164171                  electrical wires
## 1.164175                     plane crashed
## 1.164193                      plane failed
## 1.164196                     reach takeoff
## 1.164197                     takeoff speed
## 1.164198                     speed overran
## 1.164201                  runway proceeded
## 1.164205                   perimeter fence
## 1.164211                    crowded market
## 1.164212                    market crashed
## 1.164226                        heavy rain
## 1.164229                helicopter crashed
## 1.164233                      tail section
## 1.164234                       section hit
## 1.164240                 offshore drilling
## 1.164241                 drilling platform
## 1.164253                    trainee flying
## 1.164259                survivor succumbed
## 1.164269                       float plane
## 1.164270                     plane flipped
## 1.164280                       lake chelan
## 1.164283                    stehekin lodge
## 1.164288                    plane's wheels
## 1.164300                   pilot's failure
## 1.164305                      landing gear
## 1.164306                       gear wheels
## 1.164307                      wheels prior
## 1.164312                     water landing
## 1.164313              landing contributing
## 1.164320                 pilot's disabling
## 1.164324                      landing gear
## 1.164325                      gear warning
## 1.164326                  warning advisory
## 1.164327                   advisory system
## 1.164331                       fatigue due
## 1.164338                   tour helicopter
## 1.164339                helicopter crashed
## 1.164342                     banning house
## 1.164343                       house lodge
## 1.164348                   poor visibility
## 1.164351                    engine appears
## 1.164355                       failed loss
## 1.164358                      engine power
## 1.164363                       landing due
## 1.164367                  fatigue fracture
## 1.164371                     power turbine
## 1.164372                     turbine blade
## 1.164378                       cargo plane
## 1.164379                    plane reported
## 1.164382                      fire shortly
## 1.164390                     plane crashed
## 1.164400                 emergency landing
## 1.164405                power transmission
## 1.164406                 transmission line
## 1.164407                      line chile's
## 1.164408                  chile's national
## 1.164409                   national police
## 1.164410                      police chief
## 1.164413                    jose alejandro
## 1.164414                alejandro bernales
## 1.164415                       bernales 59
## 1.164424                helicopter crashed
## 1.164429                    story building
## 1.164432                helicopter pitched
## 1.164433                    pitched wildly
## 1.164443                   missed approach
## 1.164453                 toncontin airport
## 1.164456                     plane overran
## 1.164459                    runway skidded
## 1.164463                     street struck
## 1.164464                       struck cars
## 1.164480                    tropical storm
## 1.164481                        storm alma
## 1.164484                medical helicopter
## 1.164485                helicopter crashed
## 1.164489                       sam houston
## 1.164490                  houston national
## 1.164491                   national forest
## 1.164499                  houston hospital
## 1.164502                   pilot's failure
## 1.164509              helicopter's descent
## 1.164517              terrain contributing
## 1.164524               pilot's inadvertent
## 1.164525                inadvertent flight
## 1.164528         instrument meteorological
## 1.164529         meteorological conditions
## 1.164535                  visual reference
## 1.164536                     reference due
## 1.164540                        dark night
## 1.164541                  night conditions
## 1.164542                    conditions low
## 1.164543                        low clouds
## 1.164550                      poor weather
## 1.164553                     plane skidded
## 1.164557                        runway hit
## 1.164558                    hit navigation
## 1.164559                  navigation poles
## 1.164585                        port sudan
## 1.164589                           red sea
## 1.164593                       bad weather
## 1.164609                  flaring distance
## 1.164610                      distance 900
## 1.164611                        900 meters
## 1.164619                      wet slippery
## 1.164620                   slippery runway
## 1.164623                    selecting auto
## 1.164624                        auto brake
## 1.164629                deactivated engine
## 1.164630                    engine reverse
## 1.164634                  rainy conditions
## 1.164639                  landing distance
## 1.164662                       cargo plane
## 1.164668                          200 feet
## 1.164669                       feet rolled
## 1.164678                       ground nose
## 1.164682                   pilot's failure
## 1.164687                    flight control
## 1.164688                      control lock
## 1.164689                        lock prior
## 1.164692              takeoff contributing
## 1.164699                     faa's failure
## 1.164704           airworthiness directive
## 1.164708         manufacturer's previously
## 1.164709                 previously issued
## 1.164710                     issued flight
## 1.164711                    flight control
## 1.164712                      control lock
## 1.164713                      lock service
## 1.164714                 service bulletins
## 1.164715               bulletins mandatory
## 1.164718               military helicopter
## 1.164719              helicopter developed
## 1.164740                  approximately 60
## 1.164741                          60 miles
## 1.164742                       miles south
## 1.164749               aerial surveillance
## 1.164750              surveillance mission
## 1.164753                       cargo plane
## 1.164754                     plane crashed
## 1.164755                       crashed mid
## 1.164756                        mid flight
## 1.164763              thunderstorms triple
## 1.164764                     triple engine
## 1.164765                    engine failure
## 1.164769                helicopters struck
## 1.164774                           mid air
## 1.164783                         0.5 miles
## 1.164786                 flagstaff medical
## 1.164787                    medical center
## 1.164790                 helicopter pilots
## 1.164791                    pilots failure
## 1.164804              helipad contributing
## 1.164813                    n407ga's pilot
## 1.164816                    follow arrival
## 1.164819                   noise abatement
## 1.164820              abatement guidelines
## 1.164826                    n407mj's pilot
## 1.164829             follow communications
## 1.164830         communications guidelines
## 1.164836                       cargo plane
## 1.164837                         plane hit
## 1.164840                  electricity pole
## 1.164841                      pole crashed
## 1.164861                       cargo plane
## 1.164862                      plane loaded
## 1.164868               experiencing engine
## 1.164869                    engine trouble
## 1.164870                   trouble crashed
## 1.164871                 crashed splitting
## 1.164877                 scattering debris
## 1.164884                        600 meters
## 1.164898                       cargo plane
## 1.164899                    plane carrying
## 1.164912                      crew radioed
## 1.164918                       engine fire
## 1.164935                        farm house
## 1.164936                     house killing
## 1.164939                     people inside
## 1.164940                     inside double
## 1.164941                     double engine
## 1.164942                    engine failure
## 1.164949                         runway 30
## 1.164952                      business jet
## 1.164953                        jet landed
## 1.164954                        landed 500
## 1.164957                         1000 feet
## 1.164961                          5,000 ft
## 1.164962                         ft runway
## 1.164963                    runway overran
## 1.164966                     runway passed
## 1.164972                      roadway slid
## 1.164981                   person survived
## 1.164994                insufficient sleep
## 1.164997                    displayed poor
## 1.164998                 poor coordination
## 1.165004                     pilots failed
## 1.165010                        wet runway
## 1.165013                            8 knot
## 1.165014                     knot tailwind
## 1.165022                        5,500 foot
## 1.165023                       foot runway
## 1.165031                    braking system
## 1.165048                        pilots hit
## 1.165060                        pilots hit
## 1.165063                         lift dump
## 1.165078                    stopped safely
## 1.165089                captain's decision
## 1.165099                      landing roll
## 1.165102               insufficient runway
## 1.165103                  runway remaining
## 1.165104            remaining contributing
## 1.165111                       pilots poor
## 1.165112                         poor crew
## 1.165113                 crew coordination
## 1.165118                cockpit discipline
## 1.165119                discipline fatigue
## 1.165125                pilots performance
## 1.165133                      require crew
## 1.165134                     crew resource
## 1.165135               resource management
## 1.165136               management training
## 1.165139                standard operating
## 1.165140              operating procedures
## 1.165144                     135 operators
## 1.165147                     plane crashed
## 1.165151                 remote mountanous
## 1.165152                 mountanous region
## 1.165155                  vancouver island
## 1.165158                          en route
## 1.165162                          short 30
## 1.165163                         30 minute
## 1.165164                     minute flight
## 1.165165              flight investigators
## 1.165166          investigators determined
## 1.165169                      plane's body
## 1.165170                        body broke
## 1.165179                        alice lake
## 1.165182                exposed electrical
## 1.165183                  electrical wires
## 1.165191                      spilled fuel
## 1.165192                     fuel starting
## 1.165206                     plane stalled
## 1.165213                       steep climb
## 1.165221                     ferrying fire
## 1.165222                     fire fighters
## 1.165225             northern california's
## 1.165226               california's shasta
## 1.165227                    shasta trinity
## 1.165228                  trinity national
## 1.165229                   national forest
## 1.165244                critical condition
## 1.165247                   helicopter lost
## 1.165248                         lost main
## 1.165249                        main rotor
## 1.165250                       rotor power
## 1.165255                helicopter crashed
## 1.165260                     forensic team
## 1.165267                        gun battle
## 1.165270                     muslim rebels
## 1.165273                   security forces
## 1.165276                 aircraft suffered
## 1.165277                   suffered engine
## 1.165278                    engine failure
## 1.165292                      poor weather
## 1.165295                       cargo plane
## 1.165296                      plane struck
## 1.165299                    telephone line
## 1.165302                 crashed extremely
## 1.165303                    extremely poor
## 1.165304                      poor weather
## 1.165305                weather conditions
## 1.165308                  airliner crashed
## 1.165320                 slightly airborne
## 1.165339                    crew extending
## 1.165369                     warning alarm
## 1.165370                    alarm software
## 1.165373                     plane crashed
## 1.165374                   crashed shortly
## 1.165380               manas international
## 1.165381             international airport
## 1.165384                        10 minutes
## 1.165387                     crew reported
## 1.165390                       severe loss
## 1.165393                    cabin pressure
## 1.165402                         crashed 6
## 1.165403                           6 miles
## 1.165409                       iran aseman
## 1.165410                   aseman airlines
## 1.165411                   airlines flight
## 1.165418                          itek air
## 1.165421                      forward left
## 1.165422                        left cabin
## 1.165423                        cabin door
## 1.165427                 closed completely
## 1.165447                   cabin attendant
## 1.165448                  attendant manual
## 1.165458                  report concludes
## 1.165462               aircraft originally
## 1.165463                   originally lost
## 1.165464                        lost cabin
## 1.165465                    cabin pressure
## 1.165466                      pressure due
## 1.165475                positioning flight
## 1.165484                   iliniza volcano
## 1.165491                     pilot radioed
## 1.165501                  aircraft crashed
## 1.165505                        corn field
## 1.165506                       field broke
## 1.165512                  improper reverse
## 1.165513                   reverse rigging
## 1.165517                     elevator trim
## 1.165518                       trim cables
## 1.165521               company maintenance
## 1.165522             maintenance personnel
## 1.165526                subsequent failure
## 1.165533                     required post
## 1.165534                  post maintenance
## 1.165535                maintenance checks
## 1.165536               checks contributing
## 1.165543                        captainã â
## 1.165544                               â â
## 1.165547                   inadequate post
## 1.165548                  post maintenance
## 1.165549             maintenance preflight
## 1.165550                   preflight check
## 1.165558                 helicopter struck
## 1.165561                     crane crashed
## 1.165569                  maersk resilient
## 1.165570                     resilient oil
## 1.165571                      oil drilling
## 1.165572                      drilling rig
## 1.165573                         rig broke
## 1.165580                            sea 43
## 1.165581                          43 miles
## 1.165586                  aircraft crashed
## 1.165590                   ravine adjacent
## 1.165593                   railroad tracks
## 1.165598                apartment building
## 1.165603                  approaching perm
## 1.165619                       tower pilot
## 1.165620                       pilot error
## 1.165623                      captain lost
## 1.165624                      lost spatial
## 1.165625               spatial orientation
## 1.165631                altitude indicator
## 1.165635                  instrument panel
## 1.165652             columbia metropolitan
## 1.165653              metropolitan airport
## 1.165659                    runway crashed
## 1.165663                   perimeter fence
## 1.165664                      fence struck
## 1.165665                   struck antennas
## 1.165673               embankment adjacent
## 1.165683                       operatorã â
## 1.165684                               â â
## 1.165687            inadequate maintenance
## 1.165691                       airplaneã â
## 1.165692                               â â
## 1.165699                     multiple tire
## 1.165700                     tire failures
## 1.165703                      takeoff roll
## 1.165704                          roll due
## 1.165707             severe underinflation
## 1.165711                        captainã â
## 1.165712                               â â
## 1.165718                  rejected takeoff
## 1.165729                standard operating
## 1.165730              operating procedures
## 1.165733                medical helicopter
## 1.165734               helicopter carrying
## 1.165735                  carrying victims
## 1.165739                  traffic accident
## 1.165740                  accident crashed
## 1.165745                       walker mill
## 1.165746                     mill regional
## 1.165747                     regional park
## 1.165750                     pilot radioed
## 1.165760                   passenger plane
## 1.165770                      main landing
## 1.165771                     landing gears
## 1.165772                     gears snagged
## 1.165776                    security fence
## 1.165779                     plane crashed
## 1.165785                       caught fire
## 1.165800           misjudged deteriorating
## 1.165801             deteriorating weather
## 1.165802                weather conditions
## 1.165805                       flew inside
## 1.165816                     lukla airport
## 1.165831                        9,200 feet
## 1.165834                helicopter clipped
## 1.165837                       radio tower
## 1.165838                        tower wire
## 1.165839                      wire crashed
## 1.165842                    burned killing
## 1.165847                       cargo plane
## 1.165848                   plane chartered
## 1.165851                     fedex crashed
## 1.165852                      crashed west
## 1.165855                   baghdad shortly
## 1.165861                           al asad
## 1.165862                          asad air
## 1.165863                          air base
## 1.165868                     crew reported
## 1.165876                  charter aircraft
## 1.165877                  aircraft crashed
## 1.165881                    steep hillside
## 1.165884                   south thormanby
## 1.165885                  thormanby island
## 1.165886                         island 19
## 1.165887                        19 minutes
## 1.165895                 flames controlled
## 1.165896                 controlled flight
## 1.165899                    terrain caused
## 1.165902                      poor weather
## 1.165903                weather conditions
## 1.165917                       airbus a320
## 1.165922                        xl airways
## 1.165938                         owner air
## 1.165947                  perpignan france
## 1.165951             underwent maintenance
## 1.165954                    eas industries
## 1.165959                       test flight
## 1.165966                        3,500 feet
## 1.165967                        feet radio
## 1.165968                     radio contact
## 1.165973               controller reported
## 1.165977                  plane descending
## 1.165978                descending quickly
## 1.165982                         left bank
## 1.165998                      test slowing
## 1.166004                      unsafe speed
## 1.166007                  plane's computer
## 1.166008                   computer failed
## 1.166011             automatically recover
## 1.166014                       safe flight
## 1.166017                     plane stalled
## 1.166024                   computer failed
## 1.166031                    attack sensors
## 1.166034                 frozen.the reason
## 1.166035                      reason water
## 1.166036                       water froze
## 1.166055                      plane struck
## 1.166060                         el yunque
## 1.166061                   yunque mountain
## 1.166062                    mountain 2,310
## 1.166063                        2,310 feet
## 1.166064                         feet east
## 1.166067                          san juan
## 1.166070                         heavy fog
## 1.166073               helicopter ferrying
## 1.166074                  ferrying workers
## 1.166079                    shore drilling
## 1.166080                 drilling platform
## 1.166081                  platform crashed
## 1.166085                            gulf 8
## 1.166086                           8 miles
## 1.166089                       sabine pass
## 1.166092                    charter flight
## 1.166093                flight disappeared
## 1.166096                          radar 35
## 1.166097                        35 minutes
## 1.166105                     pilot radioed
## 1.166108                       mayday call
## 1.166116                     found crashed
## 1.166130                     flight crew's
## 1.166131                    crew's failure
## 1.166138                      minimum safe
## 1.166139                     safe airspeed
## 1.166144               instrument approach
## 1.166147                  icing conditions
## 1.166153                 aerodynamic stall
## 1.166156                      low altitude
## 1.166157             altitude contributing
## 1.166165                     flight crew's
## 1.166166                    crew's failure
## 1.166169                  follow published
## 1.166170                published standard
## 1.166171                standard operating
## 1.166172              operating procedures
## 1.166178                      flap anomaly
## 1.166179                         anomaly 2
## 1.166182                captain's decision
## 1.166188             unstabilized approach
## 1.166189                        approach 3
## 1.166192                     flight crew's
## 1.166193                       crew's poor
## 1.166194                         poor crew
## 1.166195                     crew resource
## 1.166196               resource management
## 1.166199                         4 fatigue
## 1.166200                       fatigue due
## 1.166210                 accident occurred
## 1.166214                  cumulative sleep
## 1.166215                        sleep debt
## 1.166221             captain's performance
## 1.166224                  helicopter bound
## 1.166227                      offshore oil
## 1.166228                        oil fields
## 1.166233                          75 miles
## 1.166234                   miles southwest
## 1.166238                   orleans shortly
## 1.166244                       sudden loss
## 1.166257                        red tailed
## 1.166258                       tailed hawk
## 1.166267                       engine fuel
## 1.166268                     fuel controls
## 1.166272         subsequent disorientation
## 1.166282                   faa regulations
## 1.166292            certificated requiring
## 1.166293              requiring helicopter
## 1.166294            helicopter windshields
## 1.166300                      bird strikes
## 1.166313          inadvertently dislodging
## 1.166324                    master warning
## 1.166325                     warning light
## 1.166328                    audible system
## 1.166335                         low rotor
## 1.166336                       rotor speed
## 1.166337                  speed conditions
## 1.166343                       crashed due
## 1.166346                       bad weather
## 1.166354                        la guardia
## 1.166355                   guardia airport
## 1.166378                      hudson river
## 1.166382                      soft landing
## 1.166385                    150 passengers
## 1.166416                          air taxi
## 1.166419                  ferry passengers
## 1.166428                  manacapuru river
## 1.166429                          river 50
## 1.166430                          50 miles
## 1.166441                      strong winds
## 1.166450                    return shortly
## 1.166458                        engine.ã â
## 1.166461                 plane disappeared
## 1.166466                      lost contact
## 1.166469                           atc.ã â
## 1.166472                     plane crashed
## 1.166487                  abandoned runway
## 1.166495                    commuter plane
## 1.166496                     plane crashed
## 1.166505                           sleet 6
## 1.166506                           6 miles
## 1.166507                   miles northeast
## 1.166510                   buffalo niagara
## 1.166511             niagara international
## 1.166512             international airport
## 1.166519                  land preliminary
## 1.166520              preliminary evidence
## 1.166521                 evidence suggests
## 1.166524                     crew selected
## 1.166527                      landing gear
## 1.166533                          flaps 15
## 1.166534                        15 degrees
## 1.166535               degrees immediately
## 1.166542                      stick shaker
## 1.166543                  shaker activated
## 1.166551                  controls slowing
## 1.166561                      stall colgan
## 1.166562                        colgan air
## 1.166563                     air officials
## 1.166564            officials acknowledged
## 1.166568                 pilots apparently
## 1.166572                      paying close
## 1.166573                   close attention
## 1.166577            aircraft's instruments
## 1.166584              airline's procedures
## 1.166589                   impending stall
## 1.166593                     final minutes
## 1.166599                        captainã â
## 1.166600                               â â
## 1.166603            inappropriate response
## 1.166610                      stick shaker
## 1.166616                 aerodynamic stall
## 1.166624              recover contributing
## 1.166632                      flight crewã
## 1.166633                           crewã â
## 1.166634                               â â
## 1.166639                  monitor airspeed
## 1.166645                   rising position
## 1.166649                         low speed
## 1.166650                         speed cue
## 1.166651                             cue 2
## 1.166654                      flight crewã
## 1.166655                           crewã â
## 1.166656                               â â
## 1.166663                   sterile cockpit
## 1.166664                cockpit procedures
## 1.166665                      procedures 3
## 1.166668                        captainã â
## 1.166669                               â â
## 1.166674                effectively manage
## 1.166679                          4 colgan
## 1.166680                       colgan airã
## 1.166681                            airã â
## 1.166682                               â â
## 1.166685             inadequate procedures
## 1.166688                airspeed selection
## 1.166695                  icing conditions
## 1.166700                  carrying firemen
## 1.166704                     nearby forest
## 1.166705                       forest fire
## 1.166712                      fog shrouded
## 1.166713                 shrouded mountain
## 1.166714                  mountain killing
## 1.166726                       cargo plane
## 1.166727                     plane slammed
## 1.166731                       ground slid
## 1.166737                       caught fire
## 1.166743                    final approach
## 1.166746                        runway 18r
## 1.166750                         crashed 1
## 1.166751                            1 mile
## 1.166752                        mile short
## 1.166769                        55 injured
## 1.166772                 faulty instrument
## 1.166773                 instrument caused
## 1.166776                 plane's autopilot
## 1.166779                          cut fuel
## 1.166783               engines prematurely
## 1.166784                prematurely pilots
## 1.166789                    notice warning
## 1.166790                   warning signals
## 1.166793              reacted inadequately
## 1.166796                       cargo plane
## 1.166797                    plane carrying
## 1.166800                water purification
## 1.166801            purification equipment
## 1.166802                 equipment crashed
## 1.166805                     lake victoria
## 1.166806                  victoria shortly
## 1.166811                   possibly caused
## 1.166819                 factors including
## 1.166820                    including loss
## 1.166823                      engine power
## 1.166824                 power malfunction
## 1.166828                    flight control
## 1.166829                    control system
## 1.166830                      system pilot
## 1.166831                  pilot impairment
## 1.166832        impairment inattentiveness
## 1.166837               inadequate handling
## 1.166843               investigation found
## 1.166850                    forged license
## 1.166861                      service life
## 1.166864                    pilot reported
## 1.166867             technical malfunction
## 1.166876                          st johns
## 1.166892              controlled emergency
## 1.166893                   emergency crash
## 1.166894                     crash landing
## 1.166897                 accident happened
## 1.166900                          30 miles
## 1.166903                          st johns
## 1.166906                      main gearbox
## 1.166907                    gearbox filter
## 1.166908                       filter bowl
## 1.166909                     bowl assembly
## 1.166910                 assembly mounting
## 1.166911                    mounting studs
## 1.166917                      found broken
## 1.166925                       gearbox oil
## 1.166928                     plane crashed
## 1.166929                       crashed 500
## 1.166930                          500 feet
## 1.166931                        feet short
## 1.166941                       bert mooney
## 1.166942                    mooney airport
## 1.166952                        holy cross
## 1.166953                    cross cemetery
## 1.166958                 carrying children
## 1.166966                   skiing vacation
## 1.166975               planned destination
## 1.166988                     required anti
## 1.166989                          anti ice
## 1.166990                      ice additive
## 1.166994                    fuel continued
## 1.167000                deteriorating fuel
## 1.167001                       fuel system
## 1.167008                        600 pounds
## 1.167016                    fatigued pilot
## 1.167017                      pilot flying
## 1.167020                       cargo plane
## 1.167021                      plane flared
## 1.167036                 apparently unable
## 1.167042                         main gear
## 1.167073                     plane bounced
## 1.167076                       harder lost
## 1.167077                      lost control
## 1.167078                    control veered
## 1.167091                helicopter crashed
## 1.167092                        crashed 35
## 1.167093                          35 miles
## 1.167094                        miles east
## 1.167100                         north sea
## 1.167103                  transporting oil
## 1.167104                       oil workers
## 1.167109                    received prior
## 1.167113                crash catastrophic
## 1.167114              catastrophic failure
## 1.167118                        main rotor
## 1.167119                     rotor gearbox
## 1.167125                 military training
## 1.167126                 training exercise
## 1.167133                   aircraft struck
## 1.167142                       cargo plane
## 1.167143                     plane crashed
## 1.167146                       gunung pike
## 1.167147                     pike mountain
## 1.167157                    wamena airport
## 1.167169                       aircraftã â
## 1.167170                               â â
## 1.167183                       flight crew
## 1.167190                   enhanced ground
## 1.167191                  ground proximity
## 1.167192                 proximity warning
## 1.167193                    warning system
## 1.167194                      system aural
## 1.167195                    aural warnings
## 1.167203                       operatorã â
## 1.167204                               â â
## 1.167207               published operating
## 1.167208              operating procedures
## 1.167209                procedures crashed
## 1.167212                          en route
## 1.167216                   ferrying flight
## 1.167233              venezuelan colombian
## 1.167234                  colombian border
## 1.167237                     radar contact
## 1.167245                military transport
## 1.167246                 transport crashed
## 1.167249                          4 houses
## 1.167250                    houses skidded
## 1.167254                        rice field
## 1.167261                       cargo plane
## 1.167262                     plane crashed
## 1.167268                      isiro matari
## 1.167269                    matari airport
## 1.167277                    atlantic ocean
## 1.167283                            rio de
## 1.167284                        de janeiro
## 1.167287                      paris france
## 1.167290                    plane departed
## 1.167293                            rio de
## 1.167294                        de janeiro
## 1.167295                    janeiro galeao
## 1.167296              galeao international
## 1.167297             international airport
## 1.167300                             19 03
## 1.167301                             03 lt
## 1.167302                          lt bound
## 1.167305                        charles de
## 1.167306                         de gaulle
## 1.167307                    gaulle airport
## 1.167313                     radio contact
## 1.167320                             01 33
## 1.167321                            33 utc
## 1.167324                     aircraft left
## 1.167325                     left cindacta
## 1.167326                      cindacta iii
## 1.167327                         iii radar
## 1.167328                    radar coverage
## 1.167331                             01 48
## 1.167332                            48 utc
## 1.167333                        utc flying
## 1.167339               aircraft reportedly
## 1.167346                 strong turbulence
## 1.167349                             02 00
## 1.167350                            00 utc
## 1.167353                             02 14
## 1.167354                            14 utc
## 1.167357                 automated message
## 1.167360               received indicating
## 1.167366                 electrical system
## 1.167369                     plane carried
## 1.167370                        carried 12
## 1.167371                           12 crew
## 1.167375                    216 passengers
## 1.167380                finally discovered
## 1.167383                           april 3
## 1.167384                            3 2011
## 1.167387               unmanned submarines
## 1.167388              submarines flight447
## 1.167389                  flight447 passed
## 1.167401                     speed sensors
## 1.167408              autopilot disengaged
## 1.167412                 ensuing confusion
## 1.167415                       pilots lost
## 1.167416                      lost control
## 1.167423               reacted incorrectly
## 1.167447                malfunction doomed
## 1.167448                     doomed flight
## 1.167452                     complex chain
## 1.167460                persistent mistake
## 1.167482            insufficiently trained
## 1.167485                   flying manually
## 1.167507                        rest break
## 1.167518                     facing faulty
## 1.167519                      faulty speed
## 1.167520                    speed readings
## 1.167523                unreliable sensors
## 1.167526                    repeated alarm
## 1.167527                     alarm signals
## 1.167535                  pilots responded
## 1.167549               controls maintained
## 1.167554                    input contrary
## 1.167558                  normal procedure
## 1.167565                 aerodynamic stall
## 1.167573                 slightly downward
## 1.167576                       regain lift
## 1.167592                    basic maneuver
## 1.167595                    stall recovery
## 1.167606                   flight training
## 1.167612                      yoke forward
## 1.167630                   report confirms
## 1.167633                    external speed
## 1.167634                     speed sensors
## 1.167635                sensors obstructed
## 1.167638                      ice crystals
## 1.167639                 crystals produced
## 1.167640                produced irregular
## 1.167641                   irregular speed
## 1.167642                    speed readings
## 1.167649                      accident air
## 1.167650                        air france
## 1.167655                    speed monitors
## 1.167660                       airbus a330
## 1.167663                     a340 aircraft
## 1.167677                   received recent
## 1.167678                   recent training
## 1.167681                   manual aircraft
## 1.167682                 aircraft handling
## 1.167688                altitude schooling
## 1.167693                    unreliable air
## 1.167694                         air speed
## 1.167695                    speed readings
## 1.167698                     stall warning
## 1.167699                   warning sounded
## 1.167700                  sounded numerous
## 1.167701                    numerous times
## 1.167719                 cockpit exchanges
## 1.167723                       jet crashed
## 1.167726                     air ambulance
## 1.167727                 ambulance crashed
## 1.167736                         heavy fog
## 1.167739                           4 miles
## 1.167745                military transport
## 1.167750                          en route
## 1.167755                       crashed due
## 1.167758                        heavy rain
## 1.167762                mountainous region
## 1.167765                          en route
## 1.167772                       cargo plane
## 1.167773                     plane crashed
## 1.167777                          9,600 ft
## 1.167778                       ft mountain
## 1.167782                   tangma district
## 1.167785                     plane crashed
## 1.167789                      indian ocean
## 1.167790                          ocean 10
## 1.167791                          10 miles
## 1.167802                    hahaya airport
## 1.167810                     girl survived
## 1.167813                     accident crew
## 1.167814                        crew error
## 1.167821              inappropriate action
## 1.167829              stabilizing maneuver
## 1.167832               military helicopter
## 1.167833                helicopter crashed
## 1.167834                        crashed en
## 1.167835                          en route
## 1.167838               transporting troops
## 1.167841                  airliner crashed
## 1.167845                          field 75
## 1.167846                          75 miles
## 1.167847                   miles northwest
## 1.167850                         tehran 11
## 1.167851                        11 minutes
## 1.167857                     imam khomeini
## 1.167858                  khomeini airport
## 1.167861                    plane exploded
## 1.167866                 impact separation
## 1.167873                      low pressure
## 1.167874               pressure compressor
## 1.167879                          1 engine
## 1.167880                     engine debris
## 1.167886                     aircraft body
## 1.167887                    body disabling
## 1.167890                        fuel lines
## 1.167893             civilian contractor's
## 1.167894           contractor's helicopter
## 1.167895                helicopter crashed
## 1.167907                     plane skidded
## 1.167916                       wall iran's
## 1.167917                      iran's civil
## 1.167918                    civil aviation
## 1.167919             aviation organization
## 1.167920               organization stated
## 1.167923                        plane flew
## 1.167933                     usual landing
## 1.167934                     landing speed
## 1.167938                             il 62
## 1.167946                           165 mph
## 1.167955                           197 mph
## 1.167961                      airplane ran
## 1.167970                      wall contact
## 1.167976                       aircraft 15
## 1.167977                        15 minutes
## 1.167987                 bintang mountains
## 1.167993                        9,300 feet
## 1.167999                   maintain visual
## 1.168000                     visual flight
## 1.168001                 flight procedures
## 1.168006                       lowest safe
## 1.168007                     safe altitude
## 1.168020                         gap north
## 1.168021                        north west
## 1.168030                 controlled flight
## 1.168035                     plane skidded
## 1.168044                    unused control
## 1.168045                     control tower
## 1.168046                     tower killing
## 1.168049                      pilot midair
## 1.168050                  midair collision
## 1.168054            sightseeing helicopter
## 1.168057                    piper saratoga
## 1.168060                     aircraft fell
## 1.168064                      hudson river
## 1.168069                     private plane
## 1.168070                  plane approached
## 1.168080                         90 degree
## 1.168081                      degree angle
## 1.168085                        flying vfr
## 1.168093                          3 aboard
## 1.168096                     private plane
## 1.168099                  aircraft crashed
## 1.168107                        kokoda gap
## 1.168110                            11 kms
## 1.168111                     kms southeast
## 1.168114                    kokoda airport
## 1.168117                 aircraft impacted
## 1.168118                    impacted steep
## 1.168119                     steep heavily
## 1.168120                  heavily timbered
## 1.168121                  timbered terrain
## 1.168126                    level altitude
## 1.168127              altitude significant
## 1.168128                significant layers
## 1.168142                         18,000 ft
## 1.168145                  isolated showers
## 1.168150                   embedded cumulo
## 1.168151                     cumulo nimbus
## 1.168152                     nimbus clouds
## 1.168155                       cargo plane
## 1.168156                     plane crashed
## 1.168157                         crashed 7
## 1.168158                           7 miles
## 1.168159                          miles se
## 1.168165                    cemetery short
## 1.168174                      land reports
## 1.168188                    aircraft broke
## 1.168197                helicopter crashed
## 1.168201                pursuing suspected
## 1.168202                  suspected gunmen
## 1.168206                      uzbek border
## 1.168213                positioning flight
## 1.168219                    engine failure
## 1.168225                     crew declared
## 1.168231                     plane crashed
## 1.168235                        vacant lot
## 1.168236                          lot slid
## 1.168249                        school 400
## 1.168250                        400 meters
## 1.168260             malfunctioning engine
## 1.168263                    pilot switched
## 1.168267                       left engine
## 1.168273                     air ambulance
## 1.168274                 ambulance crashed
## 1.168275                   crashed shortly
## 1.168290                       pilot medic
## 1.168298                          pilotã â
## 1.168299                               â â
## 1.168306                     visual flight
## 1.168307                      flight rules
## 1.168308                      rules flight
## 1.168314         instrument meteorological
## 1.168315         meteorological conditions
## 1.168321                          pilotã â
## 1.168322                               â â
## 1.168325            spatial disorientation
## 1.168334           helicopter contributing
## 1.168341              inadequate oversight
## 1.168347                     omniflightã â
## 1.168348                               â â
## 1.168351               operational control
## 1.168352                    control center
## 1.168353                    center shortly
## 1.168359                     crew reported
## 1.168360                   reported engine
## 1.168366                  emergency return
## 1.168382                       cargo plane
## 1.168383                     plane crashed
## 1.168387               abandoned warehouse
## 1.168394                       cargo plane
## 1.168406                        desert 3km
## 1.168416                     engine failed
## 1.168425                 maintain altitude
## 1.168428                     plane ditched
## 1.168432             ocean.nine passengers
## 1.168445                     sinking plane
## 1.168448                      died crashed
## 1.168449                        crashed 20
## 1.168450                          20 miles
## 1.168451                    miles offshore
## 1.168455                     tartar strait
## 1.168464                   aircraft barely
## 1.168465                       barely rose
## 1.168469                     ground banked
## 1.168475                       crashed 1.5
## 1.168476                            1.5 km
## 1.168490                  replacement crew
## 1.168494                     board fifteen
## 1.168495                   fifteen minutes
## 1.168501                   pilot announced
## 1.168523                unexplained reason
## 1.168541                        vip lounge
## 1.168544                medical helicopter
## 1.168545                helicopter crashed
## 1.168550                          29 miles
## 1.168551                   miles northwest
## 1.168569                     reno hospital
## 1.168579                       cargo plane
## 1.168580                      plane veered
## 1.168584                    runway crashed
## 1.168590                       tail struck
## 1.168601                       float plane
## 1.168602                     plane crashed
## 1.168605                    saturna island
## 1.168611                     lyall harbour
## 1.168614                  female passenger
## 1.168618                    pilot survived
## 1.168621                       cargo plane
## 1.168622                     plane crashed
## 1.168626                     water shortly
## 1.168639                   passenger plane
## 1.168640                 plane disappeared
## 1.168643                     radar shortly
## 1.168649                      rafik hariri
## 1.168650              hariri international
## 1.168651             international airport
## 1.168654                    stormy weather
## 1.168660                 mediterranean sea
## 1.168663                        miles west
## 1.168669                   na'ameh lebanon
## 1.168672                     flight crew's
## 1.168673              crew's mismanagement
## 1.168677                  aircraft's speed
## 1.168678                    speed altitude
## 1.168679                 altitude headings
## 1.168684               inconsistent flight
## 1.168685                    flight control
## 1.168686                    control inputs
## 1.168687                  inputs resulting
## 1.168695                       flight crew
## 1.168696                      crew failure
## 1.168701                    crm principles
## 1.168704                    mutual support
## 1.168707                calling deviations
## 1.168708               deviations hindered
## 1.168711               timely intervention
## 1.168716                    commuter plane
## 1.168717                     plane crashed
## 1.168722                      land killing
## 1.168733                  crew experienced
## 1.168736                       engine fire
## 1.168743                 emergency landing
## 1.168749          residential neighborhood
## 1.168752                helicopter crashed
## 1.168756                  military vehicle
## 1.168757                   vehicle shortly
## 1.168764                  military airport
## 1.168765                  airport carrying
## 1.168768                  wounded soldiers
## 1.168786                   technical fault
## 1.168789                      military jet
## 1.168790                       jet crashed
## 1.168800                         dense fog
## 1.168803                   poor visibility
## 1.168806                    crew requested
## 1.168807              requested permission
## 1.168813                    trial approach
## 1.168817                   decision height
## 1.168850                 airplane impacted
## 1.168851                impacted upsloping
## 1.168852                 upsloping terrain
## 1.168859                      1,100 meters
## 1.168871               extended centerline
## 1.168888                   timely decision
## 1.168894                 alternate airport
## 1.168901                   timely informed
## 1.168905                    actual weather
## 1.168906                weather conditions
## 1.168912               significantly lower
## 1.168916               established airport
## 1.168917                    airport minima
## 1.168918                    minima descent
## 1.168921                    visual contact
## 1.168924                 ground references
## 1.168932                   minimum descent
## 1.168933                  descent altitude
## 1.168942                  establish visual
## 1.168943                     visual flight
## 1.168949                     numerous taws
## 1.168950                     taws warnings
## 1.168955                 controlled flight
## 1.168958                  terrain aircraft
## 1.168959              aircraft destruction
## 1.168967                 passengers polish
## 1.168968                  polish president
## 1.168969                    president lech
## 1.168970                    lech kaczynski
## 1.168982                     flying german
## 1.168985              russian snowboarders
## 1.168989                 showboarding tour
## 1.168993                          crash 67
## 1.168994                             67 km
## 1.169000                       cargo plane
## 1.169012                       los angeles
## 1.169016                       crashed 1.5
## 1.169017                            1.5 km
## 1.169025                    final approach
## 1.169029                  mariano escobedo
## 1.169030            escobedo international
## 1.169031             international airport
## 1.169040                         runway 11
## 1.169044                      crew decided
## 1.169055                    avenida miguel
## 1.169056                     miguel aleman
## 1.169057                    aleman roadway
## 1.169058                  roadway striking
## 1.169076                   electrical fire
## 1.169077                       fire forced
## 1.169080                     cargo plane's
## 1.169081                     plane's pilot
## 1.169086                 emergency landing
## 1.169090                        rice field
## 1.169094                     plane crashed
## 1.169095                     crashed broke
## 1.169104                  aircraft crashed
## 1.169120             tripoli international
## 1.169121             international airport
## 1.169122                    airport ninety
## 1.169137                         dutch boy
## 1.169141                     sole survivor
## 1.169142                  survivor failure
## 1.169154                  initial approach
## 1.169158                    final approach
## 1.169159                approach attempted
## 1.169163                   minimum descent
## 1.169164                  descent altitude
## 1.169170                 visible realizing
## 1.169184                 command attempted
## 1.169201                        auto pilot
## 1.169207                   retaken control
## 1.169216                     pilot leading
## 1.169220                        crash lack
## 1.169230         inappropriate application
## 1.169233                    flight control
## 1.169234                    control inputs
## 1.169247                      crew fatigue
## 1.169253                     plane crashed
## 1.169256                      poor weather
## 1.169260                         forest 10
## 1.169261                        10 minutes
## 1.169267                          godo olo
## 1.169268                           olo air
## 1.169269                         air strip
## 1.169272                     plane crashed
## 1.169275                       salang pass
## 1.169276                           pass 60
## 1.169277                          60 miles
## 1.169278                       miles north
## 1.169281                     kabul weather
## 1.169295                  ground proximity
## 1.169296                 proximity warning
## 1.169297                    warning system
## 1.169312                    previous false
## 1.169313                      false alerts
## 1.169320                 mangalore airport
## 1.169323                     plane overran
## 1.169326                       runway slid
## 1.169333                     wooded valley
## 1.169344                aircraft computers
## 1.169361                     pilot telling
## 1.169368                     plane crashed
## 1.169376                    cameroon congo
## 1.169377                      congo border
## 1.169382               carrying executives
## 1.169386                    mining company
## 1.169387                  company sundance
## 1.169388                sundance resources
## 1.169391                    pilot reported
## 1.169408                 emergency landing
## 1.169414                     private field
## 1.169417            exploded approximately
## 1.169418                   approximately 1
## 1.169419                            1 mile
## 1.169420                        mile north
## 1.169423                       jean lesage
## 1.169424              lesage international
## 1.169425             international airport
## 1.169432                    reduced engine
## 1.169433                      engine power
## 1.169443                    engine stopped
## 1.169451                   engine's blades
## 1.169462                  procedure called
## 1.169463                 called feathering
## 1.169468                       reduce drag
## 1.169474                  properly trained
## 1.169479                mechanical defects
## 1.169486                        companyã â
## 1.169487                               â â
## 1.169494                    military plane
## 1.169497              parachuting training
## 1.169498                   training flight
## 1.169499                    flight crashed
## 1.169500                         crashed 2
## 1.169501                              2 km
## 1.169508                     field shortly
## 1.169513                operational errors
## 1.169524                   passenger plane
## 1.169525                     plane crashed
## 1.169529                    margalla hills
## 1.169536                    benazir bhutto
## 1.169537              bhutto international
## 1.169538             international airport
## 1.169541                        tower lost
## 1.169542                      lost contact
## 1.169554                      poor weather
## 1.169555                weather conditions
## 1.169556             conditions controlled
## 1.169557                 controlled flight
## 1.169563                    aircrew failed
## 1.169566                  display superior
## 1.169567                 superior judgment
## 1.169570               professional skills
## 1.169575                    created unsafe
## 1.169576                unsafe environment
## 1.169584                 inclement weather
## 1.169595                 flying discipline
## 1.169603                  unsafe condition
## 1.169606                 dangerous terrain
## 1.169609                      low altitude
## 1.169612                       cargo plane
## 1.169617                          runway 6
## 1.169622                upcoming maneuvers
## 1.169626                     initial climb
## 1.169637                   aircraft banked
## 1.169640                     stall warning
## 1.169641                    warning system
## 1.169642                  system activated
## 1.169646                implementing stall
## 1.169647                    stall recovery
## 1.169648               recovery procedures
## 1.169651                   pilot continued
## 1.169659                  aircraft entered
## 1.169670                 aircraft impacted
## 1.169680                       cargo plane
## 1.169681                     plane crashed
## 1.169684                       mount healy
## 1.169687                          en route
## 1.169690                   pilot's failure
## 1.169693                 maintain adequate
## 1.169694                 adequate airspeed
## 1.169699                      low altitude
## 1.169700                    altitude stall
## 1.169701                   stall resulting
## 1.169713                     plane crashed
## 1.169719                    igarka airport
## 1.169722                   adverse weather
## 1.169723                weather conditions
## 1.169724                   conditions crew
## 1.169731                  weather minimums
## 1.169732                minimums execution
## 1.169738                  conditions worse
## 1.169742                    weather minima
## 1.169746                 airfield aircraft
## 1.169758                   timely decision
## 1.169762                   missed approach
## 1.169766                   plane descended
## 1.169770                      minimum safe
## 1.169771                       safe height
## 1.169777                   reliable visual
## 1.169778                    visual contact
## 1.169781                   approach lights
## 1.169784                     runway lights
## 1.169791                      strike trees
## 1.169797                 controlled flight
## 1.169800               floatplane carrying
## 1.169801               carrying passengers
## 1.169805                      fishing site
## 1.169806                      site crashed
## 1.169812                      rock covered
## 1.169813              covered mountainside
## 1.169816                        light rain
## 1.169821                        alaska u.s
## 1.169822                       u.s senator
## 1.169823                       senator ted
## 1.169824                       ted stevens
## 1.169829                   killed.the ntsb
## 1.169830                        ntsb found
## 1.169838                          pilotã â
## 1.169839                               â â
## 1.169842        temporary unresponsiveness
## 1.169875                  airliner crashed
## 1.169886                       major storm
## 1.169889                    hundred twenty
## 1.169896                    passenger died
## 1.169900                      heart attack
## 1.169907                         girl died
## 1.169911                     head injuries
## 1.169912                injuries execution
## 1.169921                      approach due
## 1.169928                    crew believing
## 1.169940                typical trajectory
## 1.169944                        black hole
## 1.169945                     hole illusion
## 1.169952                        night time
## 1.169953                     time approach
## 1.169959                      low contrast
## 1.169960               contrast surrounded
## 1.169963                    bright focused
## 1.169964                    focused lights
## 1.169965                 lights aggravated
## 1.169968                       bad weather
## 1.169971                        heavy rain
## 1.169972                      rain crashed
## 1.169978                   katmai national
## 1.169979                     national park
## 1.169999                      crew decided
## 1.170004                    simara airport
## 1.170005                       airport due
## 1.170008                      poor weather
## 1.170009                weather conditions
## 1.170012                 kathmandu contact
## 1.170020                     plane crashed
## 1.170026                          9,000 ft
## 1.170027                             ft 20
## 1.170028                          20 miles
## 1.170029                         miles ssw
## 1.170040                      lost contact
## 1.170044                           atc due
## 1.170056                    backup battery
## 1.170059                    plane overshot
## 1.170070                    pilot violated
## 1.170071                 violated aviation
## 1.170072                    aviation rules
## 1.170087                  crashed aircraft
## 1.170090                     plane crashed
## 1.170091                       crashed 2km
## 1.170110                 passenger brought
## 1.170111                    brought aboard
## 1.170114                  crocodile hidden
## 1.170118                        sports bag
## 1.170121                 crocodile escaped
## 1.170122                   escaped causing
## 1.170154                helicopter crashed
## 1.170161                      counter drug
## 1.170162                      drug mission
## 1.170163                   mission killing
## 1.170166                       10 soldiers
## 1.170177                    suspected drug
## 1.170178                  drug traffickers
## 1.170181                southwestern apure
## 1.170185                       cargo plane
## 1.170186                     plane crashed
## 1.170187                        crashed 10
## 1.170188                             10 km
## 1.170189                          km north
## 1.170192                     dubai airport
## 1.170193                   airport shortly
## 1.170209                 accident happened
## 1.170212                     data recorder
## 1.170219                       fire coming
## 1.170226                     cargo plane's
## 1.170227                    plane's pilots
## 1.170228                  pilots struggled
## 1.170233                    primary flight
## 1.170234                 flight instrument
## 1.170235               instrument displays
## 1.170238                       thick smoke
## 1.170239                      smoke filled
## 1.170247                  manually control
## 1.170250                          planeã â
## 1.170251                               â â
## 1.170259                    cables running
## 1.170267                        cargo fire
## 1.170268                         fire lost
## 1.170269                      lost tension
## 1.170279                 lithium batteries
## 1.170288                       fox glacier
## 1.170289                  glacier airstrip
## 1.170292                  aircraft crashed
## 1.170298               field investigators
## 1.170299              investigators blamed
## 1.170302                  overloaded plane
## 1.170315                          en route
## 1.170318                   passenger plane
## 1.170319                     plane crashed
## 1.170325                      storage yard
## 1.170329                     steel foundry
## 1.170332                          miles se
## 1.170335                      puerto ordaz
## 1.170336                     ordaz airport
## 1.170340                    pilot reported
## 1.170348               military helicopter
## 1.170349                helicopter crashed
## 1.170352                          en route
## 1.170359                        enemy fire
## 1.170360                        fire prior
## 1.170366               military helicopter
## 1.170367                helicopter crashed
## 1.170370                     hitting power
## 1.170371                       power lines
## 1.170374                       cargo plane
## 1.170375                     plane crashed
## 1.170381                          18 miles
## 1.170382                        miles east
## 1.170385                     kabul airport
## 1.170388                       cargo plane
## 1.170389                 plane experienced
## 1.170392                    engine failure
## 1.170393                         failure 5
## 1.170394                         5 minutes
## 1.170408                          en route
## 1.170411                     pilot radioed
## 1.170414                 emergency message
## 1.170415                   message contact
## 1.170421                     plane crashed
## 1.170424               mountainous terrain
## 1.170427                      61 passenger
## 1.170430                            7 crew
## 1.170437                       crew errors
## 1.170444                    plane carrying
## 1.170445                  carrying italian
## 1.170446                       italian oil
## 1.170447                       oil company
## 1.170448                  company personne
## 1.170453                    engine failure
## 1.170468                        nose dived
## 1.170484                delivering workers
## 1.170488                     drilling site
## 1.170489                      site crashed
## 1.170499                        tail rotor
## 1.170506                       cargo plane
## 1.170507                    plane carrying
## 1.170508                       carrying 31
## 1.170509                           31 tons
## 1.170512                   relief supplies
## 1.170515                     sudan crashed
## 1.170521                     naval housing
## 1.170522                    housing colony
## 1.170529                        runway 07r
## 1.170530                       07r shortly
## 1.170543               uncontained failure
## 1.170547                         2nd stage
## 1.170548                        stage disk
## 1.170551                     lp compressor
## 1.170554                          engine 4
## 1.170555                             4 due
## 1.170558                  fatigue fracture
## 1.170564                       flight fire
## 1.170573                        wing flaps
## 1.170590                     crew reported
## 1.170591                   reported losing
## 1.170595                engines electrical
## 1.170596                  electrical power
## 1.170599              navigation equipment
## 1.170607                     moscow visual
## 1.170608                    visual contact
## 1.170623                          500 feet
## 1.170626                   aircraft landed
## 1.170627                    landed skidded
## 1.170636              pieces unintentional
## 1.170637            unintentional shutdown
## 1.170640                       supply tank
## 1.170641                      tank booster
## 1.170642                     booster pumps
## 1.170646                   flight engineer
## 1.170647                  engineer carried
## 1.170650                       manual fuel
## 1.170651                     fuel transfer
## 1.170652               transfer procedures
## 1.170656                     climb leading
## 1.170659         instantaneous oscillation
## 1.170662                         fuel flow
## 1.170675                     outer engines
## 1.170678                      power supply
## 1.170685                         2 minutes
## 1.170686                        minutes 23
## 1.170695                generators failure
## 1.170706                    restore engine
## 1.170707                      engine power
## 1.170710                     plane crashed
## 1.170713                      palunge hill
## 1.170718                      wing clipped
## 1.170723                          en route
## 1.170726                     passenger jet
## 1.170727                        jet caught
## 1.170728                       caught fire
## 1.170743                        43 injured
## 1.170747             evacuation electrical
## 1.170748                  electrical short
## 1.170751                 accident happened
## 1.170762                      poor weather
## 1.170763                weather conditions
## 1.170772                  aircraft crashed
## 1.170773                         crashed 5
## 1.170774                           5 miles
## 1.170778                  orumiyeh airport
## 1.170782                       snowy field
## 1.170786                  crew encountered
## 1.170787                 encountered dense
## 1.170788                         dense fog
## 1.170789                      fog limiting
## 1.170790               limiting visibility
## 1.170793                     pilot aborted
## 1.170808                     plane crashed
## 1.170819                         runway 17
## 1.170822                    low visibility
## 1.170826                      crew decided
## 1.170837                         runway 35
## 1.170851                   landing attempt
## 1.170854                         runway 17
## 1.170857                  aircraft crashed
## 1.170858                  crashed adjacent
## 1.170866                       rest upside
## 1.170880                   killed improper
## 1.170881                     improper crew
## 1.170882                 crew coordination
## 1.170885                    procedures led
## 1.170895               contributing factor
## 1.170898            inadequate maintenance
## 1.170899               maintenance causing
## 1.170905                   develop unequal
## 1.170906                    unequal thrust
## 1.170910                 airlilner crashed
## 1.170919                        2,000 feet
## 1.170925                   poor visibility
## 1.170926              visibility windshear
## 1.170929                       cargo plane
## 1.170932                approaching runway
## 1.170933                         runway 17
## 1.170936                      pointe noire
## 1.170937                     noire airport
## 1.170944                         mvou mvou
## 1.170945                  mvou residential
## 1.170952                    plane operated
## 1.170958                    united nations
## 1.170959              nations organization
## 1.170960        organization stabilization
## 1.170961             stabilization mission
## 1.170967                   geogian airways
## 1.170974                rain thunderstorms
## 1.170977                      strong winds
## 1.170982                      plane missed
## 1.170987                    crashed twenty
## 1.170998                passenger survived
## 1.171001            inappropriate decision
## 1.171013               extremely inclement
## 1.171014                 inclement weather
## 1.171020                     weather radar
## 1.171021                        radar lack
## 1.171024              adequate supervision
## 1.171033                     crew complied
## 1.171036            established procedures
## 1.171037              procedures including
## 1.171038                 including weather
## 1.171039                 weather avoidance
## 1.171040              avoidance procedures
## 1.171043               stabilized approach
## 1.171044                 approach criteria
## 1.171047                helicopter crashed
## 1.171060                  altitude helipad
## 1.171065                   copilot escaped
## 1.171068                    minor injuries
## 1.171071                         airl taxi
## 1.171072                      taxi crashed
## 1.171081                    manaus airport
## 1.171087                  circling kaimana
## 1.171088                   kaimana airport
## 1.171092                        15 minutes
## 1.171099                           sea 400
## 1.171100                        400 meters
## 1.171101                   meters offshore
## 1.171104                      poor weather
## 1.171105                weather conditions
## 1.171108                domestic scheduled
## 1.171109               scheduled passenger
## 1.171110                  passenger flight
## 1.171111                    flight crashed
## 1.171112                      crashed 12.5
## 1.171113                        12.5 miles
## 1.171114                       miles north
## 1.171119                          en route
## 1.171124                     distress call
## 1.171127                     19 passengers
## 1.171135                 killed inadequate
## 1.171136                 inadequate flight
## 1.171137                   flight planning
## 1.171138               planning inadequate
## 1.171139            inadequate operational
## 1.171140              operational decision
## 1.171148                        pilot loss
## 1.171151             situational awareness
## 1.171155                       flight crew
## 1.171158                  airliner crashed
## 1.171166                         heavy fog
## 1.171167                       fog landing
## 1.171168                         landing 1
## 1.171169                      1 kilometers
## 1.171170                  kilometers short
## 1.171183                      fire factors
## 1.171187                    accident heavy
## 1.171188                         heavy fog
## 1.171196                   runway's ground
## 1.171197                     ground lights
## 1.171213                         plane hit
## 1.171214                        hit nearby
## 1.171215                      nearby trees
## 1.171218              crashing cooperation
## 1.171225                   landing attempt
## 1.171231               pilot subordinating
## 1.171240                 pilot effectively
## 1.171241              effectively excluded
## 1.171252                       12,500 feet
## 1.171255                       cargo plane
## 1.171256                     plane crashed
## 1.171260                     mountain peak
## 1.171261                     peak exploded
## 1.171266                          15 miles
## 1.171278            international security
## 1.171279               security assistance
## 1.171280                  assistance force
## 1.171285                  airliner crashed
## 1.171299             bangoka international
## 1.171300             international airport
## 1.171304                        heavy rain
## 1.171305                rain thunderstorms
## 1.171308                limited visibility
## 1.171319                       engine fire
## 1.171323                       left engine
## 1.171326                   pilot attempted
## 1.171331                 emergency landing
## 1.171339                         orb river
## 1.171349                 captain's license
## 1.171361              requalification exam
## 1.171364                 regional airliner
## 1.171370                         runway 18
## 1.171375                    pilot reported
## 1.171384                 emergency landing
## 1.171393                    forced landing
## 1.171399                        boa viagem
## 1.171404                     plane crashed
## 1.171408                        vacant lot
## 1.171416                         beach 1.2
## 1.171417                         1.2 miles
## 1.171421                  runway threshold
## 1.171424                military transport
## 1.171425                   transport plane
## 1.171426                     plane crashed
## 1.171430                        mountain 6
## 1.171431                           6 miles
## 1.171432                   miles northeast
## 1.171437                       bad weather
## 1.171444                       cargo plane
## 1.171445                     plane crashed
## 1.171451                          70 miles
## 1.171452                        miles west
## 1.171458                     crew reported
## 1.171464                        cargo hold
## 1.171469                       carrying 58
## 1.171470                           58 tons
## 1.171477                 including lithium
## 1.171478                 lithium batteries
## 1.171479                  batteries thirty
## 1.171482                  people including
## 1.171483                      including 31
## 1.171484                            31 u.s
## 1.171485                       u.s special
## 1.171486                    special forces
## 1.171487                     forces troops
## 1.171490                          7 afghan
## 1.171491                   afghan soldiers
## 1.171503                  rocket propelled
## 1.171504                 propelled grenade
## 1.171507              overnight operations
## 1.171510                taliban insurgents
## 1.171513                    leaving magdan
## 1.171519                       cargo plane
## 1.171520                    plane reported
## 1.171523                         fuel leak
## 1.171527                       engine fire
## 1.171536                     plane crashed
## 1.171537                         crashed 6
## 1.171538                           6 miels
## 1.171541                     omsukchan 190
## 1.171542                         190 miles
## 1.171551                     plane carried
## 1.171552                        carried 18
## 1.171553                           18 tons
## 1.171559               instrument approach
## 1.171567                         plane hit
## 1.171572                          2km east
## 1.171581                      3 pieces.the
## 1.171582                   pieces.the crew
## 1.171594                   late initiation
## 1.171597             subsequent management
## 1.171601                  descent resulted
## 1.171608                    final approach
## 1.171609                      approach 600
## 1.171610                          600 feet
## 1.171614             glideslope increasing
## 1.171617                           crewã â
## 1.171618                               â â
## 1.171631               navigational issues
## 1.171652                         field 1.7
## 1.171653                            1.7 nm
## 1.171654                          nm north
## 1.171655                   north northeast
## 1.171658                  midwest national
## 1.171659                      national air
## 1.171660                        air center
## 1.171663                       pilot nurse
## 1.171664                   nurse paramedic
## 1.171672                aircraft attempted
## 1.171683                      strong winds
## 1.171684                   winds prevented
## 1.171688              landing.the aircraft
## 1.171689             aircraft subsequently
## 1.171690              subsequently crashed
## 1.171694                             sea 1
## 1.171695                       1 kilometre
## 1.171696                   kilometre 1,100
## 1.171697                          1,100 yd
## 1.171711                  felipe camiroaga
## 1.171716                    tv entertainer
## 1.171721                     plane crashed
## 1.171730                         runway 14
## 1.171733                  trinidad airport
## 1.171737                     crew reported
## 1.171744                    final approach
## 1.171745                    approach radio
## 1.171746                     radio contact
## 1.171753                           found 2
## 1.171754                            2 days
## 1.171757                             10 km
## 1.171763                passenger survived
## 1.171766                      plane failed
## 1.171779                 airport perimeter
## 1.171787                       volga river
## 1.171788                         river 1km
## 1.171794                     plane carried
## 1.171797                  entire lokomotiv
## 1.171798               lokomotiv yaroslavl
## 1.171799                     yaroslavl ice
## 1.171800                        ice hockey
## 1.171801                       hockey team
## 1.171802                        team pilot
## 1.171803                       pilot error
## 1.171811                            yak 40
## 1.171819                    types contrary
## 1.171822                   proper practice
## 1.171830                  correct position
## 1.171839                            yak 42
## 1.171846                  existing russian
## 1.171849                    western planes
## 1.171852                      pilot steers
## 1.171870                    upper part.but
## 1.171879                     cockpit floor
## 1.171884                        pilot left
## 1.171887                      feet resting
## 1.171896                            yak 40
## 1.171901                    brakes causing
## 1.171904                    downward pitch
## 1.171905                       pitch force
## 1.171919                     fatal mistake
## 1.171931                      upward pitch
## 1.171939                     plane finally
## 1.171940                      finally left
## 1.171946                    downward pitch
## 1.171947                       pitch force
## 1.171948                     force stopped
## 1.171958                    military plane
## 1.171959                     plane crashed
## 1.171960                     crashed broke
## 1.171971                    huambo airport
## 1.171974                  persons survived
## 1.171975                survived including
## 1.171985            aircraft participating
## 1.171989                          air race
## 1.171990                         race lost
## 1.171991                      lost control
## 1.171997                     spectator box
## 1.171998                       box seating
## 1.172008                     left elevator
## 1.172009                     elevator trim
## 1.172010                          trim tab
## 1.172011                     tab separated
## 1.172014              flight investigation
## 1.172015          investigation determined
## 1.172022                     elevator trim
## 1.172023                          trim tab
## 1.172024                    tab attachment
## 1.172025                 attachment screws
## 1.172029                     fatigue crack
## 1.172035                     screws caused
## 1.172041              structural stiffness
## 1.172045                     elevator trim
## 1.172046                       trim system
## 1.172056                        slave lake
## 1.172059                       float plane
## 1.172060                         plane hit
## 1.172061                    hit powerlines
## 1.172071                   pilot attempted
## 1.172079                    aircraft float
## 1.172080                         float dug
## 1.172086                        cross wind
## 1.172087                      wind flipped
## 1.172095                     clipped power
## 1.172096                       power lines
## 1.172102                 building spinning
## 1.172105                        90 degrees
## 1.172110                    crashed floats
## 1.172115                         faãƒâ ade
## 1.172126                 floats demolished
## 1.172136                       parking lot
## 1.172137                        lot facing
## 1.172146                sightseeing flight
## 1.172149                        mt everest
## 1.172150                    everest struck
## 1.172151                    struck terrain
## 1.172157               kathmandu tribhuvan
## 1.172158                 tribhuvan airport
## 1.172161                passenger survived
## 1.172172                  hospital contact
## 1.172178                           lost 10
## 1.172179                        10 minutes
## 1.172185                    medan wreckage
## 1.172196                    mountain 6,100
## 1.172197                        6,100 feet
## 1.172200                        vfr flight
## 1.172203                    imc conditions
## 1.172204                   conditions lack
## 1.172207                 crew coordination
## 1.172215                     plane crashed
## 1.172218                      dense forest
## 1.172222                       gogol river
## 1.172223                          river 20
## 1.172224                             20 km
## 1.172225                          km south
## 1.172234                pasengers survived
## 1.172237             accident overspeeding
## 1.172247                    manually flown
## 1.172251                    aircraft's yaw
## 1.172252                        yaw damper
## 1.172257                     pilot noticed
## 1.172260                  aircraft's speed
## 1.172261                  speed increasing
## 1.172265                 maximum operating
## 1.172266                   operating speed
## 1.172271                    command pulled
## 1.172274                      power levels
## 1.172280                   quickly moments
## 1.172286               sped simultaneously
## 1.172290               speeding propellers
## 1.172302                   engine turbines
## 1.172303                  turbines driving
## 1.172309                     caused severe
## 1.172310                     severe damage
## 1.172314                 left engine.after
## 1.172321                   officer quickly
## 1.172322                quickly identified
## 1.172325                  double propeller
## 1.172333                        time smoke
## 1.172334                    smoke appeared
## 1.172341                   aircraft system
## 1.172342                system malfunction
## 1.172343                malfunction alerts
## 1.172344                  alerts activated
## 1.172359              emergency procedures
## 1.172360               procedures detailed
## 1.172363                   company manuals
## 1.172367                   quick reference
## 1.172368                reference handbook
## 1.172374                    pilot reported
## 1.172387                     plane crashed
## 1.172388                       crashed 900
## 1.172389                        900 meters
## 1.172390                      meters short
## 1.172393                        runway 26l
## 1.172402               passengers reported
## 1.172405                          oil leak
## 1.172414                      crew shortly
## 1.172420                  captain reported
## 1.172427                       airport due
## 1.172434            sightseeing helicopter
## 1.172438                 tourist excursion
## 1.172441                         west maui
## 1.172444                   molokai slammed
## 1.172456                        heavy rain
## 1.172461                   pilot's failure
## 1.172464                maintain clearance
## 1.172467               mountainous terrain
## 1.172472                  marginal weather
## 1.172473                weather conditions
## 1.172481             horizontal stabilizer
## 1.172484                     lower forward
## 1.172485                   forward portion
## 1.172497              mexican presidential
## 1.172498           presidential helicopter
## 1.172499                helicopter crashed
## 1.172508                        low clouds
## 1.172514                    2,600 meters.ã
## 1.172515                        meters.ã â
## 1.172518                helicopter carried
## 1.172524                   interior josãƒâ
## 1.172525                  josãƒâ francisco
## 1.172526                   francisco blake
## 1.172527                        blake mora
## 1.172531              government officials
## 1.172534                touring helicopter
## 1.172538                sightseeing flight
## 1.172542                         las vegas
## 1.172543                       vegas strip
## 1.172546                        hoover dam
## 1.172547                       dam crashed
## 1.172553                         lake mead
## 1.172556            henderson.say critical
## 1.172557                 critical steering
## 1.172558                 steering hardware
## 1.172578                     scene records
## 1.172589                   passed multiple
## 1.172590              multiple inspections
## 1.172597                  crash inadequate
## 1.172598            inadequate maintenance
## 1.172602              helicopter including
## 1.172605                    improper reuse
## 1.172611                       locking nut
## 1.172621                         split pin
## 1.172624                   inadequate post
## 1.172625                  post maintenance
## 1.172626           maintenance inspections
## 1.172633                 flight separation
## 1.172637                     servo control
## 1.172638                     control input
## 1.172639                         input rod
## 1.172643                          fore aft
## 1.172644                         aft servo
## 1.172649         helicopter uncontrollable
## 1.172653                        demand air
## 1.172654                          air taxi
## 1.172675            jacksonville sheriff's
## 1.172676              sheriff's department
## 1.172677               department aviation
## 1.172678                     aviation unit
## 1.172687                           30 feet
## 1.172693                             50 ft
## 1.172694                           ft tree
## 1.172697                       cargo plane
## 1.172709                       forest 10km
## 1.172721                           june 12
## 1.172722                           12 1993
## 1.172725                       cargo plane
## 1.172732                    carrying 2,500
## 1.172733                         2,500 lbs
## 1.172739                     pilot radioed
## 1.172744                    engine trouble
## 1.172752                     plane crashed
## 1.172756                 torrecilla lagoon
## 1.172757                    lagoon killing
## 1.172762                helicopter crashed
## 1.172771                  bagrami district
## 1.172782                 emergency landing
## 1.172788                    houses killing
## 1.172799                        plane lost
## 1.172800                       lost height
## 1.172804                     initial climb
## 1.172807                      crash landed
## 1.172811                       snowy field
## 1.172812                         field 1.5
## 1.172813                         1.5 miles
## 1.172814                        miles past
## 1.172822                      impact split
## 1.172828                        pieces.ã â
## 1.172829                           â icing
## 1.172844                    plane impacted
## 1.172845                  impacted terrain
## 1.172848                              5 km
## 1.172849                          km short
## 1.172853                     slightly left
## 1.172857                   extended runway
## 1.172858                     runway center
## 1.172859                       center line
## 1.172862                islamabad's runway
## 1.172863                         runway 30
## 1.172866                  plane completely
## 1.172867                  completely broke
## 1.172877                      hussain abad
## 1.172878                      abad village
## 1.172887                        boeing 737
## 1.172888                           737 200
## 1.172894                      advanced 737
## 1.172895                           737 236
## 1.172900                  automated flight
## 1.172901                       flight deck
## 1.172904                 aircraft accident
## 1.172919            indirectly contributed
## 1.172925              accident.the primary
## 1.172929                  accident include
## 1.172930               include ineffective
## 1.172931            ineffective management
## 1.172935                      basic flight
## 1.172936                 flight parameters
## 1.172940                 airspeed altitude
## 1.172941                  altitude descent
## 1.172942                      descent rate
## 1.172943                     rate attitude
## 1.172948                           page 75
## 1.172951                         78 thrust
## 1.172952                 thrust management
## 1.172955              contributory factors
## 1.172956                   factors include
## 1.172959                           crewã â
## 1.172960                               â â
## 1.172969              significant changing
## 1.172970                    changing winds
## 1.172975                prevailing weather
## 1.172976                weather conditions
## 1.172988                       airplaneã â
## 1.172989                               â â
## 1.172992                  automated flight
## 1.172993                       flight deck
## 1.172996                 helicopter caught
## 1.172997                       caught fire
## 1.173002                          en route
## 1.173005                       russian jet
## 1.173006                       jet crashed
## 1.173012                       mount salak
## 1.173018                          5,200 ft
## 1.173025              demonstration flight
## 1.173028             prospective customers
## 1.173032                     radio contact
## 1.173039                             15 30
## 1.173043                    crew requested
## 1.173062                    37passengers 6
## 1.173063                            6 crew
## 1.173066                          2 sukhoi
## 1.173067                  sukhoi officials
## 1.173070                      killed pilot
## 1.173071                       pilot error
## 1.173078                     terrain ahead
## 1.173079                     ahead warning
## 1.173084                     avoid terrain
## 1.173085                  terrain warnings
## 1.173093                  command switched
## 1.173107                       flight crew
## 1.173126                   inadequate maps
## 1.173127                     maps briefing
## 1.173130                        low clouds
## 1.173153                    final approach
## 1.173156                         runway 06
## 1.173159                   aircraft joined
## 1.173162                     left downwind
## 1.173166                    wing contacted
## 1.173171                          900 feet
## 1.173172                        feet north
## 1.173176                airport.the flight
## 1.173177                  flight attendant
## 1.173180                      5 passengers
## 1.173181               passengers survived
## 1.173189                         runway 21
## 1.173192              kotika international
## 1.173193             international airport
## 1.173196                       cargo plane
## 1.173197                     plane overran
## 1.173200                      runway broke
## 1.173204                   perimeter fence
## 1.173209                         main road
## 1.173220                          11 miles
## 1.173223                         lagos vor
## 1.173227                     crew declared
## 1.173230               emergency reporting
## 1.173231                  reporting engine
## 1.173235                    plane collided
## 1.173239                        power line
## 1.173245                        iju ishaga
## 1.173249                           lagos 1
## 1.173250                            1 mile
## 1.173251                     mile adjacent
## 1.173255                     runway double
## 1.173256                     double engine
## 1.173257                    engine failure
## 1.173261                    crew's failure
## 1.173264                  properly monitor
## 1.173265                      monitor fuel
## 1.173266                         fuel flow
## 1.173271                       proper fuel
## 1.173272                        fuel pumps
## 1.173282                 conducting aerial
## 1.173283               aerial surveillance
## 1.173291             hydroelectric project
## 1.173296                     southern peru
## 1.173307                 plane disappeared
## 1.173314                    illegal flight
## 1.173331                      serov russia
## 1.173336                   illegally steal
## 1.173340                           2 plane
## 1.173341                      plane parked
## 1.173354                           april 4
## 1.173355                            4 2013
## 1.173356                            2013 8
## 1.173357                              8 km
## 1.173368                        serov city
## 1.173369                       city police
## 1.173372                 police inspectors
## 1.173380                   private company
## 1.173381                     company guard
## 1.173391                      local mobile
## 1.173392                       mobile shop
## 1.173393                        shop owner
## 1.173412                         runway 18
## 1.173416                 training exercise
## 1.173422                            1 mile
## 1.173431                  rajawali housing
## 1.173432                   housing complex
## 1.173435                          en route
## 1.173441                  chartered flight
## 1.173442                    flight radioed
## 1.173448                 emergency landing
## 1.173451                   masbate airport
## 1.173452                       airport due
## 1.173471                    masbate island
## 1.173474                            980 ft
## 1.173479                  island's airport
## 1.173482               investigation found
## 1.173485              improper maintenance
## 1.173486                   maintenance led
## 1.173491                  engine suffering
## 1.173494                  internal failure
## 1.173500                  caused misfiring
## 1.173503            intermittent operation
## 1.173507                         fuel pump
## 1.173515                aircraft developed
## 1.173516                  developed engine
## 1.173519                        23 minutes
## 1.173532                     pilot decided
## 1.173540                     engine failed
## 1.173541                 failed completely
## 1.173542                     completely 37
## 1.173543                        37 minutes
## 1.173548                  aircraft crashed
## 1.173552                subsequent attempt
## 1.173559          investigation determined
## 1.173567                 correct procedure
## 1.173574                      piper seneca
## 1.173578                engine inoperative
## 1.173595                flight proficiency
## 1.173596                  proficiency test
## 1.173609                engine inoperative
## 1.173613                   aborted landing
## 1.173616                        plane flew
## 1.173623                    nuba mountains
## 1.173633                        talodi air
## 1.173634                         air strip
## 1.173639                        dust storm
## 1.173648                     26 passengers
## 1.173655                  killed including
## 1.173656                       including 2
## 1.173657                        2 sudanese
## 1.173658                sudanese ministers
## 1.173659                 ministers crashed
## 1.173663                      cedar forest
## 1.173664                          forest 6
## 1.173665                           6 miles
## 1.173668                    palana airport
## 1.173675                       heavy storm
## 1.173676                      storm clouds
## 1.173679                      poor weather
## 1.173695                       plane crash
## 1.173696                      crash landed
## 1.173703                    manohara river
## 1.173704                     river minutes
## 1.173710                trinbhuvan airport
## 1.173713                witnesses reported
## 1.173725               crashed overloading
## 1.173734                       climb phase
## 1.173735                         phase due
## 1.173740                      engine power
## 1.173741                         power led
## 1.173747                transport carrying
## 1.173748                 carrying military
## 1.173749                military personnel
## 1.173752                 equipment crashed
## 1.173753                        crashed 25
## 1.173754                          25 miles
## 1.173755                   miles southwest
## 1.173760               experiencing engine
## 1.173761                    engine trouble
## 1.173764                  captain reported
## 1.173768                   engines stopped
## 1.173781                          runway 7
## 1.173784                          v.c bird
## 1.173785                bird international
## 1.173786             international airport
## 1.173787                      airport lost
## 1.173788                       lost height
## 1.173789                height immediately
## 1.173798                       ground nose
## 1.173803                       heavy rains
## 1.173814                military transport
## 1.173815                 transport crashed
## 1.173819                      abandoned al
## 1.173820                         al hasaba
## 1.173821                hasaba marketplace
## 1.173824                           6 miles
## 1.173827               sanaa international
## 1.173828             international airport
## 1.173829                   airport shortly
## 1.173835                         runway 18
## 1.173844                 emergency landing
## 1.173848                     engine failed
## 1.173851                       cargo plane
## 1.173852                     plane crashed
## 1.173856                      dozen houses
## 1.173860                   mselou district
## 1.173870                     local airport
## 1.173873                      plane caught
## 1.173886                        heavy rain
## 1.173900                military transport
## 1.173905                          en route
## 1.173913             drakensberg mountains
## 1.173918                     kwazulu natal
## 1.173919                    natal province
## 1.173922                         210 miles
## 1.173923                   miles southeast
## 1.173926                    waterkloof air
## 1.173927                         air force
## 1.173928                        force base
## 1.173932                    severe weather
## 1.173941                       charter jet
## 1.173942                       jet crashed
## 1.173945                          60 miles
## 1.173948                   monterey mexico
## 1.173951                       ten minutes
## 1.173957                     plane plunged
## 1.173964                       28,000 feet
## 1.173972                         nose dive
## 1.173980                      exceeded 600
## 1.173981                           600 mph
## 1.173982                       mph mexican
## 1.173983                  mexican american
## 1.173984              american singerjenni
## 1.173985                singerjenni rivera
## 1.173986                         rivera 43
## 1.174001                   finished giving
## 1.174009                          en route
## 1.174016                        mexican tv
## 1.174022                       abrupt lack
## 1.174031                    sheer vertical
## 1.174032                     vertical drop
## 1.174047                          planeã â
## 1.174048                               â â
## 1.174051             horizontal stabilizer
## 1.174061                          pilot 78
## 1.174088                           fly ifr
## 1.174102                military transport
## 1.174103                 transport crashed
## 1.174104                        crashed 12
## 1.174105                          12 miles
## 1.174109                   shymket airport
## 1.174118                       heavy winds
## 1.174121               snow.the fatalities
## 1.174122               fatalities included
## 1.174129                         20 border
## 1.174130                     border guards
## 1.174131                  guards including
## 1.174134                       acting head
## 1.174139                   soviet nation's
## 1.174140                   nation's border
## 1.174141                 border protection
## 1.174142                protection service
## 1.174143                       service col
## 1.174144                     col turganbek
## 1.174145               turganbek stambekov
## 1.174148                   passenger plane
## 1.174149                       plane crash
## 1.174157                      heho airport
## 1.174160                       caught fire
## 1.174167                     foggy weather
## 1.174170                        tour guide
## 1.174192                     killed eleven
## 1.174203                      snow covered
## 1.174204                    covered runway
## 1.174207                       heavy cross
## 1.174208                       cross winds
## 1.174211                     plane overran
## 1.174214                 runway penetrated
## 1.174217                   perimeter fence
## 1.174223                highway embankment
## 1.174226                    aircraft broke
## 1.174231                    plane's impact
## 1.174235                highway embankment
## 1.174239                      severed nose
## 1.174240                      nose sliding
## 1.174244                          icy road
## 1.174251                        jet rested
## 1.174256                   airport's fence
## 1.174259                       tail linked
## 1.174280                     air ambulance
## 1.174281                 ambulance crashed
## 1.174284                      burned north
## 1.174290                         lake iowa
## 1.174293                          ice haze
## 1.174296                   misty conditons
## 1.174299                flight disappeared
## 1.174302                          en route
## 1.174305                        los roques
## 1.174306                     roques island
## 1.174314                  approximately 11
## 1.174315                          11 miles
## 1.174318                        los roques
## 1.174319                    roques airport
## 1.174320                     airport radar
## 1.174325                    rapidly losing
## 1.174326                   losing altitude
## 1.174342                  italian designer
## 1.174343                  designer ottavio
## 1.174344                   ottavio missoni
## 1.174351                       jet crashed
## 1.174354                         heavy fog
## 1.174364                    almaty airport
## 1.174375                    swampy terrain
## 1.174378                            1 mile
## 1.174379                        mile short
## 1.174383                  runway threshold
## 1.174390                          runway 8
## 1.174393                         dense fog
## 1.174396                     plane overran
## 1.174399                 runway overturned
## 1.174402                       caught fire
## 1.174405                 airplane operated
## 1.174409                    charter flight
## 1.174410                   flight carrying
## 1.174411                 carrying football
## 1.174412                     football fans
## 1.174421                  shakhtar donetsk
## 1.174424                 borussia dortmund
## 1.174425                    dortmund pilot
## 1.174426                       pilot error
## 1.174436               thelanding approach
## 1.174437                      approach due
## 1.174444                   unprepared crew
## 1.174455                weather conditions
## 1.174458                  aircraft crashed
## 1.174459                     crashed short
## 1.174469                        heavy rain
## 1.174472                      goma airport
## 1.174473                  airport crashing
## 1.174484                         lake kivu
## 1.174488                       cargo plane
## 1.174489                     plane crashed
## 1.174492                          20 miles
## 1.174493                   miles northeast
## 1.174501                dillingham airport
## 1.174502                  airport wreckage
## 1.174512                   copilot fatally
## 1.174513                   fatally injured
## 1.174518                  badly fragmented
## 1.174524                     flight crew's
## 1.174525                    crew's failure
## 1.174528                  maintain terrain
## 1.174529                 terrain clearance
## 1.174534                 controlled flight
## 1.174539         instrument meteorological
## 1.174540         meteorological conditions
## 1.174541           conditions contributing
## 1.174548                     flight crew's
## 1.174549                    crew's failure
## 1.174552                    correctly read
## 1.174556               interpret clearance
## 1.174557               clearance altitudes
## 1.174558                  altitudes issued
## 1.174562                       air traffic
## 1.174563                traffic controller
## 1.174570                 minimum altitudes
## 1.174571                altitudes depicted
## 1.174575              published instrument
## 1.174576               instrument approach
## 1.174577                    approach chart
## 1.174585                company checklists
## 1.174594                       air traffic
## 1.174595              traffic controller's
## 1.174596             controller's issuance
## 1.174600               ambiguous clearance
## 1.174604                       flight crew
## 1.174610              airplane's premature
## 1.174611                 premature descent
## 1.174618                 pilot's incorrect
## 1.174619                    incorrect read
## 1.174624                assigned clearance
## 1.174625               clearance altitudes
## 1.174637               altitude violations
## 1.174640                     issue terrain
## 1.174641                     terrain based
## 1.174642                      based safety
## 1.174643                     safety alerts
## 1.174651                         ocean 150
## 1.174652                          150 feet
## 1.174653                        feet short
## 1.174660                    final approach
## 1.174663                   denpasar ngurah
## 1.174664                        ngurah rai
## 1.174665                          rai bali
## 1.174666                bali international
## 1.174667             international airport
## 1.174670                    101 passengers
## 1.174675                        7 survived
## 1.174676                    survived forty
## 1.174683                    civilian cargo
## 1.174684                       cargo plane
## 1.174685                     plane crashed
## 1.174688                    burned shortly
## 1.174694                         runway 03
## 1.174697                        bagram air
## 1.174698                          air base
## 1.174703                        carrying 5
## 1.174704                         5 armored
## 1.174705                  armored vehicles
## 1.174708                   airline's cargo
## 1.174709                  cargo operations
## 1.174710                 operations manual
## 1.174723                    tiedown straps
## 1.174735            uncertified loadmaster
## 1.174747                  rearmost vehicle
## 1.174748                  vehicle weighing
## 1.174749                   weighing 28,000
## 1.174750                     28,000 pounds
## 1.174751                      pounds broke
## 1.174752                        broke free
## 1.174758                     tail severing
## 1.174761                 hydraulic systems
## 1.174765                elevator jackscrew
## 1.174766                 jackscrew leaving
## 1.174769              plane uncontrollable
## 1.174772                     air ambulance
## 1.174773              ambulance helicopter
## 1.174774                helicopter crashed
## 1.174775                       crashed 0.7
## 1.174776                         0.7 miles
## 1.174783                     pilot copilot
## 1.174800                   patient crashed
## 1.174803                      flood relief
## 1.174804                 relief operations
## 1.174810               paramilitary forces
## 1.174813                    aircraft crash
## 1.174814                      crash landed
## 1.174815                      landed short
## 1.174824                        runway 28l
## 1.174827                     san francisco
## 1.174828           francisco international
## 1.174829             international airport
## 1.174832                      tail section
## 1.174833                   section landing
## 1.174834                      landing gear
## 1.174838                 engines separated
## 1.174845                      fire erupted
## 1.174846                    erupted debris
## 1.174852                       ocean front
## 1.174865                     plane's voice
## 1.174868                       flight data
## 1.174869                    data recorders
## 1.174890                   increased speed
## 1.174897                     stall warning
## 1.174898                   warning sounded
## 1.174911                 internal decision
## 1.174921             impact.two passengers
## 1.174926                       182 injured
## 1.174937                emergency vehicles
## 1.174940                    crew's failure
## 1.174947                  plane's airspeed
## 1.174967                automatic throttle
## 1.174972                      plane flying
## 1.174973                       flying fast
## 1.174977                       land safely
## 1.174983                     auto throttle
## 1.174986                  effectively shut
## 1.174991                       pilot idled
## 1.174997                 unexplained climb
## 1.174998                     climb earlier
## 1.175004                       flight crew
## 1.175009                 automated systems
## 1.175030                     plane stalled
## 1.175042                       operatorã â
## 1.175043                               â â
## 1.175051                    420 additional
## 1.175052                 additional pounds
## 1.175055                 unspecified cargo
## 1.175064                      de havilland
## 1.175065                    havilland dhc3
## 1.175066                        dhc3 otter
## 1.175074                    gravity limits
## 1.175075                    limits leading
## 1.175079                 aerodynamic stall
## 1.175082                       cargo plane
## 1.175083                     plane crashed
## 1.175089                       caught fire
## 1.175096            mofadisu international
## 1.175097             international airport
## 1.175100                       cargo plane
## 1.175107                      struck trees
## 1.175108                     trees crashed
## 1.175115                      flight crewã
## 1.175116                           crewã â
## 1.175117                               â â
## 1.175122                properly configure
## 1.175127                 flight management
## 1.175128               management computer
## 1.175132                  profile approach
## 1.175135                        captainã â
## 1.175136                               â â
## 1.175153                  vertical profile
## 1.175159                   chartered plane
## 1.175160                     plane crashed
## 1.175161                   crashed minutes
## 1.175167                  murtala muhammad
## 1.175168            muhammad international
## 1.175169         international airport.the
## 1.175170              airport.the aircraft
## 1.175171                     aircraft lost
## 1.175172                       lost height
## 1.175175                  departing runwal
## 1.175176                        runwal 18l
## 1.175177                      18l impacted
## 1.175178                    impacted trees
## 1.175181                        brick wall
## 1.175184                       caught fire
## 1.175200                       2 propeller
## 1.175201                     propeller rpm
## 1.175202                    rpm indication
## 1.175203                    indication low
## 1.175204                      low altitude
## 1.175205                    altitude stall
## 1.175211                        low thrust
## 1.175222                          2 engine
## 1.175223                     engine caused
## 1.175227          undetermined malfunction
## 1.175231                 propeller control
## 1.175232                      control unit
## 1.175239                        twin otter
## 1.175240                      otter struck
## 1.175243                     house located
## 1.175249                         runway 22
## 1.175252                      nose section
## 1.175259                        wing broke
## 1.175269                 killed procedural
## 1.175270                 procedural errors
## 1.175276                  aircraft crashed
## 1.175280                      mekong river
## 1.175281                           river 5
## 1.175282                           5 miles
## 1.175298                    fuselage broke
## 1.175322                    hurricane nari
## 1.175323                    nari affecting
## 1.175328                     sudden change
## 1.175331                weather conditions
## 1.175335                     flight crew's
## 1.175336                    crew's failure
## 1.175339                  properly execute
## 1.175340                 execute procedure
## 1.175353                     flight crew's
## 1.175354                     crew's minima
## 1.175357                          600 feet
## 1.175363                  published minima
## 1.175366                          990 feet
## 1.175370                  incorrect height
## 1.175373                          645 feet
## 1.175379                    jeppesen chart
## 1.175383               time.after aborting
## 1.175386               aircraft's approach
## 1.175393                          595 feet
## 1.175396                       flight crew
## 1.175397                     crew executed
## 1.175405                     nominal climb
## 1.175411                     airport's vor
## 1.175412                           vor dme
## 1.175413                        dme missed
## 1.175414                   missed approach
## 1.175415                approach procedure
## 1.175420                        heavy rain
## 1.175423                   aircraft veered
## 1.175427                     runway caught
## 1.175428                       caught fire
## 1.175437                     rest inverted
## 1.175440                      losing power
## 1.175443                helicopter crashed
## 1.175446                      dense jungle
## 1.175454             carrying construction
## 1.175455            construction materials
## 1.175456                       materials 8
## 1.175457                        8 military
## 1.175458                military personnel
## 1.175461                       13 civilian
## 1.175462             civilian construction
## 1.175463              construction workers
## 1.175466                military personnel
## 1.175469                      6 passengers
## 1.175470               passengers survived
## 1.175478                         runway 26
## 1.175481                        light snow
## 1.175490                surrounding forest
## 1.175505                     stage turbine
## 1.175506                     turbine wheel
## 1.175507                       wheel blade
## 1.175511                       left engine
## 1.175512                     engine failed
## 1.175513                        failed due
## 1.175519              metallurgical issues
## 1.175522                       stator vane
## 1.175523                         vane burn
## 1.175532                     vertical dive
## 1.175549                      aircraft hit
## 1.175572                    excessive nose
## 1.175575                 attitude stalling
## 1.175578               plane inexperienced
## 1.175579                inexperienced crew
## 1.175580                         crew poor
## 1.175581                       poor flight
## 1.175582                     flight safety
## 1.175583                  safety standards
## 1.175587                     tatarstan air
## 1.175588                       air company
## 1.175593                    proper control
## 1.175596                     crew training
## 1.175599                 police helicopter
## 1.175600                helicopter crashed
## 1.175607                        clutha pub
## 1.175610                   central glasgow
## 1.175611                   glasgow killing
## 1.175615                         5 patrons
## 1.175619                          3 aboard
## 1.175628                    civilian pilot
## 1.175632                strathclyde police
## 1.175633                   police officers
## 1.175636                  airliner crashed
## 1.175639                 bwabwata national
## 1.175640                     national park
## 1.175643                          en route
## 1.175650                  found completely
## 1.175651                 completely burned
## 1.175662                       bad weather
## 1.175665                   poor visibility
## 1.175671                       auto flight
## 1.175672                    flight systems
## 1.175676                   person believed
## 1.175687                       flight deck
## 1.175691                   person believed
## 1.175697                   pilot requested
## 1.175703                   lavatory caused
## 1.175710                     cruise flight
## 1.175714              sustained controlled
## 1.175715                controlled descent
## 1.175718              subsequent collision
## 1.175726                  ambulance flight
## 1.175729                  aircraft crashed
## 1.175732             unknown circumstances
## 1.175738                         killing 3
## 1.175739                      3 passengers
## 1.175742                          2 pilots
## 1.175745                       cargo plane
## 1.175746                    plane carrying
## 1.175747                    carrying spare
## 1.175753                     military army
## 1.175754                      army arsenal
## 1.175757                         ikustsk 2
## 1.175758                         2 airport
## 1.175769                     3 technicians
## 1.175775                     air ambulance
## 1.175776                    ambulance left
## 1.175777                    left bucharest
## 1.175781                      medical team
## 1.175784                 obtain transplant
## 1.175785                 transplant organs
## 1.175794                   pilot attempted
## 1.175799                 emergency landing
## 1.175807                         deep snow
## 1.175810                  aboard initially
## 1.175811                initially survived
## 1.175818                   medical student
## 1.175819                      student died
## 1.175823                      rescue party
## 1.175824                     party reached
## 1.175829                military transport
## 1.175830                 transport crashed
## 1.175834                mountainous region
## 1.175835               region approximaely
## 1.175836                   approximaely 30
## 1.175837                          30 miles
## 1.175838                   miles southeast
## 1.175841                constatine airport
## 1.175842               airport unfavorable
## 1.175843               unfavorable weather
## 1.175844                weather conditions
## 1.175847                storms accompanied
## 1.175868                      mount djebel
## 1.175869                         djebel ta
## 1.175870                         ta fertas
## 1.175873                   passenger plane
## 1.175874                     plane crashed
## 1.175878                      snow covered
## 1.175879                  covered mountain
## 1.175886                          en route
## 1.175891                     jamia weather
## 1.175902                          pic lost
## 1.175903                    lost situation
## 1.175904               situation awareness
## 1.175909                       imc causing
## 1.175918                 aircraft carrying
## 1.175921                      medical team
## 1.175933                          field 20
## 1.175934                          20 miles
## 1.175937                    tunis carthage
## 1.175938                  carthage airport
## 1.175941                    pilot reported
## 1.175946                        fire prior
## 1.175950                    accident radar
## 1.175951                     radar contact
## 1.175957                        aircraft 2
## 1.175958                           2 hours
## 1.175970                  aircraft changed
## 1.175971                 changed direction
## 1.175975                       flight path
## 1.175985                      indian ocean
## 1.175986                   ocean southwest
## 1.175989                   perth australia
## 1.175995                    227 passengers
## 1.176000                       12 perished
## 1.176003                   news helicopter
## 1.176004                helicopter crashed
## 1.176009                     flames shortl
## 1.176025                      badly burned
## 1.176028        helicopter photojournalist
## 1.176029              photojournalist bill
## 1.176030                    bill strothman
## 1.176044                       jet crashed
## 1.176052                        mile north
## 1.176055                     saltillo plan
## 1.176056                           plan de
## 1.176057                      de guadalupe
## 1.176058           guadalupe international
## 1.176059             international airport
## 1.176062                carrying skydivers
## 1.176065                experimental plane
## 1.176090                    minor injuries
## 1.176093                       cargo plane
## 1.176094                       plane sruck
## 1.176102                          25 miles
## 1.176103                       miles north
## 1.176106                       san vicente
## 1.176107                       vicente del
## 1.176108                       del caguãƒâ
## 1.176109                        caguãƒâ nã
## 1.176110                              nã â
## 1.176113                          en route
## 1.176122                 controlled flight
## 1.176127                       crew failed
## 1.176130                 evaluate properly
## 1.176138                      poor weather
## 1.176139                weather conditions
## 1.176148                          vfr mode
## 1.176151                 military aircraft
## 1.176152                  aircraft crashed
## 1.176159         approaching xiangkhoung's
## 1.176160             xiangkhoung's airport
## 1.176161                   airport killing
## 1.176162                        killing 16
## 1.176163                         16 people
## 1.176169                  defense minister
## 1.176170               minister douangchay
## 1.176171                douangchay phichit
## 1.176176                 ranking officials
## 1.176179                    unknown reason
## 1.176180                       reason crew
## 1.176187                      low altitude
## 1.176190                military transport
## 1.176191                 transport crashed
## 1.176195                       wheat field
## 1.176198                   lugansk airport
## 1.176205                     anti aircraft
## 1.176206                     aircraft fire
## 1.176209                       cargo plane
## 1.176210                plane transporting
## 1.176213                    mild stimulant
## 1.176220                    somali capital
## 1.176221                 capital mogadishu
## 1.176222                 mogadishu crashed
## 1.176226               commercial building
## 1.176232                     jomo kenyatta
## 1.176233            kenyatta international
## 1.176234             international airport
## 1.176239                        night crew
## 1.176240                         crew lost
## 1.176241                      lost control
## 1.176247                helicopter crashed
## 1.176250                             40 km
## 1.176251                           km west
## 1.176254                          hanoi 15
## 1.176255                        15 minutes
## 1.176262                parachute training
## 1.176263                  training mission
## 1.176266                        boeing 777
## 1.176267                           777 200
## 1.176268                      200 airliner
## 1.176269                airliner operating
## 1.176272                 malaysia airlines
## 1.176273                   airlines flight
## 1.176274                         flight 17
## 1.176275                        17 crashed
## 1.176278                          40 miles
## 1.176279                        miles east
## 1.176282                   donetsk ukraine
## 1.176287                        90 minutes
## 1.176291                     flight flying
## 1.176294                       33,000 feet
## 1.176299                    apparently hit
## 1.176303                       russian buk
## 1.176304                       buk missile
## 1.176307                  missile exploded
## 1.176315                    cockpit debris
## 1.176324                    283 passengers
## 1.176333                   passenger plane
## 1.176334                     plane crashed
## 1.176337              residential building
## 1.176344                 emergency landing
## 1.176347                 inclement weather
## 1.176348                       weather due
## 1.176354                   hurricane matmo
## 1.176357                   flight recorder
## 1.176358                 recorder revealed
## 1.176364                         crew lost
## 1.176365                        lost track
## 1.176369                       flight path
## 1.176378                     plane rapidly
## 1.176379                      rapidly lost
## 1.176380                     lost altitude
## 1.176398                     pilots yelled
## 1.176425                 airport's control
## 1.176426                     control tower
## 1.176434                     local weather
## 1.176435            weather conditions.the
## 1.176439                       pilot error
## 1.176448                     follow safety
## 1.176449                 safety procedures
## 1.176450                  procedures radar
## 1.176451                     radar contact
## 1.176454                           lost 50
## 1.176455                        50 minutes
## 1.176467                     crew diverted
## 1.176475                       bad weather
## 1.176476                  weather wreckage
## 1.176482                     northern mali
## 1.176483                      mali dessert
## 1.176512                  pressure sensors
## 1.176515             erroneous information
## 1.176516           information transmitted
## 1.176520                     auto throttle
## 1.176521                    throttle meant
## 1.176528                  thrust delivered
## 1.176541                   maintain cruise
## 1.176542                      cruise speed
## 1.176546                  aeroplane slowed
## 1.176555                  passenger banked
## 1.176560                     lost altitude
## 1.176566          residential neighborhood
## 1.176567             neighborhood bursting
## 1.176572                    plane appeared
## 1.176581                 takeoff excessive
## 1.176582                    excessive load
## 1.176585           malfuncioning propeller
## 1.176588                       cargo plane
## 1.176589                     plane crashed
## 1.176593          mountainous southeastern
## 1.176594               southeastern region
## 1.176597                       algereia 15
## 1.176598                             15 km
## 1.176599                          km south
## 1.176603                   airport shortly
## 1.176609                       cargo plane
## 1.176610                     plane crashed
## 1.176616                serengeti national
## 1.176617                     national park
## 1.176623                    kenya tanzania
## 1.176624                   tanzania border
## 1.176625                    border shortly
## 1.176633                  approaching port
## 1.176634                      port moresby
## 1.176635                  moresby jacksons
## 1.176636            jacksons international
## 1.176637             international airport
## 1.176640             unscheduled passenger
## 1.176641                   passenger plane
## 1.176642                    plane impacted
## 1.176643                  impacted terrain
## 1.176649                          mt lawes
## 1.176650                           lawes 7
## 1.176651                           7 miles
## 1.176652                        miles east
## 1.176653                    east northeast
## 1.176659                      poor weather
## 1.176662                            pl ane
## 1.176668                   unknown reasons
## 1.176671                     air ambulance
## 1.176672                 ambulance crashed
## 1.176679                  waurika oklahoma
## 1.176682                   united regional
## 1.176683                   regional health
## 1.176684                     health center
## 1.176691                            3 crew
## 1.176696                       cargo plane
## 1.176697                    plane impacted
## 1.176702                          en route
## 1.176709                          en route
## 1.176714                 singapore contact
## 1.176719                        40 minutes
## 1.176729                   pilot requested
## 1.176732                      route change
## 1.176733                        change due
## 1.176736                weather conditions
## 1.176737            conditions preliminary
## 1.176738           preliminary indications
## 1.176742                         plane ran
## 1.176745                      poor weather
## 1.176752                     rudder travel
## 1.176753                    travel limiter
## 1.176754                   limiter faulted
## 1.176755                         faulted 3
## 1.176756                           3 times
## 1.176763                      fourth fault
## 1.176766                   captain decided
## 1.176774                   pulling circuit
## 1.176775                  circuit breakers
## 1.176782            maintenance technician
## 1.176793                 disengage causing
## 1.176798                           bank 54
## 1.176799                        54 degrees
## 1.176824                       steep climb
## 1.176833                  eventually crash
## 1.176834                     crash records
## 1.176839                        plane flew
## 1.176846                         12 months
## 1.176847                  months preceding
## 1.176852                    army transport
## 1.176853                 transport crashed
## 1.176862                  hitting electric
## 1.176863                    electric lines
## 1.176866                          al nursa
## 1.176867                       nursa front
## 1.176868                     front claimed
## 1.176884                        1,300 feet
## 1.176890                   losing altitude
## 1.176898                        90 degrees
## 1.176901                  wingtip striking
## 1.176912                     keelung river
## 1.176913                      river coming
## 1.176916                     rest inverted
## 1.176919                  pilot mistakenly
## 1.176920              mistakenly throttled
## 1.176925                    running engine
## 1.176933                      engine pilot
## 1.176934                       pilot error
## 1.176937                     french sports
## 1.176938                    sports figures
## 1.176939             figures participating
## 1.176955               helicopters filming
## 1.176961                  jetliner crashed
## 1.176965                remote mountainous
## 1.176969                   southern france
## 1.176977                   wreckage larger
## 1.176986                    flight tracker
## 1.176989                        plane fell
## 1.176992                         38,000 ft
## 1.176995                         11,400 ft
## 1.177001                 aircraft impacted
## 1.177010                 speed.the copilot
## 1.177011                    copilot locked
## 1.177025                controlled descent
## 1.177033                        twin otter
## 1.177034                     otter crashed
## 1.177039                  sightseeing tour
## 1.177040                     tour carrying
## 1.177041                   carrying cruise
## 1.177042                       cruise ship
## 1.177043                   ship passengers
## 1.177046                    plane impacted
## 1.177049                      granite rock
## 1.177054                         ella lake
## 1.177057                          25 miles
## 1.177058                   miles northeast
## 1.177063                military transport
## 1.177064                 transport crashed
## 1.177065                   crashed shortly
## 1.177071                      soewondo air
## 1.177072                          air base
## 1.177080                      crew radioed
## 1.177104                   empty buildings
## 1.177109                 carrying civilian
## 1.177110                civilian relatives
## 1.177113                military personnel
## 1.177116                military transport
## 1.177117                 transport crashed
## 1.177120                          en route
## 1.177124                     crew reported
## 1.177125                   reported engine
## 1.177140                      crash strong
## 1.177141                      strong winds
## 1.177142                      winds forced
## 1.177149                   holding pattern
## 1.177152                        40 minutes
## 1.177159                     pilot touched
## 1.177174                remaining distance
## 1.177177                     plane overran
## 1.177195                   passenger plane
## 1.177196                     plane crashed
## 1.177199                   tangok mountain
## 1.177200                  mountain located
## 1.177207                   papua's eastern
## 1.177214                     distress call
## 1.177222                        heavy rain
## 1.177231                     air ambulance
## 1.177238                    medical flight
## 1.177244                   board including
## 1.177251                   flight engineer
## 1.177256                senegalese medical
## 1.177257                      medical crew
## 1.177261                    french patient
## 1.177269                    remote fishing
## 1.177270                      fishing site
## 1.177274                sceduled passenger
## 1.177275                   passenger float
## 1.177276                       float plane
## 1.177277                     plane crashed
## 1.177294                  pilot's decision
## 1.177299                        dark night
## 1.177300                      night visual
## 1.177301             visual meteorological
## 1.177302         meteorological conditions
## 1.177310                subsequent spatial
## 1.177311            spatial disorientation
## 1.177316                  airplane control
## 1.177319                military transport
## 1.177320                 transport crashed
## 1.177326                 jalalabad airport
## 1.177331                      5 passengers
## 1.177341                             mpã â
## 1.177342                               â â
## 1.177348                        hard shell
## 1.177349                         shell nvg
## 1.177356                     yoke blocking
## 1.177357                  blocking forward
## 1.177358                  forward movement
## 1.177362                   flight controls
## 1.177365          distractions experienced
## 1.177389                   missing minutes
## 1.177404                    board wreckage
## 1.177409                  mount latimojong
## 1.177412                       cargo plane
## 1.177413                    plane carrying
## 1.177414             carrying construction
## 1.177415            construction materials
## 1.177416                     materials hit
## 1.177424                        iiaga pass
## 1.177425                           pass 12
## 1.177426                             12 km
## 1.177427                          km south
## 1.177430                     ilaga airport
## 1.177435                impact approximate
## 1.177436                    approximate 25
## 1.177437                        25 minutes
## 1.177443                         sharem el
## 1.177444                         el sheikh
## 1.177445                    sheikh airport
## 1.177446                     airport radar
## 1.177447                     radar contact
## 1.177453                 airliner wreckage
## 1.177461                       north sinai
## 1.177469                       30,000 feet
## 1.177485                homemade explosive
## 1.177486                  explosive device
## 1.177490                         left rear
## 1.177491                        rear cargo
## 1.177492                        cargo hold
## 1.177495                 improvised device
## 1.177500                           2.2 lbs
## 1.177505                       cargo plane
## 1.177512                      juba airport
## 1.177517                difficulty gaining
## 1.177518                  gaining altitude
## 1.177528                         mile east
## 1.177531                         runway 13
## 1.177532                          13 south
## 1.177533                       south sudan
## 1.177534                 sudan authorities
## 1.177535              authorities reported
## 1.177549                  captain reported
## 1.177552                         atc prior
## 1.177558                       carrying 12
## 1.177559                     12 passengers
## 1.177562            sightseeing helicopter
## 1.177563                helicopter crashed
## 1.177569                       fox glacier
## 1.177572                     wreckage site
## 1.177575                             2 500
## 1.177576                          500 feet
## 1.177582                  debris scattered
## 1.177587                      feet contact
## 1.177597                       oil pumping
## 1.177598                   pumping station
## 1.177601                           lost 15
## 1.177602                        15 minutes
## 1.177621                          en route
## 1.177627                        cargo plan
## 1.177631             unintelligible mayday
## 1.177632                    mayday message
## 1.177640                     vertical dive
## 1.177656                inertial reference
## 1.177657                    reference unit
## 1.177658                       unit failed
## 1.177666                      pilot flying
## 1.177670                    plane pitching
## 1.177671                  pitching steeply
## 1.177678                       correct due
## 1.177682                   plane's unusual
## 1.177683                  unusual attitude
## 1.177690                    declutter mode
## 1.177702                pilots instruments
## 1.177705               conflicting shortly
## 1.177708                 leaving mogadishu
## 1.177709                 mogadishu airport
## 1.177712                         loud bang
## 1.177730                 emergency landing
## 1.177767                     plane crashed
## 1.177771              mountainous northern
## 1.177772                   northern region
## 1.177775                        nepal half
## 1.177780                         20 minute
## 1.177781                     minute flight
## 1.177794                         dense fog
## 1.177807                     crew deviated
## 1.177811                  prescribed route
## 1.177819                        jomsom due
## 1.177833                aircraft descended
## 1.177836                       10,000 feet
## 1.177843                     visual flight
## 1.177844                      flight rules
## 1.177845                         rules vfr
## 1.177849                      gpws warning
## 1.177850                   warning sounded
## 1.177853                       crew failed
## 1.177856                 react immediately
## 1.177860                      aircraft hit
## 1.177868                       10,700 feet
## 1.177878                       10,982 feet
## 1.177885                     steep descent
## 1.177897                  kalikot district
## 1.177909                 emergency landing
## 1.177924                       cargo plane
## 1.177925                    plane carrying
## 1.177926                   carrying shrimp
## 1.177927                    shrimp crashed
## 1.177931                         5 minutes
## 1.177937                       cox's bazar
## 1.177938                     bazar airport
## 1.177941                   pilot declaired
## 1.177956                    shallow waters
## 1.177968                    conducting sky
## 1.177969                        sky diving
## 1.177970                  diving exercises
## 1.177984                          base due
## 1.177987               deuterating weather
## 1.177988                weather conditions
## 1.177989                conditions shortly
## 1.178004               nineteen passengers
## 1.178008                          3 pilots
## 1.178019                      crew aborted
## 1.178022                   landing attempt
## 1.178025                         runway 22
## 1.178026                            22 due
## 1.178029                      poor weather
## 1.178030                weather conditions
## 1.178039                   holding pattern
## 1.178042                       15,000 feet
## 1.178056                   landing attempt
## 1.178059                         3.4 miles
## 1.178068                        1,500 feet
## 1.178071                     crew executed
## 1.178080                        3,975 feet
## 1.178107                     plane crashed
## 1.178113                           iles de
## 1.178114                             de la
## 1.178115                       la magdelen
## 1.178116                  magdelen airport
## 1.178119                      poor weather
## 1.178120                weather conditions
## 1.178123                  canadian cabinet
## 1.178124                  cabinet minister
## 1.178125                     minister jean
## 1.178126                     jean lapierre
## 1.178129                            wife 2
## 1.178130                        2 brothers
## 1.178148                 lapierre's father
## 1.178167                  pilot's decision
## 1.178172                 unstable approach
## 1.178175                helicopter crashed
## 1.178179                   wooded hillside
## 1.178184                sightseeing flight
## 1.178190                     plane stalled
## 1.178198                              1 km
## 1.178199                          km short
## 1.178209              stormy weather.three
## 1.178210            weather.three survived
## 1.178219                    engine failure
## 1.178222                helicopter crashed
## 1.178226                      rocky shores
## 1.178229                       tuoy island
## 1.178230                       island whle
## 1.178231                    whle returning
## 1.178236                      oil platform
## 1.178237                 platform gullflex
## 1.178241                     11 passengers
## 1.178244                          2 pilots
## 1.178256                        main rotor
## 1.178257                  rotor separating
## 1.178268                          en route
## 1.178273                      cairo flying
## 1.178279                         38,000 ft
## 1.178285                          sharp 90
## 1.178286                         90 degree
## 1.178295                        360 degree
## 1.178303                     lost altitude
## 1.178306                  aircraft crashed
## 1.178310                 mediterranean sea
## 1.178311                 sea approximately
## 1.178312                 approximately 175
## 1.178313                         175 miles
## 1.178317                    egyptian coast
## 1.178328                    acars messages
## 1.178329                 messages reported
## 1.178330                    reported smoke
## 1.178333                  board apparently
## 1.178342             technical compartment
## 1.178343               compartment located
## 1.178354                     fire fighting
## 1.178363             unknown circumstances
## 1.178366                      impact trees
## 1.178375                           hot air
## 1.178376                       air balloon
## 1.178377                    balloon struck
## 1.178378                      struck power
## 1.178379                       power lines
## 1.178398                  weather warnings
## 1.178406                        power line
## 1.178414                     crew informed
## 1.178415                    informed dubai
## 1.178416                       dubai tower
## 1.178430                 aircraft impacted
## 1.178433                     runway losing
## 1.178438                     catching fire
## 1.178441                        plane slid
## 1.178448                  aboard evacuated
## 1.178451                      plane safely
## 1.178454                      fire fighter
## 1.178463                  midair collision
## 1.178464                collision occurred
## 1.178468                        cessna 208
## 1.178472                          piper pa
## 1.178473                             pa 18
## 1.178474                          18 super
## 1.178475                         super cub
## 1.178480                   russian mission
## 1.178481                   mission airport
## 1.178493                   fatally injured
## 1.178494                     injured rough
## 1.178495                     rough terrain
## 1.178496               terrain complicated
## 1.178497               complicated removal
## 1.178501                   victims shortly
## 1.178507                      plane banked
## 1.178512                     lost altitude
## 1.178521                    airport french
## 1.178522                   french ministry
## 1.178523                ministry officials
## 1.178530                      trace routes
## 1.178533               illicit trafficking
## 1.178538                      drug leaving
## 1.178539                     leaving libya
## 1.178545               chartered passenger
## 1.178546                     passenger jet
## 1.178547                      jet declared
## 1.178553                     approached la
## 1.178554                          la union
## 1.178555                   union reporting
## 1.178565                electrical failure
## 1.178570                    plane impacted
## 1.178571              impacted mountainous
## 1.178572               mountainous terrain
## 1.178573             terrain approximately
## 1.178574                  approximately 22
## 1.178575                          22 miles
## 1.178576                       miles south
## 1.178583             brazilian chapecoense
## 1.178584                chapecoense soccer
## 1.178585                       soccer team
## 1.178614                     flight safely
## 1.178620                       stop midway
## 1.178631                 plane's emergency
## 1.178655                   engines stopped
## 1.178685                          cut fuel
## 1.178686                        fuel costs
## 1.178693                 financial trouble
## 1.178696                 indonesian police
## 1.178697                   police aircraft
## 1.178698                  aircraft crashed
## 1.178704                  kabupaten lingga
## 1.178705                       lingga riau
## 1.178706                      riau islands
## 1.178710                          1.5 hour
## 1.178711                    hour scheduled
## 1.178712                  scheduled flight
## 1.178715                          en route
## 1.178721                       mayday call
## 1.178722                    call reporting
## 1.178729                   engines contact
## 1.178746                    military plane
## 1.178747                     plane crashed
## 1.178750               mountainous terrain
## 1.178754                   eastern section
## 1.178769                         runway 24
## 1.178772                         cargo jet
## 1.178773                        jet failed
## 1.178782                   perimeter fence
## 1.178790                     lost altitude
## 1.178799                   engine suffered
## 1.178805                    plane carrying
## 1.178808               alexandrov emsemble
## 1.178809                    emsemble choir
## 1.178810                   choir reporters
## 1.178833                         black sea
## 1.178837                     mile offshore
## 1.178840               approaching bishkek
## 1.178844                         fuel stop
## 1.178847                       cargo plane
## 1.178848                     plane crashed
## 1.178849                      crashed past
## 1.178855                 runway destroying
## 1.178856                     destroying 23
## 1.178857                         23 houses
## 1.178868                      freezing fog
## 1.178871                    charter flight
## 1.178882                   observed flying
## 1.178883                        flying low
## 1.178887                       nose diving
## 1.178894                   shopping center
## 1.178904                      mayday calls
## 1.178908                  aircraft crashed
## 1.178914                    plane suffered
## 1.178915                   suffered engine
## 1.178916                    engine failure
## 1.178919                helicopter crashed
## 1.178927                          tv tower
## 1.178949                    russian guests
## 1.178955                          en route
## 1.178958                     air transport
## 1.178959                   transport plane
## 1.178960                    plane collided
## 1.178963                       mount vumba
## 1.178966                      poor weather
## 1.178967                weather conditions
## 1.178970                       cargo plane
## 1.178982                         runway 05
## 1.178985                 charleston yeager
## 1.178986                    yeager airport
## 1.179006                     wooded ravine
## 1.179009                       cargo plane
## 1.179010                     plane crashed
## 1.179011                     crashed short
## 1.179015                 runway threshhold
## 1.179016                 threshhold whille
## 1.179017                 whille attempting
## 1.179022                     lukla tenzing
## 1.179023                   tenzing airport
## 1.179024                    airport coming
## 1.179030                      steep wooded
## 1.179036                 airport perimeter
## 1.179037                   perimeter fence
## 1.179047                   transport plane
## 1.179048                    plane carrying
## 1.179049                 carrying military
## 1.179050                military personnel
## 1.179054                    familiies left
## 1.179055                        left myeik
## 1.179059                       return trip
## 1.179067                            fl 180
## 1.179072                       air traffic
## 1.179073                   traffic control
## 1.179076                           lost 29
## 1.179077                        29 minutes
## 1.179083                     plane crashed
## 1.179086                          20 miles
## 1.179087                        miles west
## 1.179093                       andaman sea
## 1.179096                  aircraft climbed
## 1.179110               cumulonimbus clouds
## 1.179114                       flight crew
## 1.179115                    crew activated
## 1.179118                         wing anti
## 1.179119                        anti icing
## 1.179122                             13 31
## 1.179123                          31 hours
## 1.179128              triggered indicating
## 1.179129                 indicating engine
## 1.179130                        engine air
## 1.179131                         air inlet
## 1.179132                       inlet icing
## 1.179147               cumulonimbus clouds
## 1.179148                      clouds cross
## 1.179149                        cross wind
## 1.179150                    wind increased
## 1.179153                           8 knots
## 1.179156                          42 knots
## 1.179162                  aircraft stalled
## 1.179169                       flight crew
## 1.179170                       crew failed
## 1.179179                 aircraft impacted
## 1.179184                    medical flight
## 1.179185                    flight crashed
## 1.179186                         crashed 3
## 1.179187                              3 km
## 1.179188                          km south
## 1.179191                     mount gambier
## 1.179192                   gambier airport
## 1.179195                         heavy fog
## 1.179213                    daughter angel
## 1.179214                      angel flight
## 1.179224                    access medical
## 1.179225                 medical treatment
## 1.179228                          en route
## 1.179231                      marine corps
## 1.179232                   corps transport
## 1.179233                transport suffered
## 1.179238                structural failure
## 1.179241                         20,000 ft
## 1.179242                       ft spiraled
## 1.179249                     soybean field
## 1.179252          investigation determined
## 1.179262                inflight departure
## 1.179275                 aircraft departed
## 1.179276                 departed kinshasa
## 1.179281                             20 km
## 1.179282                             km ne
## 1.179287                     air ambulance
## 1.179288                 ambulance crashed
## 1.179289                        crashed en
## 1.179290                          en route
## 1.179291                     route shortly
## 1.179295                    pilot reported
## 1.179306                       cargo plane
## 1.179307                    plane carrying
## 1.179308                   carrying french
## 1.179309                   french military
## 1.179310                    military cargo
## 1.179311                     cargo crashed
## 1.179314                    shallow waters
## 1.179321                    final approach
## 1.179324                     abidjan felix
## 1.179325                   felix houphouet
## 1.179326                  houphouet boigny
## 1.179327                    boigny airport
## 1.179332                        carrying 6
## 1.179333                        6 moldovan
## 1.179334                     moldovan crew
## 1.179338                          4 french
## 1.179339                       french army
## 1.179340                    army personnel
## 1.179341                 personnel weather
## 1.179342                   weather reports
## 1.179359                  chartered cessna
## 1.179362                   flying tourists
## 1.179369                     plane circled
## 1.179372                        30 minuets
## 1.179373                       minuets due
## 1.179376                      poor weather
## 1.179377                weather conditions
## 1.179380                  crashing shortly
## 1.179386                     aircraft lost
## 1.179387                     lost altitude
## 1.179394                     22 passengers
## 1.179397                            3 crew
## 1.179398                     crew survived
## 1.179406                    passenger died
## 1.179417              aircraft encountered
## 1.179418                 encountered icing
## 1.179419                  icing conditions
## 1.179423                        anti icing
## 1.179426                          de icing
## 1.179427                     icing systems
## 1.179433                          de icing
## 1.179436                        anti icing
## 1.179437                     icing systems
## 1.179442                      residual ice
## 1.179443                      ice remained
## 1.179451                   passenger plane
## 1.179452                     plane crashed
## 1.179453                        crashed 10
## 1.179454                        10 minutes
## 1.179460                      punta islita
## 1.179466                      ten american
## 1.179467               american passengers
## 1.179477                              1 12
## 1.179478                           12 2018
## 1.179481                     companies air
## 1.179482                      air operator
## 1.179483              operator certificate
## 1.179490                      hotel worker
## 1.179502                 accident airplane
## 1.179516                    prior airplane
## 1.179521                    runway heading
## 1.179528                  training mission
## 1.179531                  airplane crashed
## 1.179534             unknown circumstances
## 1.179538                zhengchang village
## 1.179542                  guizhou province
## 1.179549                strange manoeuvres
## 1.179564                   plummeted 600ft
## 1.179574                      strong winds
## 1.179586                 regional airliner
## 1.179602                        6,000 feet
## 1.179603                      feet contact
## 1.179613                     lost altitude
## 1.179617                  accelerated rate
## 1.179625            disintegrated wreckage
## 1.179635                              1 km
## 1.179636                    km authorities
## 1.179637             authorities confirmed
## 1.179653                         air speed
## 1.179654                    speed readings
## 1.179663                  standby airspeed
## 1.179664                airspeed indicator
## 1.179672                     yasuj airport
## 1.179680                           mt dena
## 1.179681                           dena 14
## 1.179682                          14 miles
## 1.179683                       miles north
## 1.179687                      airport poor
## 1.179688                      poor weather
## 1.179701                       crew action
## 1.179704                  caused dangerous
## 1.179705              dangerous conditions
## 1.179709                 flight continuing
## 1.179713                    yasouj airport
## 1.179719                  operation manual
## 1.179723                       company due
## 1.179726                      low altitude
## 1.179727                  altitude ceiling
## 1.179733                     related cloud
## 1.179734                        cloud mass
## 1.179735                   mass descending
## 1.179738             unauthorized altitude
## 1.179751                  latakia khmeimim
## 1.179752                      khmeimim air
## 1.179753                          air base
## 1.179756                military transport
## 1.179757                   transport plane
## 1.179758                     plane crashed
## 1.179759                     crashed 1,600
## 1.179760                        1,600 feet
## 1.179761                        feet short
## 1.179767               aircraft approached
## 1.179771                         tail wind
## 1.179782            sightseeing helicopter
## 1.179783               helicopter suddenly
## 1.179784                     suddenly lost
## 1.179785                        lost power
## 1.179791                        east river
## 1.179813                   observed flying
## 1.179814                        flying low
## 1.179819                    plane impacted
## 1.179820                  impacted terrain
## 1.179823                       caught fire
## 1.179835                     complete loss
## 1.179838             situational awareness
## 1.179844                 algerian military
## 1.179845                    military plane
## 1.179846                     plane crashed
## 1.179861                 totally destroyed
## 1.179869                          1 engine
## 1.179870                   engine suffered
## 1.179873          uncontained catastrophic
## 1.179874              catastrophic failure
## 1.179875                  failure shrapnel
## 1.179876                   shrapnel struck
## 1.179885           explosive decompression
## 1.179888                   woman passenger
## 1.179889                 passenger sitting
## 1.179893                       window seat
## 1.179896                  partially sucked
## 1.179901                 window passengers
## 1.179917                    cardiac arrest
## 1.179924                     crew declared
## 1.179929                     landed safely
## 1.179932              philadelphia airport
## 1.179935                        porto rico
## 1.179936                          rico air
## 1.179937                      air national
## 1.179938                    national guard
## 1.179939                       guard plane
## 1.179940                     plane crashed
## 1.179944                   highway shortly
## 1.179950                   savannah hilton
## 1.179951              hilton international
## 1.179952             international airport
## 1.179959                         left bank
## 1.179988                         runway 06
## 1.179991                     havana josãƒâ
## 1.179992                   josãƒâ martãƒâ­
## 1.179993                  martãƒâ­ airport
## 1.179999                     initial climb
## 1.180002                airliner initiated
## 1.180012                      struck power
## 1.180013                       power lines
## 1.180017                     railway track
## 1.180037              balance calculations
## 1.180053                     takeoff stage
## 1.180054                     stage shortly
## 1.180059                         runway 29
## 1.180062                       left engine
## 1.180063                     engine failed
## 1.180071                   gain sufficient
## 1.180072                 sufficient height
## 1.180081                 emergency landing
## 1.180084                approaching runway
## 1.180085                         runway 29
## 1.180095                    control struck
## 1.180106                     field located
## 1.180109                              6 km
## 1.180110                      km southeast
## 1.180116                   flight engineer
## 1.180128                  vintage aircraft
## 1.180129                  aircraft crashed
## 1.180132                        piz segnas
## 1.180133                   segnas mountain
## 1.180138                sightseeing flight
## 1.180141                     plane plunged
## 1.180154                          8,000 ft
## 1.180164                        chuuk weno
## 1.180165                      weno airport
## 1.180174                        lagoon 500
## 1.180175                          500 feet
## 1.180176                        feet short
## 1.180187                           plane 3
## 1.180188                            3 days
## 1.180194                  airliner crashed
## 1.180198                       jakarta sea
## 1.180199                            sea 13
## 1.180200                        13 minutes
## 1.180206                    soekarno hatta
## 1.180207               hatta international
## 1.180208             international airport
## 1.180214                           short 1
## 1.180215                            1 hour
## 1.180216                       hour flight
## 1.180219                    pangkal pinang
## 1.180225                        runway 25l
## 1.180231                     climbing left
## 1.180232                         left hand
## 1.180238                      crew radioed
## 1.180252                   erratic pattern
## 1.180258                   losing altitude
## 1.180265                             sea 9
## 1.180266                           9 miles
## 1.180270                     jakarta coast
## 1.180298                repeated automatic
## 1.180299                    automatic nose
## 1.180302                     trim commands
## 1.180306             horizontal stabilizer
## 1.180310                    flight control
## 1.180311                    control system
## 1.180315                        boeing 737
## 1.180316                           737 max
## 1.180317                      max aircraft
## 1.180318                 aircraft receives
## 1.180323                        single aoa
## 1.180324                        aoa sensor
## 1.180325                      sensor input
## 1.180331                    reaching fl200
## 1.180334                     crew reported
## 1.180343                georgetown airport
## 1.180346                  aircraft touched
## 1.180350                         runway 06
## 1.180363                 airport perimeter
## 1.180364                   perimeter fence
## 1.180371                       person died
## 1.180380                       cargo plane
## 1.180386                       iranian air
## 1.180387                         air force
## 1.180395                         runway 30
## 1.180398                    payham airport
## 1.180404                        runway 31l
## 1.180407                     fat'h airport
## 1.180408                    airport runway
## 1.180409                         runway 30
## 1.180418                    runway 31l.the
## 1.180419                     31l.the plane
## 1.180424                    runway smashed
## 1.180428                      airport wall
## 1.180429                   wall separating
## 1.180435          residential neighborhood
## 1.180436                neighborhood broke
## 1.180440                       caught fire
## 1.180444                    fight engineer
## 1.180445                 engineer survived
## 1.180446                      survived atc
## 1.180447                          atc lost
## 1.180448                        lost radar
## 1.180449                     radar contact
## 1.180453                         cargo jet
## 1.180458                          30 miles
## 1.180459                   miles southeast
## 1.180462                       george bush
## 1.180463                bush international
## 1.180464             international airport
## 1.180467                     plane crashed
## 1.180470                       trinity bay
## 1.180476                       muddy water
## 1.180479                            5 feet
## 1.180480                         feet deep
## 1.180488                    crew contacted
## 1.180489                     contacted atc
## 1.180498                  airplane crashed
## 1.180504                        palm grove
## 1.180505                          grove 35
## 1.180506                             35 km
## 1.180507                          km south
## 1.180510                     la vanguardia
## 1.180511                vanguardia airport
## 1.180514                     crew reported
## 1.180515                   reported engine
## 1.180519         internationally scheduled
## 1.180520                scheduled airliner
## 1.180521                  airliner crashed
## 1.180522                         crashed 6
## 1.180523                         6 minutes
## 1.180529                       addis ababa
## 1.180530                        ababa bole
## 1.180531                      bole airport
## 1.180538                     distress call
## 1.180550                        crash site
## 1.180553                          31 miles
## 1.180554                   miles southeast
## 1.180558                 airport contained
## 1.180561                      smoky crater
## 1.180576                    software error
## 1.180580                             max 8
## 1.180588                     initial climb
## 1.180589                       climb plane
## 1.180590                        plane lost
## 1.180591                       lost height
## 1.180599                     house located
## 1.180606                        400 meters
## 1.180612                  aircraft crashed
## 1.180615                          en route
## 1.180619                       return trip
## 1.180622                         las vegas
## 1.180625                  monterrey mexico
## 1.180626                      mexico forty
## 1.180634             moscow's sheremetyevo
## 1.180635              sheremetyevo airport
## 1.180638                    plane returned
## 1.180643                 emergency landing
## 1.180646                           16 21nm
## 1.180647                         21nm west
## 1.180650              sheremetyevo airport
## 1.180661                        7,900 feet
## 1.180665                electrical failure
## 1.180666                  failure occurred
## 1.180669                    flight control
## 1.180670                    control system
## 1.180671                   system degraded
## 1.180674                       direct mode
## 1.180677           autopilot automatically
## 1.180678        automatically disconnected
## 1.180687             thunderstorm activity
## 1.180690                   captain assumed
## 1.180691                    assumed manual
## 1.180692                    manual control
## 1.180704                      crew decided
## 1.180713                        manual ils
## 1.180714                      ils approach
## 1.180717                        runway 24l
## 1.180723              aircraft intercepted
## 1.180728                       aircraftã â
## 1.180729                               â â
## 1.180736                   maximum landing
## 1.180737                    landing weight
## 1.180740                     crew deployed
## 1.180745                        25 degrees
## 1.180751                       flight crew
## 1.180752                    crew operating
## 1.180753                  operating manual
## 1.180758                      minimum mode
## 1.180759                       mode direct
## 1.180760                       direct mode
## 1.180772                            15 26z
## 1.180775                          crew set
## 1.180778             emergency transponder
## 1.180779                  transponder code
## 1.180780                         code vapp
## 1.180786                          155 kias
## 1.180800                   vapp descending
## 1.180805                          900 feet
## 1.180808                     crew received
## 1.180809                        received 5
## 1.180810                          5 cycles
## 1.180813              predictive windshear
## 1.180814                windshear warnings
## 1.180815               warnings descending
## 1.180818                          260 feet
## 1.180819                          feet agl
## 1.180828                       glide slope
## 1.180831                               ã â
## 1.180832                   â ëœglideslopeã
## 1.180833                   ëœglideslopeã â
## 1.180834                               â â
## 1.180835                         â warning
## 1.180836                  warning occurred
## 1.180837               occurred descending
## 1.180842                           40 feet
## 1.180845                     engine thrust
## 1.180848                 increased causing
## 1.180855                         164 knots
## 1.180858                           16 feet
## 1.180859                          feet agl
## 1.180864                          170 kias
## 1.180867                 terrain awareness
## 1.180868                 awareness warning
## 1.180869                    warning system
## 1.180870                      system aural
## 1.180871                      aural signal
## 1.180872                          signal ã
## 1.180873                               ã â
## 1.180874                       â ëœretardã
## 1.180875                       ëœretardã â
## 1.180876                               â â
## 1.180877                        â occurred
## 1.180880                     engine thrust
## 1.180893                 apply oscillating
## 1.180894                 oscillating pitch
## 1.180895                      pitch inputs
## 1.180898              increasing amplitude
## 1.180903                       pitch angle
## 1.180909                         2 degrees
## 1.180917                     touchdown 900
## 1.180918                        900 meters
## 1.180919                       meters past
## 1.180922                  runway threshold
## 1.180925                          158 kias
## 1.180929                     vertical load
## 1.180937                            6 feet
## 1.180938                          feet agl
## 1.180946                       direct mode
## 1.180953             operate automatically
## 1.180959                 extended manually
## 1.180966                 manually extended
## 1.180978                  aircraft touched
## 1.180986                         nose gear
## 1.180990                          155 kias
## 1.180995                  aircraft bounced
## 1.181000                           18 feet
## 1.181001                          feet agl
## 1.181005                touchdown occurred
## 1.181008                          140 kias
## 1.181013                      5g resulting
## 1.181022                        fuel spill
## 1.181025                      fire crashed
## 1.181028                          34km wnw
## 1.181033                pakistani military
## 1.181034                    military plane
## 1.181038                   training flight
## 1.181039                    flight crashed
## 1.181042            residential structures
## 1.181045                         mora kalu
## 1.181046                      kalu village
## 1.181056                 destroyed killing
## 1.181057                        killing 18
## 1.181058                         18 people
## 1.181059                  people including
## 1.181062                          2 pilots
## 1.181063                          pilots 3
## 1.181064                            3 crew
## 1.181068                      14 civilians
bigram_graph <- bigram_count %>% 
  filter(n > 60) %>% 
  graph_from_data_frame()

Data Visualizations

Crashes per Operator over Time

f <- ggplot(data = df, aes(x = Year, y = n, color = Operator, group = 1)) +
  geom_point(palette = "Blues")+
  geom_line(palette = "Blues")+
  labs(title = "Crashes Per Operator Per Year",
       y = " ",
       x = "Year")+
  theme_minimal()+
  #scale_x_continuous(expand = )+
  theme(plot.title.position = "plot")
## Warning: Ignoring unknown parameters: palette

## Warning: Ignoring unknown parameters: palette
ggplotly(f)

This graph shows the top 4 operators that had the most crashes. You can hover over the point to see which year it occured in, the number of crashs, and the operator. One of the things i found intresting from this graph is that Deutsche Lufthansa made it into the top 4 for most crashes, but was only had crashes from 1908-1945. Something that may be worth looking at is a crash ratio or flights flown to flights crashed.

Crash Count by State

k <- ggplot() +
  geom_sf(data = state_map_data, aes(fill = crash_count))+
  scale_fill_distiller(palette="Reds", direction = +1)+
  labs(title = "Crash Count Per State")+
  guides(fill = FALSE)+
  theme_minimal()+
  theme(plot.title.position = "plot")
## Warning: `guides(<scale> = FALSE)` is deprecated. Please use `guides(<scale> =
## "none")` instead.
ggplotly(k)

> In this graph, we can see the number of crashes that occured in each state.

Crash Location

p <- ggplot() +
  geom_sf(data = state_map_data)+
  geom_sf(data = my_sf2, color = 'red', size = 0.1)+
  theme_minimal()+
  labs(title = "Crash Location per State")+
  theme(plot.title.position = "plot")

ggplotly(p)

> Building on the last graph, this one shows the location of each crash in the state.

Crash Summary Bigram

set.seed(2021)
a <- grid::arrow(
  type = "closed",
  length = unit(.12, "inches")
)

ggraph(bigram_graph, layout = "kk") +
  geom_edge_link(
    aes(edge_alpha = n),
    show.legend = FALSE, arrow = a,
    edge_width = 1) +
  geom_node_point(color = "black",
                  size = 4) +
  geom_node_text(aes(label = name), vjust = 1, hjust = 1)+
  labs(title = "Crash Summary Bigram")+
  theme_minimal()+
  theme(plot.title.position = "plot")

> In this model, we can see the most common word parings from the crash summary. I thought this would be intresting to explore as it could give some insight into what caused the crash.


Conclusion

This analysis helped me see a different side of this data. It showed me the where and why that I missed in my first project. It was interesting to explore the different states counts, and the the individual location of each crash. It was even a little surprising to find out that California had the most crashes out of the continental US. As for the crash explanations, so were to be expected, like engine -> failure or weather -> conditions, but I thought it was interesting to see some like caught -> fire and struck -> tree.

Future Works

I am really disappointed that I was not able to get ‘gganimate’ to work, and I hope to implement that in my future analysis. Additionally, I had a ‘leaflet’ plot that was really messy, so I hope to refine that and add that to a future version of this project.

date_df <- select(crashes, c(Month, Year, Fatalities, Aboard, AC.Type, Long, Lat))
#Changing the data type of fatalities to a numeric
date_df$Fatalities <- as.numeric(date_df$Fatalities)
#Changing all the NAs to 0s
date_df[is.na(date_df)] <- 0
#Changing the data type of year to a numeric
date_df$Year <- as.numeric(date_df$Year)
#Creating a new column in our dataset called decade
date_df <- date_df %>% 
  mutate(Decade = floor(Year/10) * 10)
international_sf <- st_as_sf(date_df, coords = c('Long', 'Lat'))
#international_sf <- st_set_crs(international_sf, st_crs(state_map_data3))
#state_map_data3 <- maps::map('state', fill = TRUE, plot = FALSE) %>% 
  #st_as_sf()
library(leaflet)
## Warning: package 'leaflet' was built under R version 4.0.5
leaflet() %>% 
  addTiles() %>% 
  addCircleMarkers(data = international_sf, fillColor = international_sf$Year, fillOpacity = 1, stroke = FALSE, radius = 5, group = international_sf$Year) %>% 
  addLayersControl(overlayGroups = international_sf$Year, options = layersControlOptions(collapsed = FALSE))